- Load and maintain persistent hard locks stored in /etc/zypp/locks.
[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 <list>
17 #include <set>
18
19 #include "zypp/base/ReferenceCounted.h"
20 #include "zypp/base/NonCopyable.h"
21 #include "zypp/base/DefaultFalseBool.h"
22 #include "zypp/base/PtrTypes.h"
23 #include "zypp/PoolItem.h"
24 #include "zypp/ZYppCommit.h"
25
26 #include "zypp/Pathname.h"
27 #include "zypp/media/MediaAccess.h"
28 #include "zypp/Target.h"
29 #include "zypp/target/rpm/RpmDb.h"
30 #include "zypp/target/TargetException.h"
31 #include "zypp/target/RequestedLocalesFile.h"
32 #include "zypp/target/SoftLocksFile.h"
33 #include "zypp/target/HardLocksFile.h"
34
35 ///////////////////////////////////////////////////////////////////
36 namespace zypp
37 { /////////////////////////////////////////////////////////////////
38   ///////////////////////////////////////////////////////////////////
39   namespace target
40   { /////////////////////////////////////////////////////////////////
41
42     DEFINE_PTR_TYPE(TargetImpl);
43
44     ///////////////////////////////////////////////////////////////////
45     //
46     //  CLASS NAME : TargetImpl
47     //
48     /** Base class for concrete Target implementations.
49      *
50      * Constructed by \ref TargetFactory. Public access via \ref Target
51      * interface.
52     */
53     class TargetImpl : public base::ReferenceCounted, private base::NonCopyable
54     {
55       friend std::ostream & operator<<( std::ostream & str, const TargetImpl & obj );
56
57     public:
58       /** list of pool items  */
59       typedef std::list<PoolItem> PoolItemList;
60
61       /** set of pool items  */
62       typedef std::set<PoolItem> PoolItemSet;
63
64     public:
65       /** Ctor. */
66       TargetImpl(const Pathname & root_r = "/", bool doRebuild_r = false );
67       /** Dtor. */
68       virtual ~TargetImpl();
69
70       /** Null implementation */
71       static TargetImpl_Ptr nullimpl();
72
73       void load();
74
75       void unload();
76
77       void clearCache();
78
79       void buildCache();
80
81     public:
82
83       /** The root set for this target */
84       Pathname root() const
85       { return _root; }
86
87       /** The directory to store things. */
88       Pathname home() const
89       { return _root / "/var/lib/zypp"; }
90
91       /** Commit changes in the pool */
92       ZYppCommitResult commit( ResPool pool_r, const ZYppCommitPolicy & policy_r );
93
94       ZYPP_DEPRECATED int commit( ResPool pool_r, unsigned int medianr,
95                                   PoolItemList & errors_r,
96                                   PoolItemList & remaining_r,
97                                   PoolItemList & srcremaining_r,
98                                   bool dry_run = false )
99       {
100         ZYppCommitPolicy policy;
101         policy.restrictToMedia( medianr ).dryRun( dry_run );
102         ZYppCommitResult res = commit( pool_r, policy );
103         errors_r.swap( res._errors );
104         remaining_r.swap( res._remaining );
105         srcremaining_r.swap( res._srcremaining );
106         return res._result;
107       }
108
109       /** Commit ordered changes
110        *  @param pool_r only needed for #160792
111        *  @return uncommitted ones (due to error)
112        */
113       PoolItemList commit( const PoolItemList & items_r, const ZYppCommitPolicy & policy_r, const ResPool & pool_r );
114
115       /** Install a source package on the Target. */
116       void installSrcPackage( const SrcPackage_constPtr & srcPackage_r );
117
118       /** Overload to realize stream output. */
119       virtual std::ostream & dumpOn( std::ostream & str ) const
120       {
121         return str << "TargetImpl";
122       }
123
124       /** The RPM database */
125       rpm::RpmDb & rpm();
126
127       /** If the package is installed and provides the file
128       Needed to evaluate split provides during Resolver::Upgrade() */
129       bool providesFile (const std::string & path_str, const std::string & name_str) const;
130
131       /** Return name of package owning \a path_str
132        * or empty string if no installed package owns \a path_str. */
133       std::string whoOwnsFile (const std::string & path_str) const
134       { return _rpm.whoOwnsFile (path_str); }
135
136       /** Set the log file for target */
137       bool setInstallationLogfile(const Pathname & path_r);
138
139       /** return the last modification date of the target */
140       Date timestamp() const;
141
142       /** The targets distribution release string.
143        * \code
144        *   openSUSE 10.3 (i586)
145        * \endcode
146        */
147       std::string release() const;
148
149     protected:
150       /** Path to the target */
151       Pathname _root;
152       /** RPM database */
153       rpm::RpmDb _rpm;
154       /** Requested Locales database */
155       RequestedLocalesFile _requestedLocalesFile;
156       /** Soft-locks database */
157       SoftLocksFile _softLocksFile;
158       /** Hard-Locks database */
159       HardLocksFile _hardLocksFile;
160     private:
161       /** Null implementation */
162       static TargetImpl_Ptr _nullimpl;
163     };
164     ///////////////////////////////////////////////////////////////////
165
166     /** \relates TargetImpl Stream output */
167     inline std::ostream & operator<<( std::ostream & str, const TargetImpl & obj )
168     {
169       return obj.dumpOn( str );
170     }
171
172     /////////////////////////////////////////////////////////////////
173   } // namespace target
174   ///////////////////////////////////////////////////////////////////
175   /////////////////////////////////////////////////////////////////
176 } // namespace zypp
177 ///////////////////////////////////////////////////////////////////
178 #endif // ZYPP_TARGET_TARGETIMPL_H