libzypp 17.31.23
CommitPackageCacheReadAhead.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#ifndef ZYPP_TARGET_COMMITPACKAGECACHEREADAHEAD_H
13#define ZYPP_TARGET_COMMITPACKAGECACHEREADAHEAD_H
14
15#include <map>
16
17#include <zypp/base/Logger.h>
18#include <zypp/base/Exception.h>
19#include <zypp-core/base/DefaultIntegral>
20#include <zypp/Repository.h>
21#include <zypp/TmpPath.h>
23
25namespace zypp
26{
28 namespace target
29 {
30
32 //
33 // CLASS NAME : IMediaKey
34 //
36 struct IMediaKey
37 {
39 {}
40
41 explicit
42 IMediaKey( const PoolItem & obj_r )
43 : _repo( obj_r->repository() )
44 , _mediaNr( obj_r->mediaNr() )
45 {}
46
47 explicit
49 : _repo( obj_r->repository() )
50 , _mediaNr( obj_r->mediaNr() )
51 {}
52
53 IMediaKey( const Repository & repo, unsigned mediaNr_r )
54 : _repo( repo )
55 , _mediaNr( mediaNr_r )
56 {}
57
58 bool operator==( const IMediaKey & rhs ) const
59 { return( _repo == rhs._repo && _mediaNr == rhs._mediaNr ); }
60
61 bool operator!=( const IMediaKey & rhs ) const
62 { return ! operator==( rhs ); }
63
64 bool operator<( const IMediaKey & rhs ) const
65 {
66 return( _repo.id() < rhs._repo.id()
67 || ( _repo.id() == rhs._repo.id()
68 && _mediaNr < rhs._mediaNr ) );
69 }
70
73 };
75
76 std::ostream & operator<<( std::ostream & str, const IMediaKey & obj );
77
79 //
80 // CLASS NAME : CommitPackageCacheReadAhead
81 //
84 {
85 public:
86 CommitPackageCacheReadAhead( const PackageProvider & packageProvider_r );
87
88 public:
90 virtual ManagedFile get( const PoolItem & citem_r );
91
92 private:
94 bool onInteractiveMedia( const PoolItem & pi ) const;
95
96 private:
102 void cacheLastInteractive( const PoolItem & citem_r );
103
105 void doCacheLastInteractive( const PoolItem & citem_r );
106
107 private:
110 //Pathname _rootDir;
111 };
113
115 } // namespace target
118} // namespace zypp
120#endif // ZYPP_TARGET_COMMITPACKAGECACHEREADAHEAD_H
Integral type with defined initial value when default constructed.
Combining sat::Solvable and ResStatus.
Definition: PoolItem.h:51
IdType id() const
Expert backdoor.
Definition: Repository.h:316
TraitsType::constPtrType constPtr
Definition: ResObject.h:43
virtual ManagedFile get(const PoolItem &citem_r)
Provide the package.
bool onInteractiveMedia(const PoolItem &pi) const
Return whether pi is located on a CD/DVD.
void doCacheLastInteractive(const PoolItem &citem_r)
cacheLastInteractive helper .
void cacheLastInteractive(const PoolItem &citem_r)
Fill the cache.
Base for CommitPackageCache implementations (implements no chache).
CommitPackageCache::PackageProvider PackageProvider
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.
Definition: CodePitfalls.doc:2
Helper storing a source id and media number.
bool operator<(const IMediaKey &rhs) const
bool operator!=(const IMediaKey &rhs) const
IMediaKey(const Repository &repo, unsigned mediaNr_r)
IMediaKey(const ResObject::constPtr &obj_r)
DefaultIntegral< unsigned, 0 > _mediaNr
bool operator==(const IMediaKey &rhs) const
IMediaKey(const PoolItem &obj_r)