forked from swoole/swoole-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swoole_redis_server.cc
488 lines (420 loc) Β· 15.6 KB
/
swoole_redis_server.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
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
/*
+----------------------------------------------------------------------+
| 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 "swoole_server.h"
#include "redis.h"
#include <unordered_map>
#include <string>
BEGIN_EXTERN_C()
#include "ext/standard/php_string.h"
END_EXTERN_C()
using namespace swoole;
using namespace std;
static zend_class_entry *swoole_redis_server_ce;
static zend_object_handlers swoole_redis_server_handlers;
static unordered_map<string, zend_fcall_info_cache> redis_handlers;
SW_EXTERN_C_BEGIN
static PHP_METHOD(swoole_redis_server, start);
static PHP_METHOD(swoole_redis_server, setHandler);
static PHP_METHOD(swoole_redis_server, getHandler);
static PHP_METHOD(swoole_redis_server, format);
SW_EXTERN_C_END
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_redis_server_start, 0, 0, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_redis_server_setHandler, 0, 0, 2)
ZEND_ARG_INFO(0, command)
ZEND_ARG_CALLABLE_INFO(0, callback, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_redis_server_getHandler, 0, 0, 1)
ZEND_ARG_INFO(0, command)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_redis_server_format, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
const zend_function_entry swoole_redis_server_methods[] =
{
PHP_ME(swoole_redis_server, start, arginfo_swoole_redis_server_start, ZEND_ACC_PUBLIC)
PHP_ME(swoole_redis_server, setHandler, arginfo_swoole_redis_server_setHandler, ZEND_ACC_PUBLIC)
PHP_ME(swoole_redis_server, getHandler, arginfo_swoole_redis_server_getHandler, ZEND_ACC_PUBLIC)
PHP_ME(swoole_redis_server, format, arginfo_swoole_redis_server_format, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
PHP_FE_END
};
void php_swoole_redis_server_minit(int module_number)
{
SW_INIT_CLASS_ENTRY_EX(swoole_redis_server, "Swoole\\Redis\\Server", "swoole_redis_server", nullptr, swoole_redis_server_methods, swoole_server);
SW_SET_CLASS_SERIALIZABLE(swoole_redis_server, zend_class_serialize_deny, zend_class_unserialize_deny);
SW_SET_CLASS_CLONEABLE(swoole_redis_server, sw_zend_class_clone_deny);
SW_SET_CLASS_UNSET_PROPERTY_HANDLER(swoole_redis_server, sw_zend_class_unset_property_deny);
zend_declare_class_constant_long(swoole_redis_server_ce, ZEND_STRL("NIL"), SW_REDIS_REPLY_NIL);
zend_declare_class_constant_long(swoole_redis_server_ce, ZEND_STRL("ERROR"), SW_REDIS_REPLY_ERROR);
zend_declare_class_constant_long(swoole_redis_server_ce, ZEND_STRL("STATUS"), SW_REDIS_REPLY_STATUS);
zend_declare_class_constant_long(swoole_redis_server_ce, ZEND_STRL("INT"), SW_REDIS_REPLY_INT);
zend_declare_class_constant_long(swoole_redis_server_ce, ZEND_STRL("STRING"), SW_REDIS_REPLY_STRING);
zend_declare_class_constant_long(swoole_redis_server_ce, ZEND_STRL("SET"), SW_REDIS_REPLY_SET);
zend_declare_class_constant_long(swoole_redis_server_ce, ZEND_STRL("MAP"), SW_REDIS_REPLY_MAP);
}
void php_swoole_redis_server_rshutdown()
{
for (auto i = redis_handlers.begin(); i != redis_handlers.end(); i++)
{
sw_zend_fci_cache_discard(&i->second);
}
redis_handlers.clear();
}
static int redis_onReceive(swServer *serv, swEventData *req)
{
int fd = req->info.fd;
swConnection *conn = swWorker_get_connection(serv, fd);
if (!conn)
{
swWarn("connection[%d] is closed", fd);
return SW_ERR;
}
swListenPort *port = swServer_get_port(serv, conn->fd);
//other server port
if (!port->open_redis_protocol)
{
return php_swoole_onReceive(serv, req);
}
zval zdata;
php_swoole_get_recv_data(serv, &zdata, req);
char *p = Z_STRVAL(zdata);
char *pe = p + Z_STRLEN(zdata);
int ret;
int length = 0;
zval zparams;
array_init(&zparams);
int state = SW_REDIS_RECEIVE_TOTAL_LINE;
int add_param = 0;
char *command = nullptr;
int command_len = 0;
do
{
switch (state)
{
case SW_REDIS_RECEIVE_TOTAL_LINE:
if (*p == '*' && (p = swRedis_get_number(p, &ret)))
{
state = SW_REDIS_RECEIVE_LENGTH;
break;
}
/* no break */
case SW_REDIS_RECEIVE_LENGTH:
if (*p == '$' && (p = swRedis_get_number(p, &ret)))
{
if (ret == -1)
{
add_next_index_null(&zparams);
break;
}
length = ret;
state = SW_REDIS_RECEIVE_STRING;
break;
}
//integer
else if (*p == ':' && (p = swRedis_get_number(p, &ret)))
{
add_next_index_long(&zparams, ret);
break;
}
/* no break */
case SW_REDIS_RECEIVE_STRING:
if (add_param == 0)
{
command = p;
command_len = length;
add_param = 1;
}
else
{
add_next_index_stringl(&zparams, p, length);
}
p += length + SW_CRLF_LEN;
state = SW_REDIS_RECEIVE_LENGTH;
break;
default:
break;
}
} while(p < pe);
if (command_len >= SW_REDIS_MAX_COMMAND_SIZE)
{
php_swoole_error(E_WARNING, "command [%.8s...](length=%d) is too long", command, command_len);
serv->close(serv, fd, 0);
return SW_OK;
}
char _command[SW_REDIS_MAX_COMMAND_SIZE];
command[command_len] = 0;
size_t _command_len = sw_snprintf(_command, sizeof(_command), "_handler_%.*s", command_len, command);
php_strtolower(_command, _command_len);
auto i = redis_handlers.find(string(_command, _command_len));
if (i == redis_handlers.end())
{
char err_msg[256];
length = sw_snprintf(err_msg, sizeof(err_msg), "-ERR unknown command '%.*s'\r\n", command_len, command);
serv->send(serv, fd, err_msg, length);
return SW_OK; // TODO: return SW_ERR?
}
zend_fcall_info_cache *fci_cache = &i->second;
zval args[2];
zval retval;
ZVAL_LONG(&args[0], fd);
args[1] = zparams;
if (UNEXPECTED(!zend::function::call(fci_cache, 2, args, &retval, SwooleG.enable_coroutine)))
{
php_swoole_error(E_WARNING, "%s->onRequest with command '%.*s' handler error", ZSTR_VAL(swoole_redis_server_ce->name), command_len, command);
}
if (Z_TYPE_P(&retval) == IS_STRING)
{
serv->send(serv, fd, Z_STRVAL_P(&retval), Z_STRLEN_P(&retval));
}
zval_ptr_dtor(&retval);
zval_ptr_dtor(&zdata);
zval_ptr_dtor(&zparams);
return SW_OK;
}
static PHP_METHOD(swoole_redis_server, start)
{
swServer *serv = php_swoole_server_get_and_check_server(ZEND_THIS);
zval *zserv = ZEND_THIS;
if (serv->gs->start > 0)
{
php_swoole_error(E_WARNING, "server is running, unable to execute %s->start", SW_Z_OBJCE_NAME_VAL_P(zserv));
RETURN_FALSE;
}
php_swoole_server_register_callbacks(serv);
serv->onReceive = redis_onReceive;
zval *zsetting = sw_zend_read_and_convert_property_array(swoole_server_ce, zserv, ZEND_STRL("setting"), 0);
add_assoc_bool(zsetting, "open_http_protocol", 0);
add_assoc_bool(zsetting, "open_mqtt_protocol", 0);
add_assoc_bool(zsetting, "open_eof_check", 0);
add_assoc_bool(zsetting, "open_length_check", 0);
add_assoc_bool(zsetting, "open_redis_protocol", 0);
auto primary_port = serv->listen_list->front();
primary_port->open_http_protocol = 0;
primary_port->open_mqtt_protocol = 0;
primary_port->open_eof_check = 0;
primary_port->open_length_check = 0;
primary_port->open_redis_protocol = 1;
php_swoole_server_before_start(serv, zserv);
if (swServer_start(serv) < 0)
{
php_swoole_fatal_error(E_ERROR, "server failed to start. Error: %s", sw_error);
}
RETURN_TRUE;
}
static PHP_METHOD(swoole_redis_server, setHandler)
{
char *command;
size_t command_len;
zval *zcallback;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "sz", &command, &command_len, &zcallback) == FAILURE)
{
RETURN_FALSE;
}
if (command_len == 0 || command_len >= SW_REDIS_MAX_COMMAND_SIZE)
{
php_swoole_fatal_error(E_ERROR, "invalid command");
RETURN_FALSE;
}
char *func_name;
zend_fcall_info_cache *fci_cache = (zend_fcall_info_cache *) emalloc(sizeof(zend_fcall_info_cache));
if (!sw_zend_is_callable_ex(zcallback, nullptr, 0, &func_name, nullptr, fci_cache, nullptr))
{
php_swoole_fatal_error(E_ERROR, "function '%s' is not callable", func_name);
return;
}
efree(func_name);
char _command[SW_REDIS_MAX_COMMAND_SIZE];
size_t _command_len = sw_snprintf(_command, sizeof(_command), "_handler_%s", command);
php_strtolower(_command, _command_len);
zend_update_property(swoole_redis_server_ce, ZEND_THIS, _command, _command_len, zcallback);
string key(_command, _command_len);
auto i = redis_handlers.find(key);
if (i != redis_handlers.end())
{
sw_zend_fci_cache_discard(&i->second);
}
sw_zend_fci_cache_persist(fci_cache);
redis_handlers[key] = *fci_cache;
RETURN_TRUE;
}
static PHP_METHOD(swoole_redis_server, getHandler)
{
char *command;
size_t command_len;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &command, &command_len) == FAILURE)
{
RETURN_FALSE;
}
char _command[SW_REDIS_MAX_COMMAND_SIZE];
size_t _command_len = sw_snprintf(_command, sizeof(_command), "_handler_%s", command);
php_strtolower(_command, _command_len);
zval rv;
zval *handler = zend_read_property(swoole_redis_server_ce, ZEND_THIS, _command, _command_len, 1, &rv);
RETURN_ZVAL(handler, 1, 0);
}
static PHP_METHOD(swoole_redis_server, format)
{
zend_long type;
zval *value = nullptr;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|z", &type, &value) == FAILURE)
{
RETURN_FALSE;
}
char message[256];
int length;
zval *item;
swString *format_buffer = SwooleTG.buffer_stack;
if (type == SW_REDIS_REPLY_NIL)
{
RETURN_STRINGL(SW_REDIS_RETURN_NIL, sizeof(SW_REDIS_RETURN_NIL)-1);
}
else if (type == SW_REDIS_REPLY_STATUS)
{
if (value)
{
convert_to_string(value);
length = sw_snprintf(message, sizeof(message), "+%.*s\r\n", (int)Z_STRLEN_P(value), Z_STRVAL_P(value));
}
else
{
length = sw_snprintf(message, sizeof(message), "+%s\r\n", "OK");
}
RETURN_STRINGL(message, length);
}
else if (type == SW_REDIS_REPLY_ERROR)
{
if (value)
{
convert_to_string(value);
length = sw_snprintf(message, sizeof(message), "-%.*s\r\n", (int)Z_STRLEN_P(value), Z_STRVAL_P(value));
}
else
{
length = sw_snprintf(message, sizeof(message), "-%s\r\n", "ERR");
}
RETURN_STRINGL(message, length);
}
else if (type == SW_REDIS_REPLY_INT)
{
if (!value)
{
goto _no_value;
}
length = sw_snprintf(message, sizeof(message), ":" ZEND_LONG_FMT "\r\n", zval_get_long(value));
RETURN_STRINGL(message, length);
}
else if (type == SW_REDIS_REPLY_STRING)
{
if (!value)
{
_no_value:
php_swoole_fatal_error(E_WARNING, "require more parameters");
RETURN_FALSE;
}
convert_to_string(value);
if (Z_STRLEN_P(value) > SW_REDIS_MAX_STRING_SIZE || Z_STRLEN_P(value) < 1)
{
php_swoole_fatal_error(E_WARNING, "invalid string size");
RETURN_FALSE;
}
swString_clear(format_buffer);
length = sw_snprintf(message, sizeof(message), "$%zu\r\n", Z_STRLEN_P(value));
swString_append_ptr(format_buffer, message, length);
swString_append_ptr(format_buffer, Z_STRVAL_P(value), Z_STRLEN_P(value));
swString_append_ptr(format_buffer, SW_CRLF, SW_CRLF_LEN);
RETURN_STRINGL(format_buffer->str, format_buffer->length);
}
else if (type == SW_REDIS_REPLY_SET)
{
if (!value)
{
goto _no_value;
}
if (!ZVAL_IS_ARRAY(value))
{
php_swoole_fatal_error(E_WARNING, "the second parameter should be an array");
}
swString_clear(format_buffer);
length = sw_snprintf(message, sizeof(message), "*%d\r\n", zend_hash_num_elements(Z_ARRVAL_P(value)));
swString_append_ptr(format_buffer, message, length);
SW_HASHTABLE_FOREACH_START(Z_ARRVAL_P(value), item)
zval _copy;
if (Z_TYPE_P(item) != IS_STRING)
{
_copy = *item;
zval_copy_ctor(&_copy);
item = &_copy;
}
convert_to_string(item);
length = sw_snprintf(message, sizeof(message), "$%zu\r\n", Z_STRLEN_P(item));
swString_append_ptr(format_buffer, message, length);
swString_append_ptr(format_buffer, Z_STRVAL_P(item), Z_STRLEN_P(item));
swString_append_ptr(format_buffer, SW_CRLF, SW_CRLF_LEN);
if (item == &_copy)
{
zval_dtor(item);
}
SW_HASHTABLE_FOREACH_END();
RETURN_STRINGL(format_buffer->str, format_buffer->length);
}
else if (type == SW_REDIS_REPLY_MAP)
{
if (!value)
{
goto _no_value;
}
if (!ZVAL_IS_ARRAY(value))
{
php_swoole_fatal_error(E_WARNING, "the second parameter should be an array");
}
swString_clear(format_buffer);
length = sw_snprintf(message, sizeof(message), "*%d\r\n", 2 * zend_hash_num_elements(Z_ARRVAL_P(value)));
swString_append_ptr(format_buffer, message, length);
char *key;
uint32_t keylen;
int keytype;
SW_HASHTABLE_FOREACH_START2(Z_ARRVAL_P(value), key, keylen, keytype, item)
if (key == nullptr || keylen == 0)
{
continue;
}
zval _copy;
if (Z_TYPE_P(item) != IS_STRING)
{
_copy = *item;
zval_copy_ctor(&_copy);
item = &_copy;
}
convert_to_string(item);
length = sw_snprintf(message, sizeof(message), "$%d\r\n%s\r\n$%zu\r\n", keylen, key, Z_STRLEN_P(item));
swString_append_ptr(format_buffer, message, length);
swString_append_ptr(format_buffer, Z_STRVAL_P(item), Z_STRLEN_P(item));
swString_append_ptr(format_buffer, SW_CRLF, SW_CRLF_LEN);
if (item == &_copy)
{
zval_dtor(item);
}
(void) keytype;
SW_HASHTABLE_FOREACH_END();
RETURN_STRINGL(format_buffer->str, format_buffer->length);
}
else
{
php_swoole_error(E_WARNING, "Unknown type[" ZEND_LONG_FMT "]", type);
RETURN_FALSE;
}
}