forked from laruence/yaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yaf_config.c
406 lines (343 loc) · 10.8 KB
/
yaf_config.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
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
/*
+----------------------------------------------------------------------+
| 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 |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Xinchen Hui <[email protected]> |
+----------------------------------------------------------------------+
*/
/* $Id: yaf_config.c 329200 2013-01-18 06:26:40Z laruence $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include "php_ini.h"
#include "standard/php_filestat.h" /* for php_stat */
#include "php_yaf.h"
#include "yaf_namespace.h"
#include "yaf_exception.h"
#include "yaf_config.h"
#include "configs/yaf_config_ini.h"
#include "configs/yaf_config_simple.h"
zend_class_entry *yaf_config_ce;
static zval * yaf_config_ini_zval_persistent(zval *zvalue TSRMLS_DC);
static zval * yaf_config_ini_zval_losable(zval *zvalue TSRMLS_DC);
/* {{{ ARG_INFO
*/
ZEND_BEGIN_ARG_INFO_EX(yaf_config_void_arginfo, 0, 0, 0)
ZEND_END_ARG_INFO()
/* }}} */
/** {{{ yaf_config_ini_modified
*/
static int yaf_config_ini_modified(zval * file, long ctime TSRMLS_DC) {
zval n_ctime;
php_stat(Z_STRVAL_P(file), Z_STRLEN_P(file), 7 /* FS_CTIME */ , &n_ctime TSRMLS_CC);
if (Z_TYPE(n_ctime) != IS_BOOL && ctime != Z_LVAL(n_ctime)) {
return Z_LVAL(n_ctime);
}
return 0;
}
/* }}} */
/** {{{ static void yaf_config_cache_dtor(yaf_config_cache **cache)
*/
static void yaf_config_cache_dtor(yaf_config_cache **cache) {
if (*cache) {
zend_hash_destroy((*cache)->data);
pefree((*cache)->data, 1);
pefree(*cache, 1);
}
}
/* }}} */
/** {{{ static void yaf_config_zval_dtor(zval **value)
*/
static void yaf_config_zval_dtor(zval **value) {
if (*value) {
switch(Z_TYPE_PP(value)) {
case IS_STRING:
case IS_CONSTANT:
CHECK_ZVAL_STRING(*value);
pefree((*value)->value.str.val, 1);
pefree(*value, 1);
break;
#ifdef IS_CONSTANT_ARRAY
case IS_CONSTANT_ARRAY:
#endif
case IS_ARRAY: {
zend_hash_destroy((*value)->value.ht);
pefree((*value)->value.ht, 1);
pefree(*value, 1);
}
break;
}
}
}
/* }}} */
/** {{{ static void yaf_config_copy_persistent(HashTable *pdst, HashTable *src TSRMLS_DC)
*/
static void yaf_config_copy_persistent(HashTable *pdst, HashTable *src TSRMLS_DC) {
zval **ppzval;
char *key;
uint keylen;
ulong idx;
for(zend_hash_internal_pointer_reset(src);
zend_hash_has_more_elements(src) == SUCCESS;
zend_hash_move_forward(src)) {
if (zend_hash_get_current_key_ex(src, &key, &keylen, &idx, 0, NULL) == HASH_KEY_IS_LONG) {
zval *tmp;
if (zend_hash_get_current_data(src, (void**)&ppzval) == FAILURE) {
continue;
}
tmp = yaf_config_ini_zval_persistent(*ppzval TSRMLS_CC);
if (tmp) {
zend_hash_index_update(pdst, idx, (void **)&tmp, sizeof(zval *), NULL);
}
} else {
zval *tmp;
if (zend_hash_get_current_data(src, (void**)&ppzval) == FAILURE) {
continue;
}
tmp = yaf_config_ini_zval_persistent(*ppzval TSRMLS_CC);
if (tmp) {
zend_hash_update(pdst, key, keylen, (void **)&tmp, sizeof(zval *), NULL);
}
}
}
}
/* }}} */
/** {{{ static void yaf_config_copy_losable(HashTable *ldst, HashTable *src TSRMLS_DC)
*/
static void yaf_config_copy_losable(HashTable *ldst, HashTable *src TSRMLS_DC) {
zval **ppzval, *tmp;
char *key;
ulong idx;
uint keylen;
for(zend_hash_internal_pointer_reset(src);
zend_hash_has_more_elements(src) == SUCCESS;
zend_hash_move_forward(src)) {
if (zend_hash_get_current_key_ex(src, &key, &keylen, &idx, 0, NULL) == HASH_KEY_IS_LONG) {
if (zend_hash_get_current_data(src, (void**)&ppzval) == FAILURE) {
continue;
}
tmp = yaf_config_ini_zval_losable(*ppzval TSRMLS_CC);
zend_hash_index_update(ldst, idx, (void **)&tmp, sizeof(zval *), NULL);
} else {
if (zend_hash_get_current_data(src, (void**)&ppzval) == FAILURE) {
continue;
}
tmp = yaf_config_ini_zval_losable(*ppzval TSRMLS_CC);
zend_hash_update(ldst, key, keylen, (void **)&tmp, sizeof(zval *), NULL);
}
}
}
/* }}} */
/** {{{ static zval * yaf_config_ini_zval_persistent(zval *zvalue TSRMLS_DC)
*/
static zval * yaf_config_ini_zval_persistent(zval *zvalue TSRMLS_DC) {
zval *ret = (zval *)pemalloc(sizeof(zval), 1);
INIT_PZVAL(ret);
switch (zvalue->type) {
case IS_RESOURCE:
case IS_OBJECT:
break;
case IS_BOOL:
case IS_LONG:
case IS_NULL:
break;
case IS_CONSTANT:
case IS_STRING:
CHECK_ZVAL_STRING(zvalue);
Z_TYPE_P(ret) = IS_STRING;
ret->value.str.val = pestrndup(zvalue->value.str.val, zvalue->value.str.len, 1);
ret->value.str.len = zvalue->value.str.len;
break;
#ifdef IS_CONSTANT_ARRAY
case IS_CONSTANT_ARRAY:
#endif
case IS_ARRAY: {
HashTable *tmp_ht, *original_ht = zvalue->value.ht;
tmp_ht = (HashTable *)pemalloc(sizeof(HashTable), 1);
if (!tmp_ht) {
return NULL;
}
zend_hash_init(tmp_ht, zend_hash_num_elements(original_ht), NULL, (dtor_func_t)yaf_config_zval_dtor, 1);
yaf_config_copy_persistent(tmp_ht, original_ht TSRMLS_CC);
Z_TYPE_P(ret) = IS_ARRAY;
ret->value.ht = tmp_ht;
}
break;
}
return ret;
}
/* }}} */
/** {{{ static zval * yaf_config_ini_zval_losable(zval *zvalue TSRMLS_DC)
*/
static zval * yaf_config_ini_zval_losable(zval *zvalue TSRMLS_DC) {
zval *ret;
MAKE_STD_ZVAL(ret);
switch (zvalue->type) {
case IS_RESOURCE:
case IS_OBJECT:
break;
case IS_BOOL:
case IS_LONG:
case IS_NULL:
break;
case IS_CONSTANT:
case IS_STRING:
CHECK_ZVAL_STRING(zvalue);
ZVAL_STRINGL(ret, zvalue->value.str.val, zvalue->value.str.len, 1);
break;
#ifdef IS_CONSTANT_ARRAY
case IS_CONSTANT_ARRAY:
#endif
case IS_ARRAY: {
HashTable *original_ht = zvalue->value.ht;
array_init(ret);
yaf_config_copy_losable(Z_ARRVAL_P(ret), original_ht TSRMLS_CC);
}
break;
}
return ret;
}
/* }}} */
/** {{{ static yaf_config_t * yaf_config_ini_unserialize(yaf_config_t *this_ptr, zval *filename, zval *section TSRMLS_DC)
*/
static yaf_config_t * yaf_config_ini_unserialize(yaf_config_t *this_ptr, zval *filename, zval *section TSRMLS_DC) {
char *key;
uint len;
yaf_config_cache **ppval;
if (!YAF_G(configs)) {
return NULL;
}
len = spprintf(&key, 0, "%s#%s", Z_STRVAL_P(filename), Z_STRVAL_P(section));
if (zend_hash_find(YAF_G(configs), key, len + 1, (void **)&ppval) == SUCCESS) {
if (yaf_config_ini_modified(filename, (*ppval)->ctime TSRMLS_CC)) {
efree(key);
return NULL;
} else {
zval *props;
MAKE_STD_ZVAL(props);
array_init(props);
yaf_config_copy_losable(Z_ARRVAL_P(props), (*ppval)->data TSRMLS_CC);
efree(key);
/* tricky way */
Z_SET_REFCOUNT_P(props, 0);
return yaf_config_ini_instance(this_ptr, props, section TSRMLS_CC);
}
efree(key);
}
return NULL;
}
/* }}} */
/** {{{ static void yaf_config_ini_serialize(yaf_config_t *this_ptr, zval *filename, zval *section TSRMLS_DC)
*/
static void yaf_config_ini_serialize(yaf_config_t *this_ptr, zval *filename, zval *section TSRMLS_DC) {
char *key;
uint len;
long ctime;
zval *configs;
HashTable *persistent;
yaf_config_cache *cache;
if (!YAF_G(configs)) {
YAF_G(configs) = (HashTable *)pemalloc(sizeof(HashTable), 1);
if (!YAF_G(configs)) {
return;
}
zend_hash_init(YAF_G(configs), 8, NULL, (dtor_func_t) yaf_config_cache_dtor, 1);
}
cache = (yaf_config_cache *)pemalloc(sizeof(yaf_config_cache), 1);
if (!cache) {
return;
}
persistent = (HashTable *)pemalloc(sizeof(HashTable), 1);
if (!persistent) {
return;
}
configs = zend_read_property(yaf_config_ini_ce, this_ptr, ZEND_STRL(YAF_CONFIG_PROPERT_NAME), 1 TSRMLS_CC);
zend_hash_init(persistent, zend_hash_num_elements(Z_ARRVAL_P(configs)), NULL, (dtor_func_t) yaf_config_zval_dtor, 1);
yaf_config_copy_persistent(persistent, Z_ARRVAL_P(configs) TSRMLS_CC);
ctime = yaf_config_ini_modified(filename, 0 TSRMLS_CC);
cache->ctime = ctime;
cache->data = persistent;
len = spprintf(&key, 0, "%s#%s", Z_STRVAL_P(filename), Z_STRVAL_P(section));
zend_hash_update(YAF_G(configs), key, len + 1, (void **)&cache, sizeof(yaf_config_cache *), NULL);
efree(key);
}
/* }}} */
/** {{{ yaf_config_t * yaf_config_instance(yaf_config_t *this_ptr, zval *arg1, zval *arg2 TSRMLS_DC)
*/
yaf_config_t * yaf_config_instance(yaf_config_t *this_ptr, zval *arg1, zval *arg2 TSRMLS_DC) {
yaf_config_t *instance;
if (!arg1) {
return NULL;
}
if (Z_TYPE_P(arg1) == IS_STRING) {
if (strncasecmp(Z_STRVAL_P(arg1) + Z_STRLEN_P(arg1) - 3, "ini", 3) == 0) {
if (YAF_G(cache_config)) {
if ((instance = yaf_config_ini_unserialize(this_ptr, arg1, arg2 TSRMLS_CC))) {
return instance;
}
}
instance = yaf_config_ini_instance(this_ptr, arg1, arg2 TSRMLS_CC);
if (!instance) {
return NULL;
}
if (YAF_G(cache_config)) {
yaf_config_ini_serialize(instance, arg1, arg2 TSRMLS_CC);
}
return instance;
}
yaf_trigger_error(YAF_ERR_TYPE_ERROR TSRMLS_CC, "Expects a path to *.ini configuration file as parameter");
return NULL;
}
if (Z_TYPE_P(arg1) == IS_ARRAY) {
zval *readonly;
MAKE_STD_ZVAL(readonly);
ZVAL_BOOL(readonly, 1);
instance = yaf_config_simple_instance(this_ptr, arg1, readonly TSRMLS_CC);
efree(readonly);
return instance;
}
yaf_trigger_error(YAF_ERR_TYPE_ERROR TSRMLS_CC, "Expects a string or an array as parameter");
return NULL;
}
/* }}} */
/** {{{ yaf_config_methods
*/
zend_function_entry yaf_config_methods[] = {
PHP_ABSTRACT_ME(yaf_config, get, NULL)
PHP_ABSTRACT_ME(yaf_config, set, NULL)
PHP_ABSTRACT_ME(yaf_config, readonly, NULL)
PHP_ABSTRACT_ME(yaf_config, toArray, NULL)
{NULL, NULL, NULL}
};
/* }}} */
/** {{{ YAF_STARTUP_FUNCTION
*/
YAF_STARTUP_FUNCTION(config) {
zend_class_entry ce;
YAF_INIT_CLASS_ENTRY(ce, "Yaf_Config_Abstract", "Yaf\\Config_Abstract", yaf_config_methods);
yaf_config_ce = zend_register_internal_class_ex(&ce, NULL, NULL TSRMLS_CC);
yaf_config_ce->ce_flags |= ZEND_ACC_EXPLICIT_ABSTRACT_CLASS;
zend_declare_property_null(yaf_config_ce, ZEND_STRL(YAF_CONFIG_PROPERT_NAME), ZEND_ACC_PROTECTED TSRMLS_CC);
zend_declare_property_bool(yaf_config_ce, ZEND_STRL(YAF_CONFIG_PROPERT_NAME_READONLY), 1, ZEND_ACC_PROTECTED TSRMLS_CC);
YAF_STARTUP(config_ini);
YAF_STARTUP(config_simple);
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
*/