libzypp  15.28.6
MediaMultiCurl.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_MEDIA_MEDIAMULTICURL_H
13 #define ZYPP_MEDIA_MEDIAMULTICURL_H
14 
15 #include <string>
16 #include <vector>
17 #include <list>
18 #include <set>
19 
21 #include "zypp/media/MediaCurl.h"
24 #include "zypp/ZYppCallbacks.h"
25 
26 namespace zypp {
27  namespace media {
28 
37 class multifetchrequest;
38 class multifetchworker;
39 
40 class MediaMultiCurl : public MediaCurl {
41 public:
42  friend class multifetchrequest;
43  friend class multifetchworker;
44 
45  MediaMultiCurl(const Url &url_r, const Pathname & attach_point_hint_r);
47 
48  virtual void doGetFileCopy( const Pathname & srcFilename, const Pathname & targetFilename, callback::SendReport<DownloadProgressReport> & _report, const ByteCount &expectedFileSize_r, RequestOptions options = OPTION_NONE ) const override;
49 
50  void multifetch(const Pathname &filename, FILE *fp, std::vector<Url> *urllist, callback::SendReport<DownloadProgressReport> *report = 0, MediaBlockList *blklist = 0, off_t filesize = off_t(-1)) const;
55  void multifetch(const Pathname &filename, FILE *fp, std::vector<Url> *urllist, callback::SendReport<DownloadProgressReport> *report, MediaBlockList *blklist, const ByteCount & filesize ) const
56  { multifetch( filename, fp, urllist, report, blklist, ( filesize ? off_t(filesize) : off_t(-1) ) ); }
57 
58 protected:
59 
60  bool isDNSok(const std::string &host) const;
61  void setDNSok(const std::string &host) const;
62 
63  CURL *fromEasyPool(const std::string &host) const;
64  void toEasyPool(const std::string &host, CURL *easy) const;
65 
66  virtual void setupEasy();
67  void checkFileDigest(Url &url, FILE *fp, MediaBlockList *blklist) const;
68  static int progressCallback( void *clientp, double dltotal, double dlnow, double ultotal, double ulnow );
69 
70 private:
71  // the custom headers from MediaCurl plus a "Accept: metalink" header
73  mutable CURLM *_multi; // reused for all fetches so we can make use of the dns cache
74  mutable std::set<std::string> _dnsok;
75  mutable std::map<std::string, CURL *> _easypool;
76 };
77 
79 
80  } // namespace media
81 } // namespace zypp
82 
83 #endif // ZYPP_MEDIA_MEDIAMULTICURL_H
void setDNSok(const std::string &host) const
virtual void setupEasy()
initializes the curl easy handle with the data from the url
std::set< std::string > _dnsok
Implementation class for FTP, HTTP and HTTPS MediaHandler.
Definition: MediaCurl.h:32
Store and operate with byte count.
Definition: ByteCount.h:30
void multifetch(const Pathname &filename, FILE *fp, std::vector< Url > *urllist, callback::SendReport< DownloadProgressReport > *report, MediaBlockList *blklist, const ByteCount &filesize) const
std::map< std::string, CURL * > _easypool
CURL * fromEasyPool(const std::string &host) const
void toEasyPool(const std::string &host, CURL *easy) const
virtual void doGetFileCopy(const Pathname &srcFilename, const Pathname &targetFilename, callback::SendReport< DownloadProgressReport > &_report, const ByteCount &expectedFileSize_r, RequestOptions options=OPTION_NONE) const override
bool isDNSok(const std::string &host) const
MediaMultiCurl(const Url &url_r, const Pathname &attach_point_hint_r)
void checkFileDigest(Url &url, FILE *fp, MediaBlockList *blklist) const
callback::SendReport< DownloadProgressReport > * report
Definition: MediaCurl.cc:184
curl_slist * _customHeadersMetalink
void multifetch(const Pathname &filename, FILE *fp, std::vector< Url > *urllist, callback::SendReport< DownloadProgressReport > *report=0, MediaBlockList *blklist=0, off_t filesize=off_t(-1)) const
static int progressCallback(void *clientp, double dltotal, double dlnow, double ultotal, double ulnow)
Url url() const
Url used.
Definition: MediaHandler.h:506
Url manipulation class.
Definition: Url.h:87