libzypp 17.32.5
PackageProvider.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#ifndef ZYPP_REPO_PACKAGEPROVIDER_H
13#define ZYPP_REPO_PACKAGEPROVIDER_H
14
15#include <iosfwd>
16
17#include <zypp/ZYppCallbacks.h>
18#include <zypp/Package.h>
19#include <zypp/ManagedFile.h>
22
24namespace zypp
25{
27 namespace repo
28 {
29
35 {
36 public:
38 typedef function<bool ( const std::string &, const Edition &, const Arch & )> QueryInstalledCB;
39
43
45 bool queryInstalled( const std::string & name_r,
46 const Edition & ed_r,
47 const Arch & arch_r ) const;
48
49 private:
51 };
53
102
103 } // namespace repo
105} // namespace zypp
107#endif // ZYPP_SOURCE_PACKAGEPROVIDER_H
Architecture.
Definition Arch.h:37
Reference counted access to a Tp object calling a custom Dispose function when the last AutoDispose h...
Definition AutoDispose.h:95
Edition represents [epoch:]version[-release]
Definition Edition.h:61
TraitsType::constPtrType constPtr
Definition Package.h:38
Combining sat::Solvable and ResStatus.
Definition PoolItem.h:51
Candidate delta and patches for a package.
Policies and options for PackageProvider.
bool queryInstalled(const std::string &name_r, const Edition &ed_r, const Arch &arch_r) const
Evaluate callback.
function< bool(const std::string &, const Edition &, const Arch &) QueryInstalledCB)
Get installed Editions callback signature.
PackageProviderPolicy & queryInstalledCB(QueryInstalledCB queryInstalledCB_r)
Set callback.
Provide a package from a Repo.
RW_pointer< Impl > _pimpl
Implementation class.
PackageProvider(RepoMediaAccess &access, const PoolItem &pi_r, PackageProviderPolicy policy_r=PackageProviderPolicy())
Ctor taking the package to provide.
ManagedFile providePackage() const
Provide the package.
bool isCached() const
Whether the package is cached.
ManagedFile providePackageFromCache() const
Provide the package if it is cached.
Provides files from different repos.
Easy-to use interface to the ZYPP dependency resolver.
PackageProvider implementation interface.