Target::reload() added
[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( bool force = true );
105
106       void unload();
107
108       void reload();
109       
110       void clearCache();
111
112       bool buildCache();
113       //@}
114
115     public:
116
117       /** The root set for this target */
118       Pathname root() const
119       { return _root; }
120
121       /** The directory to store things. */
122       Pathname home() const
123       { return home( _root ); }
124
125       static Pathname home( const Pathname & root_r )
126       { return root_r / "/var/lib/zypp"; }
127
128       /** Commit changes in the pool */
129       ZYppCommitResult commit( ResPool pool_r, const ZYppCommitPolicy & policy_r );
130
131       /** Install a source package on the Target. */
132       void installSrcPackage( const SrcPackage_constPtr & srcPackage_r );
133
134       /** Overload to realize stream output. */
135       virtual std::ostream & dumpOn( std::ostream & str ) const
136       {
137         return str << "TargetImpl";
138       }
139
140       /** The RPM database */
141       rpm::RpmDb & rpm();
142
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;
146
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); }
151
152       /** return the last modification date of the target */
153       Date timestamp() const;
154
155       /** \copydoc Target::baseProduct() */
156       Product::constPtr baseProduct() const;
157
158       /** \copydoc Target::requestedLocales() */
159       LocaleSet requestedLocales() const
160       { return _requestedLocalesFile.locales(); }
161       /** \overload */
162       static LocaleSet requestedLocales( const Pathname & root_r );
163
164       /** \copydoc Target::targetDistribution() */
165       std::string targetDistribution() const;
166       /** \overload */
167       static std::string targetDistribution( const Pathname & root_r );
168
169       /** \copydoc Target::targetDistributionRelease()*/
170       std::string targetDistributionRelease() const;
171       /** \overload */
172       static std::string targetDistributionRelease( const Pathname & root_r );
173
174       /** \copydoc Target::distributionVersion()*/
175       Target::DistributionLabel distributionLabel() const;
176       /** \overload */
177       static Target::DistributionLabel distributionLabel( const Pathname & root_r );
178
179       /** \copydoc Target::distributionVersion()*/
180       std::string distributionVersion() const;
181       /** \overload */
182       static std::string distributionVersion( const Pathname & root_r );
183
184       /** \copydoc Target::distributionFlavor() */
185       std::string distributionFlavor() const;
186       /** \overload */
187       static std::string distributionFlavor( const Pathname & root_r );
188
189       /** \copydoc Target::anonymousUniqueId() */
190       std::string anonymousUniqueId() const;
191       /** \overload */
192       static std::string anonymousUniqueId( const Pathname & root_r );
193
194     private:
195       /** Commit ordered changes (internal helper) */
196       void commit( const ZYppCommitPolicy & policy_r,
197                    CommitPackageCache & packageCache_r,
198                    ZYppCommitResult & result_r );
199
200     protected:
201       /** Path to the target */
202       Pathname _root;
203       /** RPM database */
204       rpm::RpmDb _rpm;
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;
213
214     private:
215       /** Null implementation */
216       static TargetImpl_Ptr _nullimpl;
217     };
218     ///////////////////////////////////////////////////////////////////
219
220     /** \relates TargetImpl Stream output */
221     inline std::ostream & operator<<( std::ostream & str, const TargetImpl & obj )
222     {
223       return obj.dumpOn( str );
224     }
225
226     /////////////////////////////////////////////////////////////////
227   } // namespace target
228   ///////////////////////////////////////////////////////////////////
229   /////////////////////////////////////////////////////////////////
230 } // namespace zypp
231 ///////////////////////////////////////////////////////////////////
232 #endif // ZYPP_TARGET_TARGETIMPL_H