libzypp  16.6.1
Solvable.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_SAT_SOLVABLE_H
13 #define ZYPP_SAT_SOLVABLE_H
14 
15 #include <iosfwd>
16 
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 
29 namespace zypp
30 {
31  class ByteCount;
32  class CheckSum;
33  class CpeId;
34  class Date;
35  class OnMediaLocation;
37  namespace sat
38  {
53  class Solvable : protected detail::PoolMember
54  {
55  public:
57 
58  public:
61  : _id( detail::noSolvableId )
62  {}
63 
65  explicit Solvable( IdType id_r )
66  : _id( id_r )
67  {}
68 
69  public:
71  static const Solvable noSolvable;
72 
74  explicit operator bool() const
75  { return get(); }
76 
77  public:
82  IdString ident()const;
83 
85  ResKind kind()const;
86 
91  bool isKind( const ResKind & kind_r ) const;
93  template<class TRes>
94  bool isKind() const
95  { return isKind( resKind<TRes>() ); }
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 
102  std::string name() const;
103 
105  Edition edition() const;
106 
108  Arch arch() const;
109 
111  IdString vendor() const;
112 
114  Repository repository() const;
116  RepoInfo repoInfo() const;
117 
121  bool isSystem() const;
122 
126  bool onSystemByUser() const;
127 
131  bool onSystemByAuto() const;
132 
134  bool identIsAutoInstalled() const;
135 
139  bool multiversionInstall() const;
140 
142  Date buildtime() const;
143 
145  Date installtime() const;
146 
147  public:
155  std::string asString() const;
156 
158  std::string asUserString() const;
159 
163  bool identical( const Solvable & rhs ) const;
164 
166  bool sameNVRA( const Solvable & rhs ) const
167  { return( get() == rhs.get() || ( ident() == rhs.ident() && edition() == rhs.edition() && arch() == rhs.arch() ) ); }
168 
169  public:
175  Capabilities provides() const;
176  Capabilities requires() const;
177  Capabilities conflicts() const;
178  Capabilities obsoletes() const;
179  Capabilities recommends() const;
180  Capabilities suggests() const;
181  Capabilities enhances() const;
182  Capabilities supplements() const;
183  Capabilities prerequires() const;
184 
186  Capabilities dep( Dep which_r ) const
187  {
188  switch( which_r.inSwitch() )
189  {
190  case Dep::PROVIDES_e: return provides(); break;
191  case Dep::REQUIRES_e: return requires(); break;
192  case Dep::CONFLICTS_e: return conflicts(); break;
193  case Dep::OBSOLETES_e: return obsoletes(); break;
194  case Dep::RECOMMENDS_e: return recommends(); break;
195  case Dep::SUGGESTS_e: return suggests(); break;
196  case Dep::ENHANCES_e: return enhances(); break;
197  case Dep::SUPPLEMENTS_e: return supplements(); break;
198  case Dep::PREREQUIRES_e: return prerequires(); break;
199  }
200  return Capabilities();
201  }
203  Capabilities operator[]( Dep which_r ) const
204  { return dep( which_r ); }
205 
206 
208  CapabilitySet providesNamespace( const std::string & namespace_r ) const;
209 
217  CapabilitySet valuesOfNamespace( const std::string & namespace_r ) const;
219 
220  public:
224  bool supportsLocales() const;
226  bool supportsLocale( const Locale & locale_r ) const;
228  bool supportsLocale( const LocaleSet & locales_r ) const;
232  bool supportsRequestedLocales() const;
236  void getSupportedLocales( LocaleSet & locales_r ) const
237  { locales_r = getSupportedLocales(); }
239 
240  public:
242  CpeId cpeId() const;
243 
245  unsigned mediaNr() const;
246 
268  ByteCount installSize() const;
269 
271  ByteCount downloadSize() const;
272 
274  std::string distribution() const;
275 
277  std::string summary( const Locale & lang_r = Locale() ) const;
278 
280  std::string description( const Locale & lang_r = Locale() ) const;
281 
283  std::string insnotify( const Locale & lang_r = Locale() ) const;
285  std::string delnotify( const Locale & lang_r = Locale() ) const;
286 
288  std::string licenseToConfirm( const Locale & lang_r = Locale() ) const;
290  bool needToAcceptLicense() const;
291 
292  public:
299  {
300  public:
302  SplitIdent( IdString ident_r );
303  SplitIdent( const char * ident_r );
304  SplitIdent( const std::string & ident_r );
305  SplitIdent( ResKind kind_r, IdString name_r );
306  SplitIdent( ResKind kind_r, const C_Str & name_r );
307 
308  IdString ident() const { return _ident; }
309  ResKind kind() const { return _kind; }
310  IdString name() const { return _name; }
311 
312  private:
316  };
317 
318  public:
328  std::string lookupStrAttribute( const SolvAttr & attr ) const;
339  std::string lookupStrAttribute( const SolvAttr & attr, const Locale & lang_r ) const;
340 
345  unsigned long long lookupNumAttribute( const SolvAttr & attr ) const;
347  unsigned long long lookupNumAttribute( const SolvAttr & attr, unsigned long long notfound_r ) const;
348 
353  bool lookupBoolAttribute( const SolvAttr & attr ) const;
354 
360 
366 
373 
374  public:
376  Solvable nextInPool() const;
378  Solvable nextInRepo() const;
380  detail::CSolvable * get() const;
382  IdType id() const { return _id; }
383 
384  private:
385  IdType _id;
386  };
388 
390  std::ostream & operator<<( std::ostream & str, const Solvable & obj );
391 
393  std::ostream & dumpOn( std::ostream & str, const Solvable & obj );
394 
396  std::ostream & dumpAsXmlOn( std::ostream & str, const Solvable & obj );
397 
399  inline bool operator==( const Solvable & lhs, const Solvable & rhs )
400  { return lhs.get() == rhs.get(); }
401 
403  inline bool operator!=( const Solvable & lhs, const Solvable & rhs )
404  { return lhs.get() != rhs.get(); }
405 
407  inline bool operator<( const Solvable & lhs, const Solvable & rhs )
408  { return lhs.get() < rhs.get(); }
409 
411  template<class TRes>
412  inline bool isKind( const Solvable & solvable_r )
413  { return solvable_r.isKind( ResTraits<TRes>::kind ); }
414 
416  inline bool identical( const Solvable & lhs, const Solvable & rhs )
417  { return lhs.identical( rhs ); }
418 
420  inline bool sameNVRA( const Solvable & lhs, const Solvable & rhs )
421  { return lhs.sameNVRA( rhs ); }
422 
423 
425  inline int compareByN( const Solvable & lhs, const Solvable & rhs )
426  {
427  int res = 0;
428  if ( lhs != rhs )
429  {
430  if ( (res = lhs.kind().compare( rhs.kind() )) == 0 )
431  res = lhs.name().compare( rhs.name() );
432  }
433  return res;
434  }
435 
437  inline int compareByNVR( const Solvable & lhs, const Solvable & rhs )
438  {
439  int res = compareByN( lhs, rhs );
440  if ( res == 0 )
441  res = lhs.edition().compare( rhs.edition() );
442  return res;
443  }
444 
446  inline int compareByNVRA( const Solvable & lhs, const Solvable & rhs )
447  {
448  int res = compareByNVR( lhs, rhs );
449  if ( res == 0 )
450  res = lhs.arch().compare( rhs.arch() );
451  return res;
452  }
453 
455  namespace detail
456  {
458  //
459  // CLASS NAME : SolvableIterator
460  //
462  class SolvableIterator : public boost::iterator_adaptor<
463  SolvableIterator // Derived
464  , CSolvable* // Base
465  , const Solvable // Value
466  , boost::forward_traversal_tag // CategoryOrTraversal
467  , const Solvable // Reference
468  >
469  {
470  public:
472  : SolvableIterator::iterator_adaptor_( 0 )
473  {}
474 
475  explicit SolvableIterator( const Solvable & val_r )
476  : SolvableIterator::iterator_adaptor_( 0 )
477  { assignVal( val_r ); }
478 
480  : SolvableIterator::iterator_adaptor_( 0 )
481  { assignVal( Solvable( id_r ) ); }
482 
483  private:
484  friend class boost::iterator_core_access;
485 
487  { return _val; }
488 
489  void increment()
490  { assignVal( _val.nextInPool() ); }
491 
492  private:
493  void assignVal( const Solvable & val_r )
494  { _val = val_r; base_reference() = _val.get(); }
495 
497  };
498  } // namespace detail
500  } // namespace sat
502 
503  class PoolItem;
505  namespace sat
506  {
511  struct asSolvable
512  {
514 
515  Solvable operator()( const Solvable & solv_r ) const
516  { return solv_r; }
517 
518  Solvable operator()( const PoolItem & pi_r ) const;
519 
520  Solvable operator()( const ResObject_constPtr & res_r ) const;
521  };
522  } // namespace sat
524 } // namespace zypp
526 
528 
529 #endif // ZYPP_SAT_SOLVABLE_H
static const SolvableIdType noSolvableId(0)
Id to denote Solvable::noSolvable.
bool sameNVRA(const Solvable &rhs) const
Test for same name-version-release.arch.
Definition: Solvable.h:166
std::string description(const Locale &lang_r=Locale()) const
Long (multiline) text describing the solvable (opt.
Definition: Solvable.cc:668
std::string name() const
The name (without any ResKind prefix).
Definition: Solvable.cc:325
int IdType
Generic Id type.
Definition: PoolMember.h:104
A Solvable object within the sat Pool.
Definition: Solvable.h:53
IdString vendor() const
The vendor.
Definition: Solvable.cc:353
IdType id() const
Expert backdoor.
Definition: Solvable.h:382
Capabilities provides() const
Definition: Solvable.cc:444
RepoInfo repoInfo() const
The repositories RepoInfo.
Definition: Solvable.cc:365
ResKind kind() const
The Solvables ResKind.
Definition: Solvable.cc:271
Container of Capability (currently read only).
Definition: Capabilities.h:35
Describes a path on a certain media amongs as the information required to download it...
SolvableIterator(const Solvable &val_r)
Definition: Solvable.h:475
Enumeration class of dependency types.
Definition: Dep.h:29
bool isKind(TIterator begin, TIterator end) const
Definition: Solvable.h:98
OnMediaLocation lookupLocation() const
returns OnMediaLocation data: This is everything we need to download e.g.
Definition: Solvable.cc:220
bool isKind(const Solvable &solvable_r)
Definition: Solvable.h:412
Architecture.
Definition: Arch.h:36
LocaleSet getSupportedLocales() const
Return the supported locales.
Definition: Solvable.cc:625
Capabilities recommends() const
Definition: Solvable.cc:464
Store and operate with byte count.
Definition: ByteCount.h:30
detail::IdType lookupIdAttribute(const SolvAttr &attr) const
returns the id attribute value for attr or detail::noId if it does not exists.
Definition: Solvable.cc:172
sat::SolvAttr attr
Definition: PoolQuery.cc:303
bool operator==(const Solvable &lhs, const Solvable &rhs)
Definition: Solvable.h:399
ZYPP_DEFINE_ID_HASHABLE(::zypp::sat::Solvable)
std::ostream & operator<<(std::ostream &str, const Solvable &obj)
Definition: Solvable.cc:706
String related utilities and Regular expression matching.
Capabilities supplements() const
Definition: Solvable.cc:479
unsigned SolvableIdType
Id type to connect Solvable and sat-solvable.
Definition: PoolMember.h:125
bool isKind(const ResKind &kind_r) const
Test whether a Solvable is of a certain ResKind.
Definition: Solvable.cc:298
What is known about a repository.
Definition: RepoInfo.h:71
std::string delnotify(const Locale &lang_r=Locale()) const
UI hint text when selecting the solvable for uninstall (opt.
Definition: Solvable.cc:680
Access to the sat-pools string space.
Definition: IdString.h:41
Common Platform Enumearation (2.3) See http://cpe.mitre.org/ for more information on the Common Platf...
Definition: CpeId.h:31
#define for_(IT, BEG, END)
Convenient for-loops using iterator.
Definition: Easy.h:27
Edition represents [epoch:]version[-release]
Definition: Edition.h:60
::_Solvable CSolvable
Wrapped libsolv C data type exposed as backdoor.
Definition: PoolMember.h:64
ResTraits.
Definition: ResTraits.h:79
ByteCount downloadSize() const
Download size.
Definition: Solvable.cc:650
int compare(const Arch &rhs) const
Arch comparison.
Definition: Arch.cc:532
bool identical(const Solvable &rhs) const
Test whether two Solvables have the same content.
Definition: Solvable.cc:427
static const Solvable noSolvable
Represents no Solvable.
Definition: Solvable.h:71
int compareByNVRA(const Solvable &lhs, const Solvable &rhs)
Definition: Solvable.h:446
bool identical(const Solvable &lhs, const Solvable &rhs)
Definition: Solvable.h:416
CapabilitySet valuesOfNamespace(const std::string &namespace_r) const
Return &#39;value[ op edition]&#39; for namespaced provides &#39;namespace(value)[ op edition]&#39;.
Definition: Solvable.cc:507
Solvable nextInRepo() const
Return next Solvable in Repo (or noSolvable).
Definition: Solvable.cc:112
std::string asUserString() const
String representation "ident-edition.arch(repo)" or "noSolvable".
Definition: Solvable.cc:417
bool sameNVRA(const Solvable &lhs, const Solvable &rhs)
Definition: Solvable.h:420
static int compare(const Derived &lhs, const Derived &rhs)
Definition: IdStringType.h:127
std::string distribution() const
The distribution string.
Definition: Solvable.cc:656
Repository repository() const
The Repository this Solvable belongs to.
Definition: Solvable.cc:359
bool onSystemByAuto() const
Whether this is known to be automatically installed (as dependency of a user request package)...
Definition: Solvable.cc:380
bool isKind() const
Definition: Solvable.h:94
Store and operate on date (time_t).
Definition: Date.h:32
bool identIsAutoInstalled() const
Whether an installed solvable with the same ident is flagged as AutoInstalled.
Definition: Solvable.cc:385
Solvable attribute keys.
Definition: SolvAttr.h:40
Backlink to the associated PoolImpl.
Definition: PoolMember.h:88
for_use_in_switch inSwitch() const
Enumarator provided for use in switch statement.
Definition: Dep.h:89
Capabilities enhances() const
Definition: Solvable.cc:474
Edition edition() const
The edition (version-release).
Definition: Solvable.cc:333
CapabilitySet providesNamespace(const std::string &namespace_r) const
Return the namespaced provides &#39;namespace([value])[ op edition]&#39; of this Solvable.
Definition: Solvable.cc:493
Convenience char* constructible from std::string and char*, it maps (char*)0 to an empty string...
Definition: String.h:90
ByteCount installSize() const
Installed (unpacked) size.
Definition: Solvable.cc:644
unsigned long long lookupNumAttribute(const SolvAttr &attr) const
returns the numeric attribute value for attr or 0 if it does not exists.
Definition: Solvable.cc:154
int compareByNVR(const Solvable &lhs, const Solvable &rhs)
Definition: Solvable.h:437
CheckSum lookupCheckSumAttribute(const SolvAttr &attr) const
returns the CheckSum attribute value for attr or an empty CheckSum if ir does not exist...
Definition: Solvable.cc:178
Arch arch() const
The architecture.
Definition: Solvable.cc:339
void getSupportedLocales(LocaleSet &locales_r) const
Definition: Solvable.h:236
Capabilities operator[](Dep which_r) const
Definition: Solvable.h:203
unsigned mediaNr() const
Media number the solvable is located on (0 if no media access required).
Definition: Solvable.cc:638
std::ostream & dumpOn(std::ostream &str, const Solvable &obj)
Definition: Solvable.cc:717
std::string asString() const
String representation "ident-edition.arch" or "noSolvable".
Definition: Solvable.cc:408
Solvable(IdType id_r)
PoolImpl ctor.
Definition: Solvable.h:65
CpeId cpeId() const
The solvables CpeId if available.
Definition: Solvable.cc:632
bool multiversionInstall() const
Whether different versions of this package can be installed at the same time.
Definition: Solvable.cc:390
void assignVal(const Solvable &val_r)
Definition: Solvable.h:493
Capabilities requires() const
Definition: Solvable.cc:449
bool isSystem() const
Return whether this Solvable belongs to the system repo.
Definition: Solvable.cc:369
Solvable nextInPool() const
Return next Solvable in Pool (or noSolvable).
Definition: Solvable.cc:109
&#39;Language[_Country]&#39; codes.
Definition: Locale.h:49
bool supportsLocale(const Locale &locale_r) const
Whether this Solvable supports a specific Locale.
Definition: Solvable.cc:608
detail::CSolvable * get() const
Expert backdoor.
Definition: Solvable.cc:102
std::string lookupStrAttribute(const SolvAttr &attr) const
returns the string attribute value for attr or an empty string if it does not exists.
Definition: Solvable.cc:126
std::unordered_set< Capability > CapabilitySet
Definition: Capability.h:33
Solvable()
Default ctor creates noSolvable.
Definition: Solvable.h:60
bool supportsRequestedLocales() const
Whether this Solvable supports at least one requested locale.
Definition: Solvable.cc:622
std::string insnotify(const Locale &lang_r=Locale()) const
UI hint text when selecting the solvable for install (opt.
Definition: Solvable.cc:674
std::string summary(const Locale &lang_r=Locale()) const
Short (singleline) text describing the solvable (opt.
Definition: Solvable.cc:662
Capabilities conflicts() const
Definition: Solvable.cc:454
std::ostream & dumpAsXmlOn(std::ostream &str, const Solvable &obj)
Definition: Solvable.cc:737
SolvableIterator(SolvableIdType id_r)
Definition: Solvable.h:479
bool onSystemByUser() const
Whether this is known to be installed on behalf of a user request.
Definition: Solvable.cc:375
Helper that splits an identifier into kind and name or vice versa.
Definition: Solvable.h:298
Capabilities prerequires() const
Definition: Solvable.cc:484
Capabilities dep(Dep which_r) const
Return Capabilities selected by Dep constant.
Definition: Solvable.h:186
Solvable result_type
Definition: Solvable.h:513
bool needToAcceptLicense() const
True except for well known exceptions (i.e show license but no need to accept it).
Definition: Solvable.cc:699
int compareByN(const Solvable &lhs, const Solvable &rhs)
Definition: Solvable.h:425
bool operator<(const Solvable &lhs, const Solvable &rhs)
Definition: Solvable.h:407
Solvable operator()(const Solvable &solv_r) const
Definition: Solvable.h:515
Combining sat::Solvable and ResStatus.
Definition: PoolItem.h:50
Capabilities obsoletes() const
Definition: Solvable.cc:459
sat::detail::SolvableIdType IdType
Definition: Solvable.h:56
Resolvable kinds.
Definition: ResKind.h:32
To Solvable transform functor.
Definition: Solvable.h:511
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:1
bool supportsLocales() const
Whether this Solvable claims to support locales.
Definition: Solvable.cc:602
Date buildtime() const
The items build time.
Definition: Solvable.cc:396
std::string licenseToConfirm(const Locale &lang_r=Locale()) const
License or agreement to accept before installing the solvable (opt.
Definition: Solvable.cc:686
std::unordered_set< Locale > LocaleSet
Definition: Locale.h:27
Capabilities suggests() const
Definition: Solvable.cc:469
IdString ident() const
The identifier.
Definition: Solvable.cc:265
Date installtime() const
The items install time (false if not installed).
Definition: Solvable.cc:402
bool operator!=(const Solvable &lhs, const Solvable &rhs)
Definition: Solvable.h:403
bool lookupBoolAttribute(const SolvAttr &attr) const
returns the boolean attribute value for attr or false if it does not exists.
Definition: Solvable.cc:166