-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathswoole_thread_map.cc
312 lines (263 loc) Β· 11.8 KB
/
swoole_thread_map.cc
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
/*
+----------------------------------------------------------------------+
| Swoole |
+----------------------------------------------------------------------+
| This source file is subject to version 2.0 of the Apache license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.apache.org/licenses/LICENSE-2.0.html |
| If you did not receive a copy of the Apache2.0 license and are unable|
| to obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Tianfeng Han <[email protected]> |
+----------------------------------------------------------------------+
*/
#include "php_swoole_cxx.h"
#ifdef SW_THREAD
#include "php_swoole_thread.h"
SW_EXTERN_C_BEGIN
#include "stubs/php_swoole_thread_map_arginfo.h"
SW_EXTERN_C_END
zend_class_entry *swoole_thread_map_ce;
static zend_object_handlers swoole_thread_map_handlers;
struct ThreadMapObject {
ZendArray *map;
zend_object std;
};
static sw_inline ThreadMapObject *map_fetch_object(zend_object *obj) {
return (ThreadMapObject *) ((char *) obj - swoole_thread_map_handlers.offset);
}
static void map_free_object(zend_object *object) {
ThreadMapObject *mo = map_fetch_object(object);
if (mo->map) {
mo->map->del_ref();
mo->map = nullptr;
}
zend_object_std_dtor(object);
}
static zend_object *map_create_object(zend_class_entry *ce) {
ThreadMapObject *mo = (ThreadMapObject *) zend_object_alloc(sizeof(ThreadMapObject), ce);
zend_object_std_init(&mo->std, ce);
object_properties_init(&mo->std, ce);
mo->std.handlers = &swoole_thread_map_handlers;
return &mo->std;
}
static ThreadMapObject *map_fetch_object_check(zval *zobject) {
ThreadMapObject *map = map_fetch_object(Z_OBJ_P(zobject));
if (!map->map) {
php_swoole_fatal_error(E_ERROR, "must call constructor first");
}
return map;
}
ThreadResource *php_swoole_thread_map_cast(zval *zobject) {
return map_fetch_object(Z_OBJ_P(zobject))->map;
}
void php_swoole_thread_map_create(zval *return_value, ThreadResource *resource) {
auto obj = map_create_object(swoole_thread_map_ce);
auto mo = (ThreadMapObject *) map_fetch_object(obj);
mo->map = static_cast<ZendArray *>(resource);
ZVAL_OBJ(return_value, obj);
}
SW_EXTERN_C_BEGIN
static PHP_METHOD(swoole_thread_map, __construct);
static PHP_METHOD(swoole_thread_map, offsetGet);
static PHP_METHOD(swoole_thread_map, offsetExists);
static PHP_METHOD(swoole_thread_map, offsetSet);
static PHP_METHOD(swoole_thread_map, offsetUnset);
static PHP_METHOD(swoole_thread_map, find);
static PHP_METHOD(swoole_thread_map, count);
static PHP_METHOD(swoole_thread_map, keys);
static PHP_METHOD(swoole_thread_map, values);
static PHP_METHOD(swoole_thread_map, incr);
static PHP_METHOD(swoole_thread_map, decr);
static PHP_METHOD(swoole_thread_map, add);
static PHP_METHOD(swoole_thread_map, update);
static PHP_METHOD(swoole_thread_map, clean);
static PHP_METHOD(swoole_thread_map, toArray);
static PHP_METHOD(swoole_thread_map, sort);
SW_EXTERN_C_END
// clang-format off
static const zend_function_entry swoole_thread_map_methods[] = {
PHP_ME(swoole_thread_map, __construct, arginfo_class_Swoole_Thread_Map___construct, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, offsetGet, arginfo_class_Swoole_Thread_Map_offsetGet, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, offsetExists, arginfo_class_Swoole_Thread_Map_offsetExists, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, offsetSet, arginfo_class_Swoole_Thread_Map_offsetSet, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, offsetUnset, arginfo_class_Swoole_Thread_Map_offsetUnset, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, find, arginfo_class_Swoole_Thread_Map_find, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, count, arginfo_class_Swoole_Thread_Map_count, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, incr, arginfo_class_Swoole_Thread_Map_incr, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, decr, arginfo_class_Swoole_Thread_Map_decr, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, add, arginfo_class_Swoole_Thread_Map_add, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, update, arginfo_class_Swoole_Thread_Map_update, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, clean, arginfo_class_Swoole_Thread_Map_clean, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, keys, arginfo_class_Swoole_Thread_Map_keys, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, values, arginfo_class_Swoole_Thread_Map_values, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, toArray, arginfo_class_Swoole_Thread_Map_toArray, ZEND_ACC_PUBLIC)
PHP_ME(swoole_thread_map, sort, arginfo_class_Swoole_Thread_Map_sort, ZEND_ACC_PUBLIC)
PHP_FE_END
};
// clang-format on
void php_swoole_thread_map_minit(int module_number) {
SW_INIT_CLASS_ENTRY(swoole_thread_map, "Swoole\\Thread\\Map", nullptr, swoole_thread_map_methods);
swoole_thread_map_ce->ce_flags |= ZEND_ACC_FINAL | ZEND_ACC_NOT_SERIALIZABLE;
SW_SET_CLASS_CLONEABLE(swoole_thread_map, sw_zend_class_clone_deny);
SW_SET_CLASS_UNSET_PROPERTY_HANDLER(swoole_thread_map, sw_zend_class_unset_property_deny);
SW_SET_CLASS_CUSTOM_OBJECT(swoole_thread_map, map_create_object, map_free_object, ThreadMapObject, std);
zend_class_implements(swoole_thread_map_ce, 2, zend_ce_arrayaccess, zend_ce_countable);
}
static PHP_METHOD(swoole_thread_map, __construct) {
zend_array *array = nullptr;
ZEND_PARSE_PARAMETERS_START(0, 1)
Z_PARAM_OPTIONAL
Z_PARAM_ARRAY_HT_OR_NULL(array)
ZEND_PARSE_PARAMETERS_END();
auto mo = map_fetch_object(Z_OBJ_P(ZEND_THIS));
if (mo->map != nullptr) {
zend_throw_error(NULL, "Constructor of %s can only be called once", SW_Z_OBJCE_NAME_VAL_P(ZEND_THIS));
return;
}
if (array) {
mo->map = ZendArray::from(array);
} else {
mo->map = new ZendArray();
}
}
static int handle_array_key(zval *key, zend_ulong *idx) {
switch (Z_TYPE_P(key)) {
case IS_STRING:
return _zend_handle_numeric_str(Z_STRVAL_P(key), Z_STRLEN_P(key), idx) ? IS_LONG : IS_STRING;
case IS_LONG:
*idx = Z_LVAL_P(key);
return IS_LONG;
case IS_NULL:
return IS_NULL;
case IS_DOUBLE:
*idx = zend_dval_to_lval_safe(Z_DVAL_P(key));
return IS_LONG;
case IS_FALSE:
*idx = 0;
return IS_LONG;
case IS_TRUE:
*idx = 1;
return IS_LONG;
case IS_RESOURCE:
zend_use_resource_as_offset(key);
*idx = Z_RES_HANDLE_P(key);
return IS_LONG;
default:
zend_argument_type_error(1, "Illegal offset type");
return IS_UNDEF;
}
}
#define ZEND_ARRAY_CALL_METHOD(array, method, zkey, ...) \
zend_ulong idx; \
int type_of_key = handle_array_key(zkey, &idx); \
if (type_of_key == IS_LONG) { \
array->intkey_##method(idx, ##__VA_ARGS__); \
} else if (type_of_key == IS_STRING) { \
array->strkey_##method(zkey, ##__VA_ARGS__); \
} else if (type_of_key == IS_NULL) { \
zval empty_str; \
ZVAL_EMPTY_STRING(&empty_str); \
array->strkey_##method(&empty_str, ##__VA_ARGS__); \
} else { \
zend_type_error("Illegal offset type"); \
}
static PHP_METHOD(swoole_thread_map, offsetGet) {
zval *zkey;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_ZVAL(zkey)
ZEND_PARSE_PARAMETERS_END();
auto mo = map_fetch_object_check(ZEND_THIS);
ZEND_ARRAY_CALL_METHOD(mo->map, offsetGet, zkey, return_value);
}
static PHP_METHOD(swoole_thread_map, offsetExists) {
zval *zkey;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_ZVAL(zkey)
ZEND_PARSE_PARAMETERS_END();
auto mo = map_fetch_object_check(ZEND_THIS);
ZEND_ARRAY_CALL_METHOD(mo->map, offsetExists, zkey, return_value);
}
static PHP_METHOD(swoole_thread_map, offsetSet) {
zval *zkey;
zval *zvalue;
ZEND_PARSE_PARAMETERS_START(2, 2)
Z_PARAM_ZVAL(zkey)
Z_PARAM_ZVAL(zvalue)
ZEND_PARSE_PARAMETERS_END();
auto mo = map_fetch_object_check(ZEND_THIS);
ZEND_ARRAY_CALL_METHOD(mo->map, offsetSet, zkey, zvalue);
}
static PHP_METHOD(swoole_thread_map, incr) {
INIT_ARRAY_INCR_PARAMS
auto mo = map_fetch_object_check(ZEND_THIS);
ZEND_ARRAY_CALL_METHOD(mo->map, incr, zkey, zvalue, return_value);
}
static PHP_METHOD(swoole_thread_map, decr) {
INIT_ARRAY_INCR_PARAMS
auto mo = map_fetch_object_check(ZEND_THIS);
ZEND_ARRAY_CALL_METHOD(mo->map, decr, zkey, zvalue, return_value);
}
static PHP_METHOD(swoole_thread_map, add) {
zval *zkey;
zval *zvalue;
ZEND_PARSE_PARAMETERS_START(2, 2)
Z_PARAM_ZVAL(zkey)
Z_PARAM_ZVAL(zvalue)
ZEND_PARSE_PARAMETERS_END();
auto mo = map_fetch_object_check(ZEND_THIS);
ZEND_ARRAY_CALL_METHOD(mo->map, add, zkey, zvalue, return_value);
}
static PHP_METHOD(swoole_thread_map, update) {
zval *zkey;
zval *zvalue;
ZEND_PARSE_PARAMETERS_START(2, 2)
Z_PARAM_ZVAL(zkey)
Z_PARAM_ZVAL(zvalue)
ZEND_PARSE_PARAMETERS_END();
auto mo = map_fetch_object_check(ZEND_THIS);
ZEND_ARRAY_CALL_METHOD(mo->map, update, zkey, zvalue, return_value);
}
static PHP_METHOD(swoole_thread_map, offsetUnset) {
zval *zkey;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_ZVAL(zkey)
ZEND_PARSE_PARAMETERS_END();
auto mo = map_fetch_object_check(ZEND_THIS);
ZEND_ARRAY_CALL_METHOD(mo->map, offsetUnset, zkey);
}
static PHP_METHOD(swoole_thread_map, find) {
zval *zvalue;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_ZVAL(zvalue)
ZEND_PARSE_PARAMETERS_END();
auto mo = map_fetch_object_check(ZEND_THIS);
mo->map->find(zvalue, return_value);
}
static PHP_METHOD(swoole_thread_map, count) {
auto mo = map_fetch_object_check(ZEND_THIS);
mo->map->count(return_value);
}
static PHP_METHOD(swoole_thread_map, keys) {
auto mo = map_fetch_object_check(ZEND_THIS);
mo->map->keys(return_value);
}
static PHP_METHOD(swoole_thread_map, values) {
auto mo = map_fetch_object_check(ZEND_THIS);
mo->map->values(return_value);
}
static PHP_METHOD(swoole_thread_map, toArray) {
auto mo = map_fetch_object_check(ZEND_THIS);
mo->map->to_array(return_value);
}
static PHP_METHOD(swoole_thread_map, clean) {
auto mo = map_fetch_object_check(ZEND_THIS);
mo->map->clean();
}
static PHP_METHOD(swoole_thread_map, sort) {
auto mo = map_fetch_object_check(ZEND_THIS);
mo->map->sort(false);
}
#endif