]>
Commit | Line | Data |
---|---|---|
d546f98d MV |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/// $Id: http.h,v 1.12 2002/04/18 05:09:38 jgg Exp $ | |
3 | // $Id: http.h,v 1.12 2002/04/18 05:09:38 jgg Exp $ | |
4 | /* ###################################################################### | |
5 | ||
1e3f4083 | 6 | HTTP Acquire Method - This is the HTTP acquire method for APT. |
d546f98d MV |
7 | |
8 | ##################################################################### */ | |
9 | /*}}}*/ | |
10 | ||
f40db111 DK |
11 | #ifndef APT_HTTPS_H |
12 | #define APT_HTTPS_H | |
d546f98d | 13 | |
453b82a3 DK |
14 | #include <apt-pkg/acquire-method.h> |
15 | ||
d546f98d | 16 | #include <curl/curl.h> |
453b82a3 DK |
17 | #include <iostream> |
18 | #include <stddef.h> | |
19 | #include <string> | |
d546f98d | 20 | |
fd46d305 DK |
21 | #include "server.h" |
22 | ||
d546f98d MV |
23 | using std::cout; |
24 | using std::endl; | |
25 | ||
453b82a3 | 26 | class Hashes; |
d546f98d | 27 | class HttpsMethod; |
472ff00e | 28 | class FileFd; |
d546f98d | 29 | |
fd46d305 DK |
30 | class HttpsServerState : public ServerState |
31 | { | |
32 | protected: | |
65512241 DK |
33 | virtual bool ReadHeaderLines(std::string &/*Data*/) { return false; } |
34 | virtual bool LoadNextResponse(bool const /*ToFile*/, FileFd * const /*File*/) { return false; } | |
fd46d305 DK |
35 | |
36 | public: | |
65512241 | 37 | virtual bool WriteResponse(std::string const &/*Data*/) { return false; } |
fd46d305 DK |
38 | |
39 | /** \brief Transfer the data from the socket */ | |
65512241 | 40 | virtual bool RunData(FileFd * const /*File*/) { return false; } |
fd46d305 DK |
41 | |
42 | virtual bool Open() { return false; } | |
43 | virtual bool IsOpen() { return false; } | |
44 | virtual bool Close() { return false; } | |
65512241 | 45 | virtual bool InitHashes(FileFd &/*File*/) { return false; } |
fd46d305 | 46 | virtual Hashes * GetHashes() { return NULL; } |
65512241 DK |
47 | virtual bool Die(FileFd &/*File*/) { return false; } |
48 | virtual bool Flush(FileFd * const /*File*/) { return false; } | |
49 | virtual bool Go(bool /*ToFile*/, FileFd * const /*File*/) { return false; } | |
fd46d305 DK |
50 | |
51 | HttpsServerState(URI Srv, HttpsMethod *Owner); | |
52 | virtual ~HttpsServerState() {Close();}; | |
53 | }; | |
54 | ||
905fba60 | 55 | class HttpsMethod : public ServerMethod |
d546f98d | 56 | { |
5085e660 MV |
57 | // minimum speed in bytes/se that triggers download timeout handling |
58 | static const int DL_MIN_SPEED = 10; | |
d546f98d MV |
59 | |
60 | virtual bool Fetch(FetchItem *); | |
9983999d | 61 | |
fd46d305 | 62 | static size_t parse_header(void *buffer, size_t size, size_t nmemb, void *userp); |
d546f98d | 63 | static size_t write_data(void *buffer, size_t size, size_t nmemb, void *userp); |
d61960d9 DK |
64 | static int progress_callback(void *clientp, double dltotal, double dlnow, |
65 | double ultotal, double ulnow); | |
21fd1746 | 66 | void SetupProxy(); |
d546f98d | 67 | CURL *curl; |
905fba60 DK |
68 | ServerState *Server; |
69 | ||
70 | // Used by ServerMethods unused by https | |
71 | virtual void SendReq(FetchItem *) { exit(42); } | |
72 | virtual void RotateDNS() { exit(42); } | |
d546f98d MV |
73 | |
74 | public: | |
75 | FileFd *File; | |
d61960d9 | 76 | |
905fba60 DK |
77 | virtual bool Configuration(std::string Message); |
78 | virtual ServerState * CreateServerState(URI uri); | |
27925d82 | 79 | using pkgAcqMethod::FetchResult; |
905fba60 DK |
80 | |
81 | HttpsMethod() : ServerMethod("1.2",Pipeline | SendConfig), File(NULL) | |
d546f98d | 82 | { |
d546f98d MV |
83 | curl = curl_easy_init(); |
84 | }; | |
45a9cc46 MV |
85 | |
86 | ~HttpsMethod() | |
87 | { | |
88 | curl_easy_cleanup(curl); | |
89 | }; | |
d546f98d MV |
90 | }; |
91 | ||
472ff00e | 92 | #include <apt-pkg/strutl.h> |
d546f98d MV |
93 | URI Proxy; |
94 | ||
95 | #endif |