-
Notifications
You must be signed in to change notification settings - Fork 0
/
yaf_router.c
365 lines (309 loc) · 10.2 KB
/
yaf_router.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
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
/*
+----------------------------------------------------------------------+
| Yet Another Framework |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP 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.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Xinchen Hui <laruence@php.net> |
+----------------------------------------------------------------------+
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include "Zend/zend_interfaces.h"
#include "php_yaf.h"
#include "yaf_namespace.h"
#include "yaf_exception.h"
#include "yaf_application.h" /* for yaf_application_is_module_name */
#include "yaf_request.h" /* for yaf_request_set_routed */
#include "yaf_router.h"
#include "yaf_config.h"
#include "routes/yaf_route_interface.h"
#include "routes/yaf_route_static.h"
#include "routes/yaf_route_simple.h"
#include "routes/yaf_route_supervar.h"
#include "routes/yaf_route_regex.h"
#include "routes/yaf_route_rewrite.h"
#include "routes/yaf_route_map.h"
zend_class_entry *yaf_router_ce;
/** {{{ yaf_router_t * yaf_router_instance(yaf_router_t *this_ptr)
*/
yaf_router_t * yaf_router_instance(yaf_router_t *this_ptr) {
zval routes;
yaf_route_t route = {{0}};
if (Z_ISUNDEF_P(this_ptr)) {
object_init_ex(this_ptr, yaf_router_ce);
}
array_init(&routes);
if (!YAF_G(default_route)) {
static_route:
object_init_ex(&route, yaf_route_static_ce);
} else {
(void)yaf_route_instance(&route, YAF_G(default_route));
if (Z_TYPE(route) != IS_OBJECT) {
php_error_docref(NULL, E_WARNING,
"Unable to initialize default route, use %s instead", ZSTR_VAL(yaf_route_static_ce->name));
goto static_route;
}
}
zend_hash_str_update(Z_ARRVAL(routes), "_default", sizeof("_default") - 1, &route);
zend_update_property(yaf_router_ce, this_ptr, ZEND_STRL(YAF_ROUTER_PROPERTY_NAME_ROUTES), &routes);
zval_ptr_dtor(&routes);
return this_ptr;
}
/** }}} */
/** {{{ int yaf_router_route(yaf_router_t *router, yaf_request_t *request)
*/
//执行路由
int yaf_router_route(yaf_router_t *router, yaf_request_t *request) {
zval *routers, ret;
yaf_route_t *route;
HashTable *ht;
zend_string *key;
zend_long idx;
//获取路由协议,可以添加多层路由协议,类似于多重插件,通过addRoute方法向路由器注册自己的路由协议,默认的路由协议是Yaf_Route_Static
routers = zend_read_property(yaf_router_ce, router, ZEND_STRL(YAF_ROUTER_PROPERTY_NAME_ROUTES), 1, NULL);
ht = Z_ARRVAL_P(routers);
//for循环一次调用路由协议的route方法,成功则记下当前生效的这个路由协议的索引位置,并设置request为已路由,不成功则继续调用下一个路由协议.
ZEND_HASH_REVERSE_FOREACH_KEY_VAL(ht, idx, key, route) {
//调用路由协议对象的route方法.
zend_call_method_with_1_params(route, Z_OBJCE_P(route), NULL, "route", &ret, request);
if (IS_TRUE == Z_TYPE(ret)) {
if (key) {
zend_update_property_string(yaf_router_ce,
router, ZEND_STRL(YAF_ROUTER_PROPERTY_NAME_CURRENT_ROUTE), ZSTR_VAL(key));
} else {
zend_update_property_long(yaf_router_ce,
router, ZEND_STRL(YAF_ROUTER_PROPERTY_NAME_CURRENT_ROUTE), idx);
}
//设置为已路由
yaf_request_set_routed(request, 1);
return 1;
} else {
zval_ptr_dtor(&ret);
continue;
}
} ZEND_HASH_FOREACH_END();
return 0;
}
/* }}} */
/** {{{ int yaf_router_add_config(yaf_router_t *router, zval *configs)
*/
int yaf_router_add_config(yaf_router_t *router, zval *configs) {
zval *entry;
yaf_route_t *route, rv;
if (!configs || IS_ARRAY != Z_TYPE_P(configs)) {
return 0;
} else {
ulong idx;
zend_string *key;
zval *routes;
routes = zend_read_property(yaf_router_ce, router, ZEND_STRL(YAF_ROUTER_PROPERTY_NAME_ROUTES), 1, NULL);
ZEND_HASH_FOREACH_KEY_VAL(Z_ARRVAL_P(configs), idx, key, entry) {
if (Z_TYPE_P(entry) != IS_ARRAY) {
continue;
}
ZVAL_UNDEF(&rv);
route = yaf_route_instance(&rv, entry);
if (key) {
if (!route) {
php_error_docref(NULL, E_WARNING, "Unable to initialize route named '%s'", ZSTR_VAL(key));
continue;
}
zend_hash_update(Z_ARRVAL_P(routes), key, route);
} else {
if (!route) {
php_error_docref(NULL, E_WARNING, "Unable to initialize route at index '%ld'", idx);
continue;
}
zend_hash_index_update(Z_ARRVAL_P(routes), idx, route);
}
} ZEND_HASH_FOREACH_END();
return 1;
}
}
/* }}} */
/** {{{ void yaf_router_parse_parameters(char *uri, zval *params)
*/
void yaf_router_parse_parameters(char *uri, zval *params) {
char *key, *ptrptr, *tmp, *value;
zval val;
uint key_len;
array_init(params);
tmp = estrdup(uri);
key = php_strtok_r(tmp, YAF_ROUTER_URL_DELIMIETER, &ptrptr);
while (key) {
key_len = strlen(key);
if (key_len) {
value = php_strtok_r(NULL, YAF_ROUTER_URL_DELIMIETER, &ptrptr);
if (value && strlen(value)) {
ZVAL_STRING(&val, value);
} else {
ZVAL_NULL(&val);
}
zend_hash_str_update(Z_ARRVAL_P(params), key, key_len, &val);
}
key = php_strtok_r(NULL, YAF_ROUTER_URL_DELIMIETER, &ptrptr);
}
efree(tmp);
}
/* }}} */
/** {{{ proto public Yaf_Router::__construct(void)
*/
PHP_METHOD(yaf_router, __construct) {
yaf_router_instance(getThis());
}
/* }}} */
/** {{{ proto public Yaf_Router::route(Yaf_Request $req)
*/
PHP_METHOD(yaf_router, route) {
yaf_request_t *request;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &request) == FAILURE) {
return;
} else {
RETURN_BOOL(yaf_router_route(getThis(), request));
}
}
/* }}} */
/** {{{ proto public Yaf_Router::addRoute(string $name, Yaf_Route_Interface $route)
*/
PHP_METHOD(yaf_router, addRoute) {
zend_string *name = NULL;
zval *routes;
yaf_route_t *route;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "Sz", &name, &route) == FAILURE) {
return;
}
if (!name) {
RETURN_FALSE;
}
if (IS_OBJECT != Z_TYPE_P(route)
|| !instanceof_function(Z_OBJCE_P(route), yaf_route_ce)) {
php_error_docref(NULL, E_WARNING, "Expects a %s instance", ZSTR_VAL(yaf_route_ce->name));
RETURN_FALSE;
}
routes = zend_read_property(yaf_router_ce, getThis(), ZEND_STRL(YAF_ROUTER_PROPERTY_NAME_ROUTES), 1, NULL);
Z_TRY_ADDREF_P(route);
zend_hash_update(Z_ARRVAL_P(routes), name, route);
RETURN_ZVAL(getThis(), 1, 0);
}
/* }}} */
/** {{{ proto public Yaf_Router::addConfig(Yaf_Config_Abstract $config)
*/
PHP_METHOD(yaf_router, addConfig) {
yaf_config_t *config;
zval *routes;
zval *self = getThis();
if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &config) == FAILURE) {
return;
}
if (IS_OBJECT == Z_TYPE_P(config) && instanceof_function(Z_OBJCE_P(config), yaf_config_ce)){
routes = zend_read_property(yaf_config_ce, config, ZEND_STRL(YAF_CONFIG_PROPERT_NAME), 1, NULL);
} else if (IS_ARRAY == Z_TYPE_P(config)) {
routes = config;
} else {
php_error_docref(NULL, E_WARNING,
"Expect a %s instance or an array, %s given",
ZSTR_VAL(yaf_config_ce->name), zend_zval_type_name(config));
RETURN_FALSE;
}
if (yaf_router_add_config(self, routes)) {
RETURN_ZVAL(self, 1, 0);
} else {
RETURN_FALSE;
}
}
/* }}} */
/** {{{ proto public Yaf_Router::getRoute(string $name)
*/
PHP_METHOD(yaf_router, getRoute) {
zend_string *name;
zval *routes;
yaf_route_t *route;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &name) == FAILURE) {
return;
}
if (ZSTR_LEN(name) == 0) {
RETURN_FALSE;
}
routes = zend_read_property(yaf_router_ce, getThis(), ZEND_STRL(YAF_ROUTER_PROPERTY_NAME_ROUTES), 1, NULL);
if ((route = zend_hash_find(Z_ARRVAL_P(routes), name)) != NULL) {
RETURN_ZVAL(route, 1, 0);
}
RETURN_NULL();
}
/* }}} */
/** {{{ proto public Yaf_Router::getRoutes(void)
*/
PHP_METHOD(yaf_router, getRoutes) {
zval *routes = zend_read_property(yaf_router_ce,
getThis(), ZEND_STRL(YAF_ROUTER_PROPERTY_NAME_ROUTES), 1, NULL);
RETURN_ZVAL(routes, 1, 0);
}
/* }}} */
/** {{{ proto public Yaf_Router::isModuleName(string $name)
*/
PHP_METHOD(yaf_router, isModuleName) {
zend_string *name;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &name) == FAILURE) {
return;
}
RETURN_BOOL(yaf_application_is_module_name(name));
}
/* }}} */
/** {{{ proto public Yaf_Router::getCurrentRoute(void)
*/
PHP_METHOD(yaf_router, getCurrentRoute) {
zval *route = zend_read_property(yaf_router_ce,
getThis(), ZEND_STRL(YAF_ROUTER_PROPERTY_NAME_CURRENT_ROUTE), 1, NULL);
RETURN_ZVAL(route, 1, 0);
}
/* }}} */
/** {{{ yaf_router_methods
*/
zend_function_entry yaf_router_methods[] = {
PHP_ME(yaf_router, __construct, NULL, ZEND_ACC_PUBLIC | ZEND_ACC_CTOR)
PHP_ME(yaf_router, addRoute, NULL, ZEND_ACC_PUBLIC)
PHP_ME(yaf_router, addConfig, NULL, ZEND_ACC_PUBLIC)
PHP_ME(yaf_router, route, NULL, ZEND_ACC_PUBLIC)
PHP_ME(yaf_router, getRoute, NULL, ZEND_ACC_PUBLIC)
PHP_ME(yaf_router, getRoutes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(yaf_router, getCurrentRoute, NULL, ZEND_ACC_PUBLIC)
{NULL, NULL, NULL}
};
/* }}} */
/** {{{ YAF_STARTUP_FUNCTION
*/
YAF_STARTUP_FUNCTION(router) {
zend_class_entry ce;
(void)yaf_route_route_arginfo; /* tricky, supress warning "defined but not used" */
YAF_INIT_CLASS_ENTRY(ce, "Yaf_Router", "Yaf\\Router", yaf_router_methods);
yaf_router_ce = zend_register_internal_class_ex(&ce, NULL);
yaf_router_ce->ce_flags |= ZEND_ACC_FINAL;
zend_declare_property_null(yaf_router_ce, ZEND_STRL(YAF_ROUTER_PROPERTY_NAME_ROUTES), ZEND_ACC_PROTECTED);
zend_declare_property_null(yaf_router_ce, ZEND_STRL(YAF_ROUTER_PROPERTY_NAME_CURRENT_ROUTE), ZEND_ACC_PROTECTED);
YAF_STARTUP(route);
YAF_STARTUP(route_static);
YAF_STARTUP(route_simple);
YAF_STARTUP(route_supervar);
YAF_STARTUP(route_rewrite);
YAF_STARTUP(route_regex);
YAF_STARTUP(route_map);
return SUCCESS;
}
/* }}} */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/