libzypp  17.38.8
TargetImpl.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_TARGET_TARGETIMPL_H
13 #define ZYPP_TARGET_TARGETIMPL_H
14 
15 #include <iosfwd>
16 #include <set>
17 
21 #include <zypp/PoolItem.h>
22 #include <zypp/ZYppCommit.h>
23 
24 #include <zypp-core/Pathname.h>
25 #include <zypp-core/fs/WatchFile>
26 #include <zypp/Target.h>
27 #include <zypp/target/rpm/RpmDb.h>
32 #include <zypp/ManagedFile.h>
33 #include <zypp/VendorAttr.h>
34 
36 namespace zypp
37 {
38  namespace target
40  {
41 
42  DEFINE_PTR_TYPE(TargetImpl);
43  class CommitPackageCache;
44 
46  //
47  // CLASS NAME : TargetImpl
48  //
55  {
56  friend std::ostream & operator<<( std::ostream & str, const TargetImpl & obj );
57 
58  public:
60  using PoolItemList = std::list<PoolItem>;
61 
63  using PoolItemSet = std::set<PoolItem>;
64 
65  public:
67  TargetImpl(const Pathname & root_r = "/", bool doRebuild_r = false );
69  ~TargetImpl() override;
70 
75  void createAnonymousId() const;
76 
81 
88  private:
91 
95 
97  bool solvfilesPathIsTemp() const
98  { return ! _tmpSolvfilesPath.empty(); }
99 
101 
102  public:
103  void load( bool force = true );
104 
105  void unload();
106 
107  void reload();
108 
109  void clearCache();
110 
111  bool buildCache();
113 
114  public:
115 
117  Pathname root() const
118  { return _root; }
119 
121  Pathname home() const
122  { return home( _root ); }
123 
124  static Pathname home( const Pathname & root_r )
125  { return root_r / "/var/lib/zypp"; }
126 
128  ZYppCommitResult commit( ResPool pool_r, const ZYppCommitPolicy & policy_r );
129 
131  void installSrcPackage( const SrcPackage_constPtr & srcPackage_r );
132 
134  ManagedFile provideSrcPackage( const SrcPackage_constPtr & srcPackage_r );
135 
137  std::ostream & dumpOn( std::ostream & str ) const override
138  { return str << "Target(" << root() << ")"; }
139 
141  rpm::RpmDb & rpm();
142 
145  bool providesFile (const std::string & path_str, const std::string & name_str) const;
146 
149  std::string whoOwnsFile (const std::string & path_str) const
150  { return _rpm.whoOwnsFile (path_str); }
151 
154 
157  { return _requestedLocalesFile.locales(); }
159  static LocaleSet requestedLocales( const Pathname & root_r );
160 
162  void updateAutoInstalled();
163 
165  std::string targetDistribution() const;
167  static std::string targetDistribution( const Pathname & root_r );
168 
170  std::string targetDistributionRelease() const;
172  static std::string targetDistributionRelease( const Pathname & root_r );
173 
175  std::string targetDistributionFlavor() const;
177  static std::string targetDistributionFlavor( const Pathname & root_r );
178 
182  static Target::DistributionLabel distributionLabel( const Pathname & root_r );
183 
185  std::string distributionVersion() const;
187  static std::string distributionVersion( const Pathname & root_r );
188 
190  std::string distributionFlavor() const;
192  static std::string distributionFlavor( const Pathname & root_r );
193 
195  std::string anonymousUniqueId() const;
197  static std::string anonymousUniqueId( const Pathname & root_r );
198 
200  const VendorAttr & vendorAttr() const
201  { return _vendorAttr; }
203  void vendorAttr( VendorAttr vendorAttr_r );
205 
206  public:
207  private:
209  void commit( const ZYppCommitPolicy & policy_r,
210  CommitPackageCache & packageCache_r,
211  ZYppCommitResult & result_r );
212 
214  void commitInSingleTransaction( const ZYppCommitPolicy & policy_r,
215  CommitPackageCache & packageCache_r,
216  ZYppCommitResult & result_r );
217 
218 
220  void commitFindFileConflicts( const ZYppCommitPolicy & policy_r, ZYppCommitResult & result_r );
221  protected:
234  mutable std::string _distributionVersion;
237  };
239 
241  inline std::ostream & operator<<( std::ostream & str, const TargetImpl & obj )
242  {
243  return obj.dumpOn( str );
244  }
245 
247  } // namespace target
250 } // namespace zypp
252 #endif // ZYPP_TARGET_TARGETIMPL_H
ZYppCommitResult commit(ResPool pool_r, const ZYppCommitPolicy &policy_r)
Commit changes in the pool.
Definition: TargetImpl.cc:1412
VendorAttr _vendorAttr
vendor equivalence settings.
Definition: TargetImpl.h:236
std::string whoOwnsFile(const std::string &path_str) const
Return name of package owning path_str or empty string if no installed package owns path_str...
Definition: TargetImpl.h:149
Interface to the rpm program.
Definition: RpmDb.h:50
Save and restore locale set from file.
bool solvfilesPathIsTemp() const
Whether we&#39;re using a temp.
Definition: TargetImpl.h:97
WatchFile _baseproductWatcher
Cache distributionVersion.
Definition: TargetImpl.h:233
Result returned from ZYpp::commit.
SolvIdentFile _autoInstalledFile
user/auto installed database
Definition: TargetImpl.h:229
TargetImpl(const Pathname &root_r="/", bool doRebuild_r=false)
Ctor.
Definition: TargetImpl.cc:962
Target::commit helper optimizing package provision.
std::unordered_set< Locale > LocaleSet
Definition: Locale.h:29
void updateAutoInstalled()
Update the database of autoinstalled packages.
Definition: TargetImpl.cc:3054
std::string _distributionVersion
Definition: TargetImpl.h:234
void commitFindFileConflicts(const ZYppCommitPolicy &policy_r, ZYppCommitResult &result_r)
Commit helper checking for file conflicts after download.
String related utilities and Regular expression matching.
DEFINE_PTR_TYPE(TargetImpl)
bool providesFile(const std::string &path_str, const std::string &name_str) const
If the package is installed and provides the file Needed to evaluate split provides during Resolver::...
Definition: TargetImpl.cc:2959
std::list< PoolItem > PoolItemList
list of pool items
Definition: TargetImpl.h:60
void installSrcPackage(const SrcPackage_constPtr &srcPackage_r)
Install a source package on the Target.
Definition: TargetImpl.cc:3172
std::string targetDistributionFlavor() const
This is register.flavor attribute of the installed base product.
Definition: TargetImpl.cc:3075
Remember a files attributes to detect content changes.
Definition: watchfile.h:49
std::string targetDistributionRelease() const
This is register.release attribute of the installed base product.
Definition: TargetImpl.cc:3069
std::ostream & dumpOn(std::ostream &str) const override
Overload to realize stream output.
Definition: TargetImpl.h:137
TraitsType::constPtrType constPtr
Definition: Product.h:39
rpm::RpmDb _rpm
RPM database.
Definition: TargetImpl.h:225
std::string distributionVersion() const
This is version attribute of the installed base product.
Definition: TargetImpl.cc:3099
const LocaleSet & locales() const
Return the loacale set.
void createLastDistributionFlavorCache() const
generates a cache of the last product flavor
Definition: TargetImpl.cc:1055
LocaleSet requestedLocales() const
Languages to be supported by the system.
Definition: TargetImpl.h:156
bool empty() const
Test for an empty path.
Definition: Pathname.h:117
Base class for concrete Target implementations.
Definition: TargetImpl.h:54
Pathname _root
Path to the target.
Definition: TargetImpl.h:223
Options and policies for ZYpp::commit.
RequestedLocalesFile _requestedLocalesFile
Requested Locales database.
Definition: TargetImpl.h:227
Definition of vendor equivalence.
Definition: VendorAttr.h:60
Pathname solvfilesPath() const
The solv file location actually in use (default or temp).
Definition: TargetImpl.h:93
std::string targetDistribution() const
This is register.target attribute of the installed base product.
Definition: TargetImpl.cc:3063
const VendorAttr & vendorAttr() const
The targets current vendor equivalence settings.
Definition: TargetImpl.h:200
static Pathname home(const Pathname &root_r)
Definition: TargetImpl.h:124
std::string anonymousUniqueId() const
anonymous unique id
Definition: TargetImpl.cc:3153
Base class for reference counted objects.
Pathname home() const
The directory to store things.
Definition: TargetImpl.h:121
HardLocksFile _hardLocksFile
Hard-Locks database.
Definition: TargetImpl.h:231
std::set< PoolItem > PoolItemSet
set of pool items
Definition: TargetImpl.h:63
Global ResObject pool.
Definition: ResPool.h:61
Save and restore a list of solvable names (ident IdString)
Definition: SolvIdentFile.h:34
Product::constPtr baseProduct() const
returns the target base installed product, also known as the distribution or platform.
Definition: TargetImpl.cc:3033
void createAnonymousId() const
generates the unique anonymous id which is called when creating the target
Definition: TargetImpl.cc:1033
~TargetImpl() override
Dtor.
Definition: TargetImpl.cc:1091
std::string whoOwnsFile(const std::string &file_r) const
Return name of package owning file or empty string if no installed package owns file.
Definition: RpmDb.cc:982
Pathname root() const
The root set for this target.
Definition: TargetImpl.h:117
std::ostream & operator<<(std::ostream &str, const CommitPackageCache &obj)
relates: CommitPackageCache Stream output
ManagedFile provideSrcPackage(const SrcPackage_constPtr &srcPackage_r)
Provides a source package on the Target.
Definition: TargetImpl.cc:3183
Target::DistributionLabel distributionLabel() const
This is shortName and summary attribute of the installed base product.
Definition: TargetImpl.cc:3081
std::string distributionFlavor() const
This is flavor attribute of the installed base product but does not require the target to be loaded a...
Definition: TargetImpl.cc:3127
void commitInSingleTransaction(const ZYppCommitPolicy &policy_r, CommitPackageCache &packageCache_r, ZYppCommitResult &result_r)
Commit ordered changes (internal helper)
Definition: TargetImpl.cc:2079
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:1
Pathname defaultSolvfilesPath() const
The systems default solv file location.
Definition: TargetImpl.cc:1104
Save and restore hardlocks.
Definition: HardLocksFile.h:37
friend std::ostream & operator<<(std::ostream &str, const TargetImpl &obj)
relates: TargetImpl Stream output
Definition: TargetImpl.h:241
rpm::RpmDb & rpm()
The RPM database.
Definition: TargetImpl.cc:2954
boost::noncopyable NonCopyable
Ensure derived classes cannot be copied.
Definition: NonCopyable.h:26
void load(bool force=true)
Definition: TargetImpl.cc:1276