Do commit based on sat::Transaction.
[platform/upstream/libzypp.git] / zypp / target / TargetImpl.h
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file       zypp/target/TargetImpl.h
10  *
11 */
12 #ifndef ZYPP_TARGET_TARGETIMPL_H
13 #define ZYPP_TARGET_TARGETIMPL_H
14
15 #include <iosfwd>
16 #include <set>
17
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"
23
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"
32
33 ///////////////////////////////////////////////////////////////////
34 namespace zypp
35 { /////////////////////////////////////////////////////////////////
36   ///////////////////////////////////////////////////////////////////
37   namespace target
38   { /////////////////////////////////////////////////////////////////
39
40     DEFINE_PTR_TYPE(TargetImpl);
41     class CommitPackageCache;
42
43     ///////////////////////////////////////////////////////////////////
44     //
45     //  CLASS NAME : TargetImpl
46     //
47     /** Base class for concrete Target implementations.
48      *
49      * Constructed by \ref TargetFactory. Public access via \ref Target
50      * interface.
51     */
52     class TargetImpl : public base::ReferenceCounted, private base::NonCopyable
53     {
54       friend std::ostream & operator<<( std::ostream & str, const TargetImpl & obj );
55
56     public:
57       /** list of pool items  */
58       typedef std::list<PoolItem> PoolItemList;
59
60       /** set of pool items  */
61       typedef std::set<PoolItem> PoolItemSet;
62
63     public:
64       /** Ctor. */
65       TargetImpl(const Pathname & root_r = "/", bool doRebuild_r = false );
66       /** Dtor. */
67       virtual ~TargetImpl();
68
69       /** Null implementation */
70       static TargetImpl_Ptr nullimpl();
71
72       /**
73        * generates the unique anonymous id which is called
74        * when creating the target
75        */
76       void createAnonymousId() const;
77
78       /**
79        * generates a cache of the last product flavor
80        */
81       void createLastDistributionFlavorCache() const;
82
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.
87        */
88       //@{
89     private:
90       /** The systems default solv file location. */
91       Pathname defaultSolvfilesPath() const;
92
93       /** The solv file location actually in use (default or temp). */
94       Pathname solvfilesPath() const
95       { return solvfilesPathIsTemp() ? _tmpSolvfilesPath : defaultSolvfilesPath(); }
96
97       /** Whether we're using a temp. solvfile. */
98       bool solvfilesPathIsTemp() const
99       { return ! _tmpSolvfilesPath.empty(); }
100
101       Pathname _tmpSolvfilesPath;
102
103     public:
104       void load();
105
106       void unload();
107
108       void clearCache();
109
110       void buildCache();
111       //@}
112
113     public:
114
115       /** The root set for this target */
116       Pathname root() const
117       { return _root; }
118
119       /** The directory to store things. */
120       Pathname home() const
121       { return _root / "/var/lib/zypp"; }
122
123       /** Commit changes in the pool */
124       ZYppCommitResult commit( ResPool pool_r, const ZYppCommitPolicy & policy_r );
125
126       /** Install a source package on the Target. */
127       void installSrcPackage( const SrcPackage_constPtr & srcPackage_r );
128
129       /** Overload to realize stream output. */
130       virtual std::ostream & dumpOn( std::ostream & str ) const
131       {
132         return str << "TargetImpl";
133       }
134
135       /** The RPM database */
136       rpm::RpmDb & rpm();
137
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;
141
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); }
146
147       /** return the last modification date of the target */
148       Date timestamp() const;
149
150       /** \copydoc Target::baseProduct() */
151       Product::constPtr baseProduct() const;
152
153
154       /** \copydoc Target::targetDistribution() */
155       std::string targetDistribution() const;
156       /** \overload */
157       static std::string targetDistribution( const Pathname & root_r );
158
159       /** \copydoc Target::targetDistributionRelease()*/
160       std::string targetDistributionRelease() const;
161       /** \overload */
162       static std::string targetDistributionRelease( const Pathname & root_r );
163
164       /** \copydoc Target::distributionVersion()*/
165       Target::DistributionLabel distributionLabel() const;
166       /** \overload */
167       static Target::DistributionLabel distributionLabel( const Pathname & root_r );
168
169       /** \copydoc Target::distributionVersion()*/
170       std::string distributionVersion() const;
171       /** \overload */
172       static std::string distributionVersion( const Pathname & root_r );
173
174       /** \copydoc Target::distributionFlavor() */
175       std::string distributionFlavor() const;
176       /** \overload */
177       static std::string distributionFlavor( const Pathname & root_r );
178
179       /** \copydoc Target::anonymousUniqueId() */
180       std::string anonymousUniqueId() const;
181       /** \overload */
182       static std::string anonymousUniqueId( const Pathname & root_r );
183
184     private:
185       /** Commit ordered changes (internal helper) */
186       void commit( const ZYppCommitPolicy & policy_r,
187                    CommitPackageCache & packageCache_r,
188                    ZYppCommitResult & result_r );
189
190     protected:
191       /** Path to the target */
192       Pathname _root;
193       /** RPM database */
194       rpm::RpmDb _rpm;
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;
203
204     private:
205       /** Null implementation */
206       static TargetImpl_Ptr _nullimpl;
207     };
208     ///////////////////////////////////////////////////////////////////
209
210     /** \relates TargetImpl Stream output */
211     inline std::ostream & operator<<( std::ostream & str, const TargetImpl & obj )
212     {
213       return obj.dumpOn( str );
214     }
215
216     /////////////////////////////////////////////////////////////////
217   } // namespace target
218   ///////////////////////////////////////////////////////////////////
219   /////////////////////////////////////////////////////////////////
220 } // namespace zypp
221 ///////////////////////////////////////////////////////////////////
222 #endif // ZYPP_TARGET_TARGETIMPL_H