libzypp 17.38.7
solvable.cc
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#include <iostream>
13
14#include "solvable.h"
15#include "solvableident.h"
16
20#include <zypp-core/base/Xml.h>
21#include <zypp-core/ByteCount.h>
22#include <zypp-core/CheckSum.h>
23#include <zypp-core/Date.h>
24
25
27
28#include "pool.h"
32#include <zypp/ng/sat/queue.h>
33
34using std::endl;
35
37namespace zyppng
38{
40 namespace sat
41 {
42 namespace detail {
43 template<> Pool & poolFromType( Solvable & s )
44 {
45 const auto id = s.id();
48 ZYPP_PRECONDITION( cp->solvables[id].repo, "Solvable has no repo — already freed?" );
49 ZYPP_PRECONDITION( cp->appdata );
50 return *static_cast<Pool *>( cp->appdata );
51 }
52 template<> const Pool & poolFromType( const Solvable & s )
53 {
54 const auto id = s.id();
57 ZYPP_PRECONDITION( cp->solvables[id].repo, "Solvable has no repo — already freed?" );
58 ZYPP_PRECONDITION( cp->appdata );
59 return *static_cast<const Pool *>( cp->appdata );
60 }
61 }
63 // class Solvable
65
66 const Solvable Solvable::noSolvable;
67
68 const IdString Solvable::patternToken { "pattern()" };
69 const IdString Solvable::productToken { "product()" };
70
71 const IdString Solvable::retractedToken { "retracted-patch-package()" };
72 const IdString Solvable::ptfMasterToken { "ptf()" };
73 const IdString Solvable::ptfPackageToken { "ptf-package()" };
74
76
78 {
80 return nullptr;
81 return pool().getSolvable( _id );
82 }
83
84#define NO_SOLVABLE_RETURN( VAL ) \
85 detail::CSolvable * _solvable( get() ); \
86 if ( ! _solvable ) return VAL
87
89 {
91 return Solvable( pool().getNextId( _id ) );
92 }
93
95 {
97 for ( detail::SolvableIdType next = _id+1; next < unsigned(_solvable->repo->end); ++next )
98 {
99 detail::CSolvable * nextS( pool().getSolvable( next ) );
100 if ( nextS && nextS->repo == _solvable->repo )
101 {
102 return Solvable( next );
103 }
104 }
105 return noSolvable;
106 }
107
108 std::string Solvable::lookupStrAttribute( const SolvAttr & attr ) const
109 {
110 NO_SOLVABLE_RETURN( std::string() );
111 const char * s = ::solvable_lookup_str( _solvable, attr.id() );
112 return s ? s : std::string();
113 }
114
115 std::string Solvable::lookupStrAttribute( const SolvAttr & attr, const Locale & lang_r ) const
116 {
117 NO_SOLVABLE_RETURN( std::string() );
118 const char * s = 0;
119 if ( !lang_r )
120 {
121 s = ::solvable_lookup_str_poollang( _solvable, attr.id() );
122 }
123 else
124 {
125 for ( Locale l( lang_r ); l; l = l.fallback() )
126 {
127 if ( (s = ::solvable_lookup_str_lang( _solvable, attr.id(), l.c_str(), 0 )) )
128 return s;
129 }
130 // here: no matching locale, so use default
131 s = ::solvable_lookup_str_lang( _solvable, attr.id(), 0, 0 );
132 }
133 return s ? s : std::string();
134 }
135
136 unsigned long long Solvable::lookupNumAttribute( const SolvAttr & attr ) const
137 {
139 return ::solvable_lookup_num( _solvable, attr.id(), 0 );
140 }
141
142 unsigned long long Solvable::lookupNumAttribute( const SolvAttr & attr, unsigned long long notfound_r ) const
143 {
144 NO_SOLVABLE_RETURN( notfound_r );
145 return ::solvable_lookup_num( _solvable, attr.id(), notfound_r );
146 }
147
148 bool Solvable::lookupBoolAttribute( const SolvAttr & attr ) const
149 {
150 NO_SOLVABLE_RETURN( false );
151 return ::solvable_lookup_bool( _solvable, attr.id() );
152 }
153
155 {
157 return ::solvable_lookup_id( _solvable, attr.id() );
158 }
159
161 {
163 detail::IdType chksumtype = 0;
164 const char * s = ::solvable_lookup_checksum( _solvable, attr.id(), &chksumtype );
165 if ( ! s )
166 return zypp::CheckSum();
167 switch ( chksumtype )
168 {
169 case REPOKEY_TYPE_MD5: return zypp::CheckSum::md5( s );
170 case REPOKEY_TYPE_SHA1: return zypp::CheckSum::sha1( s );
171 case REPOKEY_TYPE_SHA224: return zypp::CheckSum::sha224( s );
172 case REPOKEY_TYPE_SHA256: return zypp::CheckSum::sha256( s );
173 case REPOKEY_TYPE_SHA384: return zypp::CheckSum::sha384( s );
174 case REPOKEY_TYPE_SHA512: return zypp::CheckSum::sha512( s );
175 }
176 return zypp::CheckSum( std::string(), s ); // try to autodetect
177 }
178
180 {
182 return IdString( _solvable->name );
183 }
184
186 {
188 // detect srcpackages by 'arch'
189 switch ( _solvable->arch )
190 {
191 case ARCH_SRC:
192 case ARCH_NOSRC:
193 return ResKind::srcpackage;
194 break;
195 }
196
197 // either explicitly prefixed...
198 const char * ident = IdString( _solvable->name ).c_str();
199 ResKind knownKind( ResKind::explicitBuiltin( ident ) );
200 if ( knownKind )
201 return knownKind;
202
203 // ...or no ':' in package names (hopefully)...
204 const char * sep = ::strchr( ident, ':' );
205 if ( ! sep )
206 return ResKind::package;
207
208 // ...or something unknown.
209 return ResKind( std::string( ident, sep-ident ) );
210 }
211
212 bool Solvable::isKind( const ResKind & kind_r ) const
213 {
214 NO_SOLVABLE_RETURN( false );
215
216 // detect srcpackages by 'arch'
217 switch ( _solvable->arch )
218 {
219 case ARCH_SRC:
220 case ARCH_NOSRC:
221 return( kind_r == ResKind::srcpackage );
222 break;
223 }
224
225 // no ':' in package names (hopefully)
226 const char * ident = IdString( _solvable->name ).c_str();
227 if ( kind_r == ResKind::package )
228 {
229 return( ::strchr( ident, ':' ) == 0 );
230 }
231
232 // look for a 'kind:' prefix
233 const char * kind = kind_r.c_str();
234 unsigned ksize = ::strlen( kind );
235 return( ::strncmp( ident, kind, ksize ) == 0
236 && ident[ksize] == ':' );
237 }
238
239 std::string Solvable::name() const
240 {
241 NO_SOLVABLE_RETURN( std::string() );
242 const char * ident = IdString( _solvable->name ).c_str();
243 const char * sep = ::strchr( ident, ':' );
244 return( sep ? sep+1 : ident );
245 }
246
248 {
250 return Edition( _solvable->evr );
251 }
252
254 {
255 NO_SOLVABLE_RETURN( Arch_noarch ); //ArchId() );
256 switch ( _solvable->arch )
257 {
258 case ARCH_SRC:
259 case ARCH_NOSRC:
260 return Arch_noarch; //ArchId( ARCH_NOARCH );
261 break;
262 }
263 return Arch( IdString(_solvable->arch).asString() );
264 //return ArchId( _solvable->arch );
265 }
266
268 {
270 return IdString( _solvable->vendor );
271 }
272
274 {
276 return _solvable->repo;
277 }
278
280 {
282 return pool().isSystemRepo( _solvable->repo );
283 }
284
290
296
297#if 0
298 std::string Solvable::asString() const
299 {
300 NO_SOLVABLE_RETURN( (_id == detail::systemSolvableId ? "systemSolvable" : "noSolvable") );
301 return str::form( "%s-%s.%s",
302 IdString( _solvable->name ).c_str(),
303 IdString( _solvable->evr ).c_str(),
304 IdString( _solvable->arch ).c_str() );
305 }
306
307 std::string Solvable::asUserString() const\
308 {
309 NO_SOLVABLE_RETURN( (_id == detail::systemSolvableId ? "systemSolvable" : "noSolvable") );
310 return str::form( "%s-%s.%s (%s)",
311 IdString( _solvable->name ).c_str(),
312 IdString( _solvable->evr ).c_str(),
313 IdString( _solvable->arch ).c_str(),
314 repository().asUserString().c_str() );
315 }
316#endif
317
318 bool Solvable::identical( const Solvable & rhs ) const
319 {
320 NO_SOLVABLE_RETURN( ! rhs.get() );
321 detail::CSolvable * rhssolvable( rhs.get() );
322 return rhssolvable && ( _solvable == rhssolvable || ::solvable_identical( _solvable, rhssolvable ) );
323 }
324
326 namespace
327 {
328 inline Capabilities _getCapabilities( detail::IdType * idarraydata_r, ::Offset offs_r )
329 {
330 return offs_r ? Capabilities( idarraydata_r + offs_r ) : Capabilities();
331 }
332 } // namespace
334
336 {
338 return _getCapabilities( _solvable->repo->idarraydata, _solvable->dep_provides );
339 }
341 {
343 return _getCapabilities( _solvable->repo->idarraydata, _solvable->dep_requires );
344 }
346 {
348 return _getCapabilities( _solvable->repo->idarraydata, _solvable->dep_conflicts );
349 }
351 {
353 return _getCapabilities( _solvable->repo->idarraydata, _solvable->dep_obsoletes );
354 }
356 {
358 return _getCapabilities( _solvable->repo->idarraydata, _solvable->dep_recommends );
359 }
361 {
363 return _getCapabilities( _solvable->repo->idarraydata, _solvable->dep_suggests );
364 }
366 {
368 return _getCapabilities( _solvable->repo->idarraydata, _solvable->dep_enhances );
369 }
371 {
373 return _getCapabilities( _solvable->repo->idarraydata, _solvable->dep_supplements );
374 }
376 {
378 // prerequires are a subset of requires
379 ::Offset offs = _solvable->dep_requires;
380 return offs ? Capabilities( _solvable->repo->idarraydata + offs, detail::solvablePrereqMarker )
381 : Capabilities();
382 }
383
384 CapabilitySet Solvable::providesNamespace( const std::string & namespace_r ) const
385 {
387
388 const auto &providesPredicate = []( std::string_view namespace_r ) {
389 return [namespace_r]( const Capability &ca ){
390 CapDetail caprep( ca.detail() );
391 return ( zypp::str::hasPrefix( caprep.name().c_str(), namespace_r ) && *(caprep.name().c_str()+namespace_r.size()) == '(' );
392 };
393 };
394
395 return dep_provides()
396 | ranges::views::filter( providesPredicate(namespace_r) )
398 }
399
400 CapabilitySet Solvable::valuesOfNamespace( const std::string & namespace_r ) const
401 {
403 CapabilitySet ret;
404 Capabilities caps( dep_provides() );
405 for_( it, caps.begin(), caps.end() )
406 {
407 CapDetail caprep( (*it).detail() );
408 if ( zypp::str::hasPrefix( caprep.name().c_str(), namespace_r ) && *(caprep.name().c_str()+namespace_r.size()) == '(' )
409 {
410 std::string value( caprep.name().c_str()+namespace_r.size()+1 );
411 value[value.size()-1] = '\0'; // erase the trailing ')'
412 ret.insert( Capability( value, caprep.op(), caprep.ed() ) );
413 }
414 }
415 return ret;
416 }
417
418 std::pair<bool, CapabilitySet> Solvable::matchesSolvable(const SolvAttr &attr, const Solvable &solv) const
419 {
420 sat::Queue capQueue;
421 int res = solvable_matchessolvable( get(), attr.id(), static_cast<Id>( solv.id() ), capQueue, 0 );
422
423 CapabilitySet caps;
424 if ( capQueue.size() )
425 std::for_each( capQueue.begin(), capQueue.end(), [ &caps ]( auto cap ){ caps.insert( Capability(cap) );});
426
427 return std::make_pair( res == 1, std::move(caps) );
428 }
429
431 namespace
432 {
437 int invokeOnEachSupportedLocale( Capability cap_r, const std::function<bool (const Locale &)>& fnc_r )
438 {
439 CapDetail detail( cap_r );
440 if ( detail.kind() == CapDetail::EXPRESSION )
441 {
442 switch ( detail.capRel() )
443 {
446 // expand
447 {
448 int res = invokeOnEachSupportedLocale( detail.lhs(), fnc_r );
449 if ( res < 0 )
450 return res; // negative on abort.
451 int res2 = invokeOnEachSupportedLocale( detail.rhs(), fnc_r );
452 if ( res2 < 0 )
453 return -res + res2; // negative on abort.
454 return res + res2;
455 }
456 break;
457
459 if ( detail.lhs().id() == NAMESPACE_LANGUAGE )
460 {
461 return ( !fnc_r || fnc_r( Locale( IdString(detail.rhs().id()) ) ) ) ? 1 : -1; // negative on abort.
462 }
463 break;
464
465 default:
466 break; // unwanted
467 }
468 }
469 return 0;
470 }
471
476 inline int invokeOnEachSupportedLocale( Capabilities cap_r, const std::function<bool (const Locale &)>& fnc_r )
477 {
478 int cnt = 0;
479 for_( cit, cap_r.begin(), cap_r.end() )
480 {
481 int res = invokeOnEachSupportedLocale( *cit, fnc_r );
482 if ( res < 0 )
483 return -cnt + res; // negative on abort.
484 cnt += res;
485 }
486 return cnt;
487 }
489
490 // Functor returning false if a Locale is in the set.
491 struct NoMatchIn
492 {
493 NoMatchIn( const LocaleSet & locales_r ) : _locales( locales_r ) {}
494
495 bool operator()( const Locale & locale_r ) const
496 {
497 return _locales.find( locale_r ) == _locales.end();
498 }
499
500 const LocaleSet & _locales;
501 };
502 } // namespace
504
506 {
507 // false_c stops on 1st Locale.
508 return invokeOnEachSupportedLocale( dep_supplements(), zypp::functor::false_c() ) < 0;
509 }
510
511 bool Solvable::supportsLocale( const Locale & locale_r ) const
512 {
513 // not_equal_to stops on == Locale.
514 return invokeOnEachSupportedLocale( dep_supplements(), [&]( const Locale & locale ){ return std::not_equal_to<Locale>()( locale, locale_r ); } ) < 0;
515 }
516
517 bool Solvable::supportsLocale( const LocaleSet & locales_r ) const
518 {
519 if ( locales_r.empty() )
520 return false;
521 // NoMatchIn stops if Locale is included.
522 return invokeOnEachSupportedLocale( dep_supplements(), NoMatchIn(locales_r) ) < 0;
523 }
524
526 {
527 LocaleSet ret;
528 invokeOnEachSupportedLocale( dep_supplements(), [&](const Locale & l){
529 ret.insert ( l );
530 return true;
531 } );
532 return ret;
533 }
534
540
541 unsigned Solvable::mediaNr() const
542 {
543 NO_SOLVABLE_RETURN( 0U );
544 // medianumber and path
545 unsigned medianr = 0U;
546 const char * file = ::solvable_lookup_location( _solvable, &medianr );
547 if ( ! file )
548 medianr = 0U;
549 else if ( ! medianr )
550 medianr = 1U;
551 return medianr;
552 }
553
559
565
566 std::string Solvable::distribution() const
567 {
568 NO_SOLVABLE_RETURN( std::string() );
570 }
571
572 std::string Solvable::summary( const Locale & lang_r ) const
573 {
574 NO_SOLVABLE_RETURN( std::string() );
575 return lookupStrAttribute( SolvAttr::summary, lang_r );
576 }
577
578 std::string Solvable::description( const Locale & lang_r ) const
579 {
580 NO_SOLVABLE_RETURN( std::string() );
582 }
583
584 std::string Solvable::insnotify( const Locale & lang_r ) const
585 {
586 NO_SOLVABLE_RETURN( std::string() );
587 return lookupStrAttribute( SolvAttr::insnotify, lang_r );
588 }
589
590 std::string Solvable::delnotify( const Locale & lang_r ) const
591 {
592 NO_SOLVABLE_RETURN( std::string() );
593 return lookupStrAttribute( SolvAttr::delnotify, lang_r );
594 }
595
596
597#if 0
598 std::string Solvable::licenseToConfirm( const Locale & lang_r ) const
599 {
600 NO_SOLVABLE_RETURN( std::string() );
601 std::string ret = lookupStrAttribute( SolvAttr::eula, lang_r );
602 if ( ret.empty() && isKind<Product>() )
603 {
604 const RepoInfo & ri( repoInfo() );
605 std::string riname( name() ); // "license-"+name with fallback "license"
606 if ( ! ri.hasLicense( riname ) )
607 riname.clear();
608
609 if ( ri.needToAcceptLicense( riname ) || ! ui::Selectable::get( *this )->hasInstalledObj() )
610 ret = ri.getLicense( riname, lang_r ); // bnc#908976: suppress informal license upon update
611 }
612 return ret;
613 }
614
616 {
617 NO_SOLVABLE_RETURN( false );
618 if ( isKind<Product>() )
619 {
620 const RepoInfo & ri( repoInfo() );
621 std::string riname( name() ); // "license-"+name with fallback "license"
622 if ( ! ri.hasLicense( riname ) )
623 riname.clear();
624
625 return ri.needToAcceptLicense( riname );
626 }
627 return true;
628 }
629 std::ostream & dumpOn( std::ostream & str, const Solvable & obj )
630 {
631 str << obj;
632 if ( obj )
633 {
634#define OUTS(X) if ( ! obj[Dep::X].empty() ) str << endl << " " #X " " << obj[Dep::X]
635 OUTS(PROVIDES);
636 OUTS(PREREQUIRES);
637 OUTS(REQUIRES);
638 OUTS(CONFLICTS);
639 OUTS(OBSOLETES);
640 OUTS(RECOMMENDS);
641 OUTS(SUGGESTS);
642 OUTS(ENHANCES);
643 OUTS(SUPPLEMENTS);
644#undef OUTS
645 }
646 return str;
647 }
648
649 std::ostream & dumpAsXmlOn( std::ostream & str, const Solvable & obj )
650 {
651 xmlout::Node guard( str, "solvable" );
652
653 dumpAsXmlOn( *guard, obj.kind() );
654 *xmlout::Node( *guard, "name" ) << obj.name();
655 dumpAsXmlOn( *guard, obj.edition() );
656 dumpAsXmlOn( *guard, obj.arch() );
657 dumpAsXmlOn( *guard, obj.repository() );
658 return str;
659 }
660#endif
661
662 } // namespace sat
664} // namespace zypp
#define OUTS(VAL)
#define for_(IT, BEG, END)
Convenient for-loops using iterator.
Definition Easy.h:27
#define NO_SOLVABLE_RETURN(VAL)
Definition Solvable.cc:113
Architecture.
Definition Arch.h:37
Store and operate with byte count.
Definition ByteCount.h:32
static CheckSum md5(const std::string &checksum)
Definition CheckSum.h:73
static CheckSum sha384(const std::string &checksum)
Definition CheckSum.h:78
static CheckSum sha1(const std::string &checksum)
Definition CheckSum.h:75
static CheckSum sha512(const std::string &checksum)
Definition CheckSum.h:79
static CheckSum sha256(const std::string &checksum)
Definition CheckSum.h:77
static CheckSum sha224(const std::string &checksum)
Definition CheckSum.h:76
Common Platform Enumearation (2.3) See http://cpe.mitre.org/ for more information on the Common Platf...
Definition CpeId.h:33
Store and operate on date (time_t).
Definition Date.h:33
Edition represents [epoch:]version[-release].
Definition Edition.h:60
Access to the sat-pools string space.
Definition IdString.h:55
const char * c_str() const
Conversion to const char *.
Definition IdString.cc:51
std::string asString() const
Conversion to std::string.
Definition IdString.h:110
'Language[_Country]' codes.
Definition Locale.h:51
Locale fallback() const
Return the fallback locale for this locale, if no fallback exists the empty Locale::noCode.
Definition Locale.cc:211
What is known about a repository.
Definition RepoInfo.h:72
Resolvable kinds.
Definition ResKind.h:33
Solvable attribute keys.
Definition SolvAttr.h:41
Capabilities dep_suggests() const
Definition Solvable.cc:513
static const IdString patternToken
Indicator provides pattern().
Definition Solvable.h:58
Capabilities dep_conflicts() const
Definition Solvable.cc:498
bool lookupBoolAttribute(const SolvAttr &attr) const
returns the boolean attribute value for attr or false if it does not exists.
Definition Solvable.cc:174
IdString vendor() const
The vendor.
Definition Solvable.cc:361
ByteCount installSize() const
Installed (unpacked) size.
Definition Solvable.cc:722
Date buildtime() const
The items build time.
Definition Solvable.cc:440
bool needToAcceptLicense() const
True except for well known exceptions (i.e show license but no need to accept it).
Definition Solvable.cc:781
ResKind kind() const
The Solvables ResKind.
Definition Solvable.cc:279
CapabilitySet providesNamespace(const std::string &namespace_r) const
Return the namespaced provides 'namespace([value])[ op edition]' of this Solvable.
Definition Solvable.cc:554
static const Solvable noSolvable
Represents no Solvable.
Definition Solvable.h:83
Capabilities dep_supplements() const
Definition Solvable.cc:523
std::string asString() const
String representation "ident-edition.arch" or "noSolvable".
Definition Solvable.cc:452
std::string distribution() const
The distribution string.
Definition Solvable.cc:734
unsigned mediaNr() const
Media number the solvable is located on (0 if no media access required).
Definition Solvable.cc:709
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:162
Capabilities dep_enhances() const
Definition Solvable.cc:518
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:134
Capabilities dep_recommends() const
Definition Solvable.cc:508
CpeId cpeId() const
The solvables CpeId if available.
Definition Solvable.cc:703
Solvable nextInRepo() const
Return next Solvable in Repo (or noSolvable).
Definition Solvable.cc:120
Date installtime() const
The items install time (false if not installed).
Definition Solvable.cc:446
Edition edition() const
The edition (version-release).
Definition Solvable.cc:341
Capabilities dep_obsoletes() const
Definition Solvable.cc:503
LocaleSet getSupportedLocales() const
Return the supported locales.
Definition Solvable.cc:696
detail::CSolvable * get() const
Expert backdoor.
Definition Solvable.cc:110
Arch arch() const
The architecture.
Definition Solvable.cc:347
bool isSystem() const
Return whether this Solvable belongs to the system repo.
Definition Solvable.cc:377
Solvable nextInPool() const
Return next Solvable in Pool (or noSolvable).
Definition Solvable.cc:117
std::string licenseToConfirm(const Locale &lang_r=Locale()) const
License or agreement to accept before installing the solvable (opt.
Definition Solvable.cc:764
bool supportsLocales() const
Whether this Solvable claims to support locales.
Definition Solvable.cc:673
std::string asUserString() const
String representation "ident-edition.arch(repo)" or "noSolvable".
Definition Solvable.cc:461
std::string summary(const Locale &lang_r=Locale()) const
Short (singleline) text describing the solvable (opt.
Definition Solvable.cc:740
Capabilities dep_prerequires() const
Definition Solvable.cc:528
Capabilities dep_provides() const
Definition Solvable.cc:488
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:180
std::pair< bool, CapabilitySet > matchesSolvable(const SolvAttr &attr, const sat::Solvable &solv) const
Definition Solvable.cc:586
std::string name() const
The name (without any ResKind prefix).
Definition Solvable.cc:333
bool supportsLocale(const Locale &locale_r) const
Whether this Solvable supports a specific Locale.
Definition Solvable.cc:679
Capabilities dep_requires() const
Definition Solvable.cc:493
ByteCount downloadSize() const
Download size.
Definition Solvable.cc:728
std::string delnotify(const Locale &lang_r=Locale()) const
UI hint text when selecting the solvable for uninstall (opt.
Definition Solvable.cc:758
CapabilitySet valuesOfNamespace(const std::string &namespace_r) const
Return 'value[ op edition]' for namespaced provides 'namespace(value)[ op edition]'.
Definition Solvable.cc:568
IdString ident() const
The identifier.
Definition Solvable.cc:273
static const IdString productToken
Indicator provides product().
Definition Solvable.h:59
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:186
std::string description(const Locale &lang_r=Locale()) const
Long (multiline) text describing the solvable (opt.
Definition Solvable.cc:746
Repository repository() const
The Repository this Solvable belongs to.
Definition Solvable.cc:367
bool isKind() const
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition Solvable.h:106
std::string insnotify(const Locale &lang_r=Locale()) const
UI hint text when selecting the solvable for install (opt.
Definition Solvable.cc:752
bool identical(const Solvable &rhs) const
Test whether two Solvables have the same content.
Definition Solvable.cc:471
static Ptr get(const pool::ByIdent &ident_r)
Get the Selctable.
Definition Selectable.cc:29
static constexpr NoThrowType noThrow
Indicator argument for non-trowing ctor.
Definition CpeId.h:63
const char * c_str() const
IdType id() const
static const ResKind srcpackage
Definition ResKind.h:44
static ResKind explicitBuiltin(const char *str_r)
Return the builtin kind if str_r explicitly prefixed.
Definition ResKind.cc:46
static const ResKind package
Definition ResKind.h:40
Helper providing more detailed information about a Capability.
Definition capability.h:339
Edition ed() const
Definition capability.h:394
IdString name() const
Definition capability.h:392
Container of Capability (currently read only).
const_iterator begin() const
Iterator pointing to the first Capability.
const_iterator end() const
Iterator pointing behind the last Capability.
A sat capability.
Definition capability.h:74
Orchestrator for a libsolv pool instance.
Definition pool.h:37
detail::CSolvable * getSolvable(detail::SolvableIdType id_r) const
Return pointer to the sat-solvable or NULL if it is not valid.
Definition pool.h:227
bool isSystemRepo(detail::CRepo *repo_r) const
Definition pool.h:132
Libsolv Id queue wrapper.
Definition queue.h:37
size_type size() const
Definition queue.cc:55
const_iterator end() const
Definition queue.cc:61
const_iterator begin() const
Definition queue.cc:58
static const SolvAttr cpeid
Definition SolvAttr.h:100
static const SolvAttr buildtime
Definition SolvAttr.h:96
static const SolvAttr distribution
Definition SolvAttr.h:111
static const SolvAttr description
Definition SolvAttr.h:91
static const SolvAttr delnotify
Definition SolvAttr.h:93
static const SolvAttr installsize
Definition SolvAttr.h:97
static const SolvAttr downloadsize
Definition SolvAttr.h:98
static const SolvAttr insnotify
Definition SolvAttr.h:92
static const SolvAttr summary
Definition SolvAttr.h:90
static const SolvAttr installtime
Definition SolvAttr.h:95
static const SolvAttr eula
Definition SolvAttr.h:94
A Solvable object within the sat Pool.
Definition solvable.h:65
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:108
static const IdString ptfPackageToken
Indicator provides ptf-package().
Definition solvable.h:74
detail::CSolvable * get() const
Expert backdoor.
Definition solvable.cc:77
Solvable()
Default ctor creates noSolvable.
Definition solvable.h:78
std::string name() const
The name (without any ResKind prefix).
Definition solvable.cc:239
ResKind kind() const
The Solvables ResKind.
Definition solvable.cc:185
bool isKind() const
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition solvable.h:117
static const IdString retractedToken
Indicator provides retracted-patch-package().
Definition solvable.h:72
Capabilities dep_supplements() const
Definition solvable.cc:370
IdString ident() const
The identifier.
Definition solvable.cc:179
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:136
IdType id() const
Expert backdoor.
Definition solvable.h:338
Capabilities dep_provides() const
Definition solvable.cc:335
static const Solvable noSolvable
Represents no Solvable.
Definition solvable.h:94
detail::RepoIdType repository() const
The repo id this Solvable belongs to.
Definition solvable.cc:273
static const IdString ptfMasterToken
Indicator provides ptf().
Definition solvable.h:73
detail::CPool * getPool() const
Explicit accessor for the raw sat-pool.
Definition stringpool.h:60
static StringPool & instance()
Access the global StringPool instance.
Definition stringpool.cc:18
False false_c()
Convenience function for creating a False.
Definition Functional.h:104
std::ostream & dumpAsXmlOn(std::ostream &str, const FileConflicts &obj)
relates: FileConflicts XML output
std::ostream & dumpOn(std::ostream &str, const LocaleSupport &obj)
relates: LocaleSupport More verbose stream output including dependencies
bool hasPrefix(const C_Str &str_r, const C_Str &prefix_r)
Return whether str_r has prefix prefix_r.
Definition String.h:1097
std::unordered_set< Locale > LocaleSet
Definition Locale.h:29
std::string asUserString(VendorSupportOption opt)
converts the support option to a name intended to be printed to the user.
to_fn< Container > to()
Definition ranges.h:138
CLASS NAME : detail::DIWrap.
Definition cap2str.cc:14
zypp::sat::detail::CSolvable CSolvable
static const IdType solvablePrereqMarker(15)
Internal ids satlib includes in dependencies.
zypp::sat::detail::RepoIdType RepoIdType
zypp::sat::detail::CPool CPool
Pool & poolFromType(T &)
zypp::sat::detail::SolvableIdType SolvableIdType
static const IdType noId(0)
static const SolvableIdType noSolvableId(0)
Id to denote Solvable::noSolvable.
static const RepoIdType noRepoId(0)
Id to denote Repo::noRepository.
zypp::sat::detail::IdType IdType
static const SolvableIdType systemSolvableId(1)
Id to denote the usually hidden Solvable::systemSolvable.
This file contains private API, this might break at any time between releases.
bool isKind(const Solvable &solvable_r)
relates: Solvable Test whether a Solvable is of a certain Kind.
Definition solvable.h:359
std::unordered_set< Capability > CapabilitySet
Definition capability.h:35
zypp::IdString IdString
Definition idstring.h:16
zypp::RepoInfo RepoInfo
Definition repomanager.h:38
Always-on precondition checking for NG code.
#define ZYPP_PRECONDITION(EXPR,...)
Always-on precondition check — fires in debug AND release builds.
Namespace routing for C++20 ranges and C++23 ranges::to<T>() backport.