Cleanup and remove deprecated interface methods
[platform/upstream/libzypp.git] / zypp / Target.h
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file zypp/Target.h
10  *
11 */
12 #ifndef ZYPP_TARGET_H
13 #define ZYPP_TARGET_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/base/Deprecated.h"
21
22 #include "zypp/Product.h"
23 #include "zypp/Pathname.h"
24 #include "zypp/ResPool.h"
25
26 ///////////////////////////////////////////////////////////////////
27 namespace zypp
28 { /////////////////////////////////////////////////////////////////
29   namespace target
30   {
31     class TargetImpl;
32     namespace rpm {
33       class RpmDb;
34     }
35   }
36   namespace zypp_detail
37   {
38     class ZYppImpl;
39   }
40
41   DEFINE_PTR_TYPE(Target);
42
43   ///////////////////////////////////////////////////////////////////
44   //
45   //    CLASS NAME : Target
46   //
47   /**
48   */
49   class Target : public base::ReferenceCounted, public base::NonCopyable
50   {
51   public:
52     typedef target::TargetImpl  Impl;
53     typedef intrusive_ptr<Impl> Impl_Ptr;
54     typedef std::list<PoolItem> PoolItemList;
55
56   public:
57
58     /**
59      * builds or refreshes the target cache
60      */
61     void buildCache();
62
63     /**
64      * cleans the target cache (.solv files)
65      */
66     void cleanCache();
67
68    /**
69      * load resolvables into the pool
70      */
71     void load();
72
73     /**
74      * unload target resolvables from the
75      * pool
76      */
77     void unload();
78
79     /** Null implementation */
80     static Target_Ptr nullimpl();
81
82     /** Refference to the RPM database */
83     target::rpm::RpmDb & rpmDb();
84
85     /** If the package is installed and provides the file
86      Needed to evaluate split provides during Resolver::Upgrade() */
87     bool providesFile (const std::string & name_str, const std::string & path_str) const;
88
89     /** Return name of package owning \a path_str
90      * or empty string if no installed package owns \a path_str.
91      **/
92     std::string whoOwnsFile (const std::string & path_str) const;
93
94     /** Return the root set for this target */
95     Pathname root() const;
96
97     /** Return the path prefixed by the target root, unless it already is prefixed. */
98     Pathname assertRootPrefix( const Pathname & path_r ) const
99     { return Pathname::assertprefix( root(), path_r ); }
100
101     /** return the last modification date of the target */
102     Date timestamp() const;
103
104     /**
105      * returns the target base installed product, also known as
106      * the distribution or platform.
107      *
108      * returns 0 if there is no base installed product in the
109      * pool.
110      *
111      * \note this method requires the target to be loaded,
112      * otherwise it will return 0 as no product is found.
113      *
114      * if you require some base product attributes when the
115      * target is not loaded into the pool, see
116      * \ref targetDistribution , \ref targetDistributionRelease
117      * and \ref distributionVersion that obtain the data
118      * on demand from the installed product information.
119      */
120     Product::constPtr baseProduct() const;
121
122     /** \name Base product and registration. */
123     //@{
124     /** This is \c register.target attribute of the installed base product.
125      * Used for registration and \ref Service refresh.
126      */
127     std::string targetDistribution() const;
128
129     /** This is \c register.release attribute of the installed base product.
130      * Used for registration.
131      */
132     std::string targetDistributionRelease() const;
133     //@}
134
135     /** This is \c version attribute of the installed base product.
136      * For example http://download.opensue.org/update/11.0
137      * The 11.0 corresponds to the base product version.
138      */
139     std::string distributionVersion() const;
140     //@}
141
142
143     /**
144      * This is \flavor attribute of the installed base product
145      * but does not require the target to be loaded as it remembers
146      * the last used one. It can be empty is the target has never
147      * been loaded, as the value is not present in the system
148      * but computer from a package provides
149      */
150     std::string distributionFlavor() const;
151
152     /**
153      * anonymous unique id
154      *
155      * This id is generated once and stays in the
156      * saved in the target.
157      * It is unique and is used only for statistics.
158      *
159      */
160     std::string anonymousUniqueId() const;
161
162   public:
163     /** Ctor. If \c doRebuild_r is \c true, an already existing
164      * database is rebuilt (rpm --rebuilddb ).
165     */
166     explicit
167     Target( const Pathname & root = "/", bool doRebuild_r = false );
168     /** Ctor */
169     explicit
170     Target( const Impl_Ptr & impl_r );
171
172   private:
173     friend std::ostream & operator<<( std::ostream & str, const Target & obj );
174     /** Stream output. */
175     std::ostream & dumpOn( std::ostream & str ) const;
176
177   private:
178     /** Direct access to Impl. */
179     friend class zypp_detail::ZYppImpl;
180
181     /** Pointer to implementation */
182     RW_pointer<Impl,rw_pointer::Intrusive<Impl> > _pimpl;
183
184     static Target_Ptr _nullimpl;
185   };
186   ///////////////////////////////////////////////////////////////////
187
188   /** \relates Target Stream output. */
189   inline std::ostream & operator<<( std::ostream & str, const Target & obj )
190   { return obj.dumpOn( str ); }
191
192
193   /////////////////////////////////////////////////////////////////
194 } // namespace zypp
195 ///////////////////////////////////////////////////////////////////
196 #endif // ZYPP_TARGET_H