-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathxttp_struct.cpp
206 lines (161 loc) · 3.92 KB
/
xttp_struct.cpp
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
#include "xttp_struct.h"
#include <algorithm>
//////////////////////////////////////////////////////////////////////////
curlpp::result* curlpp::result::g_curlFailed = nullptr;
curlpp::result::result(bool state, const std::string& value) :m_state(state), m_value(value)
{
}
curlpp::result* curlpp::result::fail()
{
if (nullptr == g_curlFailed) {
g_curlFailed = new curlpp::result(false, "");
}
return g_curlFailed;
}
void curlpp::result::value(std::string val)
{
m_value = val;
}
const std::string& curlpp::result::value() const
{
return m_value;
}
void curlpp::result::state(bool val)
{
m_state = val;
}
bool curlpp::result::state() const
{
return m_state;
}
//////////////////////////////////////////////////////////////////////////
curlpp::curl_cleaner::~curl_cleaner()
{
if (nullptr != mycurl) {
delete mycurl;
mycurl = nullptr;
}
}
//////////////////////////////////////////////////////////////////////////
curlpp::net_data::net_data()
: m_timeout(curlpp::net_default_data::timeout())
, m_download_path(curlpp::net_default_data::download_path())
, m_needdegist(false)
{
}
void curlpp::net_data::headers(const std::vector<std::string>& headers)
{
m_headers = headers;
}
const std::vector<std::string>& curlpp::net_data::headers() const
{
return m_headers;
}
void curlpp::net_data::outfile_name(const std::string& outfile_name)
{
m_outfile_name = outfile_name;
}
const std::string& curlpp::net_data::outfile_name() const
{
return m_outfile_name;
}
void curlpp::net_data::url(const std::string& url)
{
m_url = url;
}
const std::string& curlpp::net_data::url() const
{
return m_url;
}
void curlpp::net_data::timeout(int val)
{
m_timeout = val;
}
int curlpp::net_data::timeout() const
{
return m_timeout;
}
void curlpp::net_data::download_path(const std::string& val)
{
m_download_path = val;
}
const std::string& curlpp::net_data::download_path() const
{
return m_download_path;
}
void curlpp::net_data::md5(const std::string& val) {
m_needdegist = true;
m_md5 = val;
}
const std::string& curlpp::net_data::md5() const {
return m_md5;
}
bool curlpp::net_data::need_degist() const {
return m_needdegist;
}
void curlpp::net_data::append_header(const std::string& header)
{
m_headers.push_back(header);
}
std::string curlpp::net_data::post_params() const
{
return m_post_params.format();
}
curlpp::url_post_params& curlpp::net_data::post_params_write()
{
return m_post_params;
}
//////////////////////////////////////////////////////////////////////////
int curlpp::net_default_data::g_timeout = 15;
std::string curlpp::net_default_data::m_download_path = ".";
void curlpp::net_default_data::timeout(int val)
{
g_timeout = val;
}
int curlpp::net_default_data::timeout()
{
return g_timeout;
}
void curlpp::net_default_data::download_path(std::string val)
{
m_download_path = val;
}
std::string& curlpp::net_default_data::download_path()
{
return m_download_path;
}
//////////////////////////////////////////////////////////////////////////
curlpp::curl_x::curl_x(CURL *curl, struct curl_slist *chunk) :m_curl(curl), m_chunk(chunk)
{
}
curlpp::curl_x::~curl_x()
{
if (nullptr != m_curl) {
curl_easy_cleanup(m_curl);
}
if (nullptr != m_chunk) {
curl_slist_free_all(m_chunk);
}
}
//////////////////////////////////////////////////////////////////////////
void curlpp::url_post_params::clear()
{
m_values.clear();
}
std::string curlpp::url_post_params::format() const
{
std::string param_formated;
std::for_each(m_values.begin(), m_values.end(), [&](const post_prarm_type& param){
param_formated += param.first + "=" + param.second + "&";
});
const auto trim_idx = param_formated.find_last_of("&");
if (std::string::npos != trim_idx)
{
param_formated = param_formated.substr(0, trim_idx);
}
return param_formated;
}
void curlpp::url_post_params::add_params(const std::string& key, const std::string& value)
{
m_values.push_back(std::make_pair(key,value));
}