-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathswoole_channel_coro.cc
223 lines (191 loc) Β· 8.74 KB
/
swoole_channel_coro.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
/*
+----------------------------------------------------------------------+
| Swoole |
+----------------------------------------------------------------------+
| Copyright (c) 2012-2018 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: Xinyu Zhu <[email protected]> |
| Tianfeng Han <[email protected]> |
+----------------------------------------------------------------------+
*/
#include "php_swoole_cxx.h"
#include "swoole_coroutine_channel.h"
BEGIN_EXTERN_C()
#include "stubs/php_swoole_channel_coro_arginfo.h"
END_EXTERN_C()
using swoole::coroutine::Channel;
static zend_class_entry *swoole_channel_coro_ce;
static zend_object_handlers swoole_channel_coro_handlers;
struct ChannelObject {
Channel *chan;
zend_object std;
};
SW_EXTERN_C_BEGIN
static PHP_METHOD(swoole_channel_coro, __construct);
static PHP_METHOD(swoole_channel_coro, push);
static PHP_METHOD(swoole_channel_coro, pop);
static PHP_METHOD(swoole_channel_coro, close);
static PHP_METHOD(swoole_channel_coro, stats);
static PHP_METHOD(swoole_channel_coro, length);
static PHP_METHOD(swoole_channel_coro, isEmpty);
static PHP_METHOD(swoole_channel_coro, isFull);
SW_EXTERN_C_END
// clang-format off
static const zend_function_entry swoole_channel_coro_methods[] =
{
PHP_ME(swoole_channel_coro, __construct, arginfo_class_Swoole_Coroutine_Channel___construct, ZEND_ACC_PUBLIC)
PHP_ME(swoole_channel_coro, push, arginfo_class_Swoole_Coroutine_Channel_push, ZEND_ACC_PUBLIC)
PHP_ME(swoole_channel_coro, pop, arginfo_class_Swoole_Coroutine_Channel_pop, ZEND_ACC_PUBLIC)
PHP_ME(swoole_channel_coro, isEmpty, arginfo_class_Swoole_Coroutine_Channel_isEmpty, ZEND_ACC_PUBLIC)
PHP_ME(swoole_channel_coro, isFull, arginfo_class_Swoole_Coroutine_Channel_isFull, ZEND_ACC_PUBLIC)
PHP_ME(swoole_channel_coro, close, arginfo_class_Swoole_Coroutine_Channel_close, ZEND_ACC_PUBLIC)
PHP_ME(swoole_channel_coro, stats, arginfo_class_Swoole_Coroutine_Channel_stats, ZEND_ACC_PUBLIC)
PHP_ME(swoole_channel_coro, length, arginfo_class_Swoole_Coroutine_Channel_length, ZEND_ACC_PUBLIC)
PHP_FE_END
};
// clang-format on
static sw_inline ChannelObject *php_swoole_channel_coro_fetch_object(zend_object *obj) {
return (ChannelObject *) ((char *) obj - swoole_channel_coro_handlers.offset);
}
static sw_inline Channel *php_swoole_get_channel(zval *zobject) {
Channel *chan = php_swoole_channel_coro_fetch_object(Z_OBJ_P(zobject))->chan;
if (UNEXPECTED(!chan)) {
swoole_fatal_error(SW_ERROR_WRONG_OPERATION, "must call constructor first");
}
return chan;
}
static void php_swoole_channel_coro_dtor_object(zend_object *object) {
zend_objects_destroy_object(object);
ChannelObject *chan_object = php_swoole_channel_coro_fetch_object(object);
Channel *chan = chan_object->chan;
if (chan) {
zval *data;
while ((data = (zval *) chan->pop_data())) {
sw_zval_free(data);
}
delete chan;
chan_object->chan = nullptr;
}
}
static void php_swoole_channel_coro_free_object(zend_object *object) {
ChannelObject *chan_object = php_swoole_channel_coro_fetch_object(object);
Channel *chan = chan_object->chan;
if (chan) {
delete chan;
}
zend_object_std_dtor(object);
}
static zend_object *php_swoole_channel_coro_create_object(zend_class_entry *ce) {
ChannelObject *chan_object = (ChannelObject *) zend_object_alloc(sizeof(ChannelObject), ce);
zend_object_std_init(&chan_object->std, ce);
object_properties_init(&chan_object->std, ce);
chan_object->std.handlers = &swoole_channel_coro_handlers;
return &chan_object->std;
}
void php_swoole_channel_coro_minit(int module_number) {
SW_INIT_CLASS_ENTRY(swoole_channel_coro, "Swoole\\Coroutine\\Channel", "Co\\Channel", swoole_channel_coro_methods);
SW_SET_CLASS_NOT_SERIALIZABLE(swoole_channel_coro);
SW_SET_CLASS_CLONEABLE(swoole_channel_coro, sw_zend_class_clone_deny);
SW_SET_CLASS_UNSET_PROPERTY_HANDLER(swoole_channel_coro, sw_zend_class_unset_property_deny);
SW_SET_CLASS_CUSTOM_OBJECT(swoole_channel_coro,
php_swoole_channel_coro_create_object,
php_swoole_channel_coro_free_object,
ChannelObject,
std);
SW_SET_CLASS_DTOR(swoole_channel_coro, php_swoole_channel_coro_dtor_object);
if (SWOOLE_G(use_shortname)) {
SW_CLASS_ALIAS("Chan", swoole_channel_coro);
}
zend_declare_property_long(swoole_channel_coro_ce, ZEND_STRL("capacity"), 0, ZEND_ACC_PUBLIC);
zend_declare_property_long(swoole_channel_coro_ce, ZEND_STRL("errCode"), 0, ZEND_ACC_PUBLIC);
SW_REGISTER_LONG_CONSTANT("SWOOLE_CHANNEL_OK", Channel::ERROR_OK);
SW_REGISTER_LONG_CONSTANT("SWOOLE_CHANNEL_TIMEOUT", Channel::ERROR_TIMEOUT);
SW_REGISTER_LONG_CONSTANT("SWOOLE_CHANNEL_CLOSED", Channel::ERROR_CLOSED);
SW_REGISTER_LONG_CONSTANT("SWOOLE_CHANNEL_CANCELED", Channel::ERROR_CANCELED);
}
static PHP_METHOD(swoole_channel_coro, __construct) {
zend_long capacity = 1;
ZEND_PARSE_PARAMETERS_START_EX(ZEND_PARSE_PARAMS_THROW, 0, 1)
Z_PARAM_OPTIONAL
Z_PARAM_LONG(capacity)
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
if (capacity <= 0) {
capacity = 1;
}
ChannelObject *chan_t = php_swoole_channel_coro_fetch_object(Z_OBJ_P(ZEND_THIS));
chan_t->chan = new Channel(capacity);
zend_update_property_long(swoole_channel_coro_ce, SW_Z8_OBJ_P(ZEND_THIS), ZEND_STRL("capacity"), capacity);
}
static PHP_METHOD(swoole_channel_coro, push) {
Channel *chan = php_swoole_get_channel(ZEND_THIS);
zval *zdata;
double timeout = -1;
ZEND_PARSE_PARAMETERS_START_EX(ZEND_PARSE_PARAMS_THROW, 1, 2)
Z_PARAM_ZVAL(zdata)
Z_PARAM_OPTIONAL
Z_PARAM_DOUBLE(timeout)
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
Z_TRY_ADDREF_P(zdata);
zdata = sw_zval_dup(zdata);
if (chan->push(zdata, timeout)) {
zend_update_property_long(
swoole_channel_coro_ce, SW_Z8_OBJ_P(ZEND_THIS), ZEND_STRL("errCode"), Channel::ERROR_OK);
RETURN_TRUE;
} else {
zend_update_property_long(
swoole_channel_coro_ce, SW_Z8_OBJ_P(ZEND_THIS), ZEND_STRL("errCode"), chan->get_error());
Z_TRY_DELREF_P(zdata);
efree(zdata);
RETURN_FALSE;
}
}
static PHP_METHOD(swoole_channel_coro, pop) {
Channel *chan = php_swoole_get_channel(ZEND_THIS);
double timeout = -1;
ZEND_PARSE_PARAMETERS_START_EX(ZEND_PARSE_PARAMS_THROW, 0, 1)
Z_PARAM_OPTIONAL
Z_PARAM_DOUBLE(timeout)
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
zval *zdata = (zval *) chan->pop(timeout);
if (zdata) {
RETVAL_ZVAL(zdata, 0, 0);
efree(zdata);
zend_update_property_long(
swoole_channel_coro_ce, SW_Z8_OBJ_P(ZEND_THIS), ZEND_STRL("errCode"), Channel::ERROR_OK);
} else {
zend_update_property_long(
swoole_channel_coro_ce, SW_Z8_OBJ_P(ZEND_THIS), ZEND_STRL("errCode"), chan->get_error());
RETURN_FALSE;
}
}
static PHP_METHOD(swoole_channel_coro, close) {
Channel *chan = php_swoole_get_channel(ZEND_THIS);
RETURN_BOOL(chan->close());
}
static PHP_METHOD(swoole_channel_coro, length) {
Channel *chan = php_swoole_get_channel(ZEND_THIS);
RETURN_LONG(chan->length());
}
static PHP_METHOD(swoole_channel_coro, isEmpty) {
Channel *chan = php_swoole_get_channel(ZEND_THIS);
RETURN_BOOL(chan->is_empty());
}
static PHP_METHOD(swoole_channel_coro, isFull) {
Channel *chan = php_swoole_get_channel(ZEND_THIS);
RETURN_BOOL(chan->is_full());
}
static PHP_METHOD(swoole_channel_coro, stats) {
Channel *chan = php_swoole_get_channel(ZEND_THIS);
array_init(return_value);
add_assoc_long_ex(return_value, ZEND_STRL("consumer_num"), chan->consumer_num());
add_assoc_long_ex(return_value, ZEND_STRL("producer_num"), chan->producer_num());
add_assoc_long_ex(return_value, ZEND_STRL("queue_num"), chan->length());
}