libzypp  17.35.16
DeltaCandidates.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
9 
10 #ifndef ZYPP_REPO_DELTACANDIDATES_H
11 #define ZYPP_REPO_DELTACANDIDATES_H
12 
13 #include <iosfwd>
14 #include <list>
15 
16 #include <zypp/base/PtrTypes.h>
17 #include <zypp/base/Function.h>
18 #include <zypp/repo/PackageDelta.h>
19 #include <zypp/Repository.h>
20 #include <zypp/Package.h>
21 
23 namespace zypp
24 {
25  namespace repo
27  {
28 
37  {
38  friend std::ostream & operator<<( std::ostream & str, const DeltaCandidates & obj );
39 
40  public:
42  struct Impl;
43 
44  public:
46 
47  DeltaCandidates(const DeltaCandidates &) = default;
48  DeltaCandidates(DeltaCandidates &&) noexcept = default;
49  DeltaCandidates &operator=(const DeltaCandidates &) = default;
50  DeltaCandidates &operator=(DeltaCandidates &&) noexcept = default;
55  DeltaCandidates( std::list<Repository> repos, std::string pkgname = "" );
57  ~DeltaCandidates();
58 
59  std::list<packagedelta::DeltaRpm> deltaRpms(const Package::constPtr & package) const;
60 
61  private:
64  };
66 
68  std::ostream & operator<<( std::ostream & str, const DeltaCandidates & obj ) ZYPP_API;
69 
71 
75  template<class RepoIter>
76  inline DeltaCandidates makeDeltaCandidates( RepoIter begin_r, RepoIter end_r )
77  { return DeltaCandidates( std::list<Repository>( begin_r, end_r ) ); }
78 
82  template<class RepoContainer>
83  inline DeltaCandidates makeDeltaCandidates( const RepoContainer & cont_r )
84  { return makeDeltaCandidates( cont_r.begin(), cont_r.end() ); }
85 
86 
88  } // namespace repo
91 } // namespace zypp
93 #endif // ZYPP_REPO_DELTACANDIDATES_H
Candidate delta and patches for a package.
TraitsType::constPtrType constPtr
Definition: Package.h:39
RWCOW_pointer< Impl > _pimpl
Pointer to implementation.
String related utilities and Regular expression matching.
const Arch Arch_armv7hnl Arch_armv7nhl ZYPP_API
Definition: ResTraits.h:93
std::ostream & operator<<(std::ostream &str, const DeltaCandidates &obj)
DeltaCandidates implementation.
DeltaCandidates makeDeltaCandidates(RepoIter begin_r, RepoIter end_r)
DeltaCandidates makeDeltaCandidates(const RepoContainer &cont_r)
Easy-to use interface to the ZYPP dependency resolver.
Definition: Application.cc:19