libzypp  17.14.0
CommitPackageCache.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_TARGET_COMMITPACKAGECACHE_H
13 #define ZYPP_TARGET_COMMITPACKAGECACHE_H
14 
15 #include <iosfwd>
16 
17 #include "zypp/base/PtrTypes.h"
18 #include "zypp/base/Function.h"
19 
20 #include "zypp/PoolItem.h"
21 #include "zypp/Pathname.h"
22 #include "zypp/ManagedFile.h"
23 
25 namespace zypp
26 {
27 
28  namespace target
29  {
30 
39  {
40  public:
43 
45  ManagedFile operator()( const PoolItem & pi, bool fromCache_r );
46 
47  private:
48  struct Impl;
50  };
51 
53  //
54  // CLASS NAME : CommitPackageCache
55  //
59  {
60  friend std::ostream & operator<<( std::ostream & str, const CommitPackageCache & obj );
61 
62  public:
63  typedef function<ManagedFile( const PoolItem & pi, bool fromCache_r )> PackageProvider;
64 
65  public:
67  CommitPackageCache( const PackageProvider & packageProvider_r = RepoProvidePackage() );
68 
72  CommitPackageCache( const Pathname & /*rootDir_r*/, const PackageProvider & packageProvider_r = RepoProvidePackage() ) ZYPP_DEPRECATED;
73 
76 
77  public:
79  void setCommitList( std::vector<sat::Solvable> commitList_r );
81  template <class TIterator>
82  void setCommitList( TIterator begin_r, TIterator end_r )
83  { setCommitList( std::vector<sat::Solvable>( begin_r, end_r ) ); }
84 
86  ManagedFile get( const PoolItem & citem_r );
88  ManagedFile get( sat::Solvable citem_r )
89  { return get( PoolItem(citem_r) ); }
90 
95  bool preloaded() const;
97  void preloaded( bool newval_r );
98 
99  public:
101  class Impl;
103  explicit CommitPackageCache( Impl * pimpl_r );
104  private:
107  };
109 
111  std::ostream & operator<<( std::ostream & str, const CommitPackageCache & obj );
112 
114  } // namespace target
117 } // namespace zypp
119 #endif // ZYPP_TARGET_COMMITPACKAGECACHE_H