author | Michael Krelin <hacker@klever.net> | 2007-11-28 16:18:24 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-11-28 16:18:24 (UTC) |
commit | 457eb9e2a218f8007dbb10dfdd624c63dc72cb2b (patch) (unidiff) | |
tree | 32c73965e946e311b99eb6a456c944f2bb133a32 /include | |
parent | 17aeb70fafc306ba5e06d2321196bc913f3c0fe1 (diff) | |
download | libopkele-457eb9e2a218f8007dbb10dfdd624c63dc72cb2b.zip libopkele-457eb9e2a218f8007dbb10dfdd624c63dc72cb2b.tar.gz libopkele-457eb9e2a218f8007dbb10dfdd624c63dc72cb2b.tar.bz2 |
added header and progress callbacks to curl wrapper
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | include/opkele/curl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/opkele/curl.h b/include/opkele/curl.h index 1029b34..298f095 100644 --- a/include/opkele/curl.h +++ b/include/opkele/curl.h | |||
@@ -1,42 +1,48 @@ | |||
1 | #ifndef __OPKELE_CURL_H | 1 | #ifndef __OPKELE_CURL_H |
2 | #define __OPKELE_CURL_H | 2 | #define __OPKELE_CURL_H |
3 | 3 | ||
4 | #include <cassert> | 4 | #include <cassert> |
5 | #include <curl/curl.h> | 5 | #include <curl/curl.h> |
6 | 6 | ||
7 | namespace opkele { | 7 | namespace opkele { |
8 | 8 | ||
9 | namespace util { | 9 | namespace util { |
10 | 10 | ||
11 | class curl_t { | 11 | class curl_t { |
12 | public: | 12 | public: |
13 | CURL *_c; | 13 | CURL *_c; |
14 | 14 | ||
15 | curl_t() : _c(0) { } | 15 | curl_t() : _c(0) { } |
16 | curl_t(CURL *c) : _c(c) { } | 16 | curl_t(CURL *c) : _c(c) { } |
17 | virtual ~curl_t() throw(); | 17 | virtual ~curl_t() throw(); |
18 | 18 | ||
19 | curl_t& operator=(CURL *c); | 19 | curl_t& operator=(CURL *c); |
20 | 20 | ||
21 | operator const CURL*(void) const { return _c; } | 21 | operator const CURL*(void) const { return _c; } |
22 | operator CURL*(void) { return _c; } | 22 | operator CURL*(void) { return _c; } |
23 | 23 | ||
24 | CURLcode misc_sets(); | 24 | CURLcode misc_sets(); |
25 | 25 | ||
26 | template<typename PT> | 26 | template<typename PT> |
27 | inline CURLcode easy_setopt(CURLoption o,PT p) { assert(_c); return curl_easy_setopt(_c,o,p); } | 27 | inline CURLcode easy_setopt(CURLoption o,PT p) { assert(_c); return curl_easy_setopt(_c,o,p); } |
28 | CURLcode easy_perform() { assert(_c); return curl_easy_perform(_c); } | 28 | CURLcode easy_perform() { assert(_c); return curl_easy_perform(_c); } |
29 | template<typename IT> | 29 | template<typename IT> |
30 | inline CURLcode easy_getinfo(CURLINFO i,IT p) { assert(_c); return curl_easy_getinfo(_c,i,p); } | 30 | inline CURLcode easy_getinfo(CURLINFO i,IT p) { assert(_c); return curl_easy_getinfo(_c,i,p); } |
31 | 31 | ||
32 | static inline CURL *easy_init() { return curl_easy_init(); } | 32 | static inline CURL *easy_init() { return curl_easy_init(); } |
33 | 33 | ||
34 | virtual size_t write(void *p,size_t s,size_t nm) { return 0; } | 34 | virtual size_t write(void *p,size_t s,size_t nm) { return 0; } |
35 | CURLcode set_write(); | 35 | CURLcode set_write(); |
36 | |||
37 | virtual int progress(double dlt,double dln,double ult,double uln) { return 0; } | ||
38 | CURLcode set_progress(); | ||
39 | |||
40 | virtual size_t header(void *p,size_t s,size_t nm) { return s*nm; } | ||
41 | CURLcode set_header(); | ||
36 | }; | 42 | }; |
37 | 43 | ||
38 | } | 44 | } |
39 | 45 | ||
40 | } | 46 | } |
41 | 47 | ||
42 | #endif /* __OPKELE_CURL_H */ | 48 | #endif /* __OPKELE_CURL_H */ |