1 /*---------------------------------------------------------------------\
3 | |__ / \ / / . \ . \ |
8 \---------------------------------------------------------------------*/
9 /** \file zypp/target/TargetImpl.h
12 #ifndef ZYPP_TARGET_TARGETIMPL_H
13 #define ZYPP_TARGET_TARGETIMPL_H
18 #include "zypp/base/ReferenceCounted.h"
19 #include "zypp/base/NonCopyable.h"
20 #include "zypp/base/PtrTypes.h"
21 #include "zypp/PoolItem.h"
22 #include "zypp/ZYppCommit.h"
24 #include "zypp/Pathname.h"
25 #include "zypp/media/MediaAccess.h"
26 #include "zypp/Target.h"
27 #include "zypp/target/rpm/RpmDb.h"
28 #include "zypp/target/TargetException.h"
29 #include "zypp/target/RequestedLocalesFile.h"
30 #include "zypp/target/SoftLocksFile.h"
31 #include "zypp/target/HardLocksFile.h"
33 ///////////////////////////////////////////////////////////////////
35 { /////////////////////////////////////////////////////////////////
36 ///////////////////////////////////////////////////////////////////
38 { /////////////////////////////////////////////////////////////////
40 DEFINE_PTR_TYPE(TargetImpl);
41 class CommitPackageCache;
43 ///////////////////////////////////////////////////////////////////
45 // CLASS NAME : TargetImpl
47 /** Base class for concrete Target implementations.
49 * Constructed by \ref TargetFactory. Public access via \ref Target
52 class TargetImpl : public base::ReferenceCounted, private base::NonCopyable
54 friend std::ostream & operator<<( std::ostream & str, const TargetImpl & obj );
57 /** list of pool items */
58 typedef std::list<PoolItem> PoolItemList;
60 /** set of pool items */
61 typedef std::set<PoolItem> PoolItemSet;
65 TargetImpl(const Pathname & root_r = "/", bool doRebuild_r = false );
67 virtual ~TargetImpl();
69 /** Null implementation */
70 static TargetImpl_Ptr nullimpl();
73 * generates the unique anonymous id which is called
74 * when creating the target
76 void createAnonymousId() const;
79 * generates a cache of the last product flavor
81 void createLastDistributionFlavorCache() const;
83 /** \name Solv file handling.
84 * If target solv file is outdated, but (non-root-)user has
85 * no permission to create it at the default location, we
86 * use a temporary one.
90 /** The systems default solv file location. */
91 Pathname defaultSolvfilesPath() const;
93 /** The solv file location actually in use (default or temp). */
94 Pathname solvfilesPath() const
95 { return solvfilesPathIsTemp() ? _tmpSolvfilesPath : defaultSolvfilesPath(); }
97 /** Whether we're using a temp. solvfile. */
98 bool solvfilesPathIsTemp() const
99 { return ! _tmpSolvfilesPath.empty(); }
101 Pathname _tmpSolvfilesPath;
115 /** The root set for this target */
116 Pathname root() const
119 /** The directory to store things. */
120 Pathname home() const
121 { return _root / "/var/lib/zypp"; }
123 /** Commit changes in the pool */
124 ZYppCommitResult commit( ResPool pool_r, const ZYppCommitPolicy & policy_r );
126 /** Install a source package on the Target. */
127 void installSrcPackage( const SrcPackage_constPtr & srcPackage_r );
129 /** Overload to realize stream output. */
130 virtual std::ostream & dumpOn( std::ostream & str ) const
132 return str << "TargetImpl";
135 /** The RPM database */
138 /** If the package is installed and provides the file
139 Needed to evaluate split provides during Resolver::Upgrade() */
140 bool providesFile (const std::string & path_str, const std::string & name_str) const;
142 /** Return name of package owning \a path_str
143 * or empty string if no installed package owns \a path_str. */
144 std::string whoOwnsFile (const std::string & path_str) const
145 { return _rpm.whoOwnsFile (path_str); }
147 /** return the last modification date of the target */
148 Date timestamp() const;
150 /** \copydoc Target::baseProduct() */
151 Product::constPtr baseProduct() const;
154 /** \copydoc Target::targetDistribution() */
155 std::string targetDistribution() const;
157 static std::string targetDistribution( const Pathname & root_r );
159 /** \copydoc Target::targetDistributionRelease()*/
160 std::string targetDistributionRelease() const;
162 static std::string targetDistributionRelease( const Pathname & root_r );
164 /** \copydoc Target::distributionVersion()*/
165 Target::DistributionLabel distributionLabel() const;
167 static Target::DistributionLabel distributionLabel( const Pathname & root_r );
169 /** \copydoc Target::distributionVersion()*/
170 std::string distributionVersion() const;
172 static std::string distributionVersion( const Pathname & root_r );
174 /** \copydoc Target::distributionFlavor() */
175 std::string distributionFlavor() const;
177 static std::string distributionFlavor( const Pathname & root_r );
179 /** \copydoc Target::anonymousUniqueId() */
180 std::string anonymousUniqueId() const;
182 static std::string anonymousUniqueId( const Pathname & root_r );
185 /** Commit ordered changes (internal helper) */
186 void commit( const ZYppCommitPolicy & policy_r,
187 CommitPackageCache & packageCache_r,
188 ZYppCommitResult & result_r );
191 /** Path to the target */
195 /** Requested Locales database */
196 RequestedLocalesFile _requestedLocalesFile;
197 /** Soft-locks database */
198 SoftLocksFile _softLocksFile;
199 /** Hard-Locks database */
200 HardLocksFile _hardLocksFile;
201 /** Cache distributionVersion */
202 mutable std::string _distributionVersion;
205 /** Null implementation */
206 static TargetImpl_Ptr _nullimpl;
208 ///////////////////////////////////////////////////////////////////
210 /** \relates TargetImpl Stream output */
211 inline std::ostream & operator<<( std::ostream & str, const TargetImpl & obj )
213 return obj.dumpOn( str );
216 /////////////////////////////////////////////////////////////////
217 } // namespace target
218 ///////////////////////////////////////////////////////////////////
219 /////////////////////////////////////////////////////////////////
221 ///////////////////////////////////////////////////////////////////
222 #endif // ZYPP_TARGET_TARGETIMPL_H