libzypp
13.10.6
|
#include <Repository.h>
Classes | |
struct | EraseFromPool |
Functor removing Repository from it's 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 |
Public Member Functions | |
Repository () | |
Default ctor creates noRepository. More... | |
Repository (IdType id_r) | |
PoolImpl ctor. More... | |
operator bool () const | |
Evaluate Repository in a boolean context (!= noRepository ). More... | |
bool | isSystemRepo () const |
Return whether this is the system repository. More... | |
std::string | alias () const |
Short unique string to identify a repo. More... | |
std::string | name () const |
Label to display for this repo. More... | |
std::string | asUserString () const |
User string. More... | |
Date | generatedTimestamp () const |
Timestamp when this repository was generated. More... | |
Date | suggestedExpirationTimestamp () const |
Suggested expiration timestamp. More... | |
Keywords | keywords () const |
repository keywords (tags) More... | |
bool | maybeOutdated () const |
The suggested expiration date of this repository already passed. More... | |
bool | isUpdateRepo () const |
if the repository claims to update something then it is an update repository More... | |
bool | providesUpdatesFor (const std::string &cpeid) const |
whether the repository claims to update something prod with key cpeid More... | |
bool | solvablesEmpty () const |
Whether Repository contains solvables. More... | |
size_type | solvablesSize () const |
Number of solvables in Repository. More... | |
SolvableIterator | solvablesBegin () const |
Iterator to the first Solvable. More... | |
SolvableIterator | solvablesEnd () const |
Iterator behind the last Solvable. More... | |
ProductInfoIterator | compatibleWithProductBegin () const |
Get an iterator to the beginning of the repository compatible distros. More... | |
ProductInfoIterator | compatibleWithProductEnd () const |
Get an iterator to the end of the repository compatible distros. More... | |
ProductInfoIterator | updatesProductBegin () const |
Get an iterator to the beginning of the repository compatible distros. More... | |
ProductInfoIterator | updatesProductEnd () const |
Get an iterator to the end of the repository compatible distros. More... | |
RepoInfo | info () const |
Return any associated RepoInfo. More... | |
void | setInfo (const RepoInfo &info_r) |
Set RepoInfo for this repository. More... | |
void | clearInfo () |
Remove any RepoInfo set for this repository. More... | |
void | eraseFromPool () |
Remove this Repository from it's Pool. More... | |
Repository | nextInPool () const |
Return next Repository in Pool (or noRepository). More... | |
::_Repo * | get () const |
Expert backdoor. More... | |
IdType | id () const |
Expert backdoor. More... | |
Repository content manipulating methods. | |
| |
void | addSolv (const Pathname &file_r) |
Load Solvables from a solv-file. More... | |
void | addHelix (const Pathname &file_r) |
Load Solvables from a helix-file. More... | |
sat::Solvable::IdType | addSolvables (unsigned count_r) |
Add count_r new empty Solvable to this Repository. More... | |
sat::Solvable::IdType | addSolvable () |
int | satInternalPriority () const |
libsolv internal priorities. More... | |
int | satInternalSubPriority () const |
Static Public Member Functions | |
static const std::string & | systemRepoAlias () |
Reserved system repository alias . More... | |
Static Public Attributes | |
static const Repository | noRepository |
Represents no Repository. More... | |
Private Attributes | |
IdType | _id |
Related Functions | |
(Note that these are not member functions.) | |
std::ostream & | operator<< (std::ostream &str, const Repository &obj) |
std::ostream & | dumpAsXmlOn (std::ostream &str, const Repository &obj) |
bool | operator== (const Repository &lhs, const Repository &rhs) |
bool | operator!= (const Repository &lhs, const Repository &rhs) |
bool | operator< (const Repository &lhs, const Repository &rhs) |
Additional Inherited Members | |
Static Protected Member Functions inherited from zypp::sat::detail::PoolMember | |
static PoolImpl & | myPool () |
Definition at line 37 of file Repository.h.
typedef filter_iterator<detail::ByRepository, sat::detail::SolvableIterator> zypp::Repository::SolvableIterator |
Definition at line 40 of file Repository.h.
Definition at line 41 of file Repository.h.
Definition at line 42 of file Repository.h.
typedef sat::ArrayAttr<std::string,std::string> zypp::Repository::Keywords |
Definition at line 44 of file Repository.h.
|
inline |
Default ctor creates noRepository.
Definition at line 48 of file Repository.h.
|
inlineexplicit |
PoolImpl ctor.
Definition at line 52 of file Repository.h.
|
inlineexplicit |
Evaluate Repository in a boolean context (!=
noRepository
).
Definition at line 60 of file Repository.h.
|
static |
Reserved system repository alias .
Definition at line 35 of file Repository.cc.
bool zypp::Repository::isSystemRepo | ( | ) | const |
Return whether this is the system repository.
Definition at line 51 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 57 of file Repository.cc.
std::string zypp::Repository::name | ( | ) | const |
Label to display for this repo.
Definition at line 65 of file Repository.cc.
|
inline |
User string.
Definition at line 85 of file Repository.h.
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 81 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 88 of file Repository.cc.
Repository::Keywords zypp::Repository::keywords | ( | ) | const |
repository keywords (tags)
Definition at line 102 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 108 of file Repository.cc.
bool zypp::Repository::isUpdateRepo | ( | ) | const |
if the repository claims to update something then it is an update repository
This is implemented by looking at the repository updates tag.
Definition at line 141 of file Repository.cc.
bool zypp::Repository::providesUpdatesFor | ( | const std::string & | cpeid | ) | const |
whether the repository claims to update something prod with key cpeid
See http://cpe.mitre.org/ for more information on the Common Platform Enumearation.
Definition at line 124 of file Repository.cc.
bool zypp::Repository::solvablesEmpty | ( | ) | const |
Whether Repository contains solvables.
Definition at line 147 of file Repository.cc.
Repository::size_type zypp::Repository::solvablesSize | ( | ) | const |
Number of solvables in Repository.
Definition at line 153 of file Repository.cc.
Repository::SolvableIterator zypp::Repository::solvablesBegin | ( | ) | const |
Iterator to the first Solvable.
Definition at line 159 of file Repository.cc.
Repository::SolvableIterator zypp::Repository::solvablesEnd | ( | ) | const |
Iterator behind the last Solvable.
Definition at line 169 of file Repository.cc.
Repository::ProductInfoIterator zypp::Repository::compatibleWithProductBegin | ( | ) | const |
Get an iterator to the beginning of the repository compatible distros.
Definition at line 179 of file Repository.cc.
Repository::ProductInfoIterator zypp::Repository::compatibleWithProductEnd | ( | ) | const |
Get an iterator to the end of the repository compatible distros.
Definition at line 185 of file Repository.cc.
Repository::ProductInfoIterator zypp::Repository::updatesProductBegin | ( | ) | const |
Get an iterator to the beginning of the repository compatible distros.
Definition at line 190 of file Repository.cc.
Repository::ProductInfoIterator zypp::Repository::updatesProductEnd | ( | ) | const |
Get an iterator to the end of the repository compatible distros.
Definition at line 196 of file Repository.cc.
RepoInfo zypp::Repository::info | ( | ) | const |
Return any associated RepoInfo.
Definition at line 201 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 207 of file Repository.cc.
void zypp::Repository::clearInfo | ( | ) |
Remove any RepoInfo set for this repository.
Definition at line 219 of file Repository.cc.
void zypp::Repository::eraseFromPool | ( | ) |
Remove this Repository from it's Pool.
Definition at line 225 of file Repository.cc.
Repository zypp::Repository::nextInPool | ( | ) | const |
Return next Repository in Pool (or noRepository).
Definition at line 233 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 248 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 267 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 289 of file Repository.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 258 of file Repository.h.
_Repo * zypp::Repository::get | ( | ) | const |
Expert backdoor.
Definition at line 40 of file Repository.cc.
|
inline |
Expert backdoor.
Definition at line 266 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 solvers internal priority representation. It is type int
and as one might expect it, the higher the value the higher the priority. Subpriority is currently used to express media preferences (
Definition at line 68 of file Repository.cc.
int zypp::Repository::satInternalSubPriority | ( | ) | const |
Definition at line 74 of file Repository.cc.
|
related |
Stream output
Definition at line 300 of file Repository.cc.
|
related |
XML output
Definition at line 312 of file Repository.cc.
|
related |
Definition at line 291 of file Repository.h.
|
related |
Definition at line 295 of file Repository.h.
|
related |
Definition at line 299 of file Repository.h.
|
static |
Represents no Repository.
Definition at line 57 of file Repository.h.
|
private |
Definition at line 280 of file Repository.h.