Imported Upstream version 16.3.2
[platform/upstream/libzypp.git] / zypp / sat / Solvable.h
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file       zypp/sat/Solvable.h
10  *
11 */
12 #ifndef ZYPP_SAT_SOLVABLE_H
13 #define ZYPP_SAT_SOLVABLE_H
14
15 #include <iosfwd>
16
17 #include "zypp/sat/detail/PoolMember.h"
18 #include "zypp/sat/SolvAttr.h"
19 #include "zypp/ResTraits.h"
20 #include "zypp/IdString.h"
21 #include "zypp/Edition.h"
22 #include "zypp/Arch.h"
23 #include "zypp/Dep.h"
24 #include "zypp/Capabilities.h"
25 #include "zypp/Capability.h"
26 #include "zypp/Locale.h"
27
28 ///////////////////////////////////////////////////////////////////
29 namespace zypp
30 {
31   class ByteCount;
32   class CheckSum;
33   class CpeId;
34   class Date;
35   class OnMediaLocation;
36   ///////////////////////////////////////////////////////////////////
37   namespace sat
38   {
39     ///////////////////////////////////////////////////////////////////
40     /// \class Solvable
41     /// \brief  A \ref Solvable object within the sat \ref Pool.
42     ///
43     /// \note Unfortunately libsolv combines the objects kind and
44     /// name in a single identifier \c "pattern:kde_multimedia",
45     /// \b except for packages and source packes. They are not prefixed
46     /// by any kind string. Instead the architecture is abused to store
47     /// \c "src" and \c "nosrc" values.
48     ///
49     /// \ref Solvable will hide this inconsistency by treating source
50     /// packages as an own kind of solvable and map their arch to
51     /// \ref Arch_noarch.
52     ///////////////////////////////////////////////////////////////////
53     class Solvable : protected detail::PoolMember
54     {
55     public:
56       typedef sat::detail::SolvableIdType IdType;
57
58     public:
59       /** Default ctor creates \ref noSolvable.*/
60       Solvable()
61       : _id( detail::noSolvableId )
62       {}
63
64       /** \ref PoolImpl ctor. */
65       explicit Solvable( IdType id_r )
66       : _id( id_r )
67       {}
68
69     public:
70       /** Represents no \ref Solvable. */
71       static const Solvable noSolvable;
72
73       /** Evaluate \ref Solvable in a boolean context (\c != \c noSolvable). */
74       explicit operator bool() const
75       { return get(); }
76
77     public:
78       /** The identifier.
79        * This is the solvables \ref name, \b except for packages and
80        * source packes, prefixed by it's \ref kind.
81        */
82       IdString ident()const;
83
84       /** The Solvables ResKind. */
85       ResKind kind()const;
86
87       /** Test whether a Solvable is of a certain \ref ResKind.
88        * The test is far cheaper than actually retrieving and
89        * comparing the \ref kind.
90        */
91       bool isKind( const ResKind & kind_r ) const;
92       /** \overload */
93       template<class TRes>
94       bool isKind() const
95       { return isKind( resKind<TRes>() ); }
96       /** \overload Extend the test to a range of \ref ResKind. */
97       template<class TIterator>
98       bool isKind( TIterator begin, TIterator end ) const
99       { for_( it, begin, end ) if ( isKind( *it ) ) return true; return false; }
100
101       /** The name (without any ResKind prefix). */
102       std::string name() const;
103
104       /** The edition (version-release). */
105       Edition edition() const;
106
107       /** The architecture. */
108       Arch arch() const;
109
110       /** The vendor. */
111       IdString vendor() const;
112
113       /** The \ref Repository this \ref Solvable belongs to. */
114       Repository repository() const;
115       /** The repositories \ref RepoInfo. */
116       RepoInfo repoInfo() const;
117
118       /** Return whether this \ref Solvable belongs to the system repo.
119        * \note This includes the otherwise hidden systemSolvable.
120        */
121       bool isSystem() const;
122
123       /** Whether this is known to be installed on behalf of a user request.
124        * \note This is a hint guessed by evaluating an available install history.
125        * Returns \c false for non-system (uninstalled) solvables, or if no history
126        * is available.
127        */
128       bool onSystemByUser() const;
129
130       /** Whether different versions of this package can be installed at the same time.
131        * Per default \c false. \see also \ref ZConfig::multiversion.
132        */
133       bool multiversionInstall() const;
134
135       /** The items build time. */
136       Date buildtime() const;
137
138       /** The items install time (\c false if not installed). */
139       Date installtime() const;
140
141     public:
142       /** String representation <tt>"ident-edition.arch"</tt> or \c "noSolvable"
143        * \code
144        *   product:openSUSE-11.1.x86_64
145        *   autoyast2-2.16.19-0.1.src
146        *   noSolvable
147        * \endcode
148        */
149       std::string asString() const;
150
151       /** String representation <tt>"ident-edition.arch(repo)"</tt> or \c "noSolvable" */
152       std::string asUserString() const;
153
154       /** Test whether two Solvables have the same content.
155        * Basically the same name, edition, arch, vendor and buildtime.
156        */
157       bool identical( const Solvable & rhs ) const;
158
159       /** Test for same name-version-release.arch */
160       bool sameNVRA( const Solvable & rhs ) const
161       { return( get() == rhs.get() || ( ident() == rhs.ident() && edition() == rhs.edition() && arch() == rhs.arch() ) ); }
162
163     public:
164       /** \name Access to the \ref Solvable dependencies.
165        *
166        * \note Prerequires are a subset of requires.
167        */
168       //@{
169       Capabilities provides()    const;
170       Capabilities requires()    const;
171       Capabilities conflicts()   const;
172       Capabilities obsoletes()   const;
173       Capabilities recommends()  const;
174       Capabilities suggests()    const;
175       Capabilities enhances()    const;
176       Capabilities supplements() const;
177       Capabilities prerequires() const;
178
179       /** Return \ref Capabilities selected by \ref Dep constant. */
180       Capabilities dep( Dep which_r ) const
181       {
182         switch( which_r.inSwitch() )
183         {
184           case Dep::PROVIDES_e:    return provides();    break;
185           case Dep::REQUIRES_e:    return requires();    break;
186           case Dep::CONFLICTS_e:   return conflicts();   break;
187           case Dep::OBSOLETES_e:   return obsoletes();   break;
188           case Dep::RECOMMENDS_e:  return recommends();  break;
189           case Dep::SUGGESTS_e:    return suggests();    break;
190           case Dep::ENHANCES_e:    return enhances();    break;
191           case Dep::SUPPLEMENTS_e: return supplements(); break;
192           case Dep::PREREQUIRES_e: return prerequires(); break;
193         }
194         return Capabilities();
195       }
196       /** \overload operator[] */
197       Capabilities operator[]( Dep which_r ) const
198       { return dep( which_r ); }
199
200
201       /** Return the namespaced provides <tt>'namespace([value])[ op edition]'</tt> of this Solvable. */
202       CapabilitySet providesNamespace( const std::string & namespace_r ) const;
203
204       /** Return <tt>'value[ op edition]'</tt> for namespaced provides <tt>'namespace(value)[ op edition]'</tt>.
205        * Similar to \ref providesNamespace, but the namespace is stripped from the
206        * dependencies. This is convenient if the namespace denotes packages that
207        * should be looked up. E.g. the \c weakremover namespace used in a products
208        * release package denotes the packages that were dropped from the distribution.
209        * \see \ref Product::droplist
210        */
211       CapabilitySet valuesOfNamespace( const std::string & namespace_r ) const;
212       //@}
213
214     public:
215       /** \name Locale support. */
216       //@{
217       /** Whether this \c Solvable claims to support locales. */
218       bool supportsLocales() const;
219       /** Whether this \c Solvable supports a specific \ref Locale. */
220       bool supportsLocale( const Locale & locale_r ) const;
221       /** Whether this \c Solvable supports at least one of the specified locales. */
222       bool supportsLocale( const LocaleSet & locales_r ) const;
223       /** Whether this \c Solvable supports at least one requested locale.
224        * \see \ref Pool::setRequestedLocales
225        */
226       bool supportsRequestedLocales() const;
227       /** Return the supported locales. */
228       LocaleSet getSupportedLocales() const;
229       /** \overload Legacy return via arg \a locales_r */
230       void getSupportedLocales( LocaleSet & locales_r ) const
231       { locales_r = getSupportedLocales(); }
232       //@}
233
234     public:
235       /** The solvables CpeId if available. */
236       CpeId cpeId() const;
237
238       /** Media number the solvable is located on (\c 0 if no media access required). */
239       unsigned mediaNr() const;
240
241       /** Installed (unpacked) size.
242        * This is just a total number. Many objects provide even more detailed
243        * disk usage data. You can use \ref DiskUsageCounter to find out
244        * how objects data are distributed across partitions/directories.
245        * \code
246        *   // Load directory set into ducounter
247        *   DiskUsageCounter ducounter( { "/", "/usr", "/var" } );
248        *
249        *   // see how noch space the packages use
250        *   for ( const PoolItem & pi : pool )
251        *   {
252        *     cout << pi << ducounter.disk_usage( pi ) << endl;
253        *     // I__s_(7)GeoIP-1.4.8-3.1.2.x86_64(@System) {
254        *     // dir:[/] [ bs: 0 B ts: 0 B us: 0 B (+-: 1.0 KiB)]
255        *     // dir:[/usr] [ bs: 0 B ts: 0 B us: 0 B (+-: 133.0 KiB)]
256        *     // dir:[/var] [ bs: 0 B ts: 0 B us: 0 B (+-: 1.1 MiB)]
257        *     // }
258        *   }
259        * \endcode
260        * \see \ref DiskUsageCounter
261        */
262       ByteCount installSize() const;
263
264       /** Download size. */
265       ByteCount downloadSize() const;
266
267       /** The distribution string. */
268       std::string distribution() const;
269
270       /** Short (singleline) text describing the solvable (opt. translated). */
271       std::string summary( const Locale & lang_r = Locale() ) const;
272
273       /** Long (multiline) text describing the solvable (opt. translated). */
274       std::string description( const Locale & lang_r = Locale() ) const;
275
276       /** UI hint text when selecting the solvable for install (opt. translated). */
277       std::string insnotify( const Locale & lang_r = Locale() ) const;
278       /** UI hint text when selecting the solvable for uninstall (opt. translated).*/
279       std::string delnotify( const Locale & lang_r = Locale() ) const;
280
281       /** License or agreement to accept before installing the solvable (opt. translated). */
282       std::string licenseToConfirm( const Locale & lang_r = Locale() ) const;
283       /** \c True except for well known exceptions (i.e show license but no need to accept it). */
284       bool needToAcceptLicense() const;
285
286     public:
287       /** Helper that splits an identifier into kind and name or vice versa.
288        * \note In case \c name_r is preceded by a well known kind spec, the
289        * \c kind_r argument is ignored, and kind is derived from name.
290        * \see \ref ident
291        */
292       class SplitIdent
293       {
294       public:
295         SplitIdent() {}
296         SplitIdent( IdString ident_r );
297         SplitIdent( const char * ident_r );
298         SplitIdent( const std::string & ident_r );
299         SplitIdent( ResKind kind_r, IdString name_r );
300         SplitIdent( ResKind kind_r, const C_Str & name_r );
301
302         IdString ident() const { return _ident; }
303         ResKind  kind()  const { return _kind; }
304         IdString name()  const { return _name; }
305
306       private:
307         IdString  _ident;
308         ResKind   _kind;
309         IdString  _name;
310       };
311
312     public:
313       /** \name Attribute lookup.
314        * \see \ref LookupAttr and  \ref ArrayAttr providing a general, more
315        * query like interface for attribute retrieval.
316        */
317       //@{
318       /**
319        * returns the string attribute value for \ref attr
320        * or an empty string if it does not exists.
321        */
322       std::string lookupStrAttribute( const SolvAttr & attr ) const;
323       /** \overload Trying to look up a translated string attribute.
324        *
325        * Returns the translation for \c lang_r.
326        *
327        * Passing an empty \ref Locale will return the string for the
328        * current default locale (\see \ref ZConfig::TextLocale),
329        * \b considering all fallback locales.
330        *
331        * Returns an empty string if no translation is available.
332        */
333       std::string lookupStrAttribute( const SolvAttr & attr, const Locale & lang_r ) const;
334
335       /**
336        * returns the numeric attribute value for \ref attr
337        * or 0 if it does not exists.
338        */
339       unsigned long long lookupNumAttribute( const SolvAttr & attr ) const;
340       /** \overload returning custom notfound_r value */
341       unsigned long long lookupNumAttribute( const SolvAttr & attr, unsigned long long notfound_r ) const;
342
343       /**
344        * returns the boolean attribute value for \ref attr
345        * or \c false if it does not exists.
346        */
347       bool lookupBoolAttribute( const SolvAttr & attr ) const;
348
349       /**
350        * returns the id attribute value for \ref attr
351        * or \ref detail::noId if it does not exists.
352        */
353       detail::IdType lookupIdAttribute( const SolvAttr & attr ) const;
354
355       /**
356        * returns the CheckSum attribute value for \ref attr
357        * or an empty CheckSum if ir does not exist.
358        */
359       CheckSum lookupCheckSumAttribute( const SolvAttr & attr ) const;
360
361       /**
362        * returns OnMediaLocation data: This is everything we need to
363        * download e.g. an rpm (path, checksum, downloadsize, etc.).
364        */
365       OnMediaLocation lookupLocation() const;
366       //@}
367
368     public:
369       /** Return next Solvable in \ref Pool (or \ref noSolvable). */
370       Solvable nextInPool() const;
371       /** Return next Solvable in \ref Repo (or \ref noSolvable). */
372       Solvable nextInRepo() const;
373       /** Expert backdoor. */
374       detail::CSolvable * get() const;
375       /** Expert backdoor. */
376       IdType id() const { return _id; }
377
378     private:
379       IdType _id;
380     };
381     ///////////////////////////////////////////////////////////////////
382
383     /** \relates Solvable Stream output */
384     std::ostream & operator<<( std::ostream & str, const Solvable & obj );
385
386     /** \relates Solvable More verbose stream output including dependencies */
387     std::ostream & dumpOn( std::ostream & str, const Solvable & obj );
388
389     /** \relates Solvable XML output */
390     std::ostream & dumpAsXmlOn( std::ostream & str, const Solvable & obj );
391
392     /** \relates Solvable */
393     inline bool operator==( const Solvable & lhs, const Solvable & rhs )
394     { return lhs.get() == rhs.get(); }
395
396     /** \relates Solvable */
397     inline bool operator!=( const Solvable & lhs, const Solvable & rhs )
398     { return lhs.get() != rhs.get(); }
399
400     /** \relates Solvable */
401     inline bool operator<( const Solvable & lhs, const Solvable & rhs )
402     { return lhs.get() < rhs.get(); }
403
404     /** \relates Solvable Test whether a \ref Solvable is of a certain Kind. */
405     template<class TRes>
406     inline bool isKind( const Solvable & solvable_r )
407     { return solvable_r.isKind( ResTraits<TRes>::kind ); }
408
409     /** \relates Solvable Test for same content. */
410     inline bool identical( const Solvable & lhs, const Solvable & rhs )
411     { return lhs.identical( rhs ); }
412
413     /** \relates Solvable Test for same name version release and arch. */
414     inline bool sameNVRA( const Solvable & lhs, const Solvable & rhs )
415     { return lhs.sameNVRA( rhs ); }
416
417
418     /** \relates Solvable Compare according to \a kind and \a name. */
419     inline int compareByN( const Solvable & lhs, const Solvable & rhs )
420     {
421       int res = 0;
422       if ( lhs != rhs )
423       {
424         if ( (res = lhs.kind().compare( rhs.kind() )) == 0 )
425           res = lhs.name().compare( rhs.name() );
426       }
427       return res;
428     }
429
430     /** \relates Solvable Compare according to \a kind, \a name and \a edition. */
431     inline int compareByNVR( const Solvable & lhs, const Solvable & rhs )
432     {
433       int res = compareByN( lhs, rhs );
434       if ( res == 0 )
435         res = lhs.edition().compare( rhs.edition() );
436       return res;
437     }
438
439     /** \relates Solvable Compare according to \a kind, \a name, \a edition and \a arch. */
440     inline int compareByNVRA( const Solvable & lhs, const Solvable & rhs )
441     {
442       int res = compareByNVR( lhs, rhs );
443       if ( res == 0 )
444         res = lhs.arch().compare( rhs.arch() );
445       return res;
446     }
447
448     ///////////////////////////////////////////////////////////////////
449     namespace detail
450     {
451       ///////////////////////////////////////////////////////////////////
452       //
453       //        CLASS NAME : SolvableIterator
454       //
455       /** */
456       class SolvableIterator : public boost::iterator_adaptor<
457           SolvableIterator                   // Derived
458           , CSolvable*                       // Base
459           , const Solvable                   // Value
460           , boost::forward_traversal_tag     // CategoryOrTraversal
461           , const Solvable                   // Reference
462           >
463       {
464         public:
465           SolvableIterator()
466           : SolvableIterator::iterator_adaptor_( 0 )
467           {}
468
469           explicit SolvableIterator( const Solvable & val_r )
470           : SolvableIterator::iterator_adaptor_( 0 )
471           { assignVal( val_r ); }
472
473           explicit SolvableIterator( SolvableIdType id_r )
474           : SolvableIterator::iterator_adaptor_( 0 )
475           { assignVal( Solvable( id_r ) ); }
476
477         private:
478           friend class boost::iterator_core_access;
479
480           Solvable dereference() const
481           { return _val; }
482
483           void increment()
484           { assignVal( _val.nextInPool() ); }
485
486         private:
487           void assignVal( const Solvable & val_r )
488           { _val = val_r; base_reference() = _val.get(); }
489
490           Solvable _val;
491       };
492     } // namespace detail
493     ///////////////////////////////////////////////////////////////////
494   } // namespace sat
495   ///////////////////////////////////////////////////////////////////
496
497   class PoolItem;
498   ///////////////////////////////////////////////////////////////////
499   namespace sat
500   {
501     /** To Solvable transform functor.
502      * \relates Solvable
503      * \relates sat::SolvIterMixin
504      */
505     struct asSolvable
506     {
507       typedef Solvable result_type;
508
509       Solvable operator()( const Solvable & solv_r ) const
510       { return solv_r; }
511
512       Solvable operator()( const PoolItem & pi_r ) const;
513
514       Solvable operator()( const ResObject_constPtr & res_r ) const;
515     };
516   } // namespace sat
517   ///////////////////////////////////////////////////////////////////
518 } // namespace zypp
519 ///////////////////////////////////////////////////////////////////
520
521 ZYPP_DEFINE_ID_HASHABLE( ::zypp::sat::Solvable );
522
523 #endif // ZYPP_SAT_SOLVABLE_H