-
Notifications
You must be signed in to change notification settings - Fork 577
Expand file tree
/
Copy pathcasyncmanager.cpp
More file actions
260 lines (209 loc) · 7.3 KB
/
casyncmanager.cpp
File metadata and controls
260 lines (209 loc) · 7.3 KB
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
#include "precomp.h"
extern RtlNtStatusToDosError pRtlNtStatusToDosError;
void ASYNC_CONTEXT::RunSynchronousContinuations()
{
BOOL fCompletionPosted = FALSE;
while (!fCompletionPosted && this->continueSynchronously)
{
// The continueSynchronously is used to unwind the call stack
// to avoid stack overflow in case of a synchronous IO completions
this->continueSynchronously = FALSE;
DWORD bytesCompleteted = this->bytesCompleteted;
this->bytesCompleteted = 0;
this->completionProcessor(S_OK, bytesCompleteted, (LPOVERLAPPED)this, &fCompletionPosted);
}
}
CAsyncManager::CAsyncManager()
: threads(NULL), threadCount(0), completionPort(NULL), timerThread(NULL), timerSignal(NULL)
{
}
CAsyncManager::~CAsyncManager()
{
this->Terminate();
}
HRESULT CAsyncManager::Initialize(IHttpContext* context)
{
HRESULT hr;
DWORD initializedThreads = 0;
ErrorIf(NULL != this->threads, ERROR_INVALID_OPERATION);
this->threadCount = CModuleConfiguration::GetAsyncCompletionThreadCount(context);
ErrorIf(NULL == (this->completionPort = CreateIoCompletionPort(INVALID_HANDLE_VALUE, NULL, 0, this->threadCount)), GetLastError());
ErrorIf(NULL == (this->timerSignal = CreateEvent(NULL, TRUE, FALSE, NULL)), ERROR_NOT_ENOUGH_MEMORY);
ErrorIf((HANDLE)-1L == (this->timerThread = (HANDLE) _beginthreadex(NULL, 0, CAsyncManager::TimerWorker, this, 0, NULL)), ERROR_NOT_ENOUGH_MEMORY);
ErrorIf(NULL == (this->threads = new HANDLE[this->threadCount]), ERROR_NOT_ENOUGH_MEMORY);
for (initializedThreads = 0; initializedThreads < this->threadCount; initializedThreads++)
{
ErrorIf((HANDLE)-1L == (this->threads[initializedThreads] = (HANDLE) _beginthreadex(NULL, 0, CAsyncManager::Worker, this, 0, NULL)), ERROR_NOT_ENOUGH_MEMORY);
}
return S_OK;
Error:
this->threadCount = initializedThreads;
this->Terminate();
return hr;
}
HRESULT CAsyncManager::AddAsyncCompletionHandle(HANDLE handle)
{
HRESULT hr;
CheckNull(handle);
ErrorIf(NULL == CreateIoCompletionPort(handle, this->completionPort, NULL, 0), GetLastError());
return S_OK;
Error:
return hr;
}
HRESULT CAsyncManager::Terminate()
{
HRESULT hr;
if (NULL != this->timerThread)
{
SetEvent(this->timerSignal);
WaitForSingleObject(this->timerThread, INFINITE);
CloseHandle(this->timerThread);
this->timerThread = NULL;
}
if (NULL != this->timerSignal)
{
CloseHandle(this->timerSignal);
this->timerSignal = NULL;
}
if (NULL != this->threads)
{
for (DWORD i = 0; i < this->threadCount; i++)
{
ErrorIf(0 == PostQueuedCompletionStatus(this->completionPort, 0, -1L, NULL), ERROR_OPERATION_ABORTED);
}
WaitForMultipleObjects(this->threadCount, this->threads, TRUE, INFINITE);
for (DWORD i = 0; i < this->threadCount; i++)
{
CloseHandle(this->threads[i]);
}
delete this->threads;
this->threads = NULL;
this->threadCount = 0;
}
if (NULL != this->completionPort)
{
CloseHandle(this->completionPort);
this->completionPort = NULL;
}
return S_OK;
Error:
return hr;
}
HRESULT CAsyncManager::SetTimer(ASYNC_CONTEXT* context, LARGE_INTEGER* dueTime)
{
HRESULT hr;
CheckNull(context);
CheckNull(dueTime);
ErrorIf(NULL != context->timer, ERROR_INVALID_OPERATION);
context->dueTime = *dueTime;
context->completionPort = this->completionPort;
ErrorIf(NULL == (context->timer = CreateWaitableTimer(NULL, TRUE, NULL)), GetLastError());
ErrorIf(0 == QueueUserAPC(CAsyncManager::OnSetTimerApc, this->timerThread, (ULONG_PTR)context), GetLastError());
return S_OK;
Error:
return hr;
}
void CALLBACK CAsyncManager::OnSetTimerApc(ULONG_PTR dwParam)
{
ASYNC_CONTEXT* ctx = (ASYNC_CONTEXT*)dwParam;
SetWaitableTimer(ctx->timer, &ctx->dueTime, 0, CAsyncManager::OnTimer, ctx, FALSE);
}
unsigned int WINAPI CAsyncManager::TimerWorker(void* arg)
{
CAsyncManager* async = (CAsyncManager*)arg;
DWORD waitResult = WAIT_IO_COMPLETION;
// Setting new timers and executing timer callbacks all happens in APCs on this thread.
// The timerSignal is only signalled once when the process terminates and needs to clean up.
while (WAIT_IO_COMPLETION == waitResult) {
waitResult = WaitForSingleObjectEx(async->timerSignal, INFINITE, TRUE);
}
return 0;
}
unsigned int WINAPI CAsyncManager::Worker(void* arg)
{
const int maxOverlappedEntries = 32;
HANDLE completionPort = ((CAsyncManager*)arg)->completionPort;
ASYNC_CONTEXT* ctx;
DWORD error;
OVERLAPPED_ENTRY entries[maxOverlappedEntries];
ULONG entriesRemoved;
while (true)
{
error = ERROR_SUCCESS;
RtlZeroMemory(&entries, maxOverlappedEntries * sizeof OVERLAPPED_ENTRY);
if (GetQueuedCompletionStatusEx(completionPort, entries, maxOverlappedEntries, &entriesRemoved, INFINITE, TRUE))
{
OVERLAPPED_ENTRY* entry = entries;
for (int i = 0; i < entriesRemoved; i++)
{
BOOL fCompletionPosted = FALSE;
if (0L == entry->lpCompletionKey
&& NULL != (ctx = (ASYNC_CONTEXT*)entry->lpOverlapped)
&& NULL != ctx->completionProcessor) // regular IO completion - invoke custom processor
{
error = (entry->lpOverlapped->Internal == STATUS_SUCCESS) ? ERROR_SUCCESS
: pRtlNtStatusToDosError(entry->lpOverlapped->Internal);
ctx = (ASYNC_CONTEXT*)entry->lpOverlapped;
ctx->completionProcessor(
(0 == entry->dwNumberOfBytesTransferred && ERROR_SUCCESS == error) ? ERROR_NO_DATA : error,
entry->dwNumberOfBytesTransferred,
(LPOVERLAPPED)ctx,
&fCompletionPosted);
if(!fCompletionPosted)
{
ctx->RunSynchronousContinuations();
}
CNodeHttpStoredContext* storedCtx = (CNodeHttpStoredContext*)ctx->data;
storedCtx->DereferenceNodeHttpStoredContext();
}
else if (-1L == entry->lpCompletionKey) // shutdown initiated from Terminate
{
return 0;
}
else if (NULL != entry->lpOverlapped)
{
if (-2L == entry->lpCompletionKey) // completion of an alertable wait state timer initialized from OnTimer
{
ctx = (ASYNC_CONTEXT*)entry->lpOverlapped;
ctx->completionProcessor(S_OK, 0, (LPOVERLAPPED)ctx, &fCompletionPosted);
if(!fCompletionPosted)
{
ctx->RunSynchronousContinuations();
}
CNodeHttpStoredContext* storedCtx = (CNodeHttpStoredContext*)ctx->data;
storedCtx->DereferenceNodeHttpStoredContext();
}
else if (-3L == entry->lpCompletionKey) // continuation initiated form PostContinuation
{
((ContinuationCallback)entry->lpOverlapped)((void*)entry->dwNumberOfBytesTransferred);
}
}
entry++;
}
}
else if (ERROR_ABANDONED_WAIT_0 == GetLastError())
{
return ERROR_ABANDONED_WAIT_0;
}
}
return 0;
}
void APIENTRY CAsyncManager::OnTimer(LPVOID lpArgToCompletionRoutine, DWORD dwTimerLowValue, DWORD dwTimerHighValue)
{
ASYNC_CONTEXT* ctx = (ASYNC_CONTEXT*)lpArgToCompletionRoutine;
CloseHandle(ctx->timer);
ctx->timer = NULL;
if (NULL != ctx && NULL != ctx->completionPort && NULL != ctx->completionProcessor)
{
PostQueuedCompletionStatus(ctx->completionPort, 0, -2L, (LPOVERLAPPED)ctx);
}
}
HRESULT CAsyncManager::PostContinuation(ContinuationCallback continuation, void* data)
{
HRESULT hr;
CheckNull(continuation);
ErrorIf(0 == PostQueuedCompletionStatus(this->completionPort, (DWORD)data, -3L, (LPOVERLAPPED)continuation), ERROR_OPERATION_ABORTED);
return S_OK;
Error:
return hr;
}