libzypp 17.37.17
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
29namespace zypp
30{
31
103 * length. No need to somehow encode it in the filename.
104 */
105 class ZYPP_API Fetcher
106 {
107 friend std::ostream & operator<<( std::ostream & str,
108 const Fetcher & obj );
109 public:
111 class Impl;
112 public:
113
115 * Various option flags to change behavior
116 */
117 enum Option
118 {
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 );
309 CleanFiles = 1
310 };
315 void addCachePath( const Pathname &cache_dir, CacheOptions options );
316
321 void reset();
322
328 void setMediaSetAccess ( MediaSetAccess &media );
329
339 void start( const Pathname &dest_dir,
341
351 void start( const Pathname &dest_dir,
354
355 private:
358 };
360 ZYPP_DECLARE_OPERATORS_FOR_FLAGS(Fetcher::Options);
361
363 std::ostream & operator<<( std::ostream & str, const Fetcher & obj );
364
366} // namespace zypp
368#endif // ZYPP_FETCHER_H
Fetcher implementation.
Definition Fetcher.cc:127
This class allows to retrieve a group of files in a confortable way, providing some smartness that do...
Definition Fetcher.h:104
RWCOW_pointer< Impl > _pimpl
Pointer to implementation.
Definition Fetcher.h:355
Option
Various option flags to change behavior.
Definition Fetcher.h:116
@ AutoAddIndexes
If a content or CHECKSUMS file is found, it is downloaded and read.
Definition Fetcher.h:131
@ AutoAddChecksumsIndexes
If a CHECKSUMS file is found, it is downloaded and read.
Definition Fetcher.h:126
@ AutoAddContentFileIndexes
If a content file is found, it is downloaded and read.
Definition Fetcher.h:121
Fetcher()
Default ctor.
Definition Fetcher.cc:853
Media access layer responsible for handling files distributed on a set of media with media change and...
Describes a resource file located on a medium.
function< bool(const ProgressData &)> ReceiverFnc
Most simple version of progress reporting The percentage in most cases.
String related utilities and Regular expression matching.
Easy-to use interface to the ZYPP dependency resolver.
std::ostream & operator<<(std::ostream &str, const SerialNumber &obj)
const Arch Arch_armv7hnl Arch_armv7nhl ZYPP_API
Definition Arch.h:247
function< void(const Pathname &file)> FileChecker
Functor signature used to check files.
Definition FileChecker.h:38
Mutable option.
Definition ZConfig.cc:328
RW_pointer supporting 'copy on write' functionality.
Definition PtrTypes.h:469
#define ZYPP_DEPRECATED
The ZYPP_DEPRECATED macro can be used to trigger compile-time warnings with gcc >= 3....
Definition Globals.h:112
#define ZYPP_DECLARE_OPERATORS_FOR_FLAGS(Name)
Definition Flags.h:177
#define ZYPP_DECLARE_FLAGS(Name, Enum)
Definition Flags.h:174