-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathswoole_timer.cc
339 lines (305 loc) Β· 7.73 KB
/
swoole_timer.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
/*
+----------------------------------------------------------------------+
| Swoole |
+----------------------------------------------------------------------+
| Copyright (c) 2012-2015 The Swoole Group |
+----------------------------------------------------------------------+
| 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.h"
#ifdef SW_COROUTINE
#include "swoole_coroutine.h"
#endif
enum swoole_timer_type
{
SW_TIMER_TICK, SW_TIMER_AFTER,
};
typedef struct _swTimer_callback
{
int type;
int interval;
zval* callback;
zend_fcall_info_cache *fci_cache;
zval* data;
zval _callback;
zend_fcall_info_cache _fci_cache;
zval _data;
} swTimer_callback;
static int php_swoole_del_timer(swTimer_node *tnode);
void php_swoole_clear_all_timer()
{
if (!SwooleG.timer.map)
{
return;
}
uint64_t timer_id;
//kill user process
while (1)
{
swTimer_node *tnode = (swTimer_node *) swHashMap_each_int(SwooleG.timer.map, &timer_id);
if (tnode == NULL)
{
break;
}
if (tnode->type != SW_TIMER_TYPE_PHP)
{
continue;
}
php_swoole_del_timer(tnode);
swTimer_del(&SwooleG.timer, tnode);
}
}
long php_swoole_add_timer(long ms, zval *callback, zval *param, int persistent)
{
if (ms <= 0)
{
swoole_php_fatal_error(E_WARNING, "Timer must be greater than 0");
return SW_ERR;
}
if (!(SwooleG.serv && swIsTaskWorker() && SwooleG.serv->task_async == 0))
{
php_swoole_check_reactor();
}
swTimer_callback *cb = (swTimer_callback *) emalloc(sizeof(swTimer_callback));
char *func_name = NULL;
if (!sw_zend_is_callable_ex(callback, NULL, 0, &func_name, NULL, &cb->_fci_cache, NULL))
{
swoole_php_fatal_error(E_ERROR, "function '%s' is not callable", func_name);
return SW_ERR;
}
efree(func_name);
cb->_callback = *callback;
cb->callback = &cb->_callback;
cb->fci_cache = &cb->_fci_cache;
if (param)
{
cb->_data = *param;
cb->data = &cb->_data;
}
else
{
cb->data = NULL;
}
swTimerCallback timer_func;
if (persistent)
{
cb->type = SW_TIMER_TICK;
timer_func = php_swoole_onInterval;
}
else
{
cb->type = SW_TIMER_AFTER;
timer_func = php_swoole_onTimeout;
}
Z_TRY_ADDREF_P(cb->callback);
if (cb->data)
{
Z_TRY_ADDREF_P(cb->data);
}
swTimer_node *tnode = swTimer_add(&SwooleG.timer, ms, persistent, cb, timer_func);
if (tnode == NULL)
{
swoole_php_fatal_error(E_WARNING, "add timer failed.");
return SW_ERR;
}
else
{
tnode->type = SW_TIMER_TYPE_PHP;
return tnode->id;
}
}
static int php_swoole_del_timer(swTimer_node *tnode)
{
swTimer_callback *cb = (swTimer_callback *) tnode->data;
if (!cb)
{
return SW_ERR;
}
if (cb->callback)
{
zval_ptr_dtor(cb->callback);
}
if (cb->data)
{
zval_ptr_dtor(cb->data);
}
efree(cb);
return SW_OK;
}
void php_swoole_onTimeout(swTimer *timer, swTimer_node *tnode)
{
swTimer_callback *cb = (swTimer_callback *) tnode->data;
zval args[1];
int argc = 0;
if (cb->data)
{
argc = 1;
args[0] = *cb->data;
}
if (SwooleG.enable_coroutine)
{
if (sw_coro_create(cb->fci_cache, argc, args) < 0)
{
swoole_php_fatal_error(E_WARNING, "create onTimer coroutine error.");
}
}
else
{
zval _retval, *retval = &_retval;
if (sw_call_user_function_fast_ex(NULL, cb->fci_cache, retval, argc, args) == FAILURE)
{
swoole_php_fatal_error(E_WARNING, "onTimeout handler error.");
}
zval_ptr_dtor(retval);
}
php_swoole_del_timer(tnode);
}
void php_swoole_onInterval(swTimer *timer, swTimer_node *tnode)
{
zval *ztimer_id;
swTimer_callback *cb = (swTimer_callback *) tnode->data;
SW_MAKE_STD_ZVAL(ztimer_id);
ZVAL_LONG(ztimer_id, tnode->id);
zval args[2];
int argc = 1;
args[0] = *ztimer_id;
if (cb->data)
{
argc = 2;
Z_TRY_ADDREF_P(cb->data);
args[1] = *cb->data;
}
if (SwooleG.enable_coroutine)
{
if (sw_coro_create(cb->fci_cache, argc, args) < 0)
{
swoole_php_fatal_error(E_WARNING, "create onInterval coroutine error.");
return;
}
}
else
{
zval _retval, *retval = &_retval;
if (sw_call_user_function_fast_ex(NULL, cb->fci_cache, retval, argc, args) == FAILURE)
{
swoole_php_fatal_error(E_WARNING, "onInterval handler error.");
}
zval_ptr_dtor(retval);
}
if (tnode->remove)
{
php_swoole_del_timer(tnode);
}
}
PHP_FUNCTION(swoole_timer_tick)
{
long after_ms;
zval *callback;
zval *param = NULL;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "lz|z", &after_ms, &callback, ¶m) == FAILURE)
{
RETURN_FALSE;
}
long timer_id = php_swoole_add_timer(after_ms, callback, param, 1);
if (timer_id < 0)
{
RETURN_FALSE;
}
else
{
RETURN_LONG(timer_id);
}
}
PHP_FUNCTION(swoole_timer_after)
{
long after_ms;
zval *callback;
zval *param = NULL;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "lz|z", &after_ms, &callback, ¶m) == FAILURE)
{
RETURN_FALSE;
}
long timer_id = php_swoole_add_timer(after_ms, callback, param, 0);
if (timer_id < 0)
{
RETURN_FALSE;
}
else
{
RETURN_LONG(timer_id);
}
}
PHP_FUNCTION(swoole_timer_clear)
{
if (!SwooleG.timer.initialized)
{
swoole_php_error(E_WARNING, "no timer");
RETURN_FALSE;
}
long id;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &id) == FAILURE)
{
RETURN_FALSE;
}
swTimer_node *tnode = swTimer_get(&SwooleG.timer, id);
if (tnode == NULL)
{
swoole_php_error(E_WARNING, "timer#%ld is not found.", id);
RETURN_FALSE;
}
if (tnode->remove)
{
RETURN_FALSE;
}
//current timer, cannot remove here.
if (SwooleG.timer._current_id > 0 && tnode->id == SwooleG.timer._current_id)
{
tnode->remove = 1;
RETURN_TRUE;
}
//remove timer
if (php_swoole_del_timer(tnode) < 0)
{
RETURN_FALSE;
}
if (swTimer_del(&SwooleG.timer, tnode) == SW_FALSE)
{
RETURN_FALSE;
}
else
{
RETURN_TRUE;
}
}
PHP_FUNCTION(swoole_timer_exists)
{
if (!SwooleG.timer.set)
{
swoole_php_error(E_WARNING, "no timer");
RETURN_FALSE;
}
long id;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &id) == FAILURE)
{
RETURN_FALSE;
}
swTimer_node *tnode = swTimer_get(&SwooleG.timer, id);
if (tnode == NULL)
{
RETURN_FALSE;
}
if (tnode->remove)
{
RETURN_FALSE;
}
RETURN_TRUE;
}