1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#include <curl/curl.h>
#include <curl/easy.h>
#include "global/debug.h"
#include "rgw_http_client.h"
#define dout_subsys ceph_subsys_rgw
static size_t read_http_header(void *ptr, size_t size, size_t nmemb, void *_info)
{
RGWHTTPClient *client = (RGWHTTPClient *)_info;
size_t len = size * nmemb;
int ret = client->read_header(ptr, size * nmemb);
if (ret < 0) {
dout(0) << "WARNING: client->read_header() returned ret=" << ret << dendl;
}
return len;
}
static size_t read_http_data(void *ptr, size_t size, size_t nmemb, void *_info)
{
RGWHTTPClient *client = (RGWHTTPClient *)_info;
size_t len = size * nmemb;
int ret = client->read_data(ptr, size * nmemb);
if (ret < 0) {
dout(0) << "WARNING: client->read_data() returned ret=" << ret << dendl;
}
return len;
}
int RGWHTTPClient::process(const string& url)
{
int ret = 0;
CURL *curl_handle;
char error_buf[CURL_ERROR_SIZE];
curl_handle = curl_easy_init();
dout(20) << "sending request to " << url << dendl;
curl_slist *h = NULL;
list<pair<string, string> >::iterator iter;
for (iter = headers.begin(); iter != headers.end(); ++iter) {
pair<string, string>& p = *iter;
string val = p.first;
val.append(": ");
val.append(p.second);
h = curl_slist_append(h, val.c_str());
}
curl_easy_setopt(curl_handle, CURLOPT_URL, url.c_str());
curl_easy_setopt(curl_handle, CURLOPT_NOPROGRESS, 1L);
curl_easy_setopt(curl_handle, CURLOPT_HEADERFUNCTION, read_http_header);
curl_easy_setopt(curl_handle, CURLOPT_WRITEHEADER, (void *)this);
curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, read_http_data);
curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, (void *)this);
curl_easy_setopt(curl_handle, CURLOPT_ERRORBUFFER, (void *)error_buf);
if (h) {
curl_easy_setopt(curl_handle, CURLOPT_HTTPHEADER, (void *)h);
}
CURLcode status = curl_easy_perform(curl_handle);
if (status) {
dout(0) << "curl_easy_performed returned error: " << error_buf << dendl;
ret = -EINVAL;
}
curl_easy_cleanup(curl_handle);
curl_slist_free_all(h);
return ret;
}
|