add to ZYppCommitPolicy: syncPoolAfterCommit
[platform/upstream/libzypp.git] / zypp / zypp_detail / ZYppImpl.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file       zypp/zypp_detail/ZYppImpl.cc
10  *
11 */
12
13 #include <sys/utsname.h>
14 #include <unistd.h>
15 #include <iostream>
16 #include <fstream>
17 #include "zypp/base/Logger.h"
18 #include "zypp/base/String.h"
19
20 #include "zypp/zypp_detail/ZYppImpl.h"
21 #include "zypp/detail/ResImplTraits.h"
22 #include "zypp/solver/detail/Helper.h"
23 #include "zypp/target/TargetImpl.h"
24 #include "zypp/ZYpp.h"
25 #include "zypp/NVRAD.h"
26 #include "zypp/Language.h"
27 #include "zypp/DiskUsageCounter.h"
28 #include "zypp/NameKindProxy.h"
29
30 using std::endl;
31
32 ///////////////////////////////////////////////////////////////////
33 namespace zypp
34 { /////////////////////////////////////////////////////////////////
35   ///////////////////////////////////////////////////////////////////
36   namespace zypp_detail
37   { /////////////////////////////////////////////////////////////////
38
39     inline Locale defaultTextLocale()
40     {
41       Locale ret( "en" );
42       char * envlist[] = { "LC_ALL", "LC_CTYPE", "LANG", NULL };
43       for ( char ** envvar = envlist; *envvar; ++envvar )
44         {
45           char * envlang = getenv( *envvar );
46           if ( envlang )
47             {
48               std::string envstr( envlang );
49               if ( envstr != "POSIX" && envstr != "C" )
50                 {
51                   Locale lang( envlang );
52                   if ( lang != Locale::noCode )
53                     {
54                       ret = lang;
55                       break;
56                     }
57                 }
58             }
59         }
60       return ret;
61     }
62
63     Arch defaultArchitecture()
64     {
65       Arch architecture;
66
67       // detect the true architecture
68       struct utsname buf;
69       if ( uname( &buf ) < 0 )
70         {
71           ERR << "Can't determine system architecture" << endl;
72         }
73       else
74         {
75           architecture = Arch( buf.machine );
76           DBG << "uname architecture is '" << buf.machine << "'" << endl;
77
78           // some CPUs report i686 but dont implement cx8 and cmov
79           // check for both flags in /proc/cpuinfo and downgrade
80           // to i586 if either is missing (cf bug #18885)
81
82           if ( architecture == Arch_i686 )
83             {
84               std::ifstream cpuinfo( "/proc/cpuinfo" );
85               if ( !cpuinfo )
86                 {
87                   ERR << "Cant open /proc/cpuinfo" << endl;
88                 }
89               else
90                 {
91                   char infoline[1024];
92                   while ( cpuinfo.good() )
93                     {
94                       if ( !cpuinfo.getline( infoline, 1024, '\n' ) )
95                         {
96                           if ( cpuinfo.eof() )
97                             break;
98                         }
99                       if ( strncmp( infoline, "flags", 5 ) == 0 )
100                         {
101                           std::string flagsline( infoline );
102                           if ( flagsline.find( "cx8" ) == std::string::npos
103                                || flagsline.find( "cmov" ) == std::string::npos )
104                             {
105                               architecture = Arch_i586;
106                               DBG << "CPU lacks 'cx8' or 'cmov': architecture downgraded to '" << architecture << "'" << endl;
107                             }
108                           break;
109                         } // flags found
110                     } // read proc/cpuinfo
111                 } // proc/cpuinfo opened
112             } // i686 extra flags check
113         }
114
115       if ( getenv( "ZYPP_TESTSUITE_FAKE_ARCH" ) )
116       {
117         architecture = Arch( getenv( "ZYPP_TESTSUITE_FAKE_ARCH" ) );
118         WAR << "ZYPP_TESTSUITE_FAKE_ARCH: Setting fake system architecture for test purpuses to: '" << architecture << "'" << endl;
119       }
120
121       return architecture;
122     }
123     ///////////////////////////////////////////////////////////////////
124     //
125     //  METHOD NAME : ZYppImpl::ZYppImpl
126     //  METHOD TYPE : Constructor
127     //
128     ZYppImpl::ZYppImpl()
129     : _textLocale( defaultTextLocale() )
130     , _pool()
131     , _sourceFeed( _pool )
132     , _target(0)
133     , _resolver( new Resolver(_pool.accessor()) )
134     , _architecture( defaultArchitecture() )
135     , _disk_usage()
136     {
137       MIL << "defaultTextLocale: '" << _textLocale << "'" << endl;
138       MIL << "System architecture is '" << _architecture << "'" << endl;
139
140       MIL << "initializing keyring..." << std::endl;
141       //_keyring = new KeyRing(homePath() + Pathname("/keyring/all"), homePath() + Pathname("/keyring/trusted"));
142       _keyring = new KeyRing(tmpPath());
143     }
144
145     ///////////////////////////////////////////////////////////////////
146     //
147     //  METHOD NAME : ZYppImpl::~ZYppImpl
148     //  METHOD TYPE : Destructor
149     //
150     ZYppImpl::~ZYppImpl()
151     {}
152
153     //------------------------------------------------------------------------
154     // add/remove resolvables
155
156     void ZYppImpl::addResolvables (const ResStore& store, bool installed)
157     {
158         _pool.insert(store.begin(), store.end(), installed);
159     }
160
161     void ZYppImpl::removeResolvables (const ResStore& store)
162     {
163         for (ResStore::iterator it = store.begin(); it != store.end(); ++it)
164         {
165             _pool.erase(*it);
166         }
167     }
168
169     void ZYppImpl::removeInstalledResolvables ()
170     {
171         for (ResPool::const_iterator it = pool().begin(); it != pool().end();)
172         {
173             ResPool::const_iterator next = it; ++next;
174             if (it->status().isInstalled())
175                 _pool.erase( *it );
176             it = next;
177         }
178     }
179
180     DiskUsageCounter::MountPointSet ZYppImpl::diskUsage()
181     { return _disk_usage.disk_usage(pool()); }
182
183     void ZYppImpl::setPartitions(const DiskUsageCounter::MountPointSet &mp)
184     { _disk_usage.setMountPoints(mp); }
185
186     //------------------------------------------------------------------------
187     // target
188
189     Target_Ptr ZYppImpl::target() const
190     {
191       if (! _target)
192         ZYPP_THROW(Exception("Target not initialized."));
193       return _target;
194      }
195
196     void ZYppImpl::initializeTarget(const Pathname & root)
197     {
198       MIL << "initTarget( " << root << endl;
199       if (_target) {
200         if (_target->root() == root) {
201             MIL << "Repeated call to initializeTarget()" << endl;
202             return;
203         }
204         removeInstalledResolvables( );
205       }
206       _target = new Target( root );
207       _target->enableStorage( root );
208     }
209
210     void ZYppImpl::initTarget(const Pathname & root, bool commit_only)
211     {
212       MIL << "initTarget( " << root << ", " << commit_only << ")" << endl;
213       if (_target) {
214         if (_target->root() == root) {
215           MIL << "Repeated call to initTarget()" << endl;
216           return;
217         }
218         removeInstalledResolvables( );
219       }
220       _target = new Target( root );
221       _target->enableStorage( root );
222       if (!commit_only)
223       {
224         addResolvables( _target->resolvables(), true );
225       }
226     }
227
228
229     void ZYppImpl::finishTarget()
230     {
231       if (_target)
232         removeInstalledResolvables();
233       _target = 0;
234     }
235
236     //------------------------------------------------------------------------
237     // commit
238
239     /** \todo Remove workflow from target, lot's of it could be done here,
240      * and target used for transact. */
241     ZYppCommitResult ZYppImpl::commit( const ZYppCommitPolicy & policy_r )
242     {
243       if ( getenv("ZYPP_TESTSUITE_FAKE_ARCH") )
244       {
245         ZYPP_THROW( Exception("ZYPP_TESTSUITE_FAKE_ARCH set. Commit not allowed and disabled.") );
246       }
247
248       MIL << "Attempt to commit (" << policy_r << ")" << endl;
249       if (! _target)
250         ZYPP_THROW( Exception("Target not initialized.") );
251
252       ZYppCommitResult res = _target->_pimpl->commit( pool(), policy_r );
253
254       if (! policy_r.dryRun() ) {
255         // Tag target data invalid, so they are reloaded on the next call to
256         // target->resolvables(). Actually the target should do this without
257         // foreign help.
258         _target->reset();
259         removeInstalledResolvables();
260         if ( policy_r.syncPoolAfterCommit() )
261           {
262             // reload new status from target
263             addResolvables( _target->resolvables(), true );
264           }
265       }
266
267       MIL << "Commit (" << policy_r << ") returned: "
268           << res << endl;
269       return res;
270     }
271
272
273     //------------------------------------------------------------------------
274     // locales
275
276     /** */
277     void ZYppImpl::setRequestedLocales( const LocaleSet & locales_r )
278     {
279       ResPool mpool( pool() );
280       // assert all requested are available
281       for ( LocaleSet::const_iterator it = locales_r.begin();
282             it != locales_r.end(); ++it )
283         {
284           NameKindProxy select( nameKindProxy<Language>( mpool, it->code() ) );
285           if ( select.installedEmpty() && select.availableEmpty() )
286             _pool.insert( Language::availableInstance( *it ) );
287         }
288
289       // now adjust status
290       for ( ResPool::byKind_iterator it = mpool.byKindBegin<Language>();
291             it != mpool.byKindEnd<Language>(); ++it )
292         {
293           NameKindProxy select( nameKindProxy<Language>( mpool, (*it)->name() ) );
294           if ( locales_r.find( Locale( (*it)->name() ) ) != locales_r.end() )
295             {
296               // Language is requested
297               if ( select.installedEmpty() )
298                 {
299                   if ( select.availableEmpty() )
300                     {
301                       // no item ==> provide available to install
302                       _pool.insert( Language::availableInstance( Locale((*it)->name()) ) );
303                       select = nameKindProxy<Language>( mpool, (*it)->name() );
304                     }
305                   // available only ==> to install
306                   select.availableBegin()->status().setTransactValue( ResStatus::TRANSACT, ResStatus::USER );
307                 }
308               else
309                 {
310                   // installed ==> keep it
311                   select.installedBegin()->status().setTransactValue( ResStatus::KEEP_STATE, ResStatus::USER );
312                   if ( ! select.availableEmpty() )
313                     {
314                       // both items ==> keep
315                       select.availableBegin()->status().resetTransact( ResStatus::USER );
316                     }
317                 }
318             }
319           else
320             {
321               // Language is NOT requested
322               if ( ! select.installedEmpty() )
323                 select.installedBegin()->status().setTransactValue( ResStatus::TRANSACT, ResStatus::USER );
324               if ( ! select.availableEmpty() )
325                 select.availableBegin()->status().resetTransact( ResStatus::USER );
326             }
327         }
328     }
329
330     /** */
331     ZYppImpl::LocaleSet ZYppImpl::getAvailableLocales() const
332     {
333       ZYpp::LocaleSet ret;
334       ResPool mpool( pool() );
335       for ( ResPool::byKind_iterator it = mpool.byKindBegin<Language>();
336             it != mpool.byKindEnd<Language>(); ++it )
337         {
338           if ( (*it).status().isUninstalled() ) // available!
339             ret.insert( Locale( (*it)->name() ) );
340         }
341       return ret;
342     }
343
344     /** */
345     ZYppImpl::LocaleSet ZYppImpl::getRequestedLocales() const
346     {
347       ZYpp::LocaleSet ret;
348       ResPool mpool( pool() );
349       for ( ResPool::byKind_iterator it = mpool.byKindBegin<Language>();
350             it != mpool.byKindEnd<Language>(); ++it )
351         {
352           NameKindProxy select( nameKindProxy<Language>( mpool, (*it)->name() ) );
353           if ( ! select.installedEmpty()
354                && select.installedBegin()->status().getTransactValue() != ResStatus::TRANSACT )
355             ret.insert( Locale( (*it)->name() ) );
356           else if ( ! select.availableEmpty()
357                     && select.availableBegin()->status().getTransactValue() == ResStatus::TRANSACT )
358             ret.insert( Locale( (*it)->name() ) );
359         }
360       return ret;
361     }
362
363     void ZYppImpl::availableLocale( const Locale & locale_r )
364     {
365       _pool.insert( Language::availableInstance( locale_r ) );
366     }
367
368     //------------------------------------------------------------------------
369     // architecture
370
371     void ZYppImpl::setArchitecture( const Arch & arch )
372     {
373         _architecture = arch;
374         if (_resolver) _resolver->setArchitecture( arch );
375     }
376
377     //------------------------------------------------------------------------
378     // target store path
379
380     Pathname ZYppImpl::homePath() const
381     { return _home_path.empty() ? Pathname("/var/lib/zypp") : _home_path; }
382
383     void ZYppImpl::setHomePath( const Pathname & path )
384     { _home_path = path; }
385
386     Pathname ZYppImpl::tmpPath() const
387     {
388       static TmpDir zypp_tmp_dir("/var/tmp", "zypp.");
389       return zypp_tmp_dir.path();
390     }
391
392     /******************************************************************
393      **
394      ** FUNCTION NAME : operator<<
395      ** FUNCTION TYPE : std::ostream &
396     */
397     std::ostream & operator<<( std::ostream & str, const ZYppImpl & obj )
398     {
399       return str << "ZYppImpl";
400     }
401
402     /////////////////////////////////////////////////////////////////
403   } // namespace zypp_detail
404   ///////////////////////////////////////////////////////////////////
405   /////////////////////////////////////////////////////////////////
406 } // namespace zypp
407 ///////////////////////////////////////////////////////////////////