libzypp  16.22.9
ZConfig.cc
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 extern "C"
13 {
14 #include <features.h>
15 #include <sys/utsname.h>
16 #if __GLIBC_PREREQ (2,16)
17 #include <sys/auxv.h> // getauxval for PPC64P7 detection
18 #endif
19 #include <unistd.h>
20 #include <solv/solvversion.h>
21 }
22 #include <iostream>
23 #include <fstream>
24 #include "zypp/base/LogTools.h"
25 #include "zypp/base/IOStream.h"
26 #include "zypp/base/InputStream.h"
27 #include "zypp/base/String.h"
28 #include "zypp/base/Regex.h"
29 
30 #include "zypp/ZConfig.h"
31 #include "zypp/ZYppFactory.h"
32 #include "zypp/PathInfo.h"
33 #include "zypp/parser/IniDict.h"
34 
35 #include "zypp/sat/Pool.h"
37 
38 using namespace std;
39 using namespace zypp::filesystem;
40 using namespace zypp::parser;
41 
42 #undef ZYPP_BASE_LOGGER_LOGGROUP
43 #define ZYPP_BASE_LOGGER_LOGGROUP "zconfig"
44 
46 namespace zypp
47 {
48 
57  namespace
59  {
60 
63  Arch _autodetectSystemArchitecture()
64  {
65  struct ::utsname buf;
66  if ( ::uname( &buf ) < 0 )
67  {
68  ERR << "Can't determine system architecture" << endl;
69  return Arch_noarch;
70  }
71 
72  Arch architecture( buf.machine );
73  MIL << "Uname architecture is '" << buf.machine << "'" << endl;
74 
75  if ( architecture == Arch_i686 )
76  {
77  // some CPUs report i686 but dont implement cx8 and cmov
78  // check for both flags in /proc/cpuinfo and downgrade
79  // to i586 if either is missing (cf bug #18885)
80  std::ifstream cpuinfo( "/proc/cpuinfo" );
81  if ( cpuinfo )
82  {
83  for( iostr::EachLine in( cpuinfo ); in; in.next() )
84  {
85  if ( str::hasPrefix( *in, "flags" ) )
86  {
87  if ( in->find( "cx8" ) == std::string::npos
88  || in->find( "cmov" ) == std::string::npos )
89  {
90  architecture = Arch_i586;
91  WAR << "CPU lacks 'cx8' or 'cmov': architecture downgraded to '" << architecture << "'" << endl;
92  }
93  break;
94  }
95  }
96  }
97  else
98  {
99  ERR << "Cant open " << PathInfo("/proc/cpuinfo") << endl;
100  }
101  }
102  else if ( architecture == Arch_sparc || architecture == Arch_sparc64 )
103  {
104  // Check for sun4[vum] to get the real arch. (bug #566291)
105  std::ifstream cpuinfo( "/proc/cpuinfo" );
106  if ( cpuinfo )
107  {
108  for( iostr::EachLine in( cpuinfo ); in; in.next() )
109  {
110  if ( str::hasPrefix( *in, "type" ) )
111  {
112  if ( in->find( "sun4v" ) != std::string::npos )
113  {
114  architecture = ( architecture == Arch_sparc64 ? Arch_sparc64v : Arch_sparcv9v );
115  WAR << "CPU has 'sun4v': architecture upgraded to '" << architecture << "'" << endl;
116  }
117  else if ( in->find( "sun4u" ) != std::string::npos )
118  {
119  architecture = ( architecture == Arch_sparc64 ? Arch_sparc64 : Arch_sparcv9 );
120  WAR << "CPU has 'sun4u': architecture upgraded to '" << architecture << "'" << endl;
121  }
122  else if ( in->find( "sun4m" ) != std::string::npos )
123  {
124  architecture = Arch_sparcv8;
125  WAR << "CPU has 'sun4m': architecture upgraded to '" << architecture << "'" << endl;
126  }
127  break;
128  }
129  }
130  }
131  else
132  {
133  ERR << "Cant open " << PathInfo("/proc/cpuinfo") << endl;
134  }
135  }
136  else if ( architecture == Arch_armv7l || architecture == Arch_armv6l )
137  {
138  std::ifstream platform( "/etc/rpm/platform" );
139  if (platform)
140  {
141  for( iostr::EachLine in( platform ); in; in.next() )
142  {
143  if ( str::hasPrefix( *in, "armv7hl-" ) )
144  {
145  architecture = Arch_armv7hl;
146  WAR << "/etc/rpm/platform contains armv7hl-: architecture upgraded to '" << architecture << "'" << endl;
147  break;
148  }
149  if ( str::hasPrefix( *in, "armv6hl-" ) )
150  {
151  architecture = Arch_armv6hl;
152  WAR << "/etc/rpm/platform contains armv6hl-: architecture upgraded to '" << architecture << "'" << endl;
153  break;
154  }
155  }
156  }
157  }
158 #if __GLIBC_PREREQ (2,16)
159  else if ( architecture == Arch_ppc64 )
160  {
161  const char * platform = (const char *)getauxval( AT_PLATFORM );
162  int powerlvl;
163  if ( platform && sscanf( platform, "power%d", &powerlvl ) == 1 && powerlvl > 6 )
164  architecture = Arch_ppc64p7;
165  }
166 #endif
167  return architecture;
168  }
169 
187  Locale _autodetectTextLocale()
188  {
189  Locale ret( Locale::enCode );
190  const char * envlist[] = { "LC_ALL", "LC_MESSAGES", "LANG", NULL };
191  for ( const char ** envvar = envlist; *envvar; ++envvar )
192  {
193  const char * envlang = getenv( *envvar );
194  if ( envlang )
195  {
196  std::string envstr( envlang );
197  if ( envstr != "POSIX" && envstr != "C" )
198  {
199  Locale lang( envstr );
200  if ( lang )
201  {
202  MIL << "Found " << *envvar << "=" << envstr << endl;
203  ret = lang;
204  break;
205  }
206  }
207  }
208  }
209  MIL << "Default text locale is '" << ret << "'" << endl;
210 #warning HACK AROUND BOOST_TEST_CATCH_SYSTEM_ERRORS
211  setenv( "BOOST_TEST_CATCH_SYSTEM_ERRORS", "no", 1 );
212  return ret;
213  }
214 
215 
216  inline Pathname _autodetectSystemRoot()
217  {
218  Target_Ptr target( getZYpp()->getTarget() );
219  return target ? target->root() : Pathname();
220  }
221 
222  inline Pathname _autodetectZyppConfPath()
223  {
224  const char *env_confpath = getenv( "ZYPP_CONF" );
225  return env_confpath ? env_confpath : "/etc/zypp/zypp.conf";
226  }
227 
229  } // namespace zypp
231 
233  template<class Tp>
234  struct Option
235  {
236  typedef Tp value_type;
237 
239  Option( const value_type & initial_r )
240  : _val( initial_r )
241  {}
242 
244  const value_type & get() const
245  { return _val; }
246 
248  operator const value_type &() const
249  { return _val; }
250 
252  void set( const value_type & newval_r )
253  { _val = newval_r; }
254 
256  value_type & ref()
257  { return _val; }
258 
259  private:
260  value_type _val;
261  };
262 
264  template<class Tp>
265  struct DefaultOption : public Option<Tp>
266  {
267  typedef Tp value_type;
269 
270  DefaultOption( const value_type & initial_r )
271  : Option<Tp>( initial_r ), _default( initial_r )
272  {}
273 
276  { this->set( _default.get() ); }
277 
279  void restoreToDefault( const value_type & newval_r )
280  { setDefault( newval_r ); restoreToDefault(); }
281 
283  const value_type & getDefault() const
284  { return _default.get(); }
285 
287  void setDefault( const value_type & newval_r )
288  { _default.set( newval_r ); }
289 
290  private:
291  option_type _default;
292  };
293 
295  //
296  // CLASS NAME : ZConfig::Impl
297  //
304  {
305  typedef std::set<std::string> MultiversionSpec;
306 
307  public:
308  Impl( const Pathname & override_r = Pathname() )
309  : _parsedZyppConf ( override_r )
310  , cfg_arch ( defaultSystemArchitecture() )
311  , cfg_textLocale ( defaultTextLocale() )
312  , updateMessagesNotify ( "" )
313  , repo_add_probe ( false )
314  , repo_refresh_delay ( 10 )
315  , repoLabelIsAlias ( false )
316  , download_use_deltarpm ( true )
317  , download_use_deltarpm_always ( false )
318  , download_media_prefer_download( true )
319  , download_mediaMountdir ( "/var/adm/mount" )
320  , download_max_concurrent_connections( 5 )
321  , download_min_download_speed ( 0 )
322  , download_max_download_speed ( 0 )
323  , download_max_silent_tries ( 5 )
324  , download_connect_timeout ( 60 )
325  , download_transfer_timeout ( 180 )
326  , commit_downloadMode ( DownloadDefault )
327  , gpgCheck ( true )
328  , repoGpgCheck ( indeterminate )
329  , pkgGpgCheck ( indeterminate )
330  , solver_focus ( ResolverFocus::Default )
331  , solver_onlyRequires ( false )
332  , solver_allowVendorChange ( false )
333  , solver_dupAllowDowngrade ( true )
334  , solver_dupAllowNameChange ( true )
335  , solver_dupAllowArchChange ( true )
336  , solver_dupAllowVendorChange ( true )
337  , solver_cleandepsOnRemove ( false )
338  , solver_upgradeTestcasesToKeep ( 2 )
339  , solverUpgradeRemoveDroppedPackages( true )
340  , apply_locks_file ( true )
341  , pluginsPath ( "/usr/lib/zypp/plugins" )
342  {
343  MIL << "libzypp: " << VERSION << endl;
344  // override_r has higest prio
345  // ZYPP_CONF might override /etc/zypp/zypp.conf
346  if ( _parsedZyppConf.empty() )
347  {
348  _parsedZyppConf = _autodetectZyppConfPath();
349  }
350  else
351  {
352  // Inject this into ZConfig. Be shure this is
353  // allocated via new. See: reconfigureZConfig
354  INT << "Reconfigure to " << _parsedZyppConf << endl;
355  ZConfig::instance()._pimpl.reset( this );
356  }
357  if ( PathInfo(_parsedZyppConf).isExist() )
358  {
359  parser::IniDict dict( _parsedZyppConf );
361  sit != dict.sectionsEnd();
362  ++sit )
363  {
364  string section(*sit);
365  //MIL << section << endl;
366  for ( IniDict::entry_const_iterator it = dict.entriesBegin(*sit);
367  it != dict.entriesEnd(*sit);
368  ++it )
369  {
370  string entry(it->first);
371  string value(it->second);
372  //DBG << (*it).first << "=" << (*it).second << endl;
373  if ( section == "main" )
374  {
375  if ( entry == "arch" )
376  {
377  Arch carch( value );
378  if ( carch != cfg_arch )
379  {
380  WAR << "Overriding system architecture (" << cfg_arch << "): " << carch << endl;
381  cfg_arch = carch;
382  }
383  }
384  else if ( entry == "cachedir" )
385  {
386  cfg_cache_path = Pathname(value);
387  }
388  else if ( entry == "metadatadir" )
389  {
390  cfg_metadata_path = Pathname(value);
391  }
392  else if ( entry == "solvfilesdir" )
393  {
394  cfg_solvfiles_path = Pathname(value);
395  }
396  else if ( entry == "packagesdir" )
397  {
398  cfg_packages_path = Pathname(value);
399  }
400  else if ( entry == "configdir" )
401  {
402  cfg_config_path = Pathname(value);
403  }
404  else if ( entry == "reposdir" )
405  {
406  cfg_known_repos_path = Pathname(value);
407  }
408  else if ( entry == "servicesdir" )
409  {
410  cfg_known_services_path = Pathname(value);
411  }
412  else if ( entry == "varsdir" )
413  {
414  cfg_vars_path = Pathname(value);
415  }
416  else if ( entry == "repo.add.probe" )
417  {
418  repo_add_probe = str::strToBool( value, repo_add_probe );
419  }
420  else if ( entry == "repo.refresh.delay" )
421  {
422  str::strtonum(value, repo_refresh_delay);
423  }
424  else if ( entry == "repo.refresh.locales" )
425  {
426  std::vector<std::string> tmp;
427  str::split( value, back_inserter( tmp ), ", \t" );
428 
429  boost::function<Locale(const std::string &)> transform(
430  [](const std::string & str_r)->Locale{ return Locale(str_r); }
431  );
432  repoRefreshLocales.insert( make_transform_iterator( tmp.begin(), transform ),
433  make_transform_iterator( tmp.end(), transform ) );
434  }
435  else if ( entry == "download.use_deltarpm" )
436  {
437  download_use_deltarpm = str::strToBool( value, download_use_deltarpm );
438  }
439  else if ( entry == "download.use_deltarpm.always" )
440  {
441  download_use_deltarpm_always = str::strToBool( value, download_use_deltarpm_always );
442  }
443  else if ( entry == "download.media_preference" )
444  {
445  download_media_prefer_download.restoreToDefault( str::compareCI( value, "volatile" ) != 0 );
446  }
447 
448  else if ( entry == "download.media_mountdir" )
449  {
450  download_mediaMountdir.restoreToDefault( Pathname(value) );
451  }
452 
453  else if ( entry == "download.max_concurrent_connections" )
454  {
455  str::strtonum(value, download_max_concurrent_connections);
456  }
457  else if ( entry == "download.min_download_speed" )
458  {
459  str::strtonum(value, download_min_download_speed);
460  }
461  else if ( entry == "download.max_download_speed" )
462  {
463  str::strtonum(value, download_max_download_speed);
464  }
465  else if ( entry == "download.max_silent_tries" )
466  {
467  str::strtonum(value, download_max_silent_tries);
468  }
469  else if ( entry == "download.connect_timeout" )
470  {
471  str::strtonum(value, download_connect_timeout);
472  if ( download_connect_timeout < 0 )
473  download_connect_timeout = 0;
474  }
475  else if ( entry == "download.transfer_timeout" )
476  {
477  str::strtonum(value, download_transfer_timeout);
478  if ( download_transfer_timeout < 0 ) download_transfer_timeout = 0;
479  else if ( download_transfer_timeout > 3600 ) download_transfer_timeout = 3600;
480  }
481  else if ( entry == "commit.downloadMode" )
482  {
483  commit_downloadMode.set( deserializeDownloadMode( value ) );
484  }
485  else if ( entry == "gpgcheck" )
486  {
487  gpgCheck.restoreToDefault( str::strToBool( value, gpgCheck ) );
488  }
489  else if ( entry == "repo_gpgcheck" )
490  {
491  repoGpgCheck.restoreToDefault( str::strToTriBool( value ) );
492  }
493  else if ( entry == "pkg_gpgcheck" )
494  {
495  pkgGpgCheck.restoreToDefault( str::strToTriBool( value ) );
496  }
497  else if ( entry == "vendordir" )
498  {
499  cfg_vendor_path = Pathname(value);
500  }
501  else if ( entry == "multiversiondir" )
502  {
503  cfg_multiversion_path = Pathname(value);
504  }
505  else if ( entry == "solver.focus" )
506  {
507  fromString( value, solver_focus );
508  }
509  else if ( entry == "solver.onlyRequires" )
510  {
511  solver_onlyRequires.set( str::strToBool( value, solver_onlyRequires ) );
512  }
513  else if ( entry == "solver.allowVendorChange" )
514  {
515  solver_allowVendorChange.set( str::strToBool( value, solver_allowVendorChange ) );
516  }
517  else if ( entry == "solver.dupAllowDowngrade" )
518  {
519  solver_dupAllowDowngrade.set( str::strToBool( value, solver_dupAllowDowngrade ) );
520  }
521  else if ( entry == "solver.dupAllowNameChange" )
522  {
523  solver_dupAllowNameChange.set( str::strToBool( value, solver_dupAllowNameChange ) );
524  }
525  else if ( entry == "solver.dupAllowArchChange" )
526  {
527  solver_dupAllowArchChange.set( str::strToBool( value, solver_dupAllowArchChange ) );
528  }
529  else if ( entry == "solver.dupAllowVendorChange" )
530  {
531  solver_dupAllowVendorChange.set( str::strToBool( value, solver_dupAllowVendorChange ) );
532  }
533  else if ( entry == "solver.cleandepsOnRemove" )
534  {
535  solver_cleandepsOnRemove.set( str::strToBool( value, solver_cleandepsOnRemove ) );
536  }
537  else if ( entry == "solver.upgradeTestcasesToKeep" )
538  {
539  solver_upgradeTestcasesToKeep.set( str::strtonum<unsigned>( value ) );
540  }
541  else if ( entry == "solver.upgradeRemoveDroppedPackages" )
542  {
543  solverUpgradeRemoveDroppedPackages.restoreToDefault( str::strToBool( value, solverUpgradeRemoveDroppedPackages.getDefault() ) );
544  }
545  else if ( entry == "solver.checkSystemFile" )
546  {
547  solver_checkSystemFile = Pathname(value);
548  }
549  else if ( entry == "solver.checkSystemFileDir" )
550  {
551  solver_checkSystemFileDir = Pathname(value);
552  }
553  else if ( entry == "multiversion" )
554  {
555  MultiversionSpec & defSpec( _multiversionMap.getDefaultSpec() );
556  str::splitEscaped( value, std::inserter( defSpec, defSpec.end() ), ", \t" );
557  }
558  else if ( entry == "locksfile.path" )
559  {
560  locks_file = Pathname(value);
561  }
562  else if ( entry == "locksfile.apply" )
563  {
564  apply_locks_file = str::strToBool( value, apply_locks_file );
565  }
566  else if ( entry == "update.datadir" )
567  {
568  update_data_path = Pathname(value);
569  }
570  else if ( entry == "update.scriptsdir" )
571  {
572  update_scripts_path = Pathname(value);
573  }
574  else if ( entry == "update.messagessdir" )
575  {
576  update_messages_path = Pathname(value);
577  }
578  else if ( entry == "update.messages.notify" )
579  {
580  updateMessagesNotify.set( value );
581  }
582  else if ( entry == "rpm.install.excludedocs" )
583  {
584  rpmInstallFlags.setFlag( target::rpm::RPMINST_EXCLUDEDOCS,
585  str::strToBool( value, false ) );
586  }
587  else if ( entry == "history.logfile" )
588  {
589  history_log_path = Pathname(value);
590  }
591  else if ( entry == "credentials.global.dir" )
592  {
593  credentials_global_dir_path = Pathname(value);
594  }
595  else if ( entry == "credentials.global.file" )
596  {
597  credentials_global_file_path = Pathname(value);
598  }
599  }
600  }
601  }
602  //
603 
604  }
605  else
606  {
607  MIL << _parsedZyppConf << " not found, using defaults instead." << endl;
608  _parsedZyppConf = _parsedZyppConf.extend( " (NOT FOUND)" );
609  }
610 
611  // legacy:
612  if ( getenv( "ZYPP_TESTSUITE_FAKE_ARCH" ) )
613  {
614  Arch carch( getenv( "ZYPP_TESTSUITE_FAKE_ARCH" ) );
615  if ( carch != cfg_arch )
616  {
617  WAR << "ZYPP_TESTSUITE_FAKE_ARCH: Overriding system architecture (" << cfg_arch << "): " << carch << endl;
618  cfg_arch = carch;
619  }
620  }
621  MIL << "ZConfig singleton created." << endl;
622  }
623 
625  {}
626 
627  public:
629  Pathname _parsedZyppConf;
630 
633 
634  Pathname cfg_cache_path;
638 
639  Pathname cfg_config_path;
642  Pathname cfg_vars_path;
643 
644  Pathname cfg_vendor_path;
646  Pathname locks_file;
647 
652 
657 
662 
669 
671 
675 
686 
689 
690  MultiversionSpec & multiversion() { return getMultiversion(); }
691  const MultiversionSpec & multiversion() const { return getMultiversion(); }
692 
694 
695  target::rpm::RpmInstFlags rpmInstallFlags;
696 
700 
701  std::string userData;
702 
704 
705  private:
706  // HACK for bnc#906096: let pool re-evaluate multiversion spec
707  // if target root changes. ZConfig returns data sensitive to
708  // current target root.
709  // TODO Actually we'd need to scan the target systems zypp.conf and
710  // overlay all system specific values.
712  {
713  typedef std::map<Pathname,MultiversionSpec> SpecMap;
714 
715  MultiversionSpec & getSpec( Pathname root_r, const Impl & zConfImpl_r ) // from system at root
716  {
717  // _specMap[] - the plain zypp.conf value
718  // _specMap[/] - combine [] and multiversion.d scan
719  // _specMap[root] - scan root/zypp.conf and root/multiversion.d
720 
721  if ( root_r.empty() )
722  root_r = "/";
723  bool cacheHit = _specMap.count( root_r );
724  MultiversionSpec & ret( _specMap[root_r] ); // creates new entry on the fly
725 
726  if ( ! cacheHit )
727  {
728  if ( root_r == "/" )
729  ret.swap( _specMap[Pathname()] ); // original zypp.conf
730  else
731  scanConfAt( root_r, ret, zConfImpl_r ); // scan zypp.conf at root_r
732  scanDirAt( root_r, ret, zConfImpl_r ); // add multiversion.d at root_r
733  using zypp::operator<<;
734  MIL << "MultiversionSpec '" << root_r << "' = " << ret << endl;
735  }
736  return ret;
737  }
738 
739  MultiversionSpec & getDefaultSpec() // Spec from zypp.conf parsing; called before any getSpec
740  { return _specMap[Pathname()]; }
741 
742  private:
743  void scanConfAt( const Pathname root_r, MultiversionSpec & spec_r, const Impl & zConfImpl_r )
744  {
745  static const str::regex rx( "^multiversion *= *(.*)" );
746  str::smatch what;
747  iostr::simpleParseFile( InputStream( Pathname::assertprefix( root_r, _autodetectZyppConfPath() ) ),
748  [&]( int num_r, std::string line_r )->bool
749  {
750  if ( line_r[0] == 'm' && str::regex_match( line_r, what, rx ) )
751  {
752  str::splitEscaped( what[1], std::inserter( spec_r, spec_r.end() ), ", \t" );
753  return false; // stop after match
754  }
755  return true;
756  } );
757  }
758 
759  void scanDirAt( const Pathname root_r, MultiversionSpec & spec_r, const Impl & zConfImpl_r )
760  {
761  // NOTE: Actually we'd need to scan and use the root_r! zypp.conf values.
762  Pathname multiversionDir( zConfImpl_r.cfg_multiversion_path );
763  if ( multiversionDir.empty() )
764  multiversionDir = ( zConfImpl_r.cfg_config_path.empty()
765  ? Pathname("/etc/zypp")
766  : zConfImpl_r.cfg_config_path ) / "multiversion.d";
767 
768  filesystem::dirForEach( Pathname::assertprefix( root_r, multiversionDir ),
769  [&spec_r]( const Pathname & dir_r, const char *const & name_r )->bool
770  {
771  MIL << "Parsing " << dir_r/name_r << endl;
772  iostr::simpleParseFile( InputStream( dir_r/name_r ),
773  [&spec_r]( int num_r, std::string line_r )->bool
774  {
775  DBG << " found " << line_r << endl;
776  spec_r.insert( std::move(line_r) );
777  return true;
778  } );
779  return true;
780  } );
781  }
782 
783  private:
784  SpecMap _specMap;
785  };
786 
787  MultiversionSpec & getMultiversion() const
788  { return _multiversionMap.getSpec( _autodetectSystemRoot(), *this ); }
789 
791  };
793 
794  // Backdoor to redirect ZConfig from within the running
795  // TEST-application. HANDLE WITH CARE!
796  void reconfigureZConfig( const Pathname & override_r )
797  {
798  // ctor puts itself unter smart pointer control.
799  new ZConfig::Impl( override_r );
800  }
801 
803  //
804  // METHOD NAME : ZConfig::instance
805  // METHOD TYPE : ZConfig &
806  //
807  ZConfig & ZConfig::instance()
808  {
809  static ZConfig _instance; // The singleton
810  return _instance;
811  }
812 
814  //
815  // METHOD NAME : ZConfig::ZConfig
816  // METHOD TYPE : Ctor
817  //
818  ZConfig::ZConfig()
819  : _pimpl( new Impl )
820  {
821  about( MIL );
822  }
823 
825  //
826  // METHOD NAME : ZConfig::~ZConfig
827  // METHOD TYPE : Dtor
828  //
830  {}
831 
832  Pathname ZConfig::systemRoot() const
833  { return _autodetectSystemRoot(); }
834 
836  //
837  // system architecture
838  //
840 
842  {
843  static Arch _val( _autodetectSystemArchitecture() );
844  return _val;
845  }
846 
848  { return _pimpl->cfg_arch; }
849 
850  void ZConfig::setSystemArchitecture( const Arch & arch_r )
851  {
852  if ( arch_r != _pimpl->cfg_arch )
853  {
854  WAR << "Overriding system architecture (" << _pimpl->cfg_arch << "): " << arch_r << endl;
855  _pimpl->cfg_arch = arch_r;
856  }
857  }
858 
860  //
861  // text locale
862  //
864 
866  {
867  static Locale _val( _autodetectTextLocale() );
868  return _val;
869  }
870 
872  { return _pimpl->cfg_textLocale; }
873 
874  void ZConfig::setTextLocale( const Locale & locale_r )
875  {
876  if ( locale_r != _pimpl->cfg_textLocale )
877  {
878  WAR << "Overriding text locale (" << _pimpl->cfg_textLocale << "): " << locale_r << endl;
879  _pimpl->cfg_textLocale = locale_r;
880 #warning prefer signal
881  sat::Pool::instance().setTextLocale( locale_r );
882  }
883  }
884 
886  // user data
888 
889  bool ZConfig::hasUserData() const
890  { return !_pimpl->userData.empty(); }
891 
892  std::string ZConfig::userData() const
893  { return _pimpl->userData; }
894 
895  bool ZConfig::setUserData( const std::string & str_r )
896  {
897  for_( ch, str_r.begin(), str_r.end() )
898  {
899  if ( *ch < ' ' && *ch != '\t' )
900  {
901  ERR << "New user data string rejectded: char " << (int)*ch << " at position " << (ch - str_r.begin()) << endl;
902  return false;
903  }
904  }
905  MIL << "Set user data string to '" << str_r << "'" << endl;
906  _pimpl->userData = str_r;
907  return true;
908  }
909 
911 
912  Pathname ZConfig::repoCachePath() const
913  {
914  return ( _pimpl->cfg_cache_path.empty()
915  ? Pathname("/var/cache/zypp") : _pimpl->cfg_cache_path );
916  }
917 
918  Pathname ZConfig::repoMetadataPath() const
919  {
920  return ( _pimpl->cfg_metadata_path.empty()
921  ? (repoCachePath()/"raw") : _pimpl->cfg_metadata_path );
922  }
923 
924  Pathname ZConfig::repoSolvfilesPath() const
925  {
926  return ( _pimpl->cfg_solvfiles_path.empty()
927  ? (repoCachePath()/"solv") : _pimpl->cfg_solvfiles_path );
928  }
929 
930  Pathname ZConfig::repoPackagesPath() const
931  {
932  return ( _pimpl->cfg_packages_path.empty()
933  ? (repoCachePath()/"packages") : _pimpl->cfg_packages_path );
934  }
935 
937 
938  Pathname ZConfig::configPath() const
939  {
940  return ( _pimpl->cfg_config_path.empty()
941  ? Pathname("/etc/zypp") : _pimpl->cfg_config_path );
942  }
943 
944  Pathname ZConfig::knownReposPath() const
945  {
946  return ( _pimpl->cfg_known_repos_path.empty()
947  ? (configPath()/"repos.d") : _pimpl->cfg_known_repos_path );
948  }
949 
950  Pathname ZConfig::knownServicesPath() const
951  {
952  return ( _pimpl->cfg_known_services_path.empty()
953  ? (configPath()/"services.d") : _pimpl->cfg_known_services_path );
954  }
955 
956  Pathname ZConfig::varsPath() const
957  {
958  return ( _pimpl->cfg_vars_path.empty()
959  ? (configPath()/"vars.d") : _pimpl->cfg_vars_path );
960  }
961 
962  Pathname ZConfig::vendorPath() const
963  {
964  return ( _pimpl->cfg_vendor_path.empty()
965  ? (configPath()/"vendors.d") : _pimpl->cfg_vendor_path );
966  }
967 
968  Pathname ZConfig::locksFile() const
969  {
970  return ( _pimpl->locks_file.empty()
971  ? (configPath()/"locks") : _pimpl->locks_file );
972  }
973 
975 
977  { return _pimpl->repo_add_probe; }
978 
980  { return _pimpl->repo_refresh_delay; }
981 
983  { return _pimpl->repoRefreshLocales.empty() ? Target::requestedLocales("") :_pimpl->repoRefreshLocales; }
984 
986  { return _pimpl->repoLabelIsAlias; }
987 
988  void ZConfig::repoLabelIsAlias( bool yesno_r )
989  { _pimpl->repoLabelIsAlias = yesno_r; }
990 
992  { return _pimpl->download_use_deltarpm; }
993 
995  { return download_use_deltarpm() && _pimpl->download_use_deltarpm_always; }
996 
998  { return _pimpl->download_media_prefer_download; }
999 
1001  { _pimpl->download_media_prefer_download.set( yesno_r ); }
1002 
1004  { _pimpl->download_media_prefer_download.restoreToDefault(); }
1005 
1007  { return _pimpl->download_max_concurrent_connections; }
1008 
1010  { return _pimpl->download_min_download_speed; }
1011 
1013  { return _pimpl->download_max_download_speed; }
1014 
1016  { return _pimpl->download_max_silent_tries; }
1017 
1019  { return _pimpl->download_connect_timeout; }
1020 
1022  { return _pimpl->download_transfer_timeout; }
1023 
1024  Pathname ZConfig::download_mediaMountdir() const { return _pimpl->download_mediaMountdir; }
1025  void ZConfig::set_download_mediaMountdir( Pathname newval_r ) { _pimpl->download_mediaMountdir.set( std::move(newval_r) ); }
1026  void ZConfig::set_default_download_mediaMountdir() { _pimpl->download_mediaMountdir.restoreToDefault(); }
1027 
1029  { return _pimpl->commit_downloadMode; }
1030 
1031 
1032  bool ZConfig::gpgCheck() const { return _pimpl->gpgCheck; }
1033  TriBool ZConfig::repoGpgCheck() const { return _pimpl->repoGpgCheck; }
1034  TriBool ZConfig::pkgGpgCheck() const { return _pimpl->pkgGpgCheck; }
1035 
1036  void ZConfig::setGpgCheck( bool val_r ) { _pimpl->gpgCheck.set( val_r ); }
1037  void ZConfig::setRepoGpgCheck( TriBool val_r ) { _pimpl->repoGpgCheck.set( val_r ); }
1038  void ZConfig::setPkgGpgCheck( TriBool val_r ) { _pimpl->pkgGpgCheck.set( val_r ); }
1039 
1040  void ZConfig::resetGpgCheck() { _pimpl->gpgCheck.restoreToDefault(); }
1041  void ZConfig::resetRepoGpgCheck() { _pimpl->repoGpgCheck.restoreToDefault(); }
1042  void ZConfig::resetPkgGpgCheck() { _pimpl->pkgGpgCheck.restoreToDefault(); }
1043 
1044  ResolverFocus ZConfig::solver_focus() const { return _pimpl->solver_focus; }
1045 
1047  { return _pimpl->solver_onlyRequires; }
1048 
1050  { return _pimpl->solver_allowVendorChange; }
1051 
1052  bool ZConfig::solver_dupAllowDowngrade() const { return _pimpl->solver_dupAllowDowngrade; }
1053  bool ZConfig::solver_dupAllowNameChange() const { return _pimpl->solver_dupAllowNameChange; }
1054  bool ZConfig::solver_dupAllowArchChange() const { return _pimpl->solver_dupAllowArchChange; }
1055  bool ZConfig::solver_dupAllowVendorChange() const { return _pimpl->solver_dupAllowVendorChange; }
1056 
1058  { return _pimpl->solver_cleandepsOnRemove; }
1059 
1061  { return ( _pimpl->solver_checkSystemFile.empty()
1062  ? (configPath()/"systemCheck") : _pimpl->solver_checkSystemFile ); }
1063 
1065  { return ( _pimpl->solver_checkSystemFileDir.empty()
1066  ? (configPath()/"systemCheck.d") : _pimpl->solver_checkSystemFileDir ); }
1067 
1069  { return _pimpl->solver_upgradeTestcasesToKeep; }
1070 
1071  bool ZConfig::solverUpgradeRemoveDroppedPackages() const { return _pimpl->solverUpgradeRemoveDroppedPackages; }
1072  void ZConfig::setSolverUpgradeRemoveDroppedPackages( bool val_r ) { _pimpl->solverUpgradeRemoveDroppedPackages.set( val_r ); }
1073  void ZConfig::resetSolverUpgradeRemoveDroppedPackages() { _pimpl->solverUpgradeRemoveDroppedPackages.restoreToDefault(); }
1074 
1075  namespace
1076  {
1077  inline void sigMultiversionSpecChanged()
1078  {
1080  }
1081  }
1082 
1083  const std::set<std::string> & ZConfig::multiversionSpec() const { return _pimpl->multiversion(); }
1084  void ZConfig::multiversionSpec( std::set<std::string> new_r ) { _pimpl->multiversion().swap( new_r ); sigMultiversionSpecChanged(); }
1085  void ZConfig::clearMultiversionSpec() { _pimpl->multiversion().clear(); sigMultiversionSpecChanged(); }
1086  void ZConfig::addMultiversionSpec( const std::string & name_r ) { _pimpl->multiversion().insert( name_r ); sigMultiversionSpecChanged(); }
1087  void ZConfig::removeMultiversionSpec( const std::string & name_r ) { _pimpl->multiversion().erase( name_r ); sigMultiversionSpecChanged(); }
1088 
1090  { return _pimpl->apply_locks_file; }
1091 
1092  Pathname ZConfig::update_dataPath() const
1093  {
1094  return ( _pimpl->update_data_path.empty()
1095  ? Pathname("/var/adm") : _pimpl->update_data_path );
1096  }
1097 
1099  {
1100  return ( _pimpl->update_messages_path.empty()
1101  ? Pathname(update_dataPath()/"update-messages") : _pimpl->update_messages_path );
1102  }
1103 
1105  {
1106  return ( _pimpl->update_scripts_path.empty()
1107  ? Pathname(update_dataPath()/"update-scripts") : _pimpl->update_scripts_path );
1108  }
1109 
1110  std::string ZConfig::updateMessagesNotify() const
1111  { return _pimpl->updateMessagesNotify; }
1112 
1113  void ZConfig::setUpdateMessagesNotify( const std::string & val_r )
1114  { _pimpl->updateMessagesNotify.set( val_r ); }
1115 
1117  { _pimpl->updateMessagesNotify.restoreToDefault(); }
1118 
1120 
1121  target::rpm::RpmInstFlags ZConfig::rpmInstallFlags() const
1122  { return _pimpl->rpmInstallFlags; }
1123 
1124 
1125  Pathname ZConfig::historyLogFile() const
1126  {
1127  return ( _pimpl->history_log_path.empty() ?
1128  Pathname("/var/log/zypp/history") : _pimpl->history_log_path );
1129  }
1130 
1132  {
1133  return ( _pimpl->credentials_global_dir_path.empty() ?
1134  Pathname("/etc/zypp/credentials.d") : _pimpl->credentials_global_dir_path );
1135  }
1136 
1138  {
1139  return ( _pimpl->credentials_global_file_path.empty() ?
1140  Pathname("/etc/zypp/credentials.cat") : _pimpl->credentials_global_file_path );
1141  }
1142 
1144 
1145  std::string ZConfig::distroverpkg() const
1146  { return "redhat-release"; }
1147 
1149 
1150  Pathname ZConfig::pluginsPath() const
1151  { return _pimpl->pluginsPath.get(); }
1152 
1154 
1155  std::ostream & ZConfig::about( std::ostream & str ) const
1156  {
1157  str << "libzypp: " << VERSION << endl;
1158 
1159  str << "libsolv: " << solv_version;
1160  if ( ::strcmp( solv_version, LIBSOLV_VERSION_STRING ) )
1161  str << " (built against " << LIBSOLV_VERSION_STRING << ")";
1162  str << endl;
1163 
1164  str << "zypp.conf: '" << _pimpl->_parsedZyppConf << "'" << endl;
1165  str << "TextLocale: '" << textLocale() << "' (" << defaultTextLocale() << ")" << endl;
1166  str << "SystemArchitecture: '" << systemArchitecture() << "' (" << defaultSystemArchitecture() << ")" << endl;
1167  return str;
1168  }
1169 
1171 } // namespace zypp
bool solver_dupAllowNameChange() const
DUP tune: Whether to follow package renames upon DUP.
Definition: ZConfig.cc:1053
~ZConfig()
Dtor.
Definition: ZConfig.cc:829
TriBool strToTriBool(const C_Str &str)
Parse str into a bool if it&#39;s a legal true or false string; else indterminate.
Definition: String.cc:91
unsigned splitEscaped(const C_Str &line_r, TOutputIterator result_r, const C_Str &sepchars_r=" \t", bool withEmpty=false)
Split line_r into words with respect to escape delimeters.
Definition: String.h:578
std::map< Pathname, MultiversionSpec > SpecMap
Definition: ZConfig.cc:713
static Locale defaultTextLocale()
The autodetected prefered locale for translated texts.
Definition: ZConfig.cc:865
Mutable option.
Definition: ZConfig.cc:234
#define MIL
Definition: Logger.h:64
Pathname update_scripts_path
Definition: ZConfig.cc:649
Pathname cfg_known_repos_path
Definition: ZConfig.cc:640
int download_transfer_timeout
Definition: ZConfig.cc:668
void setGpgCheck(bool val_r)
Change the value.
Definition: ZConfig.cc:1036
MapKVIteratorTraits< SectionSet >::Key_const_iterator section_const_iterator
Definition: IniDict.h:46
Option< unsigned > solver_upgradeTestcasesToKeep
Definition: ZConfig.cc:684
void setUpdateMessagesNotify(const std::string &val_r)
Set a new command definition (see update.messages.notify in zypp.conf).
Definition: ZConfig.cc:1113
Option< bool > solver_cleandepsOnRemove
Definition: ZConfig.cc:683
TriBool repoGpgCheck() const
Check repo matadata signatures (indeterminate - according to gpgcheck)
Definition: ZConfig.cc:1033
Pathname solver_checkSystemFileDir() const
Directory, which may or may not contain files in which dependencies described which has to be fulfill...
Definition: ZConfig.cc:1064
void setRepoGpgCheck(TriBool val_r)
Change the value.
Definition: ZConfig.cc:1037
Pathname cfg_known_services_path
Definition: ZConfig.cc:641
int download_max_concurrent_connections
Definition: ZConfig.cc:663
Regular expression.
Definition: Regex.h:86
std::ostream & about(std::ostream &str) const
Print some detail about the current libzypp version.
Definition: ZConfig.cc:1155
Pathname update_messages_path
Definition: ZConfig.cc:650
MultiversionSpec & multiversion()
Definition: ZConfig.cc:690
std::string distroverpkg() const
Package telling the "product version" on systems not using /etc/product.d/baseproduct.
Definition: ZConfig.cc:1145
void scanDirAt(const Pathname root_r, MultiversionSpec &spec_r, const Impl &zConfImpl_r)
Definition: ZConfig.cc:759
unsigned solver_upgradeTestcasesToKeep() const
When committing a dist upgrade (e.g.
Definition: ZConfig.cc:1068
void setTextLocale(const Locale &locale_r)
Set the default language for retrieving translated texts.
Definition: Pool.cc:212
void setDefault(const value_type &newval_r)
Set a new default value.
Definition: ZConfig.cc:287
Architecture.
Definition: Arch.h:36
bool download_use_deltarpm
Definition: ZConfig.cc:658
Pathname knownServicesPath() const
Path where the known services .service files are kept (configPath()/services.d).
Definition: ZConfig.cc:950
Pathname vendorPath() const
Directory for equivalent vendor definitions (configPath()/vendors.d)
Definition: ZConfig.cc:962
ResolverFocus
The resolvers general attitude.
Definition: ResolverFocus.h:21
Pathname repoCachePath() const
Path where the caches are kept (/var/cache/zypp)
Definition: ZConfig.cc:912
LocaleSet repoRefreshLocales
Definition: ZConfig.cc:655
Option< bool > solver_dupAllowVendorChange
Definition: ZConfig.cc:682
#define INT
Definition: Logger.h:68
Pathname credentialsGlobalFile() const
Defaults to /etc/zypp/credentials.cat.
Definition: ZConfig.cc:1137
Pathname cfg_metadata_path
Definition: ZConfig.cc:635
void restoreToDefault()
Reset value to the current default.
Definition: ZConfig.cc:275
String related utilities and Regular expression matching.
void removeMultiversionSpec(const std::string &name_r)
Definition: ZConfig.cc:1087
Pathname varsPath() const
Path containing custom repo variable definitions (configPath()/vars.d).
Definition: ZConfig.cc:956
Pathname cfg_cache_path
Definition: ZConfig.cc:634
Definition: Arch.h:344
void setSystemArchitecture(const Arch &arch_r)
Override the zypp system architecture.
Definition: ZConfig.cc:850
bool apply_locks_file() const
Whether locks file should be read and applied after start (true)
Definition: ZConfig.cc:1089
Pathname cfg_config_path
Definition: ZConfig.cc:639
target::rpm::RpmInstFlags rpmInstallFlags
Definition: ZConfig.cc:695
Helper to create and pass std::istream.
Definition: InputStream.h:56
#define for_(IT, BEG, END)
Convenient for-loops using iterator.
Definition: Easy.h:27
void reconfigureZConfig(const Pathname &override_r)
Definition: ZConfig.cc:796
long download_max_download_speed() const
Maximum download speed (bytes per second)
Definition: ZConfig.cc:1012
bool setUserData(const std::string &str_r)
Set a new userData string.
Definition: ZConfig.cc:895
Request the standard behavior (as defined in zypp.conf or &#39;Job&#39;)
std::set< std::string > MultiversionSpec
Definition: ZConfig.cc:305
void set_download_mediaMountdir(Pathname newval_r)
Set alternate value.
Definition: ZConfig.cc:1025
bool solver_cleandepsOnRemove() const
Whether removing a package should also remove no longer needed requirements.
Definition: ZConfig.cc:1057
bool repo_add_probe() const
Whether repository urls should be probed.
Definition: ZConfig.cc:976
long download_connect_timeout() const
Maximum time in seconds that you allow a transfer operation to take.
Definition: ZConfig.cc:1018
MultiversionSpec & getDefaultSpec()
Definition: ZConfig.cc:739
Option(const value_type &initial_r)
No default ctor, explicit initialisation!
Definition: ZConfig.cc:239
const value_type & getDefault() const
Get the current default value.
Definition: ZConfig.cc:283
void resetSolverUpgradeRemoveDroppedPackages()
Reset solverUpgradeRemoveDroppedPackages to the zypp.conf default.
Definition: ZConfig.cc:1073
Pathname _parsedZyppConf
Remember any parsed zypp.conf.
Definition: ZConfig.cc:629
Pathname pluginsPath() const
Defaults to /usr/lib/zypp/plugins.
Definition: ZConfig.cc:1150
RW_pointer< Impl, rw_pointer::Scoped< Impl > > _pimpl
Pointer to implementation.
Definition: ZConfig.h:504
#define ERR
Definition: Logger.h:66
void set_default_download_mediaMountdir()
Reset to zypp.cong default.
Definition: ZConfig.cc:1026
bool solverUpgradeRemoveDroppedPackages() const
Whether dist upgrade should remove a products dropped packages (true).
Definition: ZConfig.cc:1071
DownloadMode commit_downloadMode() const
Commit download policy to use as default.
Definition: ZConfig.cc:1028
Option< bool > solver_allowVendorChange
Definition: ZConfig.cc:678
bool solver_dupAllowVendorChange() const
DUP tune: Whether to allow package vendor changes upon DUP.
Definition: ZConfig.cc:1055
void addMultiversionSpec(const std::string &name_r)
Definition: ZConfig.cc:1086
void resetGpgCheck()
Reset to the zconfig default.
Definition: ZConfig.cc:1040
Pathname credentials_global_dir_path
Definition: ZConfig.cc:698
void set_download_media_prefer_download(bool yesno_r)
Set download_media_prefer_download to a specific value.
Definition: ZConfig.cc:1000
DefaultOption< Pathname > download_mediaMountdir
Definition: ZConfig.cc:661
boost::logic::tribool TriBool
3-state boolean logic (true, false and indeterminate).
Definition: String.h:30
DefaultOption< bool > download_media_prefer_download
Definition: ZConfig.cc:660
MultiversionMap _multiversionMap
Definition: ZConfig.cc:790
DefaultOption< bool > gpgCheck
Definition: ZConfig.cc:672
Pathname configPath() const
Path where the configfiles are kept (/etc/zypp).
Definition: ZConfig.cc:938
Pathname historyLogFile() const
Path where ZYpp install history is logged.
Definition: ZConfig.cc:1125
void setTextLocale(const Locale &locale_r)
Set the prefered locale for translated texts.
Definition: ZConfig.cc:874
int simpleParseFile(std::istream &str_r, ParseFlags flags_r, function< bool(int, std::string)> consume_r)
Simple lineparser optionally trimming and skipping comments.
Definition: IOStream.cc:124
Pathname knownReposPath() const
Path where the known repositories .repo files are kept (configPath()/repos.d).
Definition: ZConfig.cc:944
static Pool instance()
Singleton ctor.
Definition: Pool.h:53
Pathname update_data_path
Definition: ZConfig.cc:648
unsigned split(const C_Str &line_r, TOutputIterator result_r, const C_Str &sepchars_r=" \t")
Split line_r into words.
Definition: String.h:519
Pathname credentials_global_file_path
Definition: ZConfig.cc:699
LocaleSet repoRefreshLocales() const
List of locales for which translated package descriptions should be downloaded.
Definition: ZConfig.cc:982
bool gpgCheck() const
Turn signature checking on/off (on)
Definition: ZConfig.cc:1032
void set_default_download_media_prefer_download()
Set download_media_prefer_download to the configfiles default.
Definition: ZConfig.cc:1003
ZConfig implementation.
Definition: ZConfig.cc:303
libzypp will decide what to do.
Definition: DownloadMode.h:24
TriBool pkgGpgCheck() const
Check rpm package signatures (indeterminate - according to gpgcheck)
Definition: ZConfig.cc:1034
ResolverFocus solver_focus() const
The resolvers general attitude when resolving jobs.
Definition: ZConfig.cc:1044
Interim helper class to collect global options and settings.
Definition: ZConfig.h:59
#define WAR
Definition: Logger.h:65
Pathname cfg_packages_path
Definition: ZConfig.cc:637
section_const_iterator sectionsBegin() const
Definition: IniDict.cc:94
Option< Tp > option_type
Definition: ZConfig.cc:268
Types and functions for filesystem operations.
Definition: Glob.cc:23
void scanConfAt(const Pathname root_r, MultiversionSpec &spec_r, const Impl &zConfImpl_r)
Definition: ZConfig.cc:743
value_type & ref()
Non-const reference to set a new value.
Definition: ZConfig.cc:256
TInt strtonum(const C_Str &str)
Parsing numbers from string.
Definition: String.h:404
Pathname update_scriptsPath() const
Path where the repo metadata is downloaded and kept (update_dataPath()/).
Definition: ZConfig.cc:1104
Pathname cfg_vars_path
Definition: ZConfig.cc:642
Pathname locksFile() const
Path where zypp can find or create lock file (configPath()/locks)
Definition: ZConfig.cc:968
long download_min_download_speed() const
Minimum download speed (bytes per second) until the connection is dropped.
Definition: ZConfig.cc:1009
void clearMultiversionSpec()
Definition: ZConfig.cc:1085
entry_const_iterator entriesEnd(const std::string &section) const
Definition: IniDict.cc:82
Pathname download_mediaMountdir() const
Path where media are preferably mounted or downloaded.
Definition: ZConfig.cc:1024
bool hasUserData() const
Whether a (non empty) user data sting is defined.
Definition: ZConfig.cc:889
int download_max_silent_tries
Definition: ZConfig.cc:666
Pathname update_messagesPath() const
Path where the repo solv files are created and kept (update_dataPath()/solv).
Definition: ZConfig.cc:1098
Pathname locks_file
Definition: ZConfig.cc:646
Pathname repoSolvfilesPath() const
Path where the repo solv files are created and kept (repoCachePath()/solv).
Definition: ZConfig.cc:924
static PoolImpl & myPool()
Definition: PoolImpl.cc:172
Pathname repoPackagesPath() const
Path where the repo packages are downloaded and kept (repoCachePath()/packages).
Definition: ZConfig.cc:930
bool fromString(const std::string &val_r, ResolverFocus &ret_r)
bool download_use_deltarpm() const
Whether to consider using a deltarpm when downloading a package.
Definition: ZConfig.cc:991
Locale cfg_textLocale
Definition: ZConfig.cc:632
Mutable option with initial value also remembering a config value.
Definition: ZConfig.cc:265
Pathname repoMetadataPath() const
Path where the repo metadata is downloaded and kept (repoCachePath()/raw).
Definition: ZConfig.cc:918
int download_connect_timeout
Definition: ZConfig.cc:667
long download_max_silent_tries() const
Maximum silent tries.
Definition: ZConfig.cc:1015
bool download_use_deltarpm_always
Definition: ZConfig.cc:659
int compareCI(const C_Str &lhs, const C_Str &rhs)
Definition: String.h:967
bool solver_dupAllowArchChange() const
DUP tune: Whether to allow package arch changes upon DUP.
Definition: ZConfig.cc:1054
bool solver_allowVendorChange() const
Whether vendor check is by default enabled.
Definition: ZConfig.cc:1049
bool solver_onlyRequires() const
Solver regards required packages,patterns,...
Definition: ZConfig.cc:1046
&#39;Language[_Country]&#39; codes.
Definition: Locale.h:49
Option< Pathname > pluginsPath
Definition: ZConfig.cc:703
Impl(const Pathname &override_r=Pathname())
Definition: ZConfig.cc:308
Parses a INI file and offers its structure as a dictionary.
Definition: IniDict.h:40
MultiversionSpec & getMultiversion() const
Definition: ZConfig.cc:787
static Arch defaultSystemArchitecture()
The autodetected system architecture.
Definition: ZConfig.cc:841
Regular expression match result.
Definition: Regex.h:145
void resetRepoGpgCheck()
Reset to the zconfig default.
Definition: ZConfig.cc:1041
Pathname systemRoot() const
The target root directory.
Definition: ZConfig.cc:832
entry_const_iterator entriesBegin(const std::string &section) const
Definition: IniDict.cc:71
bool download_media_prefer_download() const
Hint which media to prefer when installing packages (download vs.
Definition: ZConfig.cc:997
DefaultOption< std::string > updateMessagesNotify
Definition: ZConfig.cc:651
Option< bool > solver_dupAllowNameChange
Definition: ZConfig.cc:680
const std::set< std::string > & multiversionSpec() const
Definition: ZConfig.cc:1083
Pathname solver_checkSystemFile
Definition: ZConfig.cc:687
target::rpm::RpmInstFlags rpmInstallFlags() const
The default target::rpm::RpmInstFlags for ZYppCommitPolicy.
Definition: ZConfig.cc:1121
Option< bool > solver_onlyRequires
Definition: ZConfig.cc:677
const MultiversionSpec & multiversion() const
Definition: ZConfig.cc:691
Pathname history_log_path
Definition: ZConfig.cc:697
std::string userData
Definition: ZConfig.cc:701
bool strToBool(const C_Str &str, bool default_r)
Parse str into a bool depending on the default value.
Definition: String.h:445
Pathname update_dataPath() const
Path where the update items are kept (/var/adm)
Definition: ZConfig.cc:1092
std::string userData() const
User defined string value to be passed to log, history, plugins...
Definition: ZConfig.cc:892
int download_max_download_speed
Definition: ZConfig.cc:665
Wrapper class for ::stat/::lstat.
Definition: PathInfo.h:220
void resetUpdateMessagesNotify()
Reset to the zypp.conf default.
Definition: ZConfig.cc:1116
int dirForEach(const Pathname &dir_r, function< bool(const Pathname &, const char *const)> fnc_r)
Invoke callback function fnc_r for each entry in directory dir_r.
Definition: PathInfo.cc:551
void setSolverUpgradeRemoveDroppedPackages(bool val_r)
Set solverUpgradeRemoveDroppedPackages to val_r.
Definition: ZConfig.cc:1072
bool regex_match(const std::string &s, smatch &matches, const regex &regex)
regex ZYPP_STR_REGEX regex ZYPP_STR_REGEX
Definition: Regex.h:70
int download_min_download_speed
Definition: ZConfig.cc:664
Locale textLocale() const
The locale for translated texts zypp uses.
Definition: ZConfig.cc:871
std::string updateMessagesNotify() const
Command definition for sending update messages.
Definition: ZConfig.cc:1110
EntrySet::const_iterator entry_const_iterator
Definition: IniDict.h:47
ResolverFocus solver_focus
Definition: ZConfig.cc:676
unsigned repo_refresh_delay() const
Amount of time in minutes that must pass before another refresh.
Definition: ZConfig.cc:979
value_type _val
Definition: ZConfig.cc:260
Arch systemArchitecture() const
The system architecture zypp uses.
Definition: ZConfig.cc:847
Pathname solver_checkSystemFileDir
Definition: ZConfig.cc:688
bool repoLabelIsAlias() const
Whether to use repository alias or name in user messages (progress, exceptions, ...).
Definition: ZConfig.cc:985
Pathname cfg_vendor_path
Definition: ZConfig.cc:644
Pathname cfg_multiversion_path
Definition: ZConfig.cc:645
void setPkgGpgCheck(TriBool val_r)
Change the value.
Definition: ZConfig.cc:1038
LocaleSet requestedLocales() const
Languages to be supported by the system.
Definition: Target.cc:97
DefaultOption< bool > solverUpgradeRemoveDroppedPackages
Definition: ZConfig.cc:685
void restoreToDefault(const value_type &newval_r)
Reset value to a new default.
Definition: ZConfig.cc:279
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:1
section_const_iterator sectionsEnd() const
Definition: IniDict.cc:99
long download_max_concurrent_connections() const
Maximum number of concurrent connections for a single transfer.
Definition: ZConfig.cc:1006
bool solver_dupAllowDowngrade() const
DUP tune: Whether to allow version downgrades upon DUP.
Definition: ZConfig.cc:1052
bool hasPrefix(const C_Str &str_r, const C_Str &prefix_r)
Return whether str_r has prefix prefix_r.
Definition: String.h:1037
std::unordered_set< Locale > LocaleSet
Definition: Locale.h:27
Option< bool > solver_dupAllowArchChange
Definition: ZConfig.cc:681
option_type _default
Definition: ZConfig.cc:291
MultiversionSpec & getSpec(Pathname root_r, const Impl &zConfImpl_r)
Definition: ZConfig.cc:715
Option< bool > solver_dupAllowDowngrade
Definition: ZConfig.cc:679
DefaultOption< TriBool > repoGpgCheck
Definition: ZConfig.cc:673
Pathname solver_checkSystemFile() const
File in which dependencies described which has to be fulfilled for a running system.
Definition: ZConfig.cc:1060
Option< DownloadMode > commit_downloadMode
Definition: ZConfig.cc:670
DefaultOption< TriBool > pkgGpgCheck
Definition: ZConfig.cc:674
unsigned repo_refresh_delay
Definition: ZConfig.cc:654
void resetPkgGpgCheck()
Reset to the zconfig default.
Definition: ZConfig.cc:1042
bool download_use_deltarpm_always() const
Whether to consider using a deltarpm even when rpm is local.
Definition: ZConfig.cc:994
#define DBG
Definition: Logger.h:63
long download_transfer_timeout() const
Maximum time in seconds that you allow a transfer operation to take.
Definition: ZConfig.cc:1021
Pathname credentialsGlobalDir() const
Defaults to /etc/zypp/credentials.d.
Definition: ZConfig.cc:1131
DownloadMode
Supported commit download policies.
Definition: DownloadMode.h:22
Pathname cfg_solvfiles_path
Definition: ZConfig.cc:636
DefaultOption(const value_type &initial_r)
Definition: ZConfig.cc:270