return # of successfully commited resolvables from Target::committ()
[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
17 #include "zypp/base/ReferenceCounted.h"
18 #include "zypp/base/NonCopyable.h"
19 #include "zypp/base/PtrTypes.h"
20 #include "zypp/ResStore.h"
21
22 #include "zypp/Pathname.h"
23 #include "zypp/media/MediaAccess.h"
24 #include "zypp/Target.h"
25 #include "zypp/target/rpm/RpmDb.h"
26 #include "zypp/target/store/PersistentStorage.h"
27 #include "zypp/solver/detail/Types.h"
28
29 ///////////////////////////////////////////////////////////////////
30 namespace zypp
31 { /////////////////////////////////////////////////////////////////
32   ///////////////////////////////////////////////////////////////////
33   namespace target
34   { /////////////////////////////////////////////////////////////////
35
36     DEFINE_PTR_TYPE(TargetImpl);
37
38     ///////////////////////////////////////////////////////////////////
39     //
40     //  CLASS NAME : TargetImpl
41     //
42     /** Base class for concrete Target implementations.
43      *
44      * Constructed by \ref TargetFactory. Public access via \ref Target
45      * interface.
46     */
47     class TargetImpl : public base::ReferenceCounted, private base::NonCopyable
48     {
49       friend std::ostream & operator<<( std::ostream & str, const TargetImpl & obj );
50
51     private:
52       /** Sort according to prereqs and media numbers */
53       void getResolvablesToInsDel ( const ResPool pool_r,
54                                     PoolItemList & dellist_r,
55                                     PoolItemList & instlist_r,
56                                     PoolItemList & srclist_r );
57
58
59     public:
60       /** Ctor. */
61       TargetImpl(const Pathname & root_r = "/");
62       /** Dtor. */
63       virtual ~TargetImpl();
64
65       /** Null implementation */
66       static TargetImpl_Ptr nullimpl();
67
68     public:
69
70       /** All resolvables in the target. */
71       const ResStore & resolvables();
72
73       /** Commit changes in the pool
74           media = 0 means any/all medias
75           media > 0 means limit commits to this media */
76       int commit( ResPool pool_r, unsigned int medianr, PoolItemList & errors_r, PoolItemList & remaining_r, PoolItemList & srcremaining_r );
77
78       /** enables the storage target */
79       bool isStorageEnabled() const;
80       void enableStorage(const Pathname &root_r);
81
82       /** Commit ordered changes
83           return uncommitted ones (due to error) */
84       PoolItemList commit( const PoolItemList & items_r );
85
86       /** Overload to realize stream output. */
87       virtual std::ostream & dumpOn( std::ostream & str ) const
88       { return str << "TargetImpl"; }
89
90       /** The RPM database */
91       rpm::RpmDb & rpm();
92
93       /** If the package is installed and provides the file
94           Needed to evaluate split provides during Resolver::Upgrade() */
95       bool providesFile (const std::string & path_str, const std::string & name_str) const;
96
97       /** Return the resolvable which provides path_str (rpm -qf)
98           return NULL if no resolvable provides this file  */
99       ResObject::constPtr whoOwnsFile (const std::string & path_str) const;
100
101     protected:
102       /** All resolvables provided by the target. */
103       ResStore _store;
104       /** Path to the target */
105       Pathname _root;
106       /** RPM database */
107       rpm::RpmDb _rpm;
108 #ifndef STORAGE_DISABLED
109       zypp::storage::PersistentStorage _storage;
110 #endif
111     private:
112       /** Null implementation */
113       static TargetImpl_Ptr _nullimpl;
114       
115       /** wrapper with callback around getPlainRpm */
116       Pathname getRpmFile(Package::constPtr package);
117     };
118     ///////////////////////////////////////////////////////////////////
119
120     /** \relates TargetImpl Stream output */
121     inline std::ostream & operator<<( std::ostream & str, const TargetImpl & obj )
122     { return obj.dumpOn( str ); }
123
124     /////////////////////////////////////////////////////////////////
125   } // namespace target
126   ///////////////////////////////////////////////////////////////////
127   /////////////////////////////////////////////////////////////////
128 } // namespace zypp
129 ///////////////////////////////////////////////////////////////////
130 #endif // ZYPP_TARGET_TARGETIMPL_H