libzypp  17.25.2
MediaCurl.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_MEDIA_MEDIACURL_H
13 #define ZYPP_MEDIA_MEDIACURL_H
14 
15 #include <zypp/base/Flags.h>
18 #include <zypp/ZYppCallbacks.h>
19 
20 #include <curl/curl.h>
21 namespace zypp {
22  namespace media {
23 
25 //
26 // CLASS NAME : MediaCurl
31 class MediaCurl : public MediaHandler
32 {
33  public:
35  {
37  OPTION_NONE = 0x0,
39  OPTION_RANGE = 0x1,
41  OPTION_HEAD = 0x02,
46  };
47  ZYPP_DECLARE_FLAGS(RequestOptions,RequestOption);
48 
49  protected:
50 
51  Url clearQueryString(const Url &url) const;
52 
53  virtual void attachTo (bool next = false) override;
54  virtual void releaseFrom( const std::string & ejectDev ) override;
55  virtual void getFile( const Pathname & filename, const ByteCount &expectedFileSize_r ) const override;
56  virtual void getDir( const Pathname & dirname, bool recurse_r ) const override;
57  virtual void getDirInfo( std::list<std::string> & retlist,
58  const Pathname & dirname, bool dots = true ) const override;
59  virtual void getDirInfo( filesystem::DirContent & retlist,
60  const Pathname & dirname, bool dots = true ) const override;
66  virtual bool getDoesFileExist( const Pathname & filename ) const override;
67 
71  virtual bool doGetDoesFileExist( const Pathname & filename ) const;
72 
78  virtual void disconnectFrom() override;
84  virtual void getFileCopy( const Pathname & srcFilename, const Pathname & targetFilename, const ByteCount &expectedFileSize_r) const override;
85 
91  virtual void doGetFileCopy( const Pathname & srcFilename, const Pathname & targetFilename, callback::SendReport<DownloadProgressReport> & _report, const ByteCount &expectedFileSize_r, RequestOptions options = OPTION_NONE ) const;
92 
93 
94  virtual bool checkAttachPoint(const Pathname &apoint) const override;
95 
96  public:
97 
98  MediaCurl( const Url & url_r,
99  const Pathname & attach_point_hint_r );
100 
101  virtual ~MediaCurl() override { try { release(); } catch(...) {} }
102 
104 
105  static void setCookieFile( const Pathname & );
106 
107  class Callbacks
108  {
109  public:
110  virtual ~Callbacks();
111  virtual bool progress( int percent ) = 0;
112  };
113 
114  protected:
115 // /** Callback sending just an alive trigger to the UI, without stats (e.g. during metalink download). */
116  static int aliveCallback( void *clientp, double dltotal, double dlnow, double ultotal, double ulnow );
118  static int progressCallback( void *clientp, double dltotal, double dlnow, double ultotal, double ulnow );
119  static CURL *progressCallback_getcurl( void *clientp );
124  void checkProtocol(const Url &url) const;
125 
130  virtual void setupEasy();
135  Url getFileUrl(const Pathname & filename) const;
136 
149  void evaluateCurlCode(const zypp::Pathname &filename, CURLcode code, bool timeout) const;
150 
151  void doGetFileCopyFile( const Pathname & srcFilename, const Pathname & dest, FILE *file, callback::SendReport<DownloadProgressReport> & _report, const ByteCount &expectedFileSize_r, RequestOptions options = OPTION_NONE ) const;
152 
153  static void resetExpectedFileSize ( void *clientp, const ByteCount &expectedFileSize );
154 
155  private:
160  std::string getAuthHint() const;
161 
162  bool authenticate(const std::string & availAuthTypes, bool firstTry) const;
163 
164  bool detectDirIndex() const;
165 
166  private:
168 
169  std::string _currentCookieFile;
171 
172  mutable std::string _lastRedirect;
173 
174  protected:
175  CURL *_curl;
176  char _curlError[ CURL_ERROR_SIZE ];
177  curl_slist *_customHeaders;
179 
180 };
181 ZYPP_DECLARE_OPERATORS_FOR_FLAGS(MediaCurl::RequestOptions);
182 
184 
185  } // namespace media
186 } // namespace zypp
187 
188 #endif // ZYPP_MEDIA_MEDIACURL_H
virtual bool checkAttachPoint(const Pathname &apoint) const override
Verify if the specified directory as attach point (root) as requires by the particular media handler ...
Definition: MediaCurl.cc:442
virtual ~MediaCurl() override
Definition: MediaCurl.h:101
void checkProtocol(const Url &url) const
check the url is supported by the curl library
Definition: MediaCurl.cc:120
bool authenticate(const std::string &availAuthTypes, bool firstTry) const
Definition: MediaCurl.cc:1233
Implementation class for FTP, HTTP and HTTPS MediaHandler.
Definition: MediaCurl.h:31
Store and operate with byte count.
Definition: ByteCount.h:30
to not add a IFMODSINCE header if target exists
Definition: MediaCurl.h:43
TransferSettings & settings()
Definition: MediaCurl.cc:107
Holds transfer setting.
static int progressCallback(void *clientp, double dltotal, double dlnow, double ultotal, double ulnow)
Callback reporting download progress.
Definition: MediaCurl.cc:1180
static int aliveCallback(void *clientp, double dltotal, double dlnow, double ultotal, double ulnow)
Callback sending just an alive trigger to the UI, without stats (e.g.
Definition: MediaCurl.cc:1166
virtual void setupEasy()
initializes the curl easy handle with the data from the url
Definition: MediaCurl.cc:145
std::string _currentCookieFile
Definition: MediaCurl.h:169
virtual void getDir(const Pathname &dirname, bool recurse_r) const override
Call concrete handler to provide directory content (not recursive!) below attach point.
Definition: MediaCurl.cc:1117
Url getFileUrl(const Pathname &filename) const
concatenate the attach url and the filename to a complete download url
Definition: MediaCurl.cc:471
MediaCurl(const Url &url_r, const Pathname &attach_point_hint_r)
Definition: MediaCurl.cc:66
static void setCookieFile(const Pathname &)
Definition: MediaCurl.cc:113
virtual bool progress(int percent)=0
virtual void releaseFrom(const std::string &ejectDev) override
Call concrete handler to release the media.
Definition: MediaCurl.cc:466
static void resetExpectedFileSize(void *clientp, const ByteCount &expectedFileSize)
MediaMultiCurl needs to reset the expected filesize in case a metalink file is downloaded otherwise t...
Definition: MediaCurl.cc:1223
bool detectDirIndex() const
Abstract base class for &#39;physical&#39; MediaHandler like MediaCD, etc.
Definition: MediaHandler.h:46
Url clearQueryString(const Url &url) const
Definition: MediaCurl.cc:102
void evaluateCurlCode(const zypp::Pathname &filename, CURLcode code, bool timeout) const
Evaluates a curl return code and throws the right MediaException filename Filename being downloaded c...
Definition: MediaCurl.cc:573
virtual void getFileCopy(const Pathname &srcFilename, const Pathname &targetFilename, const ByteCount &expectedFileSize_r) const override
Definition: MediaCurl.cc:496
do not send a start ProgressReport
Definition: MediaCurl.h:45
only issue a HEAD (or equivalent) request
Definition: MediaCurl.h:41
TransferSettings _settings
Definition: MediaCurl.h:178
std::list< DirEntry > DirContent
Returned by readdir.
Definition: PathInfo.h:547
ZYPP_DECLARE_FLAGS(RequestOptions, RequestOption)
virtual bool doGetDoesFileExist(const Pathname &filename) const
Definition: MediaCurl.cc:714
virtual void getFile(const Pathname &filename, const ByteCount &expectedFileSize_r) const override
Call concrete handler to provide file below attach point.
Definition: MediaCurl.cc:487
virtual void attachTo(bool next=false) override
Call concrete handler to attach the media.
Definition: MediaCurl.cc:407
virtual bool getDoesFileExist(const Pathname &filename) const override
Repeatedly calls doGetDoesFileExist() until it successfully returns, fails unexpectedly, or user cancels the operation.
Definition: MediaCurl.cc:542
retrieve only a range of the file
Definition: MediaCurl.h:39
curl_slist * _customHeaders
Definition: MediaCurl.h:177
void doGetFileCopyFile(const Pathname &srcFilename, const Pathname &dest, FILE *file, callback::SendReport< DownloadProgressReport > &_report, const ByteCount &expectedFileSize_r, RequestOptions options=OPTION_NONE) const
Definition: MediaCurl.cc:1010
std::string _lastRedirect
to log/report redirections
Definition: MediaCurl.h:172
Url url() const
Url used.
Definition: MediaHandler.h:521
virtual void getDirInfo(std::list< std::string > &retlist, const Pathname &dirname, bool dots=true) const override
Call concrete handler to provide a content list of directory on media via retlist.
Definition: MediaCurl.cc:1150
virtual void disconnectFrom() override
Definition: MediaCurl.cc:449
static CURL * progressCallback_getcurl(void *clientp)
Definition: MediaCurl.cc:1196
ZYPP_DECLARE_OPERATORS_FOR_FLAGS(MediaCurl::RequestOptions)
static Pathname _cookieFile
Definition: MediaCurl.h:170
std::string getAuthHint() const
Return a comma separated list of available authentication methods supported by server.
Definition: MediaCurl.cc:1204
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:1
void release(const std::string &ejectDev="")
Use concrete handler to release the media.
char _curlError[CURL_ERROR_SIZE]
Definition: MediaCurl.h:176
Url manipulation class.
Definition: Url.h:87
virtual void doGetFileCopy(const Pathname &srcFilename, const Pathname &targetFilename, callback::SendReport< DownloadProgressReport > &_report, const ByteCount &expectedFileSize_r, RequestOptions options=OPTION_NONE) const
Definition: MediaCurl.cc:900