forked from dxFeed/dxfeed-c-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskQueue.c
227 lines (169 loc) · 5.63 KB
/
TaskQueue.c
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
/*
* The contents of this file are subject to the Mozilla Public License Version
* 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Initial Developer of the Original Code is Devexperts LLC.
* Portions created by the Initial Developer are Copyright (C) 2010
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
*/
#include "TaskQueue.h"
#include "DXThreads.h"
#include "DXMemory.h"
#include "DXAlgorithms.h"
#include "DXErrorHandling.h"
#include "Logger.h"
/* -------------------------------------------------------------------------- */
/*
* Task queue data
*/
/* -------------------------------------------------------------------------- */
typedef struct {
dx_task_processor_t processor;
void* data;
} dx_task_data_t;
typedef struct {
dx_mutex_t guard;
dx_task_data_t* elements;
size_t size;
size_t capacity;
int set_fields_flags;
} dx_task_queue_data_t;
#define MUTEX_FIELD_FLAG (1 << 0)
/* -------------------------------------------------------------------------- */
/*
* Helper functions
*/
/* -------------------------------------------------------------------------- */
int dx_clear_task_queue_data (dx_task_queue_data_t* tqd) {
int res = true;
if (tqd == NULL) {
return true;
}
if (IS_FLAG_SET(tqd->set_fields_flags, MUTEX_FIELD_FLAG)) {
res = dx_mutex_destroy(&tqd->guard) && res;
}
CHECKED_FREE(tqd->elements);
dx_free(tqd);
return res;
}
/* -------------------------------------------------------------------------- */
/*
* Task queue functions implementation
*/
/* -------------------------------------------------------------------------- */
int dx_create_task_queue (OUT dx_task_queue_t* tq) {
dx_task_queue_data_t* tqd = NULL;
if (tq == NULL) {
return dx_set_error_code(dx_ec_invalid_func_param_internal);
}
tqd = dx_calloc(1, sizeof(dx_task_queue_data_t));
if (tqd == NULL) {
return false;
}
if (!(dx_mutex_create(&tqd->guard) && (tqd->set_fields_flags |= MUTEX_FIELD_FLAG))) { /* setting the flag if the function succeeded, not setting otherwise */
dx_clear_task_queue_data(tqd);
return false;
}
*tq = tqd;
return true;
}
/* -------------------------------------------------------------------------- */
int dx_cleanup_task_queue (dx_task_queue_t tq) {
dx_task_queue_data_t* tqd = tq;
size_t i = 0;
int res = true;
if (tq == NULL) {
return dx_set_error_code(dx_ec_invalid_func_param_internal);
}
CHECKED_CALL(dx_mutex_lock, &(tqd->guard));
for (; i < tqd->size; ++i) {
int task_res = tqd->elements[i].processor(tqd->elements[i].data, dx_tc_free_resources);
res = IS_FLAG_SET(task_res, dx_tes_success) && res;
}
tqd->size = 0;
return dx_mutex_unlock(&(tqd->guard)) && res;
}
/* -------------------------------------------------------------------------- */
int dx_destroy_task_queue (dx_task_queue_t tq) {
int res = true;
if (tq == NULL) {
return dx_set_error_code(dx_ec_invalid_func_param_internal);
}
res = dx_cleanup_task_queue(tq) && res;
res = dx_clear_task_queue_data(tq) && res;
return res;
}
/* -------------------------------------------------------------------------- */
int dx_add_task_to_queue (dx_task_queue_t tq, dx_task_processor_t processor, void* data) {
dx_task_queue_data_t* tqd = tq;
dx_task_data_t task;
int failed = false;
if (tq == NULL || processor == NULL) {
return dx_set_error_code(dx_ec_invalid_func_param_internal);
}
CHECKED_CALL(dx_mutex_lock, &(tqd->guard));
task.processor = processor;
task.data = data;
#ifdef _DEBUG_TQ
dx_logging_dbg_lock();
dx_logging_dbg(L"NEWTASK Submit [0x%016p] %ls(0x%016p) at %u", processor, dx_logging_dbg_sym(processor), data, tqd->size);
dx_logging_dbg_stack();
dx_logging_dbg_unlock();
#endif
DX_ARRAY_INSERT(*tqd, dx_task_data_t, task, tqd->size, dx_capacity_manager_halfer, failed);
return dx_mutex_unlock(&(tqd->guard)) && !failed;
}
/* -------------------------------------------------------------------------- */
int dx_execute_task_queue (dx_task_queue_t tq) {
dx_task_queue_data_t* tqd = tq;
size_t i = 0;
int res = true;
if (tq == NULL) {
return dx_set_error_code(dx_ec_invalid_func_param_internal);
}
CHECKED_CALL(dx_mutex_lock, &(tqd->guard));
while (i < tqd->size) {
dx_task_data_t* task = &(tqd->elements[i]);
#ifdef _DEBUG_TQ
dx_logging_dbg_lock();
dx_logging_dbg(L"RUNTASK Execute [0x%016p] %ls(0x%016p) at %u", task->processor, dx_logging_dbg_sym(task->processor), task->data, i);
dx_logging_dbg_stack();
dx_logging_dbg_unlock();
#endif
int task_res = task->processor(task->data, 0);
res = IS_FLAG_SET(task_res, dx_tes_success) && res;
if (IS_FLAG_SET(task_res, dx_tes_pop_me)) {
int failed = false;
DX_ARRAY_DELETE(*tqd, dx_task_data_t, i, dx_capacity_manager_halfer, failed);
res = res && !failed;
}
if (IS_FLAG_SET(task_res, dx_tes_dont_advance) || !res) {
break;
}
if (IS_FLAG_SET(task_res, dx_tes_pop_me)) {
/* the current element is deleted, now the next element has its index, no need to increase it */
continue;
}
++i;
}
return dx_mutex_unlock(&(tqd->guard)) && res;
}
/* -------------------------------------------------------------------------- */
int dx_is_queue_empty (dx_task_queue_t tq, OUT int* res) {
dx_task_queue_data_t* tqd = tq;
if (tq == NULL || res == NULL) {
return dx_set_error_code(dx_ec_invalid_func_param_internal);
}
*res = (tqd->size == 0);
return true;
}