indent
[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/ResStore.h"
24 #include "zypp/PoolItem.h"
25 #include "zypp/ZYppCommit.h"
26
27 #include "zypp/Pathname.h"
28 #include "zypp/media/MediaAccess.h"
29 #include "zypp/Target.h"
30 #include "zypp/target/rpm/RpmDb.h"
31 #include "zypp/target/store/PersistentStorage.h"
32 #include "zypp/target/TargetException.h"
33
34 ///////////////////////////////////////////////////////////////////
35 namespace zypp
36 { /////////////////////////////////////////////////////////////////
37   ///////////////////////////////////////////////////////////////////
38   namespace target
39   { /////////////////////////////////////////////////////////////////
40
41     DEFINE_PTR_TYPE(TargetImpl);
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_Ref> PoolItemList;
59
60       /** set of pool items  */
61       typedef std::set<PoolItem_Ref> PoolItemSet;
62
63     public:
64       /** JUST FOR TESTSUITE */
65       /** Sort according to prereqs and media numbers */
66       void getResolvablesToInsDel ( const ResPool pool_r,
67                                     PoolItemList & dellist_r,
68                                     PoolItemList & instlist_r,
69                                     PoolItemList & srclist_r ) const;
70
71
72     public:
73       /** Ctor. */
74       TargetImpl(const Pathname & root_r = "/");
75       /** Dtor. */
76       virtual ~TargetImpl();
77
78       /** Null implementation */
79       static TargetImpl_Ptr nullimpl();
80
81     public:
82
83       /** All resolvables in the target. */
84       const ResStore & resolvables();
85
86       /**
87        * load resolvables of certain kind in the internal store
88        * and return a iterator
89        * successive calls will be faster as resolvables are cached-
90        */
91       ResStore::resfilter_const_iterator byKindBegin( const ResObject::Kind & kind_r  ) const;
92       ResStore::resfilter_const_iterator byKindEnd( const ResObject::Kind & kind_r ) const;
93
94       /** The root set for this target */
95       Pathname root() const;
96
97       /** Commit changes in the pool */
98       ZYppCommitResult commit( ResPool pool_r, const ZYppCommitPolicy & policy_r );
99
100       ZYPP_DEPRECATED int commit( ResPool pool_r, unsigned int medianr,
101                                   PoolItemList & errors_r,
102                                   PoolItemList & remaining_r,
103                                   PoolItemList & srcremaining_r,
104                                   bool dry_run = false )
105       {
106         ZYppCommitPolicy policy;
107         policy.restrictToMedia( medianr ).dryRun( dry_run );
108         ZYppCommitResult res = commit( pool_r, policy );
109         errors_r.swap( res._errors );
110         remaining_r.swap( res._remaining );
111         srcremaining_r.swap( res._srcremaining );
112         return res._result;
113       }
114
115       /** enables the storage target */
116       bool isStorageEnabled() const;
117       void enableStorage(const Pathname &root_r);
118
119       /** Commit ordered changes
120        *  @param pool_r only needed for #160792
121        *  @return uncommitted ones (due to error)
122        */
123       PoolItemList commit( const PoolItemList & items_r, const ZYppCommitPolicy & policy_r, const ResPool & pool_r );
124
125       /** Overload to realize stream output. */
126       virtual std::ostream & dumpOn( std::ostream & str ) const
127       {
128         return str << "TargetImpl";
129       }
130
131       /** The RPM database */
132       rpm::RpmDb & rpm();
133
134       /** If the package is installed and provides the file
135       Needed to evaluate split provides during Resolver::Upgrade() */
136       bool providesFile (const std::string & path_str, const std::string & name_str) const;
137
138       /** Return the resolvable which provides path_str (rpm -qf)
139       return NULL if no resolvable provides this file  */
140       ResObject::constPtr whoOwnsFile (const std::string & path_str) const;
141
142       /** Set the log file for target */
143       bool setInstallationLogfile(const Pathname & path_r);
144
145       /** return the last modification date of the target */
146       Date timestamp() const;
147
148     protected:
149       void loadKindResolvables( const Resolvable::Kind kind );
150       /** All resolvables provided by the target. */
151       ResStore _store;
152       /** Path to the target */
153       Pathname _root;
154       /** RPM database */
155       rpm::RpmDb _rpm;
156 #ifndef STORAGE_DISABLED
157       zypp::storage::PersistentStorage _storage;
158       bool _storage_enabled;
159       std::map< const Resolvable::Kind, DefaultFalseBool> _resstore_loaded;
160 #endif
161     private:
162       /** Null implementation */
163       static TargetImpl_Ptr _nullimpl;
164     };
165     ///////////////////////////////////////////////////////////////////
166
167     /** \relates TargetImpl Stream output */
168     inline std::ostream & operator<<( std::ostream & str, const TargetImpl & obj )
169     {
170       return obj.dumpOn( str );
171     }
172
173     /////////////////////////////////////////////////////////////////
174   } // namespace target
175   ///////////////////////////////////////////////////////////////////
176   /////////////////////////////////////////////////////////////////
177 } // namespace zypp
178 ///////////////////////////////////////////////////////////////////
179 #endif // ZYPP_TARGET_TARGETIMPL_H