libzypp  13.10.6
zypp::Repository Class Reference

#include <Repository.h>

Inheritance diagram for zypp::Repository:
zypp::sat::detail::PoolMember

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.
Todo:
maybe a separate Repository/Solvable content manip interface provided by the pool.
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 PoolImplmyPool ()
 

Detailed Description

Definition at line 37 of file Repository.h.

Member Typedef Documentation

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.

Constructor & Destructor Documentation

zypp::Repository::Repository ( )
inline

Default ctor creates noRepository.

Definition at line 48 of file Repository.h.

zypp::Repository::Repository ( IdType  id_r)
inlineexplicit

PoolImpl ctor.

Definition at line 52 of file Repository.h.

Member Function Documentation

zypp::Repository::operator bool ( ) const
inlineexplicit

Evaluate Repository in a boolean context (!= noRepository).

Definition at line 60 of file Repository.h.

const std::string & zypp::Repository::systemRepoAlias ( )
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.

std::string zypp::Repository::asUserString ( ) const
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:

See Also
http://en.opensuse.org/Standards/Rpm_Metadata#SUSE_repository_info_.28suseinfo.xml.29.2C_extensions_to_repomd.xml

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.

See Also
http://en.opensuse.org/Standards/Rpm_Metadata#SUSE_repository_info_.28suseinfo.xml.29.2C_extensions_to_repomd.xml

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 Also
zypp::Product::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.

Note
This is only a hint. There is no guarantee that the repository is built for that product.
See Also
Repository::ProductInfoIterator

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.

See Also
Repository::ProductInfoIterator

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.

See Also
Repository::ProductInfoIterator

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.

See Also
Repository::ProductInfoIterator

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.

Exceptions
Exceptionif this is noRepository
Exceptionif 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.

Exceptions
Exceptionif this is noRepository
Exceptionif loading the solv-file fails.
See Also
Pool::addRepoSolv and Repository::EraseFromPool

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.

Exceptions
Exceptionif this is noRepository
Exceptionif loading the helix-file fails.
See Also
Pool::addRepoHelix and Repository::EraseFromPool

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.

sat::Solvable::IdType zypp::Repository::addSolvable ( )
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.

IdType zypp::Repository::id ( ) const
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 (

See Also
MediaPriority).

Definition at line 68 of file Repository.cc.

int zypp::Repository::satInternalSubPriority ( ) const

Definition at line 74 of file Repository.cc.

Friends And Related Function Documentation

std::ostream & operator<< ( std::ostream &  str,
const Repository obj 
)
related

Stream output

Definition at line 300 of file Repository.cc.

std::ostream & dumpAsXmlOn ( std::ostream &  str,
const Repository obj 
)
related

XML output

Definition at line 312 of file Repository.cc.

bool operator== ( const Repository lhs,
const Repository rhs 
)
related

Definition at line 291 of file Repository.h.

bool operator!= ( const Repository lhs,
const Repository rhs 
)
related

Definition at line 295 of file Repository.h.

bool operator< ( const Repository lhs,
const Repository rhs 
)
related

Definition at line 299 of file Repository.h.

Member Data Documentation

const Repository zypp::Repository::noRepository
static

Represents no Repository.

Definition at line 57 of file Repository.h.

IdType zypp::Repository::_id
private

Definition at line 280 of file Repository.h.


The documentation for this class was generated from the following files: