libzypp 17.37.17
CommitPackageCache.cc
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#include <iostream>
13#include <utility>
14#include <zypp/base/Logger.h>
15#include <zypp/base/Exception.h>
16
20
21using std::endl;
22
26#include <zypp/ResPool.h>
27
29namespace zypp
30{
32 namespace target
33 {
34
36 namespace {
44 struct QueryInstalledEditionHelper
45 {
46 bool operator()( const std::string & name_r, const Edition & ed_r, const Arch & arch_r ) const
47 {
48 rpm::librpmDb::db_const_iterator it( "/" );
49 for ( it.findByName( name_r ); *it; ++it )
50 {
51 if ( arch_r == it->tag_arch()
52 && ( ed_r == Edition::noedition || ed_r == it->tag_edition() ) )
53 {
54 return true;
55 }
56 }
57 return false;
58 }
59 };
60 } // namespace
62
64 //
65 // class RepoProvidePackage
66 //
68
75
77 : _impl( new Impl )
78 {
79 const ResPool & pool( ResPool::instance() );
80 _impl->_repos.insert( _impl->_repos.begin(), pool.knownRepositoriesBegin(), pool.knownRepositoriesEnd() );
81 _impl->_packageProviderPolicy.queryInstalledCB( QueryInstalledEditionHelper() );
82 }
83
86
87 ManagedFile RepoProvidePackage::operator()( const PoolItem & pi_r, bool fromCache_r )
88 {
89 ManagedFile ret;
90 if ( fromCache_r )
91 {
92 repo::PackageProvider pkgProvider( _impl->_access, pi_r, _impl->_packageProviderPolicy );
93 ret = pkgProvider.providePackageFromCache();
94 }
95 else if ( pi_r.isKind<Package>() ) // may make use of deltas
96 {
97 repo::DeltaCandidates deltas( _impl->_repos, pi_r.name() );
98 repo::PackageProvider pkgProvider( _impl->_access, pi_r, deltas, _impl->_packageProviderPolicy );
99 return pkgProvider.providePackage();
100 }
101 else // SrcPackage or throws
102 {
103 repo::PackageProvider pkgProvider( _impl->_access, pi_r, _impl->_packageProviderPolicy );
104 return pkgProvider.providePackage();
105 }
106 return ret;
107 }
108
110 //
111 // CLASS NAME : CommitPackageCache
112 //
114
116 : _pimpl( pimpl_r )
117 {
118 assert( _pimpl );
119 }
120
122 {
123 if ( getenv("ZYPP_COMMIT_NO_PACKAGE_CACHE") )
124 {
125 MIL << "$ZYPP_COMMIT_NO_PACKAGE_CACHE is set." << endl;
126 _pimpl.reset( new Impl( std::move(packageProvider_r) ) ); // no cache
127 }
128 else
129 {
130 _pimpl.reset( new CommitPackageCacheReadAhead( std::move(packageProvider_r) ) );
131 }
132 assert( _pimpl );
133 }
134
136 const PackageProvider & packageProvider_r )
137 : CommitPackageCache( packageProvider_r )
138 {}
139
142
143 void CommitPackageCache::setCommitList( std::vector<sat::Solvable> commitList_r )
144 { _pimpl->setCommitList( std::move(commitList_r) ); }
145
147 { return _pimpl->get( citem_r ); }
148
150 { return _pimpl->preloaded(); }
151
152 void CommitPackageCache::preloaded( bool newval_r )
153 { _pimpl->preloaded( newval_r ); }
154
155 /******************************************************************
156 **
157 ** FUNCTION NAME : operator<<
158 ** FUNCTION TYPE : std::ostream &
159 */
160 std::ostream & operator<<( std::ostream & str, const CommitPackageCache & obj )
161 { return str << *obj._pimpl; }
162
164 } // namespace target
167} // namespace zypp
bool operator()(const zypp::Arch &lhs, const zypp::Arch &rhs) const
Default order for std::container based Arch::compare.
Definition Arch.h:370
static const Edition noedition
Value representing noedition ("") This is in fact a valid Edition.
Definition Edition.h:73
Package interface.
Definition Package.h:34
Combining sat::Solvable and ResStatus.
Definition PoolItem.h:51
Global ResObject pool.
Definition ResPool.h:62
static ResPool instance()
Singleton ctor.
Definition ResPool.cc:38
Candidate delta and patches for a package.
Policies and options for PackageProvider.
Provide a package from a Repo.
ManagedFile providePackage() const
Provide the package.
ManagedFile providePackageFromCache() const
Provide the package if it is cached.
Provides files from different repos.
Base for CommitPackageCache implementations (implements no chache).
CommitPackageCache(PackageProvider packageProvider_r=RepoProvidePackage())
Ctor.
void setCommitList(std::vector< sat::Solvable > commitList_r)
Download(commit) sequence of solvables to compute read ahead.
bool preloaded() const
Whether preloaded hint is set.
function< ManagedFile(const PoolItem &, bool)> PackageProvider
RW_pointer< Impl > _pimpl
Pointer to implementation.
ManagedFile get(const PoolItem &citem_r)
Provide a package.
ManagedFile operator()(const PoolItem &pi, bool fromCache_r)
Provide package optionally fron cache only.
String related utilities and Regular expression matching.
std::ostream & operator<<(std::ostream &str, const CommitPackageCache &obj)
Easy-to use interface to the ZYPP dependency resolver.
AutoDispose< const Pathname > ManagedFile
A Pathname plus associated cleanup code to be executed when path is no longer needed.
Definition ManagedFile.h:27
std::string name() const
bool isKind(const SolvableType< Derived > &solvable_r)
Test whether the Solvable is of a certain ResKind.
repo::PackageProviderPolicy _packageProviderPolicy
#define MIL
Definition Logger.h:100