libzypp  15.28.6
ServiceInfo.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_SERVICE_H
13 #define ZYPP_SERVICE_H
14 
15 #include <set>
16 #include <string>
17 
18 #include "zypp/Url.h"
19 
20 #include "zypp/base/Iterable.h"
21 #include "zypp/repo/ServiceType.h"
22 #include "zypp/RepoInfo.h"
23 #include "zypp/Date.h"
24 
26 namespace zypp
27 {
28 
37  {
38  public:
40  ServiceInfo();
41 
47  ServiceInfo( const std::string & alias );
48 
55  ServiceInfo( const std::string & alias, const Url& url );
56 
57  virtual ~ServiceInfo();
58 
59  public:
61  static const ServiceInfo noService;
62 
63  public:
64 
66  Url url() const;
67 
69  Url rawUrl() const;
70 
72  void setUrl( const Url& url );
73 
74 
76  repo::ServiceType type() const;
77 
79  void setType( const repo::ServiceType & type );
80 
82  void setProbedType( const repo::ServiceType & t ) const;
83 
92  Date::Duration ttl() const;
93 
95  void setTtl( Date::Duration ttl_r );
96 
98  void setProbedTtl( Date::Duration ttl_r ) const;
99 
101  Date lrf() const;
102 
104  void setLrf( Date lrf_r );
106  //
115  typedef std::set<std::string> ReposToEnable;
116  bool reposToEnableEmpty() const;
118  ReposToEnable::const_iterator reposToEnableBegin() const;
119  ReposToEnable::const_iterator reposToEnableEnd() const;
121  { return makeIterable( reposToEnableBegin(), reposToEnableEnd() ); }
122 
124  bool repoToEnableFind( const std::string & alias_r ) const;
125 
127  void addRepoToEnable( const std::string & alias_r );
129  void delRepoToEnable( const std::string & alias_r );
131  void clearReposToEnable();
133 
141  typedef std::set<std::string> ReposToDisable;
142  bool reposToDisableEmpty() const;
144  ReposToDisable::const_iterator reposToDisableBegin() const;
145  ReposToDisable::const_iterator reposToDisableEnd() const;
147  { return makeIterable( reposToDisableBegin(), reposToDisableEnd() ); }
148 
150  bool repoToDisableFind( const std::string & alias_r ) const;
151 
153  void addRepoToDisable( const std::string & alias_r );
155  void delRepoToDisable( const std::string & alias_r );
157  void clearReposToDisable();
159 
167  struct RepoState
168  {
169  bool enabled;
171  unsigned priority;
172 
174  : enabled( false ), autorefresh( true ), priority( RepoInfo::defaultPriority() )
175  {}
176  RepoState( const RepoInfo & repo_r )
177  : enabled( repo_r.enabled() ), autorefresh( repo_r.autorefresh() ), priority( repo_r.priority() )
178  {}
179  bool operator==( const RepoState & rhs ) const
180  { return( enabled==rhs.enabled && autorefresh==rhs.autorefresh && priority==rhs.priority ); }
181  bool operator!=( const RepoState & rhs ) const
182  { return ! operator==( rhs ); }
183  friend std::ostream & operator<<( std::ostream & str, const RepoState & obj );
184  };
185  typedef std::map<std::string,RepoState> RepoStates;
186 
188  const RepoStates & repoStates() const;
189 
191  void setRepoStates( RepoStates newStates_r );
193 
194  public:
200  virtual std::ostream & dumpAsIniOn( std::ostream & str ) const;
201 
209  virtual std::ostream & dumpAsXmlOn( std::ostream & str, const std::string & content = "" ) const;
210 
211  class Impl;
212 
213  private:
215  };
217 
219  typedef shared_ptr<ServiceInfo> ServiceInfo_Ptr;
221  typedef shared_ptr<const ServiceInfo> ServiceInfo_constPtr;
223  typedef std::list<ServiceInfo> ServiceInfoList;
224 
226  std::ostream & operator<<( std::ostream & str, const ServiceInfo & obj );
227 
228 
230 } // namespace zypp
232 #endif // ZYPP_SAT_REPOSITORY_H
Service data.
Definition: ServiceInfo.h:36
std::string alias() const
unique identifier for this source.
Iterable< ReposToEnable::const_iterator > reposToEnable() const
Definition: ServiceInfo.h:120
std::set< std::string > ReposToEnable
Container of repos.
Definition: ServiceInfo.h:115
ReposToDisable::size_type reposToDisableSize() const
Definition: ServiceInfo.cc:141
ReposToEnable::const_iterator reposToEnableBegin() const
Definition: ServiceInfo.cc:121
void clearReposToEnable()
Clear the set of ReposToEnable.
Definition: ServiceInfo.cc:136
void setTtl(Date::Duration ttl_r)
Set sugested TTL.
Definition: ServiceInfo.cc:113
void addRepoToEnable(const std::string &alias_r)
Add alias_r to the set of ReposToEnable.
Definition: ServiceInfo.cc:127
What is known about a repository.
Definition: RepoInfo.h:72
const RepoStates & repoStates() const
Access the remembered repository states.
Definition: ServiceInfo.cc:161
ReposToDisable::const_iterator reposToDisableEnd() const
Definition: ServiceInfo.cc:143
void setType(const repo::ServiceType &type)
Set service type.
Definition: ServiceInfo.cc:109
RWCOW_pointer< Impl > _pimpl
Definition: ServiceInfo.h:211
ReposToDisable::const_iterator reposToDisableBegin() const
Definition: ServiceInfo.cc:142
std::map< std::string, RepoState > RepoStates
Definition: ServiceInfo.h:185
shared_ptr< const ServiceInfo > ServiceInfo_constPtr
Definition: ServiceInfo.h:221
Store and operate on date (time_t).
Definition: Date.h:32
void clearReposToDisable()
Clear the set of ReposToDisable.
Definition: ServiceInfo.cc:157
std::ostream & operator<<(std::ostream &str, const Exception &obj)
Definition: Exception.cc:120
Service type enumeration.
Definition: ServiceType.h:26
void setRepoStates(RepoStates newStates_r)
Remember a new set of repository states.
Definition: ServiceInfo.cc:162
bool reposToEnableEmpty() const
Definition: ServiceInfo.cc:119
time_t Duration
Definition: Date.h:39
Date::Duration ttl() const
Sugested TTL between two metadata auto-refreshs.
Definition: ServiceInfo.cc:112
ServiceInfo()
Default ctor creates noService.
Definition: ServiceInfo.cc:86
void delRepoToEnable(const std::string &alias_r)
Remove alias_r from the set of ReposToEnable.
Definition: ServiceInfo.cc:133
bool reposToDisableEmpty() const
Definition: ServiceInfo.cc:140
bool operator!=(const RepoState &rhs) const
Definition: ServiceInfo.h:181
virtual std::ostream & dumpAsXmlOn(std::ostream &str, const std::string &content="") const
Write an XML representation of this ServiceInfo object.
Definition: ServiceInfo.cc:210
virtual ~ServiceInfo()
Definition: ServiceInfo.cc:96
SolvableIdType size_type
Definition: PoolMember.h:152
friend std::ostream & operator<<(std::ostream &str, const RepoState &obj)
Definition: ServiceInfo.cc:165
void setUrl(const Url &url)
Set the service url (raw value)
Definition: ServiceInfo.cc:105
void setLrf(Date lrf_r)
Set date of last refresh.
Definition: ServiceInfo.cc:117
RepoState(const RepoInfo &repo_r)
Definition: ServiceInfo.h:176
std::set< std::string > ReposToDisable
Container of repos.
Definition: ServiceInfo.h:141
Url rawUrl() const
The service raw url (no variables replaced)
Definition: ServiceInfo.cc:102
Iterable< ReposToDisable::const_iterator > reposToDisable() const
Definition: ServiceInfo.h:146
std::list< ServiceInfo > ServiceInfoList
Definition: ServiceInfo.h:223
bool operator==(const RepoState &rhs) const
Definition: ServiceInfo.h:179
static const ServiceInfo noService
Represents an empty service.
Definition: ServiceInfo.h:61
bool repoToDisableFind(const std::string &alias_r) const
Whether alias_r is mentioned in ReposToDisable.
Definition: ServiceInfo.cc:145
void delRepoToDisable(const std::string &alias_r)
Remove alias_r from the set of ReposToDisable.
Definition: ServiceInfo.cc:154
void addRepoToDisable(const std::string &alias_r)
Add alias_r to the set of ReposToDisable.
Definition: ServiceInfo.cc:148
void setProbedTtl(Date::Duration ttl_r) const
Lazy init sugested TTL.
Definition: ServiceInfo.cc:114
Base class implementing common features of RepoInfo and ServiceInfo.
Definition: RepoInfoBase.h:39
bool repoToEnableFind(const std::string &alias_r) const
Whether alias_r is mentioned in ReposToEnable.
Definition: ServiceInfo.cc:124
ReposToEnable::const_iterator reposToEnableEnd() const
Definition: ServiceInfo.cc:122
ReposToEnable::size_type reposToEnableSize() const
Definition: ServiceInfo.cc:120
shared_ptr< ServiceInfo > ServiceInfo_Ptr
Definition: ServiceInfo.h:219
Url url() const
The service url.
Definition: ServiceInfo.cc:99
void setProbedType(const repo::ServiceType &t) const
Lazy init service type.
Definition: ServiceInfo.cc:110
Date lrf() const
Date of last refresh (if known).
Definition: ServiceInfo.cc:116
Url manipulation class.
Definition: Url.h:87
virtual std::ostream & dumpAsIniOn(std::ostream &str) const
Writes ServiceInfo to stream in ".service" format.
Definition: ServiceInfo.cc:173
repo::ServiceType type() const
Service type.
Definition: ServiceInfo.cc:108