libzypp 17.32.2
ServiceRepos.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
9
10#ifndef ZYPP_REPO_SERVICE_REPOS
11#define ZYPP_REPO_SERVICE_REPOS
12
13#include <zypp/base/NonCopyable.h>
14#include <zypp-core/ui/ProgressData>
15#include <zypp/ServiceInfo.h>
16#include <zypp/RepoInfo.h>
17
18namespace zypp
19{
20 namespace repo
21 {
26 {
27 public:
32 using ProcessRepo = function<bool (const RepoInfo &)>;
33
39 const ServiceInfo & service,
40 const ProcessRepo & callback,
43
44 public:
45 struct Impl;
46 private:
48 };
49 } // ns repo
50} // ns zypp
51
52#endif
Reference counted access to a Tp object calling a custom Dispose function when the last AutoDispose h...
Definition AutoDispose.h:95
function< bool(const ProgressData &)> ReceiverFnc
Most simple version of progress reporting The percentage in most cases.
What is known about a repository.
Definition RepoInfo.h:72
Service data.
Definition ServiceInfo.h:37
Retrieval of repository list for a service.
RW_pointer< Impl > _impl
Expose type only.
ServiceRepos(const Pathname &root_r, const ServiceInfo &service, const ProcessRepo &callback, const ProgressData::ReceiverFnc &progress=ProgressData::ReceiverFnc())
bsc#1080693: Explicitly pass the RemoManagers rootDir until it can be queried from the ServiceInfo.
function< bool(const RepoInfo &)> ProcessRepo
Return false from the callback to get a AbortRequestException to be thrown and the processing to be c...
boost::noncopyable NonCopyable
Ensure derived classes cannot be copied.
Definition NonCopyable.h:26
Easy-to use interface to the ZYPP dependency resolver.