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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
#include "curlHandle.h"
#include "compileTimeFormatter.h"
#include <Ice/Optional.h>
#include <boost/numeric/conversion/cast.hpp>
#include <net.h>
namespace AdHoc::Net {
static void cleanup() __attribute__((destructor));
static void
cleanup()
{
curl_global_cleanup();
}
CurlHandle::CurlHandle(const std::string & url) :
curl_handle(curl_easy_init()), curl_headers(nullptr), postS(nullptr), postE(nullptr)
{
curl_easy_setopt(curl_handle, CURLOPT_URL, url.c_str());
curl_easy_setopt(curl_handle, CURLOPT_FAILONERROR, 1);
}
CurlHandle::~CurlHandle()
{
if (curl_headers) {
curl_slist_free_all(curl_headers);
}
if (postS) {
curl_formfree(postS);
}
curl_easy_cleanup(curl_handle);
}
void
CurlHandle::getinfo(CURLINFO info, long & val) const
{
curl_easy_getinfo(curl_handle, info, &val);
}
void
CurlHandle::getinfo(CURLINFO info, int & ival) const
{
long val;
curl_easy_getinfo(curl_handle, info, &val);
ival = boost::numeric_cast<int>(val);
}
void
CurlHandle::getinfo(CURLINFO info, double & val) const
{
curl_easy_getinfo(curl_handle, info, &val);
}
void
CurlHandle::getinfo(CURLINFO info, char *& val) const
{
curl_easy_getinfo(curl_handle, info, &val);
}
void
CurlHandle::appendHeader(const char * header)
{
curl_headers = curl_slist_append(curl_headers, header);
}
void
CurlHandle::appendPost(const char * name, const char * value)
{
CURLFORMcode r
= curl_formadd(&postS, &postE, CURLFORM_PTRNAME, name, CURLFORM_PTRCONTENTS, value, CURLFORM_END);
if (r == 0) {
curl_easy_setopt(curl_handle, CURLOPT_HTTPPOST, postS);
}
}
void
CurlHandle::perform()
{
if (curl_headers) {
curl_easy_setopt(curl_handle, CURLOPT_HTTPHEADER, curl_headers);
}
checkCurlCode(curl_easy_perform(curl_handle));
}
CurlHandle::operator CURL *() const
{
return curl_handle;
}
void
CurlHandle::checkCurlCode(CURLcode res) const
{
if (res != CURLE_OK) {
long http_code = 0;
if (curl_easy_getinfo(curl_handle, CURLINFO_RESPONSE_CODE, &http_code) == CURLE_OK) {
throw AdHoc::Net::CurlException(res, curl_easy_strerror(res), static_cast<short>(http_code));
}
throw AdHoc::Net::CurlException(res, curl_easy_strerror(res), IceUtil::None);
}
}
AdHocFormatter(CurlExceptionMsg, "Network operation failed: %? (%?)");
AdHocFormatter(CurlExceptionMsgHttp, "HTTP operation failed: %?: %? (%?)");
void
CurlException::ice_print(std::ostream & s) const
{
if (httpcode) {
CurlExceptionMsgHttp::write(s, *httpcode, message, resultcode);
}
else {
CurlExceptionMsg::write(s, message, resultcode);
}
}
}
|