12 #ifndef REPOINFOBASE_H_
13 #define REPOINFOBASE_H_
52 std::string
alias()
const;
65 std::string
name()
const;
72 std::string
label()
const;
101 void setAlias(
const std::string &alias );
107 void setName(
const std::string &name );
135 virtual std::ostream &
dumpOn( std::ostream & str )
const;
141 virtual std::ostream &
dumpAsIniOn( std::ostream & str )
const;
147 virtual std::ostream &
dumpAsXMLOn(std::ostream & str)
const;
153 std::ostream & str,
const std::string & content)
const;
174 std::ostream &
operator<<( std::ostream & str,
const RepoInfoBase & obj );
std::string name() const
Repository short label.
std::string alias() const
unique identifier for this source.
std::string escaped_alias() const
Same as alias(), just escaped in a way to be a valid file name.
void setAutorefresh(bool autorefresh)
enable or disable autorefresh
Pathname filepath() const
File where this repo was read from.
void setEnabled(bool enabled)
enable or disable the repository
bool operator==(const RepoInfoBase &lhs, const RepoInfoBase &rhs)
void setAlias(const std::string &alias)
set the repository alias
void setFilepath(const Pathname &filename)
set the path to the .repo file
bool operator<(const RepoInfoBase &lhs, const RepoInfoBase &rhs)
virtual std::ostream & dumpAsIniOn(std::ostream &str) const
Write this RepoInfoBase object into str in a .repo (ini) file format.
virtual std::ostream & dumpOn(std::ostream &str) const
Write a human-readable representation of this RepoInfoBase object into the str stream.
bool enabled() const
If enabled is false, then this repository must be ignored as if does not exists, except when checking...
virtual std::ostream & dumpAsXMLOn(std::ostream &str) const
Write an XML representation of this object.
std::string label() const
Label for use in messages for the user interface.
std::ostream & operator<<(std::ostream &str, const DeltaCandidates &obj)
bool operator!=(const RepoInfoBase &lhs, const RepoInfoBase &rhs)
friend std::ostream & operator<<(std::ostream &str, const RepoInfoBase &obj)
bool autorefresh() const
If true, the repostory must be refreshed before creating resolvables from it.
Base class implementing common features of RepoInfo and ServiceInfo.
void setName(const std::string &name)
set the repository name
shared_ptr< const RepoInfoBase > RepoInfoBase_constPtr
RWCOW_pointer< Impl > _pimpl
Pointer to implementation.
shared_ptr< RepoInfoBase > RepoInfoBase_Ptr
RW_pointer supporting 'copy on write' functionality.