-
Notifications
You must be signed in to change notification settings - Fork 85
/
opencc.c
298 lines (249 loc) · 6.83 KB
/
opencc.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
/*
+----------------------------------------------------------------------+
| PHP Version 7.1 (Backward-Compatiable) |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2015 The PHP Group |
+----------------------------------------------------------------------+
| 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: NauxLiu |
+----------------------------------------------------------------------+
*/
/* $Id$ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include "php_ini.h"
#include "ext/standard/info.h"
#include "php_opencc.h"
/* If you declare any globals in php_opencc.h uncomment this:
ZEND_DECLARE_MODULE_GLOBALS(opencc)
*/
ZEND_DECLARE_MODULE_GLOBALS(opencc)
ZEND_BEGIN_ARG_INFO_EX(arginfo_void, 0, 0, 0)
ZEND_END_ARG_INFO()
/* True global resources - no need for thread safety here */
int le_opencc;
/* {{{ PHP_INI
*/
/* Remove comments and fill if you need to have entries in php.ini
PHP_INI_BEGIN()
STD_PHP_INI_ENTRY("opencc.global_value", "42", PHP_INI_ALL, OnUpdateLong, global_value, zend_opencc_globals, opencc_globals)
STD_PHP_INI_ENTRY("opencc.global_string", "foobar", PHP_INI_ALL, OnUpdateString, global_string, zend_opencc_globals, opencc_globals)
PHP_INI_END()
*/
/* }}} */
/* {{{ proto resource opencc_open(string config)
*/
PHP_FUNCTION(opencc_open)
{
opencc_t od = NULL;
// opencc_t od = OPENCC_G(global_opencc_handler);
// if(od != (opencc_t) -1) {
// fprintf(stderr, "reuse opencc handler [%p]\n", od);
// RETURN_RES(zend_register_resource(od, le_opencc));
// }
zend_string *config;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &config) == FAILURE) {
return;
}
od = opencc_open(config->val);
if ( od == (opencc_t) -1 ) {
RETURN_FALSE;
}
// OPENCC_G(global_opencc_handler) = od;
/* fprintf(stderr, "create a new opencc handler and store into global_opencc_handler[%p]\n", OPENCC_G(global_opencc_handler)); */
RETURN_RES(zend_register_resource(od, le_opencc));
}
/* }}} */
/* {{{ proto bool opencc_close(resource ob)
*/
PHP_FUNCTION(opencc_close)
{
//fprintf(stderr, "opencc_close() is not necessary anymore, resource will auto release on php Module shutdown\n");
// return;
int argc = ZEND_NUM_ARGS();
int ob_id = -1;
zval *zod = NULL;
opencc_t od;
if (zend_parse_parameters(argc, "r", &zod) == FAILURE) {
return;
}
if ((od = (opencc_t)zend_fetch_resource(Z_RES_P(zod), "OpenCC", le_opencc)) == NULL) {
RETURN_FALSE;
}
int res = opencc_close(od);
if (res == 0) {
zend_list_close(Z_RES_P(zod));
RETURN_TRUE;
} else {
RETURN_FALSE;
}
}
/* }}} */
/* {{{ proto string opencc_error()
*/
PHP_FUNCTION(opencc_error)
{
int len;
if (zend_parse_parameters_none() == FAILURE) {
return;
}
const char *msg;
msg = opencc_error();
if (NULL == msg) {
msg="";
}
len = strlen(msg);
zend_string *ret = zend_string_alloc(len, 0);
strncpy(ret->val, msg, len);
RETURN_STR(ret);
}
/* }}} */
/* {{{ proto string opencc_convert(string str, resource ob)
*/
PHP_FUNCTION(opencc_convert)
{
// int ob_id = -1;
zval *zod;
opencc_t od;
char *outstr;
zend_string *str;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "Sr", &str, &zod) == FAILURE) {
return;
}
if ((od = (opencc_t)zend_fetch_resource(Z_RES_P(zod), "OpenCC", le_opencc)) == NULL) {
RETURN_FALSE;
}
outstr = opencc_convert_utf8(od, str->val, -1);
if ( outstr == NULL ) {
RETURN_FALSE;
}
int len = strlen(outstr);
zend_string *ret = zend_string_alloc(len, 0);
strncpy(ret->val, outstr, len + 1);
opencc_convert_utf8_free(outstr);
RETURN_STR(ret);
}
/* }}} */
/* {{{ php_opencc_init_globals
*/
/* Uncomment this function if you have INI entries
static void php_opencc_init_globals(zend_opencc_globals *opencc_globals)
{
opencc_globals->global_value = 0;
opencc_globals->global_string = NULL;
}
*/
/* }}} */
/* {{{ PHP_MINIT_FUNCTION
*/
static void
php_opencc_init_globals(zend_opencc_globals *opencc_globals)
{
}
PHP_MINIT_FUNCTION(opencc)
{
/* If you have INI entries, uncomment these lines
REGISTER_INI_ENTRIES();
*/
// ZEND_INIT_MODULE_GLOBALS(opencc, php_opencc_init_globals, NULL);
#ifdef ZEND_ENGINE_3
le_opencc = zend_register_list_destructors_ex(NULL, NULL, "opencc_od", module_number);
#endif
// OPENCC_G(global_opencc_handler) = (opencc_t) -1 ;
return SUCCESS;
}
/* }}} */
/* {{{ PHP_MSHUTDOWN_FUNCTION
*/
PHP_MSHUTDOWN_FUNCTION(opencc)
{
/* uncomment this line if you have INI entries
UNREGISTER_INI_ENTRIES();
*/
// opencc_t od = OPENCC_G(global_opencc_handler);
// if(od != (opencc_t) -1) {
// int res = opencc_close(od);
// if(res == 0) {
// fprintf(stderr, "module shutdown closing opencc resource[%p] success!\n", od);
// } else {
// fprintf(stderr, "module shutdown closing opencc resource[%p] fail!\n", od);
// }
// }
return SUCCESS;
}
/* }}} */
/* Remove if there's nothing to do at request start */
/* {{{ PHP_RINIT_FUNCTION
*/
PHP_RINIT_FUNCTION(opencc)
{
return SUCCESS;
}
/* }}} */
/* Remove if there's nothing to do at request end */
/* {{{ PHP_RSHUTDOWN_FUNCTION
*/
PHP_RSHUTDOWN_FUNCTION(opencc)
{
return SUCCESS;
}
/* }}} */
/* {{{ PHP_MINFO_FUNCTION
*/
PHP_MINFO_FUNCTION(opencc)
{
php_info_print_table_start();
php_info_print_table_header(2, "opencc support", "enabled");
php_info_print_table_end();
/* Remove comments if you have entries in php.ini
DISPLAY_INI_ENTRIES();
*/
}
/* }}} */
/* {{{ opencc_functions[]
*
* Every user visible function must have an entry in opencc_functions[].
*/
const zend_function_entry opencc_functions[] = {
PHP_FE(opencc_open, arginfo_void)
PHP_FE(opencc_close, arginfo_void)
PHP_FE(opencc_error, arginfo_void)
PHP_FE(opencc_convert, arginfo_void)
PHP_FE_END /* Must be the last line in opencc_functions[] */
};
/* }}} */
/* {{{ opencc_module_entry
*/
zend_module_entry opencc_module_entry = {
STANDARD_MODULE_HEADER,
"opencc",
opencc_functions,
PHP_MINIT(opencc),
PHP_MSHUTDOWN(opencc),
PHP_RINIT(opencc),
PHP_RSHUTDOWN(opencc),
PHP_MINFO(opencc),
PHP_OPENCC_VERSION,
STANDARD_MODULE_PROPERTIES
};
/* }}} */
#ifdef COMPILE_DL_OPENCC
ZEND_GET_MODULE(opencc)
#endif
/*
* 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
*/