libzypp 17.31.23
|
#include <Repository.h>
Classes | |
struct | EraseFromPool |
Functor removing Repository from its Pool. More... | |
class | ProductInfoIterator |
Query class for Repository related products. More... | |
Public Types | |
typedef filter_iterator< detail::ByRepository, sat::detail::SolvableIterator > | SolvableIterator |
typedef sat::detail::size_type | size_type |
typedef sat::detail::RepoIdType | IdType |
typedef sat::ArrayAttr< std::string, std::string > | Keywords |
typedef std::string | ContentRevision |
typedef std::string | ContentIdentifier |
Public Member Functions | |
Repository () | |
Default ctor creates noRepository. | |
Repository (IdType id_r) | |
PoolImpl ctor. | |
operator bool () const | |
Evaluate Repository in a boolean context (!= noRepository ). | |
bool | isSystemRepo () const |
Return whether this is the system repository. | |
std::string | alias () const |
Short unique string to identify a repo. | |
std::string | name () const |
Label to display for this repo. | |
std::string | label () const |
Alias or name, according to ZConfig::repoLabelIsAlias. | |
std::string | asUserString () const |
User string: label (alias or name) | |
ContentRevision | contentRevision () const |
Timestamp or arbitrary user supplied string. | |
ContentIdentifier | contentIdentifier () const |
Unique string identifying a repositories content. | |
bool | hasContentIdentifier (const ContentIdentifier &id_r) const |
Whether id_r matches this repos content identifier. | |
Date | generatedTimestamp () const |
Timestamp when this repository was generated. | |
Date | suggestedExpirationTimestamp () const |
Suggested expiration timestamp. | |
Keywords | keywords () const |
repository keywords (tags) | |
bool | hasKeyword (const std::string &val_r) const |
Whether val_r is present in keywords. | |
bool | maybeOutdated () const |
The suggested expiration date of this repository already passed. | |
bool | isUpdateRepo () const |
Hint whether the Repo may provide updates for a product. | |
bool | providesUpdatesFor (const CpeId &cpeid_r) const |
Hint whether the Repo may provide updates for a product identified by its CpeId. | |
bool | solvablesEmpty () const |
Whether Repository contains solvables. | |
size_type | solvablesSize () const |
Number of solvables in Repository. | |
SolvableIterator | solvablesBegin () const |
Iterator to the first Solvable. | |
SolvableIterator | solvablesEnd () const |
Iterator behind the last Solvable. | |
Iterable< SolvableIterator > | solvables () const |
Iterate the repositories Solvables. | |
ProductInfoIterator | compatibleWithProductBegin () const |
Get an iterator to the beginning of the repository compatible distros. | |
ProductInfoIterator | compatibleWithProductEnd () const |
Get an iterator to the end of the repository compatible distros. | |
Iterable< ProductInfoIterator > | compatibleWithProduct () const |
Iterate the repository compatible distros. | |
ProductInfoIterator | updatesProductBegin () const |
Get an iterator to the beginning of distos the repository provides upadates for. | |
ProductInfoIterator | updatesProductEnd () const |
Get an iterator to the end of distos the repository provides upadates for. | |
Iterable< ProductInfoIterator > | updatesProduct () const |
Iterate distos the repository provides upadates for. | |
RepoInfo | info () const |
Return any associated RepoInfo. | |
void | setInfo (const RepoInfo &info_r) |
Set RepoInfo for this repository. | |
void | clearInfo () |
Remove any RepoInfo set for this repository. | |
void | eraseFromPool () |
Remove this Repository from its Pool. | |
Repository | nextInPool () const |
Return next Repository in Pool (or noRepository). | |
Static Public Member Functions | |
static const std::string & | systemRepoAlias () |
Reserved system repository alias @System . | |
Static Public Attributes | |
static const Repository | noRepository |
Represents no Repository. | |
Related Functions | |
(Note that these are not member functions.) | |
std::ostream & | operator<< (std::ostream &str, const Repository &obj) |
Stream output. | |
std::ostream & | dumpAsXmlOn (std::ostream &str, const Repository &obj) |
XML output. | |
bool | operator== (const Repository &lhs, const Repository &rhs) |
bool | operator!= (const Repository &lhs, const Repository &rhs) |
bool | operator< (const Repository &lhs, const Repository &rhs) |
Repository content manipulating methods. | |
| |
IdType | _id |
void | addSolv (const Pathname &file_r) |
Load Solvables from a solv-file. | |
void | addHelix (const Pathname &file_r) |
Load Solvables from a helix-file. | |
void | addTesttags (const Pathname &file_r) |
Load Solvables from a libsolv testtags-file. | |
sat::Solvable::IdType | addSolvables (unsigned count_r) |
Add count_r new empty Solvable to this Repository. | |
sat::Solvable::IdType | addSolvable () |
sat::detail::CRepo * | get () const |
Expert backdoor. | |
IdType | id () const |
Expert backdoor. | |
int | satInternalPriority () const |
libsolv internal priorities. | |
int | satInternalSubPriority () const |
Additional Inherited Members | |
Static Protected Member Functions inherited from zypp::sat::detail::PoolMember | |
static PoolImpl & | myPool () |
Definition at line 39 of file Repository.h.
typedef filter_iterator<detail::ByRepository, sat::detail::SolvableIterator> zypp::Repository::SolvableIterator |
Definition at line 42 of file Repository.h.
Definition at line 43 of file Repository.h.
Definition at line 44 of file Repository.h.
typedef sat::ArrayAttr<std::string,std::string> zypp::Repository::Keywords |
Definition at line 46 of file Repository.h.
typedef std::string zypp::Repository::ContentRevision |
Definition at line 48 of file Repository.h.
typedef std::string zypp::Repository::ContentIdentifier |
Definition at line 49 of file Repository.h.
|
inline |
Default ctor creates noRepository.
Definition at line 53 of file Repository.h.
|
inlineexplicit |
PoolImpl ctor.
Definition at line 57 of file Repository.h.
|
inlineexplicit |
Evaluate Repository in a boolean context (!=
noRepository
).
Definition at line 65 of file Repository.h.
|
static |
Reserved system repository alias @System
.
Definition at line 37 of file Repository.cc.
bool zypp::Repository::isSystemRepo | ( | ) | const |
Return whether this is the system repository.
Definition at line 53 of file Repository.cc.
std::string zypp::Repository::alias | ( | ) | const |
Short unique string to identify a repo.
ie: openSUSE-10.3
If you are looking for a label to display see name(). ie: "openSUSE 10.3 Main repository"
Definition at line 59 of file Repository.cc.
std::string zypp::Repository::name | ( | ) | const |
Label to display for this repo.
Definition at line 67 of file Repository.cc.
std::string zypp::Repository::label | ( | ) | const |
Alias or name, according to ZConfig::repoLabelIsAlias.
Definition at line 70 of file Repository.cc.
|
inline |
User string: label (alias or name)
Definition at line 93 of file Repository.h.
Repository::ContentRevision zypp::Repository::contentRevision | ( | ) | const |
Timestamp or arbitrary user supplied string.
/repomd/revision/text
() in repomd.xml
.
Definition at line 85 of file Repository.cc.
Repository::ContentIdentifier zypp::Repository::contentIdentifier | ( | ) | const |
Unique string identifying a repositories content.
/repomd/tags/repo/text
() in repomd.xml
.
Semantically the value is just a plain string, even if OBS often uses the location of the project as unique identifier.
Definition at line 92 of file Repository.cc.
bool zypp::Repository::hasContentIdentifier | ( | const ContentIdentifier & | id_r | ) | const |
Whether id_r matches this repos content identifier.
Definition at line 99 of file Repository.cc.
zypp::Date zypp::Repository::generatedTimestamp | ( | ) | const |
Timestamp when this repository was generated.
Usually this value is calculated as the newer timestamp from the timestamp of all the resources that conform the repository's metadata.
For example in a rpm-md repository, it would be the resource specified in the xml file whith the newest timestamp attribute (which is the timestamp of the file in the server ).
The timestamp is 0 if the repository does not specify when it was generated.
Definition at line 109 of file Repository.cc.
zypp::Date zypp::Repository::suggestedExpirationTimestamp | ( | ) | const |
Suggested expiration timestamp.
Repositories can define an amount of time they expire, with the generated timestamp as the base point of time.
Note that is the responsability of the repository to freshen the generated timestamp to tell the client that the repo is alive and updating the metadata.
The timestamp is 0 if the repository does not specify an expiration date.
Definition at line 116 of file Repository.cc.
Repository::Keywords zypp::Repository::keywords | ( | ) | const |
repository keywords (tags)
Definition at line 130 of file Repository.cc.
bool zypp::Repository::hasKeyword | ( | const std::string & | val_r | ) | const |
Whether val_r is present in keywords.
Definition at line 136 of file Repository.cc.
bool zypp::Repository::maybeOutdated | ( | ) | const |
The suggested expiration date of this repository already passed.
rpm-md repositories can provide this tag using the expire extension tag:
Definition at line 144 of file Repository.cc.
bool zypp::Repository::isUpdateRepo | ( | ) | const |
Hint whether the Repo may provide updates for a product.
Either the repository claims to update a product via a repository updates tag in its metadata or a known product lists the repositories ContentIdentifier as a required update repo.
Definition at line 194 of file Repository.cc.
Hint whether the Repo may provide updates for a product identified by its CpeId.
Either the repository claims to update a product via a repository updates tag in its metadata or a known product lists the repositories ContentIdentifier as required update repo.
Definition at line 160 of file Repository.cc.
bool zypp::Repository::solvablesEmpty | ( | ) | const |
Whether Repository contains solvables.
Definition at line 219 of file Repository.cc.
Repository::size_type zypp::Repository::solvablesSize | ( | ) | const |
Number of solvables in Repository.
Definition at line 225 of file Repository.cc.
Repository::SolvableIterator zypp::Repository::solvablesBegin | ( | ) | const |
Iterator to the first Solvable.
Definition at line 231 of file Repository.cc.
Repository::SolvableIterator zypp::Repository::solvablesEnd | ( | ) | const |
Iterator behind the last Solvable.
Definition at line 241 of file Repository.cc.
|
inline |
Iterate the repositories Solvables.
Definition at line 502 of file Repository.h.
Repository::ProductInfoIterator zypp::Repository::compatibleWithProductBegin | ( | ) | const |
Get an iterator to the beginning of the repository compatible distros.
Definition at line 251 of file Repository.cc.
Repository::ProductInfoIterator zypp::Repository::compatibleWithProductEnd | ( | ) | const |
Get an iterator to the end of the repository compatible distros.
Definition at line 257 of file Repository.cc.
|
inline |
Iterate the repository compatible distros.
Definition at line 401 of file Repository.h.
Repository::ProductInfoIterator zypp::Repository::updatesProductBegin | ( | ) | const |
Get an iterator to the beginning of distos the repository provides upadates for.
Definition at line 262 of file Repository.cc.
Repository::ProductInfoIterator zypp::Repository::updatesProductEnd | ( | ) | const |
Get an iterator to the end of distos the repository provides upadates for.
Definition at line 268 of file Repository.cc.
|
inline |
Iterate distos the repository provides upadates for.
Definition at line 405 of file Repository.h.
RepoInfo zypp::Repository::info | ( | ) | const |
Return any associated RepoInfo.
Definition at line 273 of file Repository.cc.
void zypp::Repository::setInfo | ( | const RepoInfo & | info_r | ) |
Set RepoInfo for this repository.
Exception | if this is noRepository |
Exception | if the RepoInfo::alias does not match the Repository::name. |
Definition at line 279 of file Repository.cc.
void zypp::Repository::clearInfo | ( | ) |
Remove any RepoInfo set for this repository.
Definition at line 291 of file Repository.cc.
void zypp::Repository::eraseFromPool | ( | ) |
Remove this Repository from its Pool.
Definition at line 297 of file Repository.cc.
Repository zypp::Repository::nextInPool | ( | ) | const |
Return next Repository in Pool (or noRepository).
Definition at line 305 of file Repository.cc.
void zypp::Repository::addSolv | ( | const Pathname & | file_r | ) |
Load Solvables from a solv-file.
In case of an exception the repository remains in the Pool.
Exception | if this is noRepository |
Exception | if loading the solv-file fails. |
Definition at line 320 of file Repository.cc.
void zypp::Repository::addHelix | ( | const Pathname & | file_r | ) |
Load Solvables from a helix-file.
Supports loading of gzip compressed files (.gz). In case of an exception the repository remains in the Pool.
Exception | if this is noRepository |
Exception | if loading the helix-file fails. |
Definition at line 339 of file Repository.cc.
void zypp::Repository::addTesttags | ( | const Pathname & | file_r | ) |
Load Solvables from a libsolv testtags-file.
Supports loading of gzip compressed files (.gz). In case of an exception the repository remains in the Pool.
Exception | if this is noRepository |
Exception | if loading the helix-file fails. |
Definition at line 361 of file Repository.cc.
sat::detail::SolvableIdType zypp::Repository::addSolvables | ( | unsigned | count_r | ) |
Add count_r
new empty Solvable to this Repository.
Definition at line 383 of file Repository.cc.
|
inline |
Definition at line 308 of file Repository.h.
sat::detail::CRepo * zypp::Repository::get | ( | ) | const |
Expert backdoor.
Definition at line 42 of file Repository.cc.
|
inline |
Expert backdoor.
Definition at line 316 of file Repository.h.
int zypp::Repository::satInternalPriority | ( | ) | const |
libsolv internal priorities.
Unlike the RepoInfo priority which tries to be YUM conform (H[1-99]L), this one is the solver's internal priority representation. It is type int
and, as one might expect, the higher the value, the higher the priority. Subpriority is currently used to express media preferences (
Definition at line 73 of file Repository.cc.
int zypp::Repository::satInternalSubPriority | ( | ) | const |
Definition at line 79 of file Repository.cc.
|
related |
Stream output.
Definition at line 394 of file Repository.cc.
|
related |
XML output.
Definition at line 406 of file Repository.cc.
|
related |
Definition at line 340 of file Repository.h.
|
related |
Definition at line 344 of file Repository.h.
|
related |
Definition at line 348 of file Repository.h.
|
static |
Represents no Repository.
Definition at line 62 of file Repository.h.
|
private |
Definition at line 329 of file Repository.h.