-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathtordexhttp.cpp
375 lines (306 loc) · 7.52 KB
/
tordexhttp.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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
#include "tordexhttp.h"
#pragma comment(lib, "winhttp.lib")
tordex::http::http()
{
m_hSession = NULL;
m_maxConnectionsPerServer = 5;
InitializeCriticalSectionAndSpinCount(&m_sync, 1000);
}
tordex::http::~http()
{
stop();
if(m_hSession)
{
WinHttpCloseHandle(m_hSession);
}
DeleteCriticalSection(&m_sync);
}
BOOL tordex::http::open( LPCWSTR pwszUserAgent, DWORD dwAccessType, LPCWSTR pwszProxyName, LPCWSTR pwszProxyBypass )
{
m_hSession = WinHttpOpen(pwszUserAgent, dwAccessType, pwszProxyName, pwszProxyBypass, WINHTTP_FLAG_ASYNC);
if(m_hSession)
{
WinHttpSetOption(m_hSession, WINHTTP_OPTION_MAX_CONNS_PER_SERVER, &m_maxConnectionsPerServer, sizeof(m_maxConnectionsPerServer));
if(WinHttpSetStatusCallback(m_hSession, (WINHTTP_STATUS_CALLBACK) tordex::http::http_callback, WINHTTP_CALLBACK_FLAG_ALL_NOTIFICATIONS, 0) != WINHTTP_INVALID_STATUS_CALLBACK)
{
return TRUE;
}
}
if(m_hSession)
{
WinHttpCloseHandle(m_hSession);
}
return FALSE;
}
void tordex::http::close()
{
if(m_hSession)
{
WinHttpCloseHandle(m_hSession);
m_hSession = NULL;
}
}
VOID CALLBACK tordex::http::http_callback( HINTERNET hInternet, DWORD_PTR dwContext, DWORD dwInternetStatus, LPVOID lpvStatusInformation, DWORD dwStatusInformationLength )
{
CoInitialize(NULL);
DWORD dwError = ERROR_SUCCESS;
http_request* request = (http_request*) dwContext;
if(request)
{
switch(dwInternetStatus)
{
case WINHTTP_CALLBACK_STATUS_SENDREQUEST_COMPLETE:
dwError = request->onSendRequestComplete();
break;
case WINHTTP_CALLBACK_STATUS_HEADERS_AVAILABLE:
dwError = request->onHeadersAvailable();
break;
case WINHTTP_CALLBACK_STATUS_READ_COMPLETE:
dwError = request->onReadComplete(dwStatusInformationLength);
break;
case WINHTTP_CALLBACK_STATUS_HANDLE_CLOSING:
dwError = request->onHandleClosing();
break;
case WINHTTP_CALLBACK_STATUS_REQUEST_ERROR:
dwError = request->onRequestError(((WINHTTP_ASYNC_RESULT*)lpvStatusInformation)->dwError);
break;
}
if(dwError != ERROR_SUCCESS)
{
request->cancel();
}
}
CoUninitialize();
}
BOOL tordex::http::download_file( LPCWSTR url, http_request* request )
{
if(request)
{
request->set_parent(this);
if(request->create(url, m_hSession))
{
lock();
m_requests.push_back(request);
unlock();
return TRUE;
}
}
return FALSE;
}
void tordex::http::remove_request( http_request* request )
{
bool is_ok = false;
lock();
for(http_request::vector::iterator i = m_requests.begin(); i != m_requests.end(); i++)
{
if((*i) == request)
{
m_requests.erase(i);
is_ok = true;
break;
}
}
unlock();
if(is_ok)
{
request->release();
}
}
void tordex::http::stop()
{
lock();
for(http_request::vector::iterator i = m_requests.begin(); i != m_requests.end(); i++)
{
(*i)->cancel();
}
unlock();
}
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
tordex::http_request::http_request()
{
m_status = 0;
m_error = 0;
m_downloaded_length = 0;
m_content_length = 0;
m_refCount = 1;
m_hConnection = NULL;
m_hRequest = NULL;
m_http = NULL;
InitializeCriticalSection(&m_sync);
}
tordex::http_request::~http_request()
{
cancel();
DeleteCriticalSection(&m_sync);
}
BOOL tordex::http_request::create( LPCWSTR url, HINTERNET hSession )
{
m_url = url;
m_error = ERROR_SUCCESS;
URL_COMPONENTS urlComp;
ZeroMemory(&urlComp, sizeof(urlComp));
urlComp.dwStructSize = sizeof(urlComp);
urlComp.dwSchemeLength = -1;
urlComp.dwHostNameLength = -1;
urlComp.dwUrlPathLength = -1;
urlComp.dwExtraInfoLength = -1;
if(!WinHttpCrackUrl(url, lstrlen(url), 0, &urlComp))
{
return FALSE;
}
std::wstring host;
std::wstring path;
std::wstring extra;
host.insert(0, urlComp.lpszHostName, urlComp.dwHostNameLength);
path.insert(0, urlComp.lpszUrlPath, urlComp.dwUrlPathLength);
if(urlComp.dwExtraInfoLength)
{
extra.insert(0, urlComp.lpszExtraInfo, urlComp.dwExtraInfoLength);
}
DWORD flags = 0;
if(urlComp.nScheme == INTERNET_SCHEME_HTTPS)
{
flags = WINHTTP_FLAG_SECURE;
}
m_hConnection = WinHttpConnect(hSession, host.c_str(), urlComp.nPort, 0);
PCWSTR pwszAcceptTypes[] = {L"*/*", NULL};
path += extra;
m_hRequest = WinHttpOpenRequest(m_hConnection, L"GET", path.c_str(), NULL, NULL, pwszAcceptTypes, flags);
lock();
if(!m_hRequest)
{
WinHttpCloseHandle(m_hConnection);
m_hConnection = NULL;
unlock();
return FALSE;
}
DWORD options = WINHTTP_OPTION_REDIRECT_POLICY_ALWAYS;
WinHttpSetOption(m_hRequest, WINHTTP_OPTION_REDIRECT_POLICY, &options, sizeof(options));
if(!WinHttpSendRequest(m_hRequest, NULL, 0, NULL, 0, 0, (DWORD_PTR) this))
{
WinHttpCloseHandle(m_hRequest);
m_hRequest = NULL;
WinHttpCloseHandle(m_hConnection);
m_hConnection = NULL;
unlock();
return FALSE;
}
unlock();
return TRUE;
}
void tordex::http_request::cancel()
{
lock();
if(m_hRequest)
{
WinHttpCloseHandle(m_hRequest);
m_hRequest = NULL;
}
if(m_hConnection)
{
WinHttpCloseHandle(m_hConnection);
m_hConnection = NULL;
}
unlock();
}
DWORD tordex::http_request::onSendRequestComplete()
{
lock();
DWORD dwError = ERROR_SUCCESS;
if(!WinHttpReceiveResponse(m_hRequest, NULL))
{
dwError = GetLastError();
}
unlock();
return dwError;
}
DWORD tordex::http_request::onHeadersAvailable()
{
lock();
DWORD dwError = ERROR_SUCCESS;
m_status = 0;
DWORD StatusCodeLength = sizeof(m_status);
OnHeadersReady(m_hRequest);
if (!WinHttpQueryHeaders(m_hRequest, WINHTTP_QUERY_FLAG_NUMBER | WINHTTP_QUERY_STATUS_CODE, NULL, &m_status, &StatusCodeLength, NULL))
{
dwError = GetLastError();
} else
{
WCHAR buf[255];
DWORD len = sizeof(buf);
if(WinHttpQueryHeaders(m_hRequest, WINHTTP_QUERY_CONTENT_LENGTH, NULL, buf, &len, NULL))
{
m_content_length = _wtoi64(buf);
} else
{
m_content_length = 0;
}
m_downloaded_length = 0;
dwError = readData();
}
unlock();
return dwError;
}
DWORD tordex::http_request::onHandleClosing()
{
WCHAR errMsg[255];
errMsg[0] = 0;
if(m_error)
{
FormatMessage(FORMAT_MESSAGE_FROM_HMODULE | FORMAT_MESSAGE_FROM_SYSTEM, GetModuleHandle(L"winhttp.dll"), m_error, 0, errMsg, 255, NULL);
}
OnFinish(m_error, errMsg);
m_http->remove_request(this);
return ERROR_SUCCESS;
}
DWORD tordex::http_request::onRequestError(DWORD dwError)
{
m_error = dwError;
return m_error;
}
DWORD tordex::http_request::readData()
{
DWORD dwError = ERROR_SUCCESS;
if (!WinHttpReadData(m_hRequest, m_buffer, sizeof(m_buffer), NULL))
{
dwError = GetLastError();
}
return dwError;
}
DWORD tordex::http_request::onReadComplete(DWORD len)
{
DWORD dwError = ERROR_SUCCESS;
if (len != 0)
{
lock();
m_downloaded_length += len;
OnData(m_buffer, len, m_downloaded_length, m_content_length);
dwError = readData();
unlock();
} else
{
cancel();
}
return dwError;
}
void tordex::http_request::add_ref()
{
InterlockedIncrement(&m_refCount);
}
void tordex::http_request::release()
{
LONG lRefCount;
lRefCount = InterlockedDecrement(&m_refCount);
if (lRefCount == 0)
{
delete this;
}
}
void tordex::http_request::set_parent( http* parent )
{
m_http = parent;
}
void tordex::http_request::OnHeadersReady( HINTERNET hRequest )
{
}