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