Undo another change that leaked through with the ISO-2022 commit.
[sgt/charset] / iso2022.c
CommitLineData
b97e5427 1/*
2 * iso2022.c - support for ISO/IEC 2022 (alias ECMA-35).
3 *
4 * This isn't a complete implementation of ISO/IEC 2022, but it's
5 * close. It only handles decoding, because a fully general encoder
6 * isn't really useful. It can decode 8-bit and 7-bit versions, with
7 * support for single-byte and multi-byte character sets, all four
8 * containers (G0, G1, G2, and G3), using both single-shift and
9 * locking-shift sequences.
10 *
11 * The general principle is that any valid ISO/IEC 2022 sequence
12 * should either be correctly decoded or should emit an ERROR. The
13 * only exception to this is that the C0 and C1 sets are fixed as
14 * those of ISO/IEC 6429. Escape sequences for designating control
15 * sets are passed through, so a post-processor could fix them up if
16 * necessary.
17 *
c69732bb 18 * DOCS to UTF-8 works. Other DOCS sequences are ignored, which will
19 * produce surprising results.
b97e5427 20 */
21
22#ifndef ENUM_CHARSETS
23
24#include <assert.h>
25
26#include "charset.h"
27#include "internal.h"
28#include "sbcsdat.h"
29
30#define LS1 (0x0E)
31#define LS0 (0x0F)
32#define ESC (0x1B)
33#define SS2 (0x8E)
34#define SS3 (0x8F)
35
36enum {S4, S6, M4, M6};
37
38static long int null_dbcs_to_unicode(int, int);
39
40const struct iso2022_subcharset {
41 char type, i, f;
42 int offset;
43 const sbcs_data *sbcs_base;
44 long int (*dbcs_fn)(int, int);
45} iso2022_subcharsets[] = {
46 { S4, 0, 'B', 0x00, &sbcsdata_CS_ASCII },
47
48 { S4, 0, '<', 0x80, &sbcsdata_CS_DEC_MCS },
49 { S4, 0, 'I', 0x80, &sbcsdata_CS_JISX0201 },
50 { S4, 0, 'J', 0x00, &sbcsdata_CS_JISX0201 },
51 { S4, 0, '~' },
52 { S6, 0, 'A', 0x80, &sbcsdata_CS_ISO8859_1 },
53 { S6, 0, 'B', 0x80, &sbcsdata_CS_ISO8859_2 },
54 { S6, 0, 'C', 0x80, &sbcsdata_CS_ISO8859_3 },
55 { S6, 0, 'D', 0x80, &sbcsdata_CS_ISO8859_4 },
56 { S6, 0, 'F', 0x80, &sbcsdata_CS_ISO8859_7 },
57 { S6, 0, 'G', 0x80, &sbcsdata_CS_ISO8859_6 },
58 { S6, 0, 'H', 0x80, &sbcsdata_CS_ISO8859_8 },
59 { S6, 0, 'L', 0x80, &sbcsdata_CS_ISO8859_5 },
60 { S6, 0, 'M', 0x80, &sbcsdata_CS_ISO8859_9 },
61 { S6, 0, 'T', 0x80, &sbcsdata_CS_ISO8859_11 },
62 { S6, 0, 'V', 0x80, &sbcsdata_CS_ISO8859_10 },
63 { S6, 0, 'Y', 0x80, &sbcsdata_CS_ISO8859_13 },
64 { S6, 0, '_', 0x80, &sbcsdata_CS_ISO8859_14 },
65 { S6, 0, 'b', 0x80, &sbcsdata_CS_ISO8859_15 },
66 { S6, 0, 'f', 0x80, &sbcsdata_CS_ISO8859_16 },
67 { S6, 0, '~' }, /* empty 96-set */
68#if 0
69 { M4, 0, '@' }, /* JIS C 6226-1978 */
70#endif
71 { M4, 0, 'A', -0x21, 0, &gb2312_to_unicode },
72 { M4, 0, 'B', -0x21, 0, &jisx0208_to_unicode },
73 { M4, 0, 'C', -0x21, 0, &ksx1001_to_unicode },
74 { M4, 0, 'D', -0x21, 0, &jisx0212_to_unicode },
75 { M4, 0, '~', 0, 0, &null_dbcs_to_unicode }, /* empty 94^n-set */
76 { M6, 0, '~', 0, 0, &null_dbcs_to_unicode }, /* empty 96^n-set */
77};
78
79static long int null_dbcs_to_unicode(int r, int c)
80{
81 return ERROR;
82}
83
84/* States, or "what we're currently accumulating". */
85enum {
86 IDLE, /* None of the below */
87 SS2CHAR, /* Accumulating a character after SS2 */
88 SS3CHAR, /* Accumulating a character after SS3 */
89 ESCSEQ, /* Accumulating an escape sequence */
90 ESCDROP, /* Discarding an escape sequence */
a89fe3cf 91 ESCPASS, /* Passing through an escape sequence */
92 DOCSUTF8 /* DOCSed into UTF-8 */
b97e5427 93};
94
a89fe3cf 95#if 1
b97e5427 96#include <stdio.h>
97static void dump_state(charset_state *s)
98{
99 unsigned s0 = s->s0, s1 = s->s1;
100 char const * const modes[] = { "IDLE", "SS2CHAR", "SS3CHAR",
a89fe3cf 101 "ESCSEQ", "ESCDROP", "ESCPASS",
102 "DOCSUTF8" };
b97e5427 103
104 fprintf(stderr, "s0: %s", modes[s0 >> 29]);
105 fprintf(stderr, " %02x %02x %02x ", (s0 >> 16) & 0xff, (s0 >> 8) & 0xff,
106 s0 & 0xff);
107 fprintf(stderr, "s1: LS%d LS%dR", (s1 >> 30) & 3, (s1 >> 28) & 3);
108 fprintf(stderr, " %d %d %d %d\n", s1 & 0x7f, (s1 >> 7) & 0x7f,
109 (s1 >> 14) & 0x7f, (s1 >> 21) & 0x7f);
110}
111#endif
112
113static void designate(charset_state *state, int container,
114 int type, int ibyte, int fbyte)
115{
116 unsigned long i;
117
118 assert(container >= 0 && container <= 3);
119 assert(type == S4 || type == S6 || type == M4 || type == M6);
120
121 for (i = 0; i <= lenof(iso2022_subcharsets); i++) {
122 if (iso2022_subcharsets[i].type == type &&
123 iso2022_subcharsets[i].i == ibyte &&
124 iso2022_subcharsets[i].f == fbyte) {
125 state->s1 &= ~(0x7fL << (container * 7));
126 state->s1 |= (i << (container * 7));
127 return;
128 }
129 }
130 /*
131 * If we don't find the charset, invoke the empty one, so we
132 * output ERROR rather than garbage.
133 */
134 designate(state, container, type, 0, '~');
135}
136
a89fe3cf 137static void do_utf8(long int input_chr,
138 charset_state *state,
139 void (*emit)(void *ctx, long int output),
140 void *emitctx)
141{
142 charset_state ustate;
143 charset_spec const *utf8;
144
145 ustate.s1 = 0;
146 ustate.s0 = state->s0 & 0x03ffffffL;
147 utf8 = charset_find_spec(CS_UTF8);
148 utf8->read(utf8, input_chr, &ustate, emit, emitctx);
149 state->s0 = (state->s0 & ~0x03ffffffL) | (ustate.s0 & 0x03ffffffL);
150}
151
152static void docs_utf8(long int input_chr,
153 charset_state *state,
154 void (*emit)(void *ctx, long int output),
155 void *emitctx)
156{
157 int retstate;
158
159 /*
160 * Bits [25:0] of s0 are reserved for read_utf8().
161 * Bits [27:26] are a tiny state machine to recognise ESC % @.
162 */
163 retstate = (state->s0 & 0x0c000000L) >> 26;
164 if (retstate == 1 && input_chr == '%')
165 retstate = 2;
166 else if (retstate == 2 && input_chr == '@') {
167 /* If we've got a partial UTF-8 sequence, complain. */
168 if (state->s0 & 0x03ffffffL)
169 emit(emitctx, ERROR);
170 state->s0 = 0;
171 return;
172 } else {
173 if (retstate >= 1) do_utf8(ESC, state, emit, emitctx);
174 if (retstate >= 2) do_utf8('%', state, emit, emitctx);
175 retstate = 0;
176 if (input_chr == ESC)
177 retstate = 1;
178 else {
179 do_utf8(input_chr, state, emit, emitctx);
180 }
181 }
182 state->s0 = (state->s0 & ~0x0c000000L) | (retstate << 26);
183}
184
185
b97e5427 186static void read_iso2022(charset_spec const *charset, long int input_chr,
187 charset_state *state,
188 void (*emit)(void *ctx, long int output),
189 void *emitctx)
190{
191
a89fe3cf 192 /* dump_state(state); */
b97e5427 193 /*
194 * We've got 64 bits of state to play with.
195 *
196 * Locking-shift state: 2 bits each GL/GR
197 * Single-shift state: 2 bits
198 * Charset designation state: n bits each G0/G1/G2/G3
199 * MBCS/esc seq accumulation: 14 bits (assume max 4-byte sets)
200 * MBCS state: 2 bits (off, ESC, GL, GR)
201 * For no good reason, put long-term state in s1, short term in s0.
202 *
203 * s0[31:29] = state enum
204 * s0[24:0] = accumulated bytes
205 * s1[31:30] = GL locking-shift state
206 * s1[29:28] = GR locking-shift state
207 * s1[27:21] = G3 charset
208 * s1[20:14] = G2 charset
209 * s1[13:7] = G1 charset
210 * s1[6:0] = G0 charset
211 */
212
213#define LEFT 30
214#define RIGHT 28
215#define LOCKING_SHIFT(n,side) \
216 (state->s1 = (state->s1 & ~(3L<<(side))) | ((n ## L)<<(side)))
217#define MODE ((state->s0 & 0xe0000000L) >> 29)
218#define ENTER_MODE(m) (state->s0 = (state->s0 & ~0xe0000000L) | ((m)<<29))
219#define SINGLE_SHIFT(n) ENTER_MODE(SS2CHAR - 2 + (n))
220#define ASSERT_IDLE do { \
221 if (state->s0 != 0) emit(emitctx, ERROR); \
222 state->s0 = 0; \
223} while (0)
224
225 if (state->s1 == 0) {
226 /*
227 * Since there's no LS0R, this means we must just have started.
228 * Set up a sane initial state (LS0, LS1R, ASCII in G0/G1/G2/G3).
229 */
230 LOCKING_SHIFT(0, LEFT);
231 LOCKING_SHIFT(1, RIGHT);
232 designate(state, 0, S4, 0, 'B');
233 designate(state, 1, S4, 0, 'B');
234 designate(state, 2, S4, 0, 'B');
235 designate(state, 3, S4, 0, 'B');
236 }
237
a89fe3cf 238 if (MODE == DOCSUTF8) {
239 docs_utf8(input_chr, state, emit, emitctx);
240 return;
241 }
242
b97e5427 243 if ((input_chr & 0x60) == 0x00) {
244 /* C0 or C1 control */
245 ASSERT_IDLE;
246 switch (input_chr) {
247 case ESC:
248 ENTER_MODE(ESCSEQ);
249 break;
250 case LS0:
251 LOCKING_SHIFT(0, LEFT);
252 break;
253 case LS1:
254 LOCKING_SHIFT(1, LEFT);
255 break;
256 case SS2:
257 SINGLE_SHIFT(2);
258 break;
259 case SS3:
260 SINGLE_SHIFT(3);
261 break;
262 default:
263 emit(emitctx, input_chr);
264 break;
265 }
266 } else if ((input_chr & 0x80) || MODE < ESCSEQ) {
267 int is_gl = 0;
268 struct iso2022_subcharset const *subcs;
269 unsigned container;
270 long input_7bit;
271 /*
272 * Actual data.
273 * Force idle state if we're in mid escape sequence, or in a
274 * multi-byte character with a different top bit.
275 */
276 if (MODE >= ESCSEQ ||
277 ((state->s0 & 0x00ff0000L) != 0 &&
278 (((state->s0 >> 16) ^ input_chr) & 0x80)))
279 ASSERT_IDLE;
280 if (MODE == SS2CHAR || MODE == SS3CHAR) /* Single-shift */
281 container = MODE - SS2CHAR + 2;
282 else if (input_chr >= 0x80) /* GR */
283 container = (state->s1 >> 28) & 3;
284 else { /* GL */
285 container = state->s1 >> 30;
286 is_gl = 1;
287 }
288 input_7bit = input_chr & ~0x80;
289 subcs = &iso2022_subcharsets[(state->s1 >> (container * 7)) & 0x7f];
290 if ((subcs->type == S4 || subcs->type == M4) &&
291 (input_7bit == 0x20 || input_7bit == 0x7f)) {
292 /* characters not in 94-char set */
293 if (is_gl) emit(emitctx, input_7bit);
294 else emit(emitctx, ERROR);
295 } else if (subcs->type == M4 || subcs->type == M6) {
296 if ((state->s0 & 0x00ff0000L) == 0) {
297 state->s0 |= input_chr << 16;
298 return;
299 } else {
300 emit(emitctx,
301 subcs->dbcs_fn(((state->s0 >> 16) & 0x7f) + subcs->offset,
302 input_7bit + subcs->offset));
303 }
304 } else {
305 if ((state->s0 & 0x00ff0000L) != 0)
306 emit(emitctx, ERROR);
307 emit(emitctx, subcs->sbcs_base ?
308 sbcs_to_unicode(subcs->sbcs_base, input_7bit + subcs->offset):
309 ERROR);
310 }
311 state->s0 = 0;
312 } else {
313 unsigned i1, i2;
314 if (MODE == ESCPASS) {
315 emit(emitctx, input_chr);
316 if ((input_chr & 0xf0) != 0x20)
317 ENTER_MODE(IDLE);
318 return;
319 }
320
321 /*
322 * Intermediate bytes shall be any of the 16 positions of
323 * column 02 of the code table; they are denoted by the symbol
324 * I.
325 */
326 if ((input_chr & 0xf0) == 0x20) {
327 if (((state->s0 >> 16) & 0xff) == 0)
328 state->s0 |= input_chr << 16;
329 else if (((state->s0 >> 8) & 0xff) == 0)
330 state->s0 |= input_chr << 8;
331 else {
332 /* Long escape sequence. Switch to ESCPASS or ESCDROP. */
333 i1 = (state->s0 >> 16) & 0xff;
334 i2 = (state->s0 >> 8) & 0xff;
335 switch (i1) {
336 case '(': case ')': case '*': case '+':
337 case '-': case '.': case '/':
338 case '$':
339 ENTER_MODE(ESCDROP);
340 break;
341 default:
342 emit(emitctx, ESC);
343 emit(emitctx, i1);
344 emit(emitctx, i2);
345 emit(emitctx, input_chr);
346 state->s0 = 0;
347 ENTER_MODE(ESCPASS);
348 break;
349 }
350 }
351 return;
352 }
353
354 /*
355 * Final bytes shall be any of the 79 positions of columns 03
356 * to 07 of the code table excluding position 07/15; they are
357 * denoted by the symbol F.
358 */
359 i1 = (state->s0 >> 16) & 0xff;
360 i2 = (state->s0 >> 8) & 0xff;
361 if (MODE == ESCDROP)
362 input_chr = 0; /* Make sure it won't match. */
363 state->s0 = 0;
364 switch (i1) {
365 case 0: /* No intermediate bytes */
366 switch (input_chr) {
367 case 'N': /* SS2 */
368 SINGLE_SHIFT(2);
369 break;
370 case 'O': /* SS3 */
371 SINGLE_SHIFT(3);
372 break;
373 case 'n': /* LS2 */
374 LOCKING_SHIFT(2, LEFT);
375 break;
376 case 'o': /* LS3 */
377 LOCKING_SHIFT(3, LEFT);
378 break;
379 case '|': /* LS3R */
380 LOCKING_SHIFT(3, RIGHT);
381 break;
382 case '}': /* LS2R */
383 LOCKING_SHIFT(2, RIGHT);
384 break;
385 case '~': /* LS1R */
386 LOCKING_SHIFT(1, RIGHT);
387 break;
388 default:
389 /* Unsupported escape sequence. Spit it back out. */
390 emit(emitctx, ESC);
391 emit(emitctx, input_chr);
392 }
393 break;
394 case ' ': /* ACS */
395 /*
396 * Various coding structure facilities specify that designating
397 * a code element also invokes it. As far as I can see, invoking
398 * it now will have the same practical effect, since those
399 * facilities also ban the use of locking shifts.
400 */
401 switch (input_chr) {
402 case 'A': /* G0 element used and invoked into GL */
403 LOCKING_SHIFT(0, LEFT);
404 break;
405 case 'C': /* G0 in GL, G1 in GR */
406 case 'D': /* Ditto, at least for 8-bit codes */
407 case 'L': /* ISO 4873 (ECMA-43) level 1 */
408 case 'M': /* ISO 4873 (ECMA-43) level 2 */
409 LOCKING_SHIFT(0, LEFT);
410 LOCKING_SHIFT(1, RIGHT);
411 break;
412 }
413 break;
414 case '&': /* IRR */
415 /*
416 * IRR (Identify Revised Registration) is ignored here,
417 * since any revised registration must be
418 * upward-compatible with the old one, so either we'll
419 * support the new one or we'll emit ERROR when we run
420 * into a new character. In either case, there's nothing
421 * to be done here.
422 */
423 break;
424 case '(': /* GZD4 */ case ')': /* G1D4 */
425 case '*': /* G2D4 */ case '+': /* G3D4 */
426 designate(state, i1 - '(', S4, i2, input_chr);
427 break;
428 case '-': /* G1D6 */ case '.': /* G2D6 */ case '/': /* G3D6 */
429 designate(state, i1 - ',', S6, i2, input_chr);
430 break;
431 case '$': /* G?DM? */
432 switch (i2) {
433 case 0: /* Obsolete version of GZDM4 */
434 i2 = '(';
435 case '(': /* GZDM4 */ case ')': /* G1DM4 */
436 case '*': /* G2DM4 */ case '+': /* G3DM4 */
437 designate(state, i2 - '(', M4, 0, input_chr);
438 break;
439 case '-': /* G1DM6 */
440 case '.': /* G2DM6 */ case '/': /* G3DM6 */
441 designate(state, i2 - ',', M6, 0, input_chr);
442 break;
443 default:
444 emit(emitctx, ERROR);
445 break;
446 }
447 case '%': /* DOCS */
a89fe3cf 448 /* XXX What's a reasonable way to handle an unrecognised DOCS? */
449 switch (i2) {
450 case 0:
451 switch (input_chr) {
452 case 'G':
453 ENTER_MODE(DOCSUTF8);
454 break;
455 }
456 break;
457 }
b97e5427 458 break;
459 default:
460 /* Unsupported nF escape sequence. Re-emit it. */
461 emit(emitctx, ESC);
462 emit(emitctx, i1);
463 if (i2) emit(emitctx, i2);
464 emit(emitctx, input_chr);
465 break;
466 }
467 }
468}
469
470const charset_spec charset_CS_ISO2022 = {
471 CS_ISO2022, read_iso2022, NULL, NULL
472};
473
474#ifdef TESTMODE
475
476#include <stdio.h>
477#include <stdarg.h>
478#include <string.h>
479
480int total_errs = 0;
481
482void iso2022_emit(void *ctx, long output)
483{
484 wchar_t **p = (wchar_t **)ctx;
485 *(*p)++ = output;
486}
487
488void iso2022_read_test(int line, char *input, int inlen, ...)
489{
490 va_list ap;
491 wchar_t *p, str[512];
492 int i;
493 charset_state state;
494 unsigned long l;
495
496 state.s0 = state.s1 = 0;
497 p = str;
498
499 for (i = 0; i < inlen; i++)
500 read_iso2022(NULL, input[i] & 0xFF, &state, iso2022_emit, &p);
501
502 va_start(ap, inlen);
503 l = 0;
504 for (i = 0; i < p - str; i++) {
505 l = va_arg(ap, long int);
506 if (l == -1) {
507 printf("%d: correct string shorter than output\n", line);
508 total_errs++;
509 break;
510 }
511 if (l != str[i]) {
512 printf("%d: char %d came out as %08x, should be %08lx\n",
513 line, i, str[i], l);
514 total_errs++;
515 }
516 }
517 if (l != -1) {
518 l = va_arg(ap, long int);
519 if (l != -1) {
520 printf("%d: correct string longer than output\n", line);
521 total_errs++;
522 }
523 }
524 va_end(ap);
525}
526
527/* Macro to concoct the first three parameters of iso2022_read_test. */
528#define TESTSTR(x) __LINE__, x, lenof(x)
529
530int main(void)
531{
532 printf("read tests beginning\n");
533 /* Simple test (Emacs sample text for Japanese, in ISO-2022-JP) */
534 iso2022_read_test(TESTSTR("Japanese (\x1b$BF|K\\8l\x1b(B)\t"
535 "\x1b$B$3$s$K$A$O\x1b(B, "
536 "\x1b$B%3%s%K%A%O\x1b(B\n"),
537 'J','a','p','a','n','e','s','e',' ','(',
538 0x65E5, 0x672C, 0x8A9E, ')', '\t',
539 0x3053, 0x3093, 0x306b, 0x3061, 0x306f, ',', ' ',
540 0x30b3, 0x30f3, 0x30cb, 0x30c1, 0x30cf, '\n', 0, -1);
541 /* Same thing in EUC-JP (with designations, and half-width katakana) */
542 iso2022_read_test(TESTSTR("\x1b$)B\x1b*I\x1b$+D"
543 "Japanese (\xc6\xfc\xcb\xdc\xb8\xec)\t"
544 "\xa4\xb3\xa4\xf3\xa4\xcb\xa4\xc1\xa4\xcf, "
545 "\x8e\xba\x8e\xdd\x8e\xc6\x8e\xc1\x8e\xca\n"),
546 'J','a','p','a','n','e','s','e',' ','(',
547 0x65E5, 0x672C, 0x8A9E, ')', '\t',
548 0x3053, 0x3093, 0x306b, 0x3061, 0x306f, ',', ' ',
549 0xff7a, 0xff9d, 0xff86, 0xff81, 0xff8a, '\n', 0, -1);
550 /* Multibyte single-shift */
551 iso2022_read_test(TESTSTR("\x1b$)B\x1b*I\x1b$+D\x8f\"/!"),
552 0x02D8, '!', 0, -1);
553 /* Non-existent SBCS */
554 iso2022_read_test(TESTSTR("\x1b(!Zfnord\n"),
555 ERROR, ERROR, ERROR, ERROR, ERROR, '\n', 0, -1);
556 /* Pass-through of ordinary escape sequences, including a long one */
557 iso2022_read_test(TESTSTR("\x1b""b\x1b#5\x1b#!!!5"),
558 0x1B, 'b', 0x1B, '#', '5',
559 0x1B, '#', '!', '!', '!', '5', 0, -1);
560 /* Non-existent DBCS (also 5-byte escape sequence) */
561 iso2022_read_test(TESTSTR("\x1b$(!Bfnord!"),
562 ERROR, ERROR, ERROR, 0, -1);
563 /* Incomplete DB characters */
564 iso2022_read_test(TESTSTR("\x1b$B(,(\x1b(BHi\x1b$B(,(\n"),
565 0x2501, ERROR, 'H', 'i', 0x2501, ERROR, '\n', 0, -1);
566 iso2022_read_test(TESTSTR("\x1b$)B\x1b*I\x1b$+D\xa4""B"),
567 ERROR, 'B', 0, -1);
568 iso2022_read_test(TESTSTR("\x1b$)B\x1b*I\x1b$+D\x0e\x1b|$\xa2\xaf"),
569 ERROR, 0x02D8, 0, -1);
570 /* Incomplete escape sequence */
571 iso2022_read_test(TESTSTR("\x1b\n"), ERROR, '\n', 0, -1);
572 iso2022_read_test(TESTSTR("\x1b-A\x1b~\x1b\xa1"), ERROR, 0xa1, 0, -1);
573 /* Incomplete single-shift */
574 iso2022_read_test(TESTSTR("\x8e\n"), ERROR, '\n', 0, -1);
575 iso2022_read_test(TESTSTR("\x1b$*B\x8e(\n"), ERROR, '\n', 0, -1);
576 /* Corner cases (02/00 and 07/15) */
577 iso2022_read_test(TESTSTR("\x1b(B\x20\x7f"), 0x20, 0x7f, 0, -1);
578 iso2022_read_test(TESTSTR("\x1b(I\x20\x7f"), 0x20, 0x7f, 0, -1);
579 iso2022_read_test(TESTSTR("\x1b$B\x20\x7f"), 0x20, 0x7f, 0, -1);
580 iso2022_read_test(TESTSTR("\x1b-A\x0e\x20\x7f"), 0xa0, 0xff, 0, -1);
581 iso2022_read_test(TESTSTR("\x1b$-~\x0e\x20\x7f"), ERROR, 0, -1);
582 iso2022_read_test(TESTSTR("\x1b)B\xa0\xff"), ERROR, ERROR, 0, -1);
583 iso2022_read_test(TESTSTR("\x1b)I\xa0\xff"), ERROR, ERROR, 0, -1);
584 iso2022_read_test(TESTSTR("\x1b$)B\xa0\xff"), ERROR, ERROR, 0, -1);
585 iso2022_read_test(TESTSTR("\x1b-A\x1b~\xa0\xff"), 0xa0, 0xff, 0, -1);
586 iso2022_read_test(TESTSTR("\x1b$-~\x1b~\xa0\xff"), ERROR, 0, -1);
587 /* Designate control sets */
588 iso2022_read_test(TESTSTR("\x1b!@"), 0x1b, '!', '@', 0, -1);
a89fe3cf 589 /* Designate other coding system */
590 iso2022_read_test(TESTSTR("\x1b%G"
591 "\xCE\xBA\xE1\xBD\xB9\xCF\x83\xCE\xBC\xCE\xB5"),
592 0x03BA, 0x1F79, 0x03C3, 0x03BC, 0x03B5, 0, -1);
593 iso2022_read_test(TESTSTR("\x1b-A\x1b%G\xCE\xBA\x1b%@\xa0"),
594 0x03BA, 0xA0, 0, -1);
595 iso2022_read_test(TESTSTR("\x1b%G\xCE\x1b%@"), ERROR, 0, -1);
596 iso2022_read_test(TESTSTR("\x1b%G\xCE\xBA\x1b%\x1b%@"),
597 0x03BA, 0x1B, '%', 0, -1);
b97e5427 598 printf("read tests completed\n");
599 printf("total: %d errors\n", total_errs);
600 return (total_errs != 0);
601}
602
603#endif /* TESTMODE */
604
605#else /* ENUM_CHARSETS */
606
607ENUM_CHARSET(CS_ISO2022)
608
609#endif