libzypp  15.28.6
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"
20 #include "zypp/Repository.h"
21 #include "zypp/TmpPath.h"
23 
25 namespace zypp
26 {
27  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
48  IMediaKey( const ResObject::constPtr & obj_r )
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 Pathname & /*rootDir_r*/,
87  const PackageProvider & packageProvider_r );
88 
89  public:
91  virtual ManagedFile get( const PoolItem & citem_r );
92 
93  private:
95  bool onInteractiveMedia( const PoolItem & pi ) const;
96 
97  private:
103  void cacheLastInteractive( const PoolItem & citem_r );
104 
106  void doCacheLastInteractive( const PoolItem & citem_r );
107 
108  private:
111  //Pathname _rootDir;
112  };
114 
116  } // namespace target
119 } // namespace zypp
121 #endif // ZYPP_TARGET_COMMITPACKAGECACHEREADAHEAD_H
IdType id() const
Expert backdoor.
Definition: Repository.h:307
bool onInteractiveMedia(const PoolItem &pi) const
Return whether pi is located on a CD/DVD.
IMediaKey(const Repository &repo, unsigned mediaNr_r)
IMediaKey(const ResObject::constPtr &obj_r)
bool operator!=(const IMediaKey &rhs) const
TraitsType::constPtrType constPtr
Definition: ResObject.h:44
IMediaKey(const PoolItem &obj_r)
CommitPackageCache::PackageProvider PackageProvider
void cacheLastInteractive(const PoolItem &citem_r)
Fill the cache.
std::ostream & operator<<(std::ostream &str, const CommitPackageCache &obj)
void doCacheLastInteractive(const PoolItem &citem_r)
cacheLastInteractive helper .
Helper storing a source id and media number.
Base for CommitPackageCache implementations (implements no chache).
CommitPackageCacheReadAhead(const Pathname &, const PackageProvider &packageProvider_r)
Reference counted access to a Tp object calling a custom Dispose function when the last AutoDispose h...
Definition: AutoDispose.h:92
bool operator<(const IMediaKey &rhs) const
Combining sat::Solvable and ResStatus.
Definition: PoolItem.h:50
DefaultIntegral< unsigned, 0 > _mediaNr
bool operator==(const IMediaKey &rhs) const