forked from fumiyas/python-nkf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nkf.c
225 lines (195 loc) · 4.37 KB
/
nkf.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
/*
* Python Interface to NKF
* Copyright (c) 2012-2019 SATOH Fumiyasu @ OSS Technology Corp., Japan
* Copyright (c) 2005 Matsumoto, Tadashi <[email protected]>
* All Rights Reserved.
*
* Everyone is permitted to do anything on this program
* including copying, modifying, improving,
* as long as you don't try to pretend that you wrote it.
* i.e., the above copyright notice has to appear in all copies.
* Binary distribution requires original version messages.
* You don't have to ask before copying, redistribution or publishing.
* THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE.
*/
#include "Python.h"
#include <setjmp.h>
#undef getc
#undef ungetc
#define getc(f) pynkf_getc(f)
#define ungetc(c,f) pynkf_ungetc(c,f)
#undef putchar
#undef TRUE
#undef FALSE
#define putchar(c) pynkf_putchar(c)
static int pynkf_ibufsize, pynkf_obufsize;
static unsigned char *pynkf_inbuf, *pynkf_outbuf;
static int pynkf_icount,pynkf_ocount;
static unsigned char *pynkf_iptr, *pynkf_optr;
static jmp_buf env;
static int pynkf_guess_flag;
static int
pynkf_getc(FILE *f)
{
unsigned char c;
if (pynkf_icount >= pynkf_ibufsize) return EOF;
c = *pynkf_iptr++;
pynkf_icount++;
return (int)c;
}
static int
pynkf_ungetc(int c, FILE *f)
{
if (pynkf_icount--){
*(--pynkf_iptr) = c;
return c;
}else{ return EOF; }
}
static void
pynkf_putchar(int c)
{
size_t size;
unsigned char *p;
if (pynkf_guess_flag) {
return;
}
if (pynkf_ocount--){
*pynkf_optr++ = c;
}else{
size = pynkf_obufsize + pynkf_obufsize;
p = (unsigned char *)PyMem_Realloc(pynkf_outbuf, size + 1);
if (p == NULL){ longjmp(env, 1); }
pynkf_outbuf = p;
pynkf_optr = pynkf_outbuf + pynkf_obufsize;
pynkf_ocount = pynkf_obufsize;
pynkf_obufsize = size;
*pynkf_optr++ = c;
pynkf_ocount--;
}
}
#define PERL_XS 1
#include "nkf-dist/utf8tbl.c"
#include "nkf-dist/nkf.c"
static PyObject *
pynkf_convert(unsigned char* str, int strlen, char* opts, int optslen)
{
PyObject * res;
pynkf_ibufsize = strlen + 1;
pynkf_obufsize = pynkf_ibufsize * 1.5 + 256;
pynkf_outbuf = (unsigned char *)PyMem_Malloc(pynkf_obufsize);
if (pynkf_outbuf == NULL){
PyErr_NoMemory();
return NULL;
}
pynkf_outbuf[0] = '\0';
pynkf_ocount = pynkf_obufsize;
pynkf_optr = pynkf_outbuf;
pynkf_icount = 0;
pynkf_inbuf = str;
pynkf_iptr = pynkf_inbuf;
pynkf_guess_flag = 0;
if (setjmp(env) == 0){
reinit();
options(opts);
kanji_convert(NULL);
}else{
PyMem_Free(pynkf_outbuf);
PyErr_NoMemory();
return NULL;
}
*pynkf_optr = 0;
#if PY_MAJOR_VERSION >= 3
res = PyBytes_FromString(pynkf_outbuf);
#else
res = PyString_FromString(pynkf_outbuf);
#endif
PyMem_Free(pynkf_outbuf);
return res;
}
static PyObject *
pynkf_convert_guess(unsigned char* str, int strlen)
{
PyObject * res;
const char *codename;
pynkf_ibufsize = strlen + 1;
pynkf_icount = 0;
pynkf_inbuf = str;
pynkf_iptr = pynkf_inbuf;
pynkf_guess_flag = 1;
reinit();
guess_f = 1;
kanji_convert(NULL);
codename = get_guessed_code();
#if PY_MAJOR_VERSION >= 3
res = PyUnicode_FromString(codename);
#else
res = PyString_FromString(codename);
#endif
return res;
}
#ifndef EXTERN_NKF
static
#endif
PyObject *pynkf_nkf(PyObject *self, PyObject *args)
{
unsigned char *str;
int strlen;
char *opts;
int optslen;
PyObject* res;
if (!PyArg_ParseTuple(args, "s#s#", &opts, &optslen, &str, &strlen)) {
return NULL;
}
res = pynkf_convert(str, strlen, opts, optslen);
return res;
}
#ifndef EXTERN_NKF
static
#endif
PyObject *pynkf_guess(PyObject *self, PyObject *args)
{
unsigned char *str;
int strlen;
PyObject* res;
if (!PyArg_ParseTuple(args, "s#", &str, &strlen)) {
return NULL;
}
res = pynkf_convert_guess(str, strlen);
return res;
}
#ifndef EXTERN_NKF
static PyMethodDef
nkfmethods[] = {
{"nkf", pynkf_nkf, METH_VARARGS},
{"guess", pynkf_guess, METH_VARARGS},
{NULL, NULL}
};
#if PY_MAJOR_VERSION >= 3
static struct PyModuleDef
moduledef = {
PyModuleDef_HEAD_INIT,
"nkf",
NULL,
NULL,
nkfmethods,
NULL,
NULL,
NULL,
NULL
};
/* Module initialization function */
PyObject *
PyInit_nkf(void)
#else
void
initnkf(void)
#endif
{
#if PY_MAJOR_VERSION >= 3
PyObject *module = PyModule_Create(&moduledef);
return module;
#else
Py_InitModule("nkf", nkfmethods);
#endif
}
#endif