Use libsolv includes and adjust documentation
[platform/upstream/libzypp.git] / zypp / ZConfig.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file       zypp/ZConfig.cc
10  *
11 */
12 extern "C"
13 {
14 #include <sys/utsname.h>
15 #include <unistd.h>
16 #include <solv/satversion.h>
17 }
18 #include <iostream>
19 #include <fstream>
20 #include "zypp/base/Logger.h"
21 #include "zypp/base/IOStream.h"
22 #include "zypp/base/InputStream.h"
23 #include "zypp/base/String.h"
24
25 #include "zypp/ZConfig.h"
26 #include "zypp/ZYppFactory.h"
27 #include "zypp/PathInfo.h"
28 #include "zypp/parser/IniDict.h"
29
30 #include "zypp/sat/Pool.h"
31
32 using namespace std;
33 using namespace zypp::filesystem;
34 using namespace zypp::parser;
35
36 #undef ZYPP_BASE_LOGGER_LOGGROUP
37 #define ZYPP_BASE_LOGGER_LOGGROUP "zconfig"
38
39 ///////////////////////////////////////////////////////////////////
40 namespace zypp
41 { /////////////////////////////////////////////////////////////////
42
43   ///////////////////////////////////////////////////////////////////
44   namespace
45   { /////////////////////////////////////////////////////////////////
46
47     /** Determine system architecture evaluating \c uname and \c /proc/cpuinfo.
48     */
49     Arch _autodetectSystemArchitecture()
50     {
51       struct ::utsname buf;
52       if ( ::uname( &buf ) < 0 )
53       {
54         ERR << "Can't determine system architecture" << endl;
55         return Arch_noarch;
56       }
57
58       Arch architecture( buf.machine );
59       MIL << "Uname architecture is '" << buf.machine << "'" << endl;
60
61       if ( architecture == Arch_i686 )
62       {
63         // some CPUs report i686 but dont implement cx8 and cmov
64         // check for both flags in /proc/cpuinfo and downgrade
65         // to i586 if either is missing (cf bug #18885)
66         std::ifstream cpuinfo( "/proc/cpuinfo" );
67         if ( cpuinfo )
68         {
69           for( iostr::EachLine in( cpuinfo ); in; in.next() )
70           {
71             if ( str::hasPrefix( *in, "flags" ) )
72             {
73               if (    in->find( "cx8" ) == std::string::npos
74                    || in->find( "cmov" ) == std::string::npos )
75               {
76                 architecture = Arch_i586;
77                 WAR << "CPU lacks 'cx8' or 'cmov': architecture downgraded to '" << architecture << "'" << endl;
78               }
79               break;
80             }
81           }
82         }
83         else
84         {
85           ERR << "Cant open " << PathInfo("/proc/cpuinfo") << endl;
86         }
87       }
88       else if ( architecture == Arch_sparc || architecture == Arch_sparc64 )
89       {
90         // Check for sun4[vum] to get the real arch. (bug #566291)
91         std::ifstream cpuinfo( "/proc/cpuinfo" );
92         if ( cpuinfo )
93         {
94           for( iostr::EachLine in( cpuinfo ); in; in.next() )
95           {
96             if ( str::hasPrefix( *in, "type" ) )
97             {
98               if ( in->find( "sun4v" ) != std::string::npos )
99               {
100                 architecture = ( architecture == Arch_sparc64 ? Arch_sparc64v : Arch_sparcv9v );
101                 WAR << "CPU has 'sun4v': architecture upgraded to '" << architecture << "'" << endl;
102               }
103               else if ( in->find( "sun4u" ) != std::string::npos )
104               {
105                 architecture = ( architecture == Arch_sparc64 ? Arch_sparc64 : Arch_sparcv9 );
106                 WAR << "CPU has 'sun4u': architecture upgraded to '" << architecture << "'" << endl;
107               }
108               else if ( in->find( "sun4m" ) != std::string::npos )
109               {
110                 architecture = Arch_sparcv8;
111                 WAR << "CPU has 'sun4m': architecture upgraded to '" << architecture << "'" << endl;
112               }
113               break;
114             }
115           }
116         }
117         else
118         {
119           ERR << "Cant open " << PathInfo("/proc/cpuinfo") << endl;
120         }
121       }
122       return architecture;
123     }
124
125      /** The locale to be used for texts and messages.
126      *
127      * For the encoding to be used the preference is
128      *
129      *    LC_ALL, LC_CTYPE, LANG
130      *
131      * For the language of the messages to be used, the preference is
132      *
133      *    LANGUAGE, LC_ALL, LC_MESSAGES, LANG
134      *
135      * Note that LANGUAGE can contain more than one locale name, it can be
136      * a list of locale names like for example
137      *
138      *    LANGUAGE=ja_JP.UTF-8:de_DE.UTF-8:fr_FR.UTF-8
139
140      * \todo Support dynamic fallbacklists defined by LANGUAGE
141      */
142     Locale _autodetectTextLocale()
143     {
144       Locale ret( "en" );
145       const char * envlist[] = { "LC_ALL", "LC_MESSAGES", "LANG", NULL };
146       for ( const char ** envvar = envlist; *envvar; ++envvar )
147       {
148         const char * envlang = getenv( *envvar );
149         if ( envlang )
150         {
151           std::string envstr( envlang );
152           if ( envstr != "POSIX" && envstr != "C" )
153           {
154             Locale lang( envstr );
155             if ( ! lang.code().empty() )
156             {
157               MIL << "Found " << *envvar << "=" << envstr << endl;
158               ret = lang;
159               break;
160             }
161           }
162         }
163       }
164       MIL << "Default text locale is '" << ret << "'" << endl;
165 #warning HACK AROUND BOOST_TEST_CATCH_SYSTEM_ERRORS
166       setenv( "BOOST_TEST_CATCH_SYSTEM_ERRORS", "no", 1 );
167       return ret;
168     }
169
170    /////////////////////////////////////////////////////////////////
171   } // namespace zypp
172   ///////////////////////////////////////////////////////////////////
173
174   /** Mutable option. */
175   template<class _Tp>
176       struct Option
177       {
178         typedef _Tp value_type;
179
180         /** No default ctor, explicit initialisation! */
181         Option( const value_type & initial_r )
182           : _val( initial_r )
183         {}
184
185         /** Get the value.  */
186         const value_type & get() const
187         { return _val; }
188
189         /** Autoconversion to value_type.  */
190         operator const value_type &() const
191         { return _val; }
192
193         /** Set a new value.  */
194         void set( const value_type & newval_r )
195         { _val = newval_r; }
196
197         /** Non-const reference to set a new value. */
198         value_type & ref()
199         { return _val; }
200
201         private:
202           value_type _val;
203       };
204
205   /** Mutable option with initial value also remembering a config value. */
206   template<class _Tp>
207       struct DefaultOption : public Option<_Tp>
208       {
209         typedef _Tp         value_type;
210         typedef Option<_Tp> option_type;
211
212         DefaultOption( const value_type & initial_r )
213           : Option<_Tp>( initial_r ), _default( initial_r )
214         {}
215
216         /** Reset value to the current default. */
217         void restoreToDefault()
218         { this->set( _default.get() ); }
219
220         /** Reset value to a new default. */
221         void restoreToDefault( const value_type & newval_r )
222         { setDefault( newval_r ); restoreToDefault(); }
223
224         /** Get the current default value. */
225         const value_type & getDefault() const
226         { return _default.get(); }
227
228         /** Set a new default value. */
229         void setDefault( const value_type & newval_r )
230         { _default.set( newval_r ); }
231
232         private:
233           option_type _default;
234       };
235
236   ///////////////////////////////////////////////////////////////////
237   //
238   //    CLASS NAME : ZConfig::Impl
239   //
240   /** ZConfig implementation.
241    * \todo Enrich section and entry definition by some comment
242    * (including the default setting and provide some method to
243    * write this into a sample zypp.conf.
244   */
245   class ZConfig::Impl
246   {
247     public:
248       Impl( const Pathname & override_r = Pathname() )
249         : _parsedZyppConf               ( override_r )
250         , cfg_arch                      ( defaultSystemArchitecture() )
251         , cfg_textLocale                ( defaultTextLocale() )
252         , updateMessagesNotify          ( "single | /usr/lib/zypp/notify-message -p %p" )
253         , repo_add_probe                ( false )
254         , repo_refresh_delay            ( 10 )
255         , repoLabelIsAlias              ( false )
256         , download_use_deltarpm         ( true )
257         , download_use_deltarpm_always  ( false )
258         , download_media_prefer_download( true )
259         , download_max_concurrent_connections( 5 )
260         , download_min_download_speed   ( 0 )
261         , download_max_download_speed   ( 0 )
262         , download_max_silent_tries     ( 5 )
263         , commit_downloadMode           ( DownloadDefault )
264         , solver_onlyRequires           ( false )
265         , solver_allowVendorChange      ( false )
266         , solver_cleandepsOnRemove      ( false )
267         , solver_upgradeTestcasesToKeep ( 2 )
268         , solverUpgradeRemoveDroppedPackages( true )
269         , apply_locks_file              ( true )
270         , pluginsPath                   ( "/usr/lib/zypp/plugins" )
271       {
272         MIL << "libzypp: " << VERSION << " built " << __DATE__ << " " <<  __TIME__ << endl;
273         // override_r has higest prio
274         // ZYPP_CONF might override /etc/zypp/zypp.conf
275         if ( _parsedZyppConf.empty() )
276         {
277           const char *env_confpath = getenv( "ZYPP_CONF" );
278           _parsedZyppConf = env_confpath ? env_confpath : "/etc/zypp/zypp.conf";
279         }
280         else
281         {
282           // Inject this into ZConfig. Be shure this is
283           // allocated via new. See: reconfigureZConfig
284           INT << "Reconfigure to " << _parsedZyppConf << endl;
285           ZConfig::instance()._pimpl.reset( this );
286         }
287         if ( PathInfo(_parsedZyppConf).isExist() )
288         {
289           parser::IniDict dict( _parsedZyppConf );
290           for ( IniDict::section_const_iterator sit = dict.sectionsBegin();
291                 sit != dict.sectionsEnd();
292                 ++sit )
293           {
294             string section(*sit);
295             //MIL << section << endl;
296             for ( IniDict::entry_const_iterator it = dict.entriesBegin(*sit);
297                   it != dict.entriesEnd(*sit);
298                   ++it )
299             {
300               string entry(it->first);
301               string value(it->second);
302               //DBG << (*it).first << "=" << (*it).second << endl;
303               if ( section == "main" )
304               {
305                 if ( entry == "arch" )
306                 {
307                   Arch carch( value );
308                   if ( carch != cfg_arch )
309                   {
310                     WAR << "Overriding system architecture (" << cfg_arch << "): " << carch << endl;
311                     cfg_arch = carch;
312                   }
313                 }
314                 else if ( entry == "cachedir" )
315                 {
316                   cfg_cache_path = Pathname(value);
317                 }
318                 else if ( entry == "metadatadir" )
319                 {
320                   cfg_metadata_path = Pathname(value);
321                 }
322                 else if ( entry == "solvfilesdir" )
323                 {
324                   cfg_solvfiles_path = Pathname(value);
325                 }
326                 else if ( entry == "packagesdir" )
327                 {
328                   cfg_packages_path = Pathname(value);
329                 }
330                 else if ( entry == "configdir" )
331                 {
332                   cfg_config_path = Pathname(value);
333                 }
334                 else if ( entry == "reposdir" )
335                 {
336                   cfg_known_repos_path = Pathname(value);
337                 }
338                 else if ( entry == "servicesdir" )
339                 {
340                   cfg_known_services_path = Pathname(value);
341                 }
342                 else if ( entry == "repo.add.probe" )
343                 {
344                   repo_add_probe = str::strToBool( value, repo_add_probe );
345                 }
346                 else if ( entry == "repo.refresh.delay" )
347                 {
348                   str::strtonum(value, repo_refresh_delay);
349                 }
350                 else if ( entry == "download.use_deltarpm" )
351                 {
352                   download_use_deltarpm = str::strToBool( value, download_use_deltarpm );
353                 }
354                 else if ( entry == "download.use_deltarpm.always" )
355                 {
356                   download_use_deltarpm_always = str::strToBool( value, download_use_deltarpm_always );
357                 }
358                 else if ( entry == "download.media_preference" )
359                 {
360                   download_media_prefer_download.restoreToDefault( str::compareCI( value, "volatile" ) != 0 );
361                 }
362                 else if ( entry == "download.max_concurrent_connections" )
363                 {
364                   str::strtonum(value, download_max_concurrent_connections);
365                 }
366                 else if ( entry == "download.min_download_speed" )
367                 {
368                   str::strtonum(value, download_min_download_speed);
369                 }
370                 else if ( entry == "download.max_download_speed" )
371                 {
372                   str::strtonum(value, download_max_download_speed);
373                 }
374                 else if ( entry == "download.max_silent_tries" )
375                 {
376                   str::strtonum(value, download_max_silent_tries);
377                 }
378                 else if ( entry == "commit.downloadMode" )
379                 {
380                   commit_downloadMode.set( deserializeDownloadMode( value ) );
381                 }
382                 else if ( entry == "vendordir" )
383                 {
384                   cfg_vendor_path = Pathname(value);
385                 }
386                 else if ( entry == "solver.onlyRequires" )
387                 {
388                   solver_onlyRequires.set( str::strToBool( value, solver_onlyRequires ) );
389                 }
390                 else if ( entry == "solver.allowVendorChange" )
391                 {
392                   solver_allowVendorChange.set( str::strToBool( value, solver_allowVendorChange ) );
393                 }
394                 else if ( entry == "solver.cleandepsOnRemove" )
395                 {
396                   solver_cleandepsOnRemove.set( str::strToBool( value, solver_cleandepsOnRemove ) );
397                 }
398                 else if ( entry == "solver.upgradeTestcasesToKeep" )
399                 {
400                   solver_upgradeTestcasesToKeep.set( str::strtonum<unsigned>( value ) );
401                 }
402                 else if ( entry == "solver.upgradeRemoveDroppedPackages" )
403                 {
404                   solverUpgradeRemoveDroppedPackages.restoreToDefault( str::strToBool( value, solverUpgradeRemoveDroppedPackages.getDefault() ) );
405                 }
406                 else if ( entry == "solver.checkSystemFile" )
407                 {
408                   solver_checkSystemFile = Pathname(value);
409                 }
410                 else if ( entry == "multiversion" )
411                 {
412                   str::split( value, inserter( multiversion, multiversion.end() ), ", \t" );
413                 }
414                 else if ( entry == "locksfile.path" )
415                 {
416                   locks_file = Pathname(value);
417                 }
418                 else if ( entry == "locksfile.apply" )
419                 {
420                   apply_locks_file = str::strToBool( value, apply_locks_file );
421                 }
422                 else if ( entry == "update.datadir" )
423                 {
424                   update_data_path = Pathname(value);
425                 }
426                 else if ( entry == "update.scriptsdir" )
427                 {
428                   update_scripts_path = Pathname(value);
429                 }
430                 else if ( entry == "update.messagessdir" )
431                 {
432                   update_messages_path = Pathname(value);
433                 }
434                 else if ( entry == "update.messages.notify" )
435                 {
436                   updateMessagesNotify.set( value );
437                 }
438                 else if ( entry == "rpm.install.excludedocs" )
439                 {
440                   rpmInstallFlags.setFlag( target::rpm::RPMINST_EXCLUDEDOCS,
441                                            str::strToBool( value, false ) );
442                 }
443                 else if ( entry == "history.logfile" )
444                 {
445                   history_log_path = Pathname(value);
446                 }
447                 else if ( entry == "credentials.global.dir" )
448                 {
449                   credentials_global_dir_path = Pathname(value);
450                 }
451                 else if ( entry == "credentials.global.file" )
452                 {
453                   credentials_global_file_path = Pathname(value);
454                 }
455               }
456             }
457           }
458         }
459         else
460         {
461           MIL << _parsedZyppConf << " not found, using defaults instead." << endl;
462           _parsedZyppConf = _parsedZyppConf.extend( " (NOT FOUND)" );
463         }
464
465         // legacy:
466         if ( getenv( "ZYPP_TESTSUITE_FAKE_ARCH" ) )
467         {
468           Arch carch( getenv( "ZYPP_TESTSUITE_FAKE_ARCH" ) );
469           if ( carch != cfg_arch )
470           {
471             WAR << "ZYPP_TESTSUITE_FAKE_ARCH: Overriding system architecture (" << cfg_arch << "): " << carch << endl;
472             cfg_arch = carch;
473           }
474         }
475         MIL << "ZConfig singleton created." << endl;
476       }
477
478       ~Impl()
479       {}
480
481     public:
482     /** Remember any parsed zypp.conf. */
483     Pathname _parsedZyppConf;
484
485     Arch     cfg_arch;
486     Locale   cfg_textLocale;
487
488     Pathname cfg_cache_path;
489     Pathname cfg_metadata_path;
490     Pathname cfg_solvfiles_path;
491     Pathname cfg_packages_path;
492
493     Pathname cfg_config_path;
494     Pathname cfg_known_repos_path;
495     Pathname cfg_known_services_path;
496
497     Pathname cfg_vendor_path;
498     Pathname locks_file;
499
500     Pathname update_data_path;
501     Pathname update_scripts_path;
502     Pathname update_messages_path;
503     DefaultOption<std::string> updateMessagesNotify;
504
505     bool repo_add_probe;
506     unsigned repo_refresh_delay;
507     bool repoLabelIsAlias;
508
509     bool download_use_deltarpm;
510     bool download_use_deltarpm_always;
511     DefaultOption<bool> download_media_prefer_download;
512
513     int download_max_concurrent_connections;
514     int download_min_download_speed;
515     int download_max_download_speed;
516     int download_max_silent_tries;
517
518     Option<DownloadMode> commit_downloadMode;
519
520     Option<bool>        solver_onlyRequires;
521     Option<bool>        solver_allowVendorChange;
522     Option<bool>        solver_cleandepsOnRemove;
523     Option<unsigned>    solver_upgradeTestcasesToKeep;
524     DefaultOption<bool> solverUpgradeRemoveDroppedPackages;
525
526     Pathname solver_checkSystemFile;
527
528     std::set<std::string> multiversion;
529
530     bool apply_locks_file;
531
532     target::rpm::RpmInstFlags rpmInstallFlags;
533
534     Pathname history_log_path;
535     Pathname credentials_global_dir_path;
536     Pathname credentials_global_file_path;
537
538     Option<Pathname> pluginsPath;
539   };
540   ///////////////////////////////////////////////////////////////////
541
542   // Backdoor to redirect ZConfig from within the running
543   // TEST-application. HANDLE WITH CARE!
544   void reconfigureZConfig( const Pathname & override_r )
545   {
546     // ctor puts itself unter smart pointer control.
547     new ZConfig::Impl( override_r );
548   }
549
550   ///////////////////////////////////////////////////////////////////
551   //
552   //    METHOD NAME : ZConfig::instance
553   //    METHOD TYPE : ZConfig &
554   //
555   ZConfig & ZConfig::instance()
556   {
557     static ZConfig _instance; // The singleton
558     return _instance;
559   }
560
561   ///////////////////////////////////////////////////////////////////
562   //
563   //    METHOD NAME : ZConfig::ZConfig
564   //    METHOD TYPE : Ctor
565   //
566   ZConfig::ZConfig()
567   : _pimpl( new Impl )
568   {
569     about( MIL );
570   }
571
572   ///////////////////////////////////////////////////////////////////
573   //
574   //    METHOD NAME : ZConfig::~ZConfig
575   //    METHOD TYPE : Dtor
576   //
577   ZConfig::~ZConfig( )
578   {}
579
580   Pathname ZConfig::systemRoot() const
581   {
582     Target_Ptr target( getZYpp()->getTarget() );
583     return target ? target->root() : Pathname();
584   }
585
586   ///////////////////////////////////////////////////////////////////
587   //
588   // system architecture
589   //
590   ///////////////////////////////////////////////////////////////////
591
592   Arch ZConfig::defaultSystemArchitecture()
593   {
594     static Arch _val( _autodetectSystemArchitecture() );
595     return _val;
596   }
597
598   Arch ZConfig::systemArchitecture() const
599   { return _pimpl->cfg_arch; }
600
601   void ZConfig::setSystemArchitecture( const Arch & arch_r )
602   {
603     if ( arch_r != _pimpl->cfg_arch )
604     {
605       WAR << "Overriding system architecture (" << _pimpl->cfg_arch << "): " << arch_r << endl;
606       _pimpl->cfg_arch = arch_r;
607     }
608   }
609
610   ///////////////////////////////////////////////////////////////////
611   //
612   // text locale
613   //
614   ///////////////////////////////////////////////////////////////////
615
616   Locale ZConfig::defaultTextLocale()
617   {
618     static Locale _val( _autodetectTextLocale() );
619     return _val;
620   }
621
622   Locale ZConfig::textLocale() const
623   { return _pimpl->cfg_textLocale; }
624
625   void ZConfig::setTextLocale( const Locale & locale_r )
626   {
627     if ( locale_r != _pimpl->cfg_textLocale )
628     {
629       WAR << "Overriding text locale (" << _pimpl->cfg_textLocale << "): " << locale_r << endl;
630       _pimpl->cfg_textLocale = locale_r;
631 #warning prefer signal
632       sat::Pool::instance().setTextLocale( locale_r );
633     }
634   }
635
636   ///////////////////////////////////////////////////////////////////
637
638   Pathname ZConfig::repoCachePath() const
639   {
640     return ( _pimpl->cfg_cache_path.empty()
641         ? Pathname("/var/cache/zypp") : _pimpl->cfg_cache_path );
642   }
643
644   Pathname ZConfig::repoMetadataPath() const
645   {
646     return ( _pimpl->cfg_metadata_path.empty()
647         ? (repoCachePath()/"raw") : _pimpl->cfg_metadata_path );
648   }
649
650   Pathname ZConfig::repoSolvfilesPath() const
651   {
652     return ( _pimpl->cfg_solvfiles_path.empty()
653         ? (repoCachePath()/"solv") : _pimpl->cfg_solvfiles_path );
654   }
655
656   Pathname ZConfig::repoPackagesPath() const
657   {
658     return ( _pimpl->cfg_packages_path.empty()
659         ? (repoCachePath()/"packages") : _pimpl->cfg_packages_path );
660   }
661
662   ///////////////////////////////////////////////////////////////////
663
664   Pathname ZConfig::configPath() const
665   {
666     return ( _pimpl->cfg_config_path.empty()
667         ? Pathname("/etc/zypp") : _pimpl->cfg_config_path );
668   }
669
670   Pathname ZConfig::knownReposPath() const
671   {
672     return ( _pimpl->cfg_known_repos_path.empty()
673         ? (configPath()/"repos.d") : _pimpl->cfg_known_repos_path );
674   }
675
676   Pathname ZConfig::knownServicesPath() const
677   {
678     return ( _pimpl->cfg_known_services_path.empty()
679         ? (configPath()/"services.d") : _pimpl->cfg_known_repos_path );
680   }
681
682   Pathname ZConfig::vendorPath() const
683   {
684     return ( _pimpl->cfg_vendor_path.empty()
685         ? (configPath()/"vendors.d") : _pimpl->cfg_vendor_path );
686   }
687
688   Pathname ZConfig::locksFile() const
689   {
690     return ( _pimpl->locks_file.empty()
691         ? (configPath()/"locks") : _pimpl->locks_file );
692   }
693
694   ///////////////////////////////////////////////////////////////////
695
696   bool ZConfig::repo_add_probe() const
697   {
698     return _pimpl->repo_add_probe;
699   }
700
701   unsigned ZConfig::repo_refresh_delay() const
702   {
703     return _pimpl->repo_refresh_delay;
704   }
705
706   bool ZConfig::repoLabelIsAlias() const
707   { return _pimpl->repoLabelIsAlias; }
708
709   void ZConfig::repoLabelIsAlias( bool yesno_r )
710   { _pimpl->repoLabelIsAlias = yesno_r; }
711
712   bool ZConfig::download_use_deltarpm() const
713   { return _pimpl->download_use_deltarpm; }
714
715   bool ZConfig::download_use_deltarpm_always() const
716   { return download_use_deltarpm() && _pimpl->download_use_deltarpm_always; }
717
718   bool ZConfig::download_media_prefer_download() const
719   { return _pimpl->download_media_prefer_download; }
720
721   void ZConfig::set_download_media_prefer_download( bool yesno_r )
722   { _pimpl->download_media_prefer_download.set( yesno_r ); }
723
724   void ZConfig::set_default_download_media_prefer_download()
725   { _pimpl->download_media_prefer_download.restoreToDefault(); }
726
727   long ZConfig::download_max_concurrent_connections() const
728   { return _pimpl->download_max_concurrent_connections; }
729
730   long ZConfig::download_min_download_speed() const
731   { return _pimpl->download_min_download_speed; }
732
733   long ZConfig::download_max_download_speed() const
734   { return _pimpl->download_max_download_speed; }
735
736   long ZConfig::download_max_silent_tries() const
737   { return _pimpl->download_max_silent_tries; }
738
739   DownloadMode ZConfig::commit_downloadMode() const
740   { return _pimpl->commit_downloadMode; }
741
742   bool ZConfig::solver_onlyRequires() const
743   { return _pimpl->solver_onlyRequires; }
744
745   bool ZConfig::solver_allowVendorChange() const
746   { return _pimpl->solver_allowVendorChange; }
747
748   bool ZConfig::solver_cleandepsOnRemove() const
749   { return _pimpl->solver_cleandepsOnRemove; }
750
751   Pathname ZConfig::solver_checkSystemFile() const
752   { return ( _pimpl->solver_checkSystemFile.empty()
753       ? (configPath()/"systemCheck") : _pimpl->solver_checkSystemFile ); }
754
755   unsigned ZConfig::solver_upgradeTestcasesToKeep() const
756   { return _pimpl->solver_upgradeTestcasesToKeep; }
757
758   bool ZConfig::solverUpgradeRemoveDroppedPackages() const              { return _pimpl->solverUpgradeRemoveDroppedPackages; }
759   void ZConfig::setSolverUpgradeRemoveDroppedPackages( bool val_r )     { _pimpl->solverUpgradeRemoveDroppedPackages.set( val_r ); }
760   void ZConfig::resetSolverUpgradeRemoveDroppedPackages()               { _pimpl->solverUpgradeRemoveDroppedPackages.restoreToDefault(); }
761
762   const std::set<std::string> & ZConfig::multiversionSpec() const       { return _pimpl->multiversion; }
763   void ZConfig::addMultiversionSpec( const std::string & name_r )       { _pimpl->multiversion.insert( name_r ); }
764   void ZConfig::removeMultiversionSpec( const std::string & name_r )    { _pimpl->multiversion.erase( name_r ); }
765
766   bool ZConfig::apply_locks_file() const
767   { return _pimpl->apply_locks_file; }
768
769   Pathname ZConfig::update_dataPath() const
770   {
771     return ( _pimpl->update_data_path.empty()
772         ? Pathname("/var/adm") : _pimpl->update_data_path );
773   }
774
775   Pathname ZConfig::update_messagesPath() const
776   {
777     return ( _pimpl->update_messages_path.empty()
778              ? Pathname(update_dataPath()/"update-messages") : _pimpl->update_messages_path );
779   }
780
781   Pathname ZConfig::update_scriptsPath() const
782   {
783     return ( _pimpl->update_scripts_path.empty()
784              ? Pathname(update_dataPath()/"update-scripts") : _pimpl->update_scripts_path );
785   }
786
787   std::string ZConfig::updateMessagesNotify() const
788   { return _pimpl->updateMessagesNotify; }
789
790   void ZConfig::setUpdateMessagesNotify( const std::string & val_r )
791   { _pimpl->updateMessagesNotify.set( val_r ); }
792
793   void ZConfig::resetUpdateMessagesNotify()
794   { _pimpl->updateMessagesNotify.restoreToDefault(); }
795
796   ///////////////////////////////////////////////////////////////////
797
798   target::rpm::RpmInstFlags ZConfig::rpmInstallFlags() const
799   { return _pimpl->rpmInstallFlags; }
800
801
802   Pathname ZConfig::historyLogFile() const
803   {
804     return ( _pimpl->history_log_path.empty() ?
805         Pathname("/var/log/zypp/history") : _pimpl->history_log_path );
806   }
807
808
809   Pathname ZConfig::credentialsGlobalDir() const
810   {
811     return ( _pimpl->credentials_global_dir_path.empty() ?
812         Pathname("/etc/zypp/credentials.d") : _pimpl->credentials_global_dir_path );
813   }
814
815   Pathname ZConfig::credentialsGlobalFile() const
816   {
817     return ( _pimpl->credentials_global_file_path.empty() ?
818         Pathname("/etc/zypp/credentials.cat") : _pimpl->credentials_global_file_path );
819   }
820
821   ///////////////////////////////////////////////////////////////////
822
823   std::string ZConfig::distroverpkg() const
824   { return "redhat-release"; }
825
826   ///////////////////////////////////////////////////////////////////
827
828   Pathname ZConfig::pluginsPath() const
829   { return _pimpl->pluginsPath.get(); }
830
831   ///////////////////////////////////////////////////////////////////
832
833   std::ostream & ZConfig::about( std::ostream & str ) const
834   {
835     str << "libzypp: " << VERSION << " built " << __DATE__ << " " <<  __TIME__ << endl;
836
837     str << "libsolv: " << sat_version;
838     if ( ::strcmp( sat_version, LIBSOLV_VERSION_STRING ) )
839       str << " (built against " << LIBSOLV_VERSION_STRING << ")";
840     str << endl;
841
842     str << "zypp.conf: '" << _pimpl->_parsedZyppConf << "'" << endl;
843     str << "TextLocale: '" << textLocale() << "' (" << defaultTextLocale() << ")" << endl;
844     str << "SystemArchitecture: '" << systemArchitecture() << "' (" << defaultSystemArchitecture() << ")" << endl;
845     return str;
846   }
847
848   /////////////////////////////////////////////////////////////////
849 } // namespace zypp
850 ///////////////////////////////////////////////////////////////////