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;
104 void load( bool force = true );
117 /** The root set for this target */
118 Pathname root() const
121 /** The directory to store things. */
122 Pathname home() const
123 { return home( _root ); }
125 static Pathname home( const Pathname & root_r )
126 { return root_r / "/var/lib/zypp"; }
128 /** Commit changes in the pool */
129 ZYppCommitResult commit( ResPool pool_r, const ZYppCommitPolicy & policy_r );
131 /** Install a source package on the Target. */
132 void installSrcPackage( const SrcPackage_constPtr & srcPackage_r );
134 /** Overload to realize stream output. */
135 virtual std::ostream & dumpOn( std::ostream & str ) const
137 return str << "TargetImpl";
140 /** The RPM database */
143 /** If the package is installed and provides the file
144 Needed to evaluate split provides during Resolver::Upgrade() */
145 bool providesFile (const std::string & path_str, const std::string & name_str) const;
147 /** Return name of package owning \a path_str
148 * or empty string if no installed package owns \a path_str. */
149 std::string whoOwnsFile (const std::string & path_str) const
150 { return _rpm.whoOwnsFile (path_str); }
152 /** return the last modification date of the target */
153 Date timestamp() const;
155 /** \copydoc Target::baseProduct() */
156 Product::constPtr baseProduct() const;
158 /** \copydoc Target::requestedLocales() */
159 LocaleSet requestedLocales() const
160 { return _requestedLocalesFile.locales(); }
162 static LocaleSet requestedLocales( const Pathname & root_r );
164 /** \copydoc Target::targetDistribution() */
165 std::string targetDistribution() const;
167 static std::string targetDistribution( const Pathname & root_r );
169 /** \copydoc Target::targetDistributionRelease()*/
170 std::string targetDistributionRelease() const;
172 static std::string targetDistributionRelease( const Pathname & root_r );
174 /** \copydoc Target::distributionVersion()*/
175 Target::DistributionLabel distributionLabel() const;
177 static Target::DistributionLabel distributionLabel( const Pathname & root_r );
179 /** \copydoc Target::distributionVersion()*/
180 std::string distributionVersion() const;
182 static std::string distributionVersion( const Pathname & root_r );
184 /** \copydoc Target::distributionFlavor() */
185 std::string distributionFlavor() const;
187 static std::string distributionFlavor( const Pathname & root_r );
189 /** \copydoc Target::anonymousUniqueId() */
190 std::string anonymousUniqueId() const;
192 static std::string anonymousUniqueId( const Pathname & root_r );
195 /** Commit ordered changes (internal helper) */
196 void commit( const ZYppCommitPolicy & policy_r,
197 CommitPackageCache & packageCache_r,
198 ZYppCommitResult & result_r );
201 /** Path to the target */
205 /** Requested Locales database */
206 RequestedLocalesFile _requestedLocalesFile;
207 /** Soft-locks database */
208 SoftLocksFile _softLocksFile;
209 /** Hard-Locks database */
210 HardLocksFile _hardLocksFile;
211 /** Cache distributionVersion */
212 mutable std::string _distributionVersion;
215 /** Null implementation */
216 static TargetImpl_Ptr _nullimpl;
218 ///////////////////////////////////////////////////////////////////
220 /** \relates TargetImpl Stream output */
221 inline std::ostream & operator<<( std::ostream & str, const TargetImpl & obj )
223 return obj.dumpOn( str );
226 /////////////////////////////////////////////////////////////////
227 } // namespace target
228 ///////////////////////////////////////////////////////////////////
229 /////////////////////////////////////////////////////////////////
231 ///////////////////////////////////////////////////////////////////
232 #endif // ZYPP_TARGET_TARGETIMPL_H