libzypp
13.10.6
|
Result iterator. More...
#include <LookupAttr.h>
Public Member Functions | |
iterator () | |
iterator (const iterator &rhs) | |
iterator & | operator= (const iterator &rhs) |
~iterator () | |
iterator (detail::DIWrap &dip_r) | |
C-tor taking over ownership of the passed ::_Dataiterator and doing it's first iteration (::dataiterator_step) More... | |
::_Dataiterator * | get () const |
Expert backdoor. More... | |
template<> | |
CheckSum | asType () const |
Moving fast forward. | |
void | nextSkipSolvAttr () |
On the next call to operator++ advance to the next SolvAttr. More... | |
void | nextSkipSolvable () |
On the next call to operator++ advance to the next Solvable. More... | |
void | nextSkipRepo () |
On the next call to operator++ advance to the next Repository. More... | |
void | skipSolvAttr () |
Immediately advance to the next SolvAttr. More... | |
void | skipSolvable () |
Immediately advance to the next Solvable. More... | |
void | skipRepo () |
Immediately advance to the next Repository. More... | |
void | stayInThisSolvable () |
Stop after all matches in the current Solvable are processed. More... | |
void | stayInThisRepo () |
Stop after all matches in the current Repository are processed. More... | |
Current position info. | |
Repository | inRepo () const |
The current Repository. More... | |
Solvable | inSolvable () const |
The current Solvable. More... | |
SolvAttr | inSolvAttr () const |
The current SolvAttr. More... | |
bool | atEnd () const |
Whether this points to the end of a query (Iterator is invalid). More... | |
Test attribute value type. | |
detail::IdType | solvAttrType () const |
The current SolvAttr type. More... | |
bool | solvAttrNumeric () const |
Whether this is a numeric attribute (incl. More... | |
bool | solvAttrString () const |
Whether this is a string attribute. More... | |
bool | solvAttrIdString () const |
Whether this string attribute is available as IdString. More... | |
bool | solvAttrCheckSum () const |
Whether this is a CheckSum attribute. More... | |
bool | solvAttrSubEntry () const |
Whether this is the entry to a sub-structure (flexarray). More... | |
Iterate sub-structures. | |
These are usable iff solvAttrSubEntry is
* // Lookup all "update:reference" entries for a specific solvable
* sat::LookupAttr q( sat::SolvAttr::updateReference, p->satSolvable() );
* for_( res, q.begin(), q.end() )
* {
* // List all sub values
* for_( sub, res.subBegin(), res.subEnd() )
* {
* cout << sub.asString() << endl;
* }
*
* // Directly access c specific value:
* sat::LookupAttr::iterator it( res.subFind( sat::SolvAttr::updateReferenceHref ) );
* if ( it != res.subEnd() )
* cout << it.asString() << endl;
* }
*
| |
bool | subEmpty () const |
Whether the sub-structure is empty. More... | |
size_type | subSize () const |
Ammount of attributes in the sub-structure. More... | |
iterator | subBegin () const |
Iterator to the begin of a sub-structure. More... | |
iterator | subEnd () const |
Iterator behind the end of a sub-structure. More... | |
iterator | subFind (SolvAttr attr_r) const |
Iterator pointing to the first occurance of SolvAttr attr_r in sub-structure. More... | |
iterator | subFind (const C_Str &attrname_r) const |
Retrieving attribute values. | |
int | asInt () const |
Conversion to numeric types. More... | |
unsigned | asUnsigned () const |
bool | asBool () const |
unsigned long long | asUnsignedLL () const |
const char * | c_str () const |
Conversion to string types. More... | |
std::string | asString () const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. If used with non-string types, this method tries to create some appropriate string representation. More... | |
IdString | idStr () const |
As IdStr. More... | |
detail::IdType | id () const |
CheckSum | asCheckSum () const |
As CheckSum. More... | |
template<class _Tp > | |
_Tp | asType () const |
Templated return type. More... | |
Helpers and forward declarations from LookupAttrTools.h | |
template<> | |
int | asType () const |
template<> | |
unsigned | asType () const |
template<> | |
unsigned long long | asType () const |
template<> | |
bool | asType () const |
template<> | |
const char * | asType () const |
template<> | |
IdString | asType () const |
template<> | |
CheckSum | asType () const |
Private Member Functions | |
template<class OtherDerived , class OtherIterator , class V , class C , class R , class D > | |
bool | equal (const boost::iterator_adaptor< OtherDerived, OtherIterator, V, C, R, D > &rhs) const |
bool | dip_equal (const ::_Dataiterator &lhs, const ::_Dataiterator &rhs) const |
detail::IdType | dereference () const |
void | increment () |
Private Attributes | |
detail::DIWrap | _dip |
Friends | |
class | boost::iterator_core_access |
Related Functions | |
(Note that these are not member functions.) | |
std::ostream & | operator<< (std::ostream &str, const LookupAttr::iterator &obj) |
template<class _ResultT , class _AttrT > | |
std::ostream & | operator<< (std::ostream &str, const ArrayAttr< _ResultT, _AttrT > &obj) |
Result iterator.
Extended iterator methods valid only if not .
Definition at line 353 of file LookupAttr.h.
zypp::sat::LookupAttr::iterator::iterator | ( | ) |
Definition at line 710 of file LookupAttr.cc.
zypp::sat::LookupAttr::iterator::iterator | ( | const iterator & | rhs | ) |
Definition at line 714 of file LookupAttr.cc.
zypp::sat::LookupAttr::iterator::~iterator | ( | ) |
Definition at line 729 of file LookupAttr.cc.
zypp::sat::LookupAttr::iterator::iterator | ( | detail::DIWrap & | dip_r | ) |
C-tor taking over ownership of the passed ::_Dataiterator
and doing it's first iteration (::dataiterator_step)
Definition at line 721 of file LookupAttr.cc.
void zypp::sat::LookupAttr::iterator::nextSkipSolvAttr | ( | ) |
On the next call to operator++ advance to the next SolvAttr.
Definition at line 360 of file LookupAttr.cc.
void zypp::sat::LookupAttr::iterator::nextSkipSolvable | ( | ) |
On the next call to operator++ advance to the next Solvable.
Definition at line 363 of file LookupAttr.cc.
void zypp::sat::LookupAttr::iterator::nextSkipRepo | ( | ) |
On the next call to operator++ advance to the next Repository.
Definition at line 366 of file LookupAttr.cc.
|
inline |
Immediately advance to the next SolvAttr.
Definition at line 374 of file LookupAttr.h.
|
inline |
Immediately advance to the next Solvable.
Definition at line 378 of file LookupAttr.h.
|
inline |
Immediately advance to the next Repository.
Definition at line 382 of file LookupAttr.h.
void zypp::sat::LookupAttr::iterator::stayInThisSolvable | ( | ) |
Stop after all matches in the current Solvable are processed.
Definition at line 369 of file LookupAttr.cc.
void zypp::sat::LookupAttr::iterator::stayInThisRepo | ( | ) |
Stop after all matches in the current Repository are processed.
Definition at line 372 of file LookupAttr.cc.
Repository zypp::sat::LookupAttr::iterator::inRepo | ( | ) | const |
The current Repository.
Definition at line 351 of file LookupAttr.cc.
Solvable zypp::sat::LookupAttr::iterator::inSolvable | ( | ) | const |
The current Solvable.
Definition at line 354 of file LookupAttr.cc.
SolvAttr zypp::sat::LookupAttr::iterator::inSolvAttr | ( | ) | const |
The current SolvAttr.
Definition at line 357 of file LookupAttr.cc.
|
inline |
Whether this points to the end of a query (Iterator is invalid).
Definition at line 404 of file LookupAttr.h.
detail::IdType zypp::sat::LookupAttr::iterator::solvAttrType | ( | ) | const |
The current SolvAttr type.
Definition at line 379 of file LookupAttr.cc.
bool zypp::sat::LookupAttr::iterator::solvAttrNumeric | ( | ) | const |
bool zypp::sat::LookupAttr::iterator::solvAttrString | ( | ) | const |
Whether this is a string attribute.
Definition at line 395 of file LookupAttr.cc.
bool zypp::sat::LookupAttr::iterator::solvAttrIdString | ( | ) | const |
Whether this string attribute is available as IdString.
Definition at line 410 of file LookupAttr.cc.
bool zypp::sat::LookupAttr::iterator::solvAttrCheckSum | ( | ) | const |
Whether this is a CheckSum attribute.
Definition at line 423 of file LookupAttr.cc.
bool zypp::sat::LookupAttr::iterator::solvAttrSubEntry | ( | ) | const |
Whether this is the entry to a sub-structure (flexarray).
This is the entry to a sequence of attributes. To acces them use subBegin and subEnd.
Definition at line 453 of file LookupAttr.cc.
bool zypp::sat::LookupAttr::iterator::subEmpty | ( | ) | const |
Whether the sub-structure is empty.
Definition at line 460 of file LookupAttr.cc.
LookupAttr::size_type zypp::sat::LookupAttr::iterator::subSize | ( | ) | const |
Ammount of attributes in the sub-structure.
Definition at line 463 of file LookupAttr.cc.
LookupAttr::iterator zypp::sat::LookupAttr::iterator::subBegin | ( | ) | const |
Iterator to the begin of a sub-structure.
Definition at line 471 of file LookupAttr.cc.
LookupAttr::iterator zypp::sat::LookupAttr::iterator::subEnd | ( | ) | const |
Iterator behind the end of a sub-structure.
Definition at line 493 of file LookupAttr.cc.
LookupAttr::iterator zypp::sat::LookupAttr::iterator::subFind | ( | SolvAttr | attr_r | ) | const |
Iterator pointing to the first occurance of SolvAttr attr_r in sub-structure.
If sat::SolvAttr::allAttr is passed, subBegin is returned.
Definition at line 498 of file LookupAttr.cc.
LookupAttr::iterator zypp::sat::LookupAttr::iterator::subFind | ( | const C_Str & | attrname_r | ) | const |
Definition at line 509 of file LookupAttr.cc.
int zypp::sat::LookupAttr::iterator::asInt | ( | ) | const |
Conversion to numeric types.
Definition at line 544 of file LookupAttr.cc.
unsigned zypp::sat::LookupAttr::iterator::asUnsigned | ( | ) | const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 560 of file LookupAttr.cc.
bool zypp::sat::LookupAttr::iterator::asBool | ( | ) | const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 579 of file LookupAttr.cc.
unsigned long long zypp::sat::LookupAttr::iterator::asUnsignedLL | ( | ) | const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 563 of file LookupAttr.cc.
const char * zypp::sat::LookupAttr::iterator::c_str | ( | ) | const |
Conversion to string types.
Definition at line 583 of file LookupAttr.cc.
std::string zypp::sat::LookupAttr::iterator::asString | ( | ) | const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. If used with non-string types, this method tries to create some appropriate string representation.
Definition at line 613 of file LookupAttr.cc.
IdString zypp::sat::LookupAttr::iterator::idStr | ( | ) | const |
As IdStr.
This is only done for poolized string types. Large strings like summary or descriptions are not available via IdStr, only via c_str and asString.
Definition at line 668 of file LookupAttr.cc.
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 519 of file LookupAttr.h.
CheckSum zypp::sat::LookupAttr::iterator::asCheckSum | ( | ) | const |
As CheckSum.
Definition at line 684 of file LookupAttr.cc.
|
inline |
Templated return type.
Per default assumes an Id based type, so try to construct it from the Id.
Should be specialized for supported types above.
Definition at line 531 of file LookupAttr.h.
LookupAttr::iterator & zypp::sat::LookupAttr::iterator::operator= | ( | const iterator & | rhs | ) |
Definition at line 732 of file LookupAttr.cc.
|
inlineprivate |
Definition at line 557 of file LookupAttr.h.
|
private |
Definition at line 744 of file LookupAttr.cc.
|
private |
Definition at line 751 of file LookupAttr.cc.
|
private |
Definition at line 757 of file LookupAttr.cc.
|
inline |
Expert backdoor.
Definition at line 571 of file LookupAttr.h.
CheckSum zypp::sat::LookupAttr::iterator::asType | ( | ) | const |
Definition at line 789 of file LookupAttr.cc.
|
inline |
Definition at line 585 of file LookupAttr.h.
|
inline |
Definition at line 586 of file LookupAttr.h.
|
inline |
Definition at line 587 of file LookupAttr.h.
|
inline |
Definition at line 588 of file LookupAttr.h.
|
inline |
Definition at line 589 of file LookupAttr.h.
|
inline |
Definition at line 591 of file LookupAttr.h.
CheckSum zypp::sat::LookupAttr::iterator::asType | ( | ) | const |
|
friend |
Definition at line 554 of file LookupAttr.h.
|
related |
Stream output.
Definition at line 773 of file LookupAttr.cc.
|
related |
Stream output.
Definition at line 214 of file LookupAttrTools.h.
|
private |
Definition at line 574 of file LookupAttr.h.