|
libzypp
15.22.2
|
Downloader base class. More...
#include <Downloader.h>

Public Member Functions | |
| Downloader () | |
| Constructor. More... | |
| Downloader (const RepoInfo &info) | |
| C-tor associating the downloader with a RepoInfo. More... | |
| virtual | ~Downloader () |
| virtual void | download (MediaSetAccess &media, const Pathname &dest_dir, const ProgressData::ReceiverFnc &progress=ProgressData::ReceiverFnc()) |
| Download metadata to a local directory. More... | |
| virtual RepoStatus | status (MediaSetAccess &media) |
| Status of the remote repository. More... | |
| const RepoInfo & | repoInfo () const |
Public Member Functions inherited from zypp::Fetcher | |
| ZYPP_DECLARE_FLAGS (Options, Option) | |
| Fetcher () | |
| Default ctor. More... | |
| virtual | ~Fetcher () |
| Dtor. More... | |
| void | setOptions (Options options) |
| Set the Fetcher options. More... | |
| Options | options () const |
| Get current options. More... | |
| void | addIndex (const OnMediaLocation &resource) |
| Adds an index containing metadata (for example checksums ) that will be retrieved and read before the job processing starts. More... | |
| void | enqueue (const OnMediaLocation &resource, const FileChecker &checker=FileChecker()) |
| Enqueue a object for transferal, they will not be transferred until start() is called. More... | |
| void | enqueueDigested (const OnMediaLocation &resource, const FileChecker &checker=FileChecker(), const Pathname &deltafile=Pathname()) |
| Enqueue a object for transferal, they will not be transferred until start() is called. More... | |
| void | enqueueDir (const OnMediaLocation &resource, bool recursive=false, const FileChecker &checker=FileChecker()) |
| Enqueue a directory. More... | |
| void | enqueueDigestedDir (const OnMediaLocation &resource, bool recursive=false, const FileChecker &checker=FileChecker()) |
| Enqueue a directory and always check for checksums. More... | |
| void | addCachePath (const Pathname &cache_dir) |
| adds a directory to the list of directories where to look for cached files More... | |
| void | reset () |
| Reset the transfer (jobs) list. More... | |
| void | start (const Pathname &dest_dir, MediaSetAccess &media, const ProgressData::ReceiverFnc &progress=ProgressData::ReceiverFnc()) |
| start the transfer to a destination directory dest_dir You have to provde a media set access media to get the files from The file tree will be replicated inside this directory More... | |
Protected Member Functions | |
| void | defaultDownloadMasterIndex (MediaSetAccess &media_r, const Pathname &destdir_r, const Pathname &masterIndex_r) |
| Common workflow downloading a (signed) master index file. More... | |
Private Attributes | |
| RepoInfo | _repoinfo |
Additional Inherited Members | |
Public Types inherited from zypp::Fetcher | |
| enum | Option { AutoAddContentFileIndexes = 0x0001, AutoAddChecksumsIndexes = 0x0002, AutoAddIndexes = AutoAddContentFileIndexes | AutoAddChecksumsIndexes } |
| Various option flags to change behavior. More... | |
Related Functions inherited from zypp::Fetcher | |
| std::ostream & | operator<< (std::ostream &str, const Fetcher &obj) |
Downloader base class.
a Downloader encapsulates all the knowledge of which files have to be downloaded to the local disk.
Definition at line 32 of file Downloader.h.
| zypp::repo::Downloader::Downloader | ( | ) |
Constructor.
Definition at line 26 of file Downloader.cc.
| zypp::repo::Downloader::Downloader | ( | const RepoInfo & | info | ) |
C-tor associating the downloader with a RepoInfo.
Definition at line 29 of file Downloader.cc.
|
virtual |
Definition at line 32 of file Downloader.cc.
|
virtual |
Download metadata to a local directory.
| media | Media access to the repository url |
| dest_dir | Local destination directory |
| progress | progress receiver |
Reimplemented in zypp::repo::yum::Downloader, and zypp::repo::susetags::Downloader.
Definition at line 42 of file Downloader.cc.
|
virtual |
Status of the remote repository.
Reimplemented in zypp::repo::yum::Downloader, and zypp::repo::susetags::Downloader.
Definition at line 36 of file Downloader.cc.
|
inline |
Definition at line 58 of file Downloader.h.
|
protected |
Common workflow downloading a (signed) master index file.
Definition at line 49 of file Downloader.cc.
|
private |
Definition at line 65 of file Downloader.h.