-
Notifications
You must be signed in to change notification settings - Fork 0
/
charset.c
349 lines (306 loc) · 8.23 KB
/
charset.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
/*
* Basic Charset functions for QEmacs
* Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "qe.h"
QECharset *first_charset = NULL;
static QECharset charset_7bit;
/* specific tables */
static unsigned short table_idem[256];
static unsigned short table_utf8[256];
unsigned char utf8_length[256];
static const unsigned int min_code[7] = {
0, 0, 0x80, 0x800, 0x10000, 0x00200000, 0x04000000,
};
static const unsigned char first_code_mask[7] = {
0, 0, 0x1f, 0xf, 0x7, 0x3, 0x1,
};
void charset_init(void)
{
int l, i, n;
memset(utf8_length, 1, 256);
i = 0xc0;
l = 2;
while (l <= 6) {
n = first_code_mask[l] + 1;
while (n > 0) {
utf8_length[i++] = l;
n--;
}
l++;
}
for(i=0;i<256;i++)
table_idem[i] = i;
/* utf8 table */
for(i=0;i<256;i++)
table_utf8[i] = INVALID_CHAR;
for(i=0;i<0x80;i++)
table_utf8[i] = i;
for(i=0xc0;i<0xfe;i++)
table_utf8[i] = ESCAPE_CHAR;
qe_register_charset(&charset_8859_1);
qe_register_charset(&charset_utf8);
qe_register_charset(&charset_7bit);
}
void qe_register_charset(QECharset *charset)
{
QECharset **pp;
pp = &first_charset;
while (*pp != NULL)
pp = &(*pp)->next;
*pp = charset;
}
/********************************************************/
/* 8859-1 */
static void decode_8859_1_init(CharsetDecodeState *s)
{
s->table = table_idem;
}
static unsigned char *encode_8859_1(QECharset *charset,
unsigned char *p, int c)
{
if (c <= 0xff) {
*p++ = c;
return p;
} else {
return NULL;
}
}
static const char *aliases_8859_1[] = { "ISO-8859-1", "iso-ir-100", "latin1", "l1", "819", NULL };
QECharset charset_8859_1 = {
"8859-1",
aliases_8859_1,
decode_8859_1_init,
NULL,
encode_8859_1,
};
/********************************************************/
/* 7 bit */
static unsigned char *encode_7bit(QECharset *charset,
unsigned char *p, int c)
{
if (c <= 0x7f) {
*p++ = c;
return p;
} else {
return NULL;
}
}
static const char *aliases_7bit[] = { "us-ascii", "ascii", "7bit", "7-bit", "iso-ir-6", "ANSI_X3.4", "646", NULL };
static QECharset charset_7bit = {
"7bit",
aliases_7bit,
decode_8859_1_init,
NULL,
encode_7bit,
};
/********************************************************/
/* UTF8 */
/* return the utf8 char and increment 'p' of at least one char. strict
decoding is done (refuse non canonical UTF8) */
int utf8_decode(const char **pp)
{
unsigned int c, c1;
const unsigned char *p;
int i, l;
p = (const unsigned char *)*pp;
c = *p++;
if (c < 128) {
/* fast case for ASCII */
} else {
l = utf8_length[c];
if (l == 1)
goto fail; /* can only be multi byte code here */
c = c & first_code_mask[l];
for(i=1;i<l;i++) {
c1 = *p;
if (c1 < 0x80 || c1 >= 0xc0)
goto fail;
p++;
c = (c << 6) | (c1 & 0x3f);
}
if (c < min_code[l])
goto fail;
/* exclude surrogate pairs and special codes */
if ((c >= 0xd800 && c <= 0xdfff) ||
c == 0xfffe || c == 0xffff)
goto fail;
}
*pp = (const char *)p;
return c;
fail:
*pp = (const char *)p;
return INVALID_CHAR;
}
/* NOTE: the buffer must be at least 6 bytes long. Return the position
of the next char. */
char *utf8_encode(char *q, int c)
{
if (c < 0x80) {
*q++ = c;
} else {
if (c < 0x800) {
*q++ = (c >> 6) | 0xc0;
} else {
if (c < 0x10000) {
*q++ = (c >> 12) | 0xe0;
} else {
if (c < 0x00200000) {
*q++ = (c >> 18) | 0xf0;
} else {
if (c < 0x04000000) {
*q++ = (c >> 24) | 0xf8;
} else {
*q++ = (c >> 30) | 0xfc;
*q++ = ((c >> 24) & 0x3f) | 0x80;
}
*q++ = ((c >> 18) & 0x3f) | 0x80;
}
*q++ = ((c >> 12) & 0x3f) | 0x80;
}
*q++ = ((c >> 6) & 0x3f) | 0x80;
}
*q++ = (c & 0x3f) | 0x80;
}
return q;
}
int utf8_to_unicode(unsigned int *dest, int dest_length,
const char *str)
{
const char *p;
unsigned int *uq, *uq_end, c;
if (dest_length <= 0)
return 0;
p = str;
uq = dest;
uq_end = dest + dest_length - 1;
for(;;) {
if (uq >= uq_end)
break;
c = utf8_decode(&p);
if (c == '\0')
break;
*uq++ = c;
}
*uq = 0;
return uq - dest;
}
static void decode_utf8_init(CharsetDecodeState *s)
{
s->table = table_utf8;
}
static int decode_utf8_func(CharsetDecodeState *s, const unsigned char **pp)
{
return utf8_decode((const char **)pp);
}
unsigned char *encode_utf8(QECharset *charset, unsigned char *q, int c)
{
return (unsigned char *)utf8_encode((char *)q, c);
}
static const char *aliases_utf_8[] = { "utf8", NULL };
QECharset charset_utf8 = {
"utf-8",
aliases_utf_8,
decode_utf8_init,
decode_utf8_func,
encode_utf8,
};
/********************************************************/
/* generic charset functions */
QECharset *find_charset(const char *str)
{
QECharset *p;
const char **pp;
for(p = first_charset; p != NULL; p = p->next) {
if (!strcasecmp(str, p->name))
return p;
pp = p->aliases;
if (pp) {
for(; *pp != NULL; pp++) {
if (!strcasecmp(str, *pp))
return p;
}
}
}
return NULL;
}
void charset_decode_init(CharsetDecodeState *s, QECharset *charset)
{
unsigned short *table;
s->table = NULL; /* fail safe */
if (charset->table_alloc) {
table = malloc(256 * sizeof(unsigned short));
if (!table) {
charset = &charset_8859_1;
} else {
s->table = table;
}
}
s->charset = charset;
s->decode_func = charset->decode_func;
if (charset->decode_init)
charset->decode_init(s);
}
void charset_decode_close(CharsetDecodeState *s)
{
if (s->charset->table_alloc &&
s->charset != &charset_8859_1)
free(s->table);
/* safety */
memset(s, 0, sizeof(CharsetDecodeState));
}
/* detect the charset. Actually only UTF8 is detected */
QECharset *detect_charset (const unsigned char *buf, int size)
{
int i, l, c, has_utf8;
has_utf8 = 0;
for(i = 0; i < size;) {
c = buf[i++];
if ((c >= 0x80 && c < 0xc0) || c >= 0xfe)
goto no_utf8;
l = utf8_length[c];
while (l > 1) {
has_utf8 = 1;
if (i >= size)
break;
c = buf[i++];
if (!(c >= 0x80 && c < 0xc0)) {
no_utf8:
has_utf8 = 0;
break;
}
l--;
}
}
if (has_utf8)
return &charset_utf8;
else
return &charset_8859_1;
}
/* the function uses '?' to indicate that no match could be found in
current charset */
int unicode_to_charset(unsigned char *buf, unsigned int c, QECharset *charset)
{
unsigned char *q;
q = charset->encode_func(charset, buf, c);
if (!q) {
q = buf;
*q++ ='?';
}
*q = '\0';
return q - buf;
}