libzypp  17.36.3
Fetcher.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_FETCHER_H
13 #define ZYPP_FETCHER_H
14 
15 #include <iosfwd>
16 #include <list>
17 
18 #include <zypp/base/Flags.h>
19 #include <zypp/base/PtrTypes.h>
20 #include <zypp/Pathname.h>
21 #include <zypp/Url.h>
22 #include <zypp-core/OnMediaLocation>
23 #include <zypp/Digest.h>
24 #include <zypp/MediaSetAccess.h>
25 #include <zypp/FileChecker.h>
26 #include <zypp-core/ui/ProgressData>
27 
29 namespace zypp
30 {
31 
106  {
107  friend std::ostream & operator<<( std::ostream & str,
108  const Fetcher & obj );
109  public:
111  class Impl;
112  public:
113 
117  enum Option
118  {
123  AutoAddContentFileIndexes = 0x0001,
128  AutoAddChecksumsIndexes = 0x0002,
133  AutoAddIndexes = AutoAddContentFileIndexes | AutoAddChecksumsIndexes,
134  };
135  ZYPP_DECLARE_FLAGS(Options, Option);
136 
138  Fetcher();
140  virtual ~Fetcher();
141 
142  public:
143 
148  void setOptions( Options options );
149 
154  Options options() const;
155 
180  void addIndex( const OnMediaLocation &resource );
181 
187  void enqueue( const OnMediaLocation &resource,
188  const FileChecker &checker = FileChecker() );
189 
201  void enqueueDigested( const OnMediaLocation &resource, const FileChecker &checker = FileChecker() );
202 
203 
209  ZYPP_DEPRECATED void enqueueDigested( const OnMediaLocation &resource,
210  const FileChecker &checker, const Pathname &deltafile );
211 
212 
252  void enqueueDir( const OnMediaLocation &resource,
253  bool recursive = false,
254  const FileChecker &checker = FileChecker() );
255 
296  void enqueueDigestedDir( const OnMediaLocation &resource,
297  bool recursive = false,
298  const FileChecker &checker = FileChecker() );
299 
304  void addCachePath( const Pathname &cache_dir );
305 
310  void reset();
311 
317  void setMediaSetAccess ( MediaSetAccess &media );
318 
328  void start( const Pathname &dest_dir,
330 
340  void start( const Pathname &dest_dir,
341  MediaSetAccess &media,
343 
344  private:
347  };
349  ZYPP_DECLARE_OPERATORS_FOR_FLAGS(Fetcher::Options);
350 
352  std::ostream & operator<<( std::ostream & str, const Fetcher & obj );
353 
355 } // namespace zypp
357 #endif // ZYPP_FETCHER_H
Mutable option.
Definition: ZConfig.cc:327
ZYPP_DECLARE_FLAGS(VendorSupportOptions, VendorSupportOption)
Pathname deltafile
Describes a resource file located on a medium.
Option
Various option flags to change behavior.
Definition: Fetcher.h:117
function< bool(const ProgressData &)> ReceiverFnc
Most simple version of progress reporting The percentage in most cases.
Definition: progressdata.h:140
ZYPP_DECLARE_OPERATORS_FOR_FLAGS(DiskUsageCounter::MountPoint::HintFlags)
String related utilities and Regular expression matching.
std::ostream & operator<<(std::ostream &str, const SerialNumber &obj)
Definition: SerialNumber.cc:52
RWCOW_pointer< Impl > _pimpl
Pointer to implementation.
Definition: Fetcher.h:346
const Arch Arch_armv7hnl Arch_armv7nhl ZYPP_API
Definition: ResTraits.h:93
Fetcher implementation.
Definition: Fetcher.cc:126
function< void(const Pathname &file)> FileChecker
Functor signature used to check files.
Definition: FileChecker.h:29
Easy-to use interface to the ZYPP dependency resolver.
Definition: Application.cc:19
#define ZYPP_DEPRECATED
The ZYPP_DEPRECATED macro can be used to trigger compile-time warnings with gcc >= 3...
Definition: Globals.h:112
This class allows to retrieve a group of files in a confortable way, providing some smartness that do...
Definition: Fetcher.h:105