libzypp  15.28.6
RepoFileReader.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_REPO_REPOFILEREADER_H
13 #define ZYPP_REPO_REPOFILEREADER_H
14 
15 #include <iosfwd>
16 
17 #include "zypp/base/PtrTypes.h"
18 #include "zypp/base/InputStream.h"
19 #include "zypp/RepoInfo.h"
20 #include "zypp/ProgressData.h"
21 
23 namespace zypp
24 {
25  namespace parser
27  {
28 
52  {
53  friend std::ostream & operator<<( std::ostream & str, const RepoFileReader & obj );
54  public:
55 
64  typedef function< bool( const RepoInfo & )> ProcessRepo;
65 
67  class Impl;
68 
69  public:
81  RepoFileReader( const Pathname & repo_file,
82  const ProcessRepo & callback,
84 
96  RepoFileReader( const InputStream &is,
97  const ProcessRepo & callback,
99 
103  ~RepoFileReader();
104  private:
106  };
108 
110  std::ostream & operator<<( std::ostream & str, const RepoFileReader & obj );
111 
113  } // namespace parser
116 } // namespace zypp
118 #endif // ZYPP_REPO_REPOFILEREADER_H
function< bool(const RepoInfo &)> ProcessRepo
Callback definition.
Helper filtering the files offered by a RepomdFileReader.
std::ostream & operator<<(std::ostream &str, const IniDict &obj)
Definition: IniDict.cc:143
Helper to create and pass std::istream.
Definition: InputStream.h:56
RepoFileReader(const Pathname &repo_file, const ProcessRepo &callback, const ProgressData::ReceiverFnc &progress=ProgressData::ReceiverFnc())
Constructor.
function< bool(const ProgressData &)> ReceiverFnc
Most simple version of progress reporting The percentage in most cases.
Definition: ProgressData.h:139
Read repository data from a .repo file.
friend std::ostream & operator<<(std::ostream &str, const RepoFileReader &obj)