Change charset-id of ISO-IR sets from ISO-IR-number n to -n;
[chise/xemacs-chise.git] / src / char-ucs.h
1 /* Header for UCS-4 character representation.
2    Copyright (C) 1999,2000,2001,2002,2003 MORIOKA Tomohiko
3
4 This file is part of XEmacs.
5
6 XEmacs is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
9 later version.
10
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with XEmacs; see the file COPYING.  If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 #ifndef INCLUDED_char_ucs_h_
22 #define INCLUDED_char_ucs_h_
23
24 #include "chartab.h"
25 #include "elhash.h"
26
27 EXFUN (Fmake_directory_internal, 1);
28
29 extern Lisp_Object Vchar_attribute_hash_table;
30
31 #define valid_char_p(ch) 1
32
33 #define CHAR_ASCII_P(ch) ((ch) <= 0x7F)
34
35 \f
36 /************************************************************************/
37 /*                            Exported functions                        */
38 /************************************************************************/
39
40 extern Lisp_Object Vcharset_ucs;
41 extern Lisp_Object Vcharset_latin_jisx0201;
42 extern Lisp_Object Vcharset_chinese_big5;
43 extern Lisp_Object Vcharset_chinese_big5_1;
44 extern Lisp_Object Vcharset_chinese_big5_2;
45 extern Lisp_Object Vcharset_japanese_jisx0208;
46 extern Lisp_Object Vcharset_japanese_jisx0208_1990;
47 extern Lisp_Object Vcharset_japanese_jisx0212;
48
49 EXFUN (Fget_charset, 1);
50
51 extern Lisp_Object Qmap_ucs, Qucs;
52
53 Lisp_Object put_char_ccs_code_point (Lisp_Object character,
54                                      Lisp_Object ccs, Lisp_Object value);
55 Lisp_Object remove_char_ccs (Lisp_Object character, Lisp_Object ccs);
56
57 \f
58 /************************************************************************/
59 /*                    Definition of leading bytes                       */
60 /************************************************************************/
61
62 typedef short Charset_ID;
63
64 /* ISO/IEC 10646 */
65 #define LEADING_BYTE_UCS                1
66
67 /* represent normal 80-9F */
68 #define LEADING_BYTE_CONTROL_1          2
69
70 /* ISO/IEC 10646 BMP */
71 #define LEADING_BYTE_UCS_BMP            3
72
73 /* ISO/IEC 10646 SMP */
74 #define LEADING_BYTE_UCS_SMP            4
75
76 /* ISO/IEC 10646 SIP */
77 #define LEADING_BYTE_UCS_SIP            5
78
79 /* Japanese JIS X0208 Common    2/4 2/{(8),9,10,11} 4/2 (B) */
80 #define LEADING_BYTE_JIS_X0208          11
81
82 /* Japanese JIS X0208-1990      2/4 2/{(8),9,10,11} 4/2 (B) */
83 #define LEADING_BYTE_JAPANESE_JISX0208_1990 12
84
85 /* Chinese GB 12345-1990 */
86 #define LEADING_BYTE_CHINESE_GB12345    13
87
88 #define LEADING_BYTE_CHINESE_BIG5       20
89
90 /* Big5 Level 1                 2/4 2/{(8),9,10,11} 4/0 '0' */
91 #define LEADING_BYTE_CHINESE_BIG5_1     21
92
93 /* Big5 Level 2                 2/4 2/{(8),9,10,11} 4/0 '1' */
94 #define LEADING_BYTE_CHINESE_BIG5_2     22
95
96 /* VISCII 1.1 */
97 #define LEADING_BYTE_LATIN_VISCII       24
98
99 /* MULE VISCII-LOWER                    (CHARSET_ID_OFFSET_96 + '1') */
100 #define LEADING_BYTE_LATIN_VISCII_LOWER 25
101
102 /* MULE VISCII-UPPER                    (CHARSET_ID_OFFSET_96 + '2') */
103 #define LEADING_BYTE_LATIN_VISCII_UPPER 26
104
105 #define LEADING_BYTE_ETHIOPIC_UCS       27
106
107 #define MIN_LEADING_BYTE_PRIVATE        28
108 #define MAX_LEADING_BYTE_PRIVATE        512
109
110
111 /* ISO 646 IRV */
112 #define LEADING_BYTE_ASCII                -6 /* (CHARSET_ID_OFFSET_94 + 'B') */
113
114 /* Right half of JIS X0201-1976 */
115 #define LEADING_BYTE_KATAKANA_JISX0201   -13 /* (CHARSET_ID_OFFSET_94 + 'I') */
116
117 /* Left  half of JIS X0201-1976 */
118 #define LEADING_BYTE_LATIN_JISX0201      -14 /* (CHARSET_ID_OFFSET_94 + 'J') */
119
120
121 /* #define CHARSET_ID_OFFSET_96         (CHARSET_ID_OFFSET_94 + 80) */
122
123 /* Right half of ISO 8859-1 */
124 #define LEADING_BYTE_LATIN_ISO8859_1    -100 /* (CHARSET_ID_OFFSET_96 + 'A') */
125
126 /* Right half of ISO 8859-2 */
127 #define LEADING_BYTE_LATIN_ISO8859_2    -101 /* (CHARSET_ID_OFFSET_96 + 'B') */
128
129 /* Right half of ISO 8859-3 */
130 #define LEADING_BYTE_LATIN_ISO8859_3    -109 /* (CHARSET_ID_OFFSET_96 + 'C') */
131
132 /* Right half of ISO 8859-4 */
133 #define LEADING_BYTE_LATIN_ISO8859_4    -110 /* (CHARSET_ID_OFFSET_96 + 'D') */
134
135 /* Right half of ISO 8859-7 */
136 #define LEADING_BYTE_GREEK_ISO8859_7    -126 /* (CHARSET_ID_OFFSET_96 + 'F') */
137
138 /* Right half of ISO 8859-6 */
139 #define LEADING_BYTE_ARABIC_ISO8859_6   -127 /* (CHARSET_ID_OFFSET_96 + 'G') */
140
141 /* Right half of ISO 8859-8 */
142 #define LEADING_BYTE_HEBREW_ISO8859_8   -138 /* (CHARSET_ID_OFFSET_96 + 'H') */
143
144 /* Right half of ISO 8859-5 */
145 #define LEADING_BYTE_CYRILLIC_ISO8859_5 -144 /* (CHARSET_ID_OFFSET_96 + 'L') */
146
147 /* Right half of ISO 8859-9 */
148 #define LEADING_BYTE_LATIN_ISO8859_9    -148 /* (CHARSET_ID_OFFSET_96 + 'M') */
149
150 /* TIS620-2533 */
151 #define LEADING_BYTE_THAI_TIS620        -166 /* (CHARSET_ID_OFFSET_96 + 'T') */
152
153 /* Right-hand Part of the VSCII-2 (TCVN 5712:1983) */
154 #define LEADING_BYTE_LATIN_TCVN5712     -180 /* F = 5/10 0x5A `Z' */
155
156
157 /* #define CHARSET_ID_OFFSET_94x94              (CHARSET_ID_OFFSET_96 + 80) */
158
159 /* #define MIN_LEADING_BYTE_PRIVATE_2   ('0' + CHARSET_ID_OFFSET_94x94) */
160 /* #define MAX_LEADING_BYTE_PRIVATE_2   ('?' + CHARSET_ID_OFFSET_94x94) */
161
162 /* Japanese JIS X0208-1978      2/4 2/{(8),9,10,11} 4/0 (@) */
163 #define LEADING_BYTE_JAPANESE_JISX0208_1978      -42
164
165 /* Chinese Hanzi GB2312-1980    2/4 2/{(8),9,10,11} 4/1 (A) */
166 #define LEADING_BYTE_CHINESE_GB2312              -58
167
168 /* Japanese JIS X0208-1983      2/4 2/{(8),9,10,11} 4/2 (B) */
169 #define LEADING_BYTE_JAPANESE_JISX0208           -87
170
171 /* Hangul KS C5601-1987         2/4 2/{8,9,10,11} 4/3 (C) */
172 #define LEADING_BYTE_KOREAN_KSC5601             -149
173
174 /* Japanese JIS X0212-1990      2/4 2/{8,9,10,11} 4/4 (D) */
175 #define LEADING_BYTE_JAPANESE_JISX0212          -159
176
177 /* CCITT Extended GB            2/4 2/{8,9,10,11} 4/5 (E) */
178 #define LEADING_BYTE_CHINESE_CCITT_GB           -165
179
180 /* Chinese CNS11643 Set 1       2/4 2/{8,9,10,11} 4/7 (G) */
181 #define LEADING_BYTE_CHINESE_CNS11643_1         -171
182
183 /* Chinese CNS11643 Set 2       2/4 2/{8,9,10,11} 4/8 (H) */
184 #define LEADING_BYTE_CHINESE_CNS11643_2         -172
185
186 /* Chinese CNS11643 Set 3       2/4 2/{8,9,10,11} 4/9 (I) */
187 #define LEADING_BYTE_CHINESE_CNS11643_3         -183
188
189 /* Chinese CNS11643 Set 4       2/4 2/{8,9,10,11} 4/10 (J) */
190 #define LEADING_BYTE_CHINESE_CNS11643_4         -184
191
192 /* Chinese CNS11643 Set 5       2/4 2/{8,9,10,11} 4/11 (K) */
193 #define LEADING_BYTE_CHINESE_CNS11643_5         -185
194
195 /* Chinese CNS11643 Set 6       2/4 2/{8,9,10,11} 4/12 (L) */
196 #define LEADING_BYTE_CHINESE_CNS11643_6         -186
197
198 /* Chinese CNS11643 Set 7       2/4 2/{8,9,10,11} 4/13 (M) */
199 #define LEADING_BYTE_CHINESE_CNS11643_7         -187
200
201 /* DPRK Hangul KPS 9566-1997    2/4 2/{8,9,10,11} 4/14 (N) */
202 #define LEADING_BYTE_KOREAN_KPS9566             -202
203
204 #define MIN_LEADING_BYTE        (- 80 * 3)
205
206 #define NUM_LEADING_BYTES       (MAX_LEADING_BYTE_PRIVATE - MIN_LEADING_BYTE)
207
208 \f
209 /************************************************************************/
210 /*            Information about a particular character set              */
211 /************************************************************************/
212
213 struct Lisp_Charset
214 {
215   struct lcrecord_header header;
216
217   int id;
218   Lisp_Object name;
219   Lisp_Object doc_string;
220   Lisp_Object registry;
221   Lisp_Object short_name;
222   Lisp_Object long_name;
223
224   Lisp_Object reverse_direction_charset;
225
226   Lisp_Object ccl_program;
227
228   /* Final byte of this character set in ISO2022 designating escape sequence */
229   Bufbyte final;
230
231   /* Number of columns a character in this charset takes up, on TTY
232      devices.  Not used for X devices. */
233   unsigned int columns;
234
235   /* Direction of this character set */
236   unsigned int direction;
237
238   /* Number of bytes used in encoding of this character set (1 .. 4) */
239   unsigned short dimension;
240
241   /* Number of chars in each dimension (94, 96, 128, 256) */
242   unsigned short chars;
243
244   /* Which half of font to be used to display this character set */
245   unsigned int graphic;
246
247   /* Code-point->character mapping table */
248   Lisp_Object decoding_table;
249
250   /* Base CCS */
251   Lisp_Object mother;
252
253   /* Range of character code */
254   int min_code, max_code;
255
256   /* Offset for external code */
257   int code_offset;
258
259   /* Type of conversion from mother CCS */
260   unsigned char conversion;
261
262   /* Offset for each byte */
263   int byte_offset;
264 };
265 typedef struct Lisp_Charset Lisp_Charset;
266
267 DECLARE_LRECORD (charset, Lisp_Charset);
268 #define XCHARSET(x) XRECORD (x, charset, Lisp_Charset)
269 #define XSETCHARSET(x, p) XSETRECORD (x, p, charset)
270 #define CHARSETP(x) RECORDP (x, charset)
271 #define CHECK_CHARSET(x) CHECK_RECORD (x, charset)
272 #define CONCHECK_CHARSET(x) CONCHECK_RECORD (x, charset)
273
274 #define CHARSET_LEFT_TO_RIGHT   0
275 #define CHARSET_RIGHT_TO_LEFT   1
276
277 /* Leading byte and id have been regrouped. -- OG */
278 #define CHARSET_ID(cs)           ((cs)->id)
279 #define CHARSET_LEADING_BYTE(cs) (CHARSET_ID(cs))
280 #define CHARSET_NAME(cs)         ((cs)->name)
281 #define CHARSET_SHORT_NAME(cs)   ((cs)->short_name)
282 #define CHARSET_LONG_NAME(cs)    ((cs)->long_name)
283 #define CHARSET_COLUMNS(cs)      ((cs)->columns)
284 #define CHARSET_GRAPHIC(cs)      ((cs)->graphic)
285 #define CHARSET_DIRECTION(cs)    ((cs)->direction)
286 #define CHARSET_FINAL(cs)        ((cs)->final)
287 #define CHARSET_DOC_STRING(cs)   ((cs)->doc_string)
288 #define CHARSET_REGISTRY(cs)     ((cs)->registry)
289 #define CHARSET_CCL_PROGRAM(cs)  ((cs)->ccl_program)
290 #define CHARSET_DIMENSION(cs)    ((cs)->dimension)
291 #define CHARSET_CHARS(cs)        ((cs)->chars)
292 #define CHARSET_REVERSE_DIRECTION_CHARSET(cs) ((cs)->reverse_direction_charset)
293 #define CHARSET_DECODING_TABLE(cs) ((cs)->decoding_table)
294 #define CHARSET_MIN_CODE(cs)     ((cs)->min_code)
295 #define CHARSET_MAX_CODE(cs)     ((cs)->max_code)
296 #define CHARSET_CODE_OFFSET(cs)  ((cs)->code_offset)
297 #define CHARSET_BYTE_OFFSET(cs)  ((cs)->byte_offset)
298 #define CHARSET_MOTHER(cs)       ((cs)->mother)
299 #define CHARSET_CONVERSION(cs)   ((cs)->conversion)
300
301 INLINE_HEADER int CHARSET_BYTE_SIZE (Lisp_Charset* cs);
302 INLINE_HEADER int
303 CHARSET_BYTE_SIZE (Lisp_Charset* cs)
304 {
305   /* ad-hoc method for `ascii' */
306   if ((CHARSET_CHARS (cs) == 94) &&
307       (CHARSET_BYTE_OFFSET (cs) != 33))
308     return 128 - CHARSET_BYTE_OFFSET (cs);
309   else
310     return CHARSET_CHARS (cs);
311 }
312
313 INLINE_HEADER Lisp_Object CHARSET_ENCODING_TABLE (Lisp_Charset* cs);
314 INLINE_HEADER Lisp_Object
315 CHARSET_ENCODING_TABLE (Lisp_Charset* cs)
316 {
317   return Fgethash (CHARSET_NAME(cs),
318                    Vchar_attribute_hash_table,
319                    Qnil);
320 }
321
322 #define CONVERSION_IDENTICAL    0
323 #define CONVERSION_94           1
324 #define CONVERSION_96           2
325 #define CONVERSION_94x94        3
326 #define CONVERSION_96x96        4
327 #define CONVERSION_94x94x94     5
328 #define CONVERSION_96x96x96     6
329 #define CONVERSION_94x94x94x94  7
330 #define CONVERSION_96x96x96x96  8
331 #define CONVERSION_94x60        9
332 #define CONVERSION_94x94x60     10
333 #define CONVERSION_94x94x94x60  11
334 #define CONVERSION_BIG5_1       12
335 #define CONVERSION_BIG5_2       13
336
337 #define XCHARSET_ID(cs)           CHARSET_ID           (XCHARSET (cs))
338 #define XCHARSET_NAME(cs)         CHARSET_NAME         (XCHARSET (cs))
339 #define XCHARSET_SHORT_NAME(cs)   CHARSET_SHORT_NAME   (XCHARSET (cs))
340 #define XCHARSET_LONG_NAME(cs)    CHARSET_LONG_NAME    (XCHARSET (cs))
341 #define XCHARSET_GRAPHIC(cs)      CHARSET_GRAPHIC      (XCHARSET (cs))
342 #define XCHARSET_DIRECTION(cs)    CHARSET_DIRECTION    (XCHARSET (cs))
343 #define XCHARSET_FINAL(cs)        CHARSET_FINAL        (XCHARSET (cs))
344 #define XCHARSET_DOC_STRING(cs)   CHARSET_DOC_STRING   (XCHARSET (cs))
345 #define XCHARSET_REGISTRY(cs)     CHARSET_REGISTRY     (XCHARSET (cs))
346 #define XCHARSET_LEADING_BYTE(cs) CHARSET_LEADING_BYTE (XCHARSET (cs))
347 #define XCHARSET_CCL_PROGRAM(cs)  CHARSET_CCL_PROGRAM  (XCHARSET (cs))
348 #define XCHARSET_DIMENSION(cs)    CHARSET_DIMENSION    (XCHARSET (cs))
349 #define XCHARSET_CHARS(cs)        CHARSET_CHARS        (XCHARSET (cs))
350 #define XCHARSET_BYTE_SIZE(cs)    CHARSET_BYTE_SIZE    (XCHARSET (cs))
351 #define XCHARSET_REVERSE_DIRECTION_CHARSET(cs) \
352   CHARSET_REVERSE_DIRECTION_CHARSET (XCHARSET (cs))
353 #define XCHARSET_DECODING_TABLE(cs) CHARSET_DECODING_TABLE(XCHARSET(cs))
354 #define XCHARSET_ENCODING_TABLE(cs) CHARSET_ENCODING_TABLE(XCHARSET(cs))
355 #define XCHARSET_MIN_CODE(cs)     CHARSET_MIN_CODE(XCHARSET(cs))
356 #define XCHARSET_MAX_CODE(cs)     CHARSET_MAX_CODE(XCHARSET(cs))
357 #define XCHARSET_CODE_OFFSET(cs)  CHARSET_CODE_OFFSET(XCHARSET(cs))
358 #define XCHARSET_BYTE_OFFSET(cs)  CHARSET_BYTE_OFFSET(XCHARSET(cs))
359 #define XCHARSET_MOTHER(cs)       CHARSET_MOTHER(XCHARSET(cs))
360 #define XCHARSET_CONVERSION(cs)   CHARSET_CONVERSION(XCHARSET(cs))
361
362 struct charset_lookup {
363   /* Table of charsets indexed by (leading byte - 128). */
364   Lisp_Object charset_by_leading_byte[NUM_LEADING_BYTES];
365   
366   /* Table of charsets indexed by type/final-byte/direction. */
367   Lisp_Object charset_by_attributes[4][128];
368
369   Charset_ID next_allocated_leading_byte;
370 };
371
372 extern struct charset_lookup *chlook;
373
374 #ifdef ERROR_CHECK_TYPECHECK
375 /* int not Bufbyte even though that is the actual type of a leading byte.
376    This way, out-ot-range values will get caught rather than automatically
377    truncated. */
378 INLINE_HEADER Lisp_Object CHARSET_BY_LEADING_BYTE (Charset_ID lb);
379 INLINE_HEADER Lisp_Object
380 CHARSET_BY_LEADING_BYTE (Charset_ID lb)
381 {
382   assert (lb >= MIN_LEADING_BYTE &&
383           lb < (MIN_LEADING_BYTE + NUM_LEADING_BYTES));
384   return chlook->charset_by_leading_byte[lb - MIN_LEADING_BYTE];
385 }
386
387 #else
388
389 #define CHARSET_BY_LEADING_BYTE(lb) \
390   (chlook->charset_by_leading_byte[(lb) - MIN_LEADING_BYTE])
391
392 #endif
393
394 INLINE_HEADER Lisp_Object
395 CHARSET_BY_ATTRIBUTES (int chars, int dimension, int final, int dir);
396 INLINE_HEADER Lisp_Object
397 CHARSET_BY_ATTRIBUTES (int chars, int dimension, int final, int dir)
398 {
399   int type;
400
401   if (chars == 94)
402     type = 0;
403   else if (chars == 96)
404     type = 1;
405   else
406     return Qnil;
407   type += dimension == 1 ? 0 : 2;
408   return chlook->charset_by_attributes[type][final];
409 }
410
411 \f
412 /************************************************************************/
413 /*                        Dealing with characters                       */
414 /************************************************************************/
415
416 #define MAX_CHAR_BASIC_LATIN    0x007F
417
418 /*
419 #define MIN_CHAR_HEBREW         0x0590
420 #define MAX_CHAR_HEBREW         0x05EF
421 */
422
423 #define MIN_CHAR_THAI           0x0E00
424 #define MAX_CHAR_THAI           0x0E5F
425
426 /*
427 #define MIN_CHAR_HIRAGANA       0x3041
428 #define MAX_CHAR_HIRAGANA       0x3093
429
430 #define MIN_CHAR_KATAKANA       0x30A1
431 #define MAX_CHAR_KATAKANA       0x30F6
432 */
433
434 #define MIN_CHAR_HALFWIDTH_KATAKANA     0xFF61
435 #define MAX_CHAR_HALFWIDTH_KATAKANA     0xFF9F
436
437 #define MAX_CHAR_BMP            0x00FFFF
438
439 #define MIN_CHAR_SMP            0x010000
440 #define MAX_CHAR_SMP            0x01FFFF
441
442 #define MIN_CHAR_SIP            0x020000
443 #define MAX_CHAR_SIP            0x02FFFF
444
445 #if 0
446 #define MIN_CHAR_DAIKANWA       0x00E00000
447 #define MAX_CHAR_DAIKANWA       (MIN_CHAR_DAIKANWA + 50100) /* 0xE0FFFF */
448
449 #define MIN_CHAR_CBETA          0x00E20000
450 #define MAX_CHAR_CBETA          0x00E2FFFF
451
452 #define MIN_CHAR_CHINA3_JEF     0x00E80000
453 #define MAX_CHAR_CHINA3_JEF     0x00E8FFFF
454 #endif
455
456 #define MIN_CHAR_94             0x00E90940
457 #define MAX_CHAR_94             (MIN_CHAR_94 + 94 * 80 - 1)
458 #define MIN_CHAR_96             (MIN_CHAR_94 + 94 * 80)
459 #define MAX_CHAR_96             (MIN_CHAR_96 + 96 * 80 - 1)
460
461 #define MIN_CHAR_94x94          0xE9F6C0
462 #define MIN_CHAR_JIS_X0208_1990 (MIN_CHAR_94x94 + 94 * 94 * 79)
463 #define MAX_CHAR_94x94          (MIN_CHAR_94x94 + 94 * 94 * 80 - 1)
464 #define MAX_CHAR_JIS_X0208_1990 MAX_CHAR_94x94
465 #define MIN_CHAR_96x96          0xF4C000
466 #define MAX_CHAR_96x96          (MIN_CHAR_96x96 + 96 * 96 * 80 - 1)
467
468 /*
469 #define MIN_CHAR_GT             0x61000000
470 #define MAX_CHAR_GT             (MIN_CHAR_GT + 67547)
471 */
472 #define MIN_CHAR_BIG5_CDP       0x62000000
473 #define MAX_CHAR_BIG5_CDP       0x6200FFFF
474 /*
475 #define MIN_CHAR_HANZIKU_1      (0x62000000 + 65536 * 1)
476 #define MAX_CHAR_HANZIKU_1      (0x62000000 + 65536 * 1 + 65535)
477 #define MIN_CHAR_HANZIKU_2      (0x62000000 + 65536 * 2)
478 #define MAX_CHAR_HANZIKU_2      (0x62000000 + 65536 * 2 + 65535)
479 #define MIN_CHAR_HANZIKU_3      (0x62000000 + 65536 * 3)
480 #define MAX_CHAR_HANZIKU_3      (0x62000000 + 65536 * 3 + 65535)
481 #define MIN_CHAR_HANZIKU_4      (0x62000000 + 65536 * 4)
482 #define MAX_CHAR_HANZIKU_4      (0x62000000 + 65536 * 4 + 65535)
483 #define MIN_CHAR_HANZIKU_5      (0x62000000 + 65536 * 5)
484 #define MAX_CHAR_HANZIKU_5      (0x62000000 + 65536 * 5 + 65535)
485 #define MIN_CHAR_HANZIKU_6      (0x62000000 + 65536 * 6)
486 #define MAX_CHAR_HANZIKU_6      (0x62000000 + 65536 * 6 + 65535)
487 #define MIN_CHAR_HANZIKU_7      (0x62000000 + 65536 * 7)
488 #define MAX_CHAR_HANZIKU_7      (0x62000000 + 65536 * 7 + 65535)
489 #define MIN_CHAR_HANZIKU_8      (0x62000000 + 65536 * 8)
490 #define MAX_CHAR_HANZIKU_8      (0x62000000 + 65536 * 8 + 65535)
491 #define MIN_CHAR_HANZIKU_9      (0x62000000 + 65536 * 9)
492 #define MAX_CHAR_HANZIKU_9      (0x62000000 + 65536 * 9 + 65535)
493 #define MIN_CHAR_HANZIKU_10     (0x62000000 + 65536 * 10)
494 #define MAX_CHAR_HANZIKU_10     (0x62000000 + 65536 * 10 + 65535)
495 #define MIN_CHAR_HANZIKU_11     (0x62000000 + 65536 * 11)
496 #define MAX_CHAR_HANZIKU_11     (0x62000000 + 65536 * 11 + 65535)
497 #define MIN_CHAR_HANZIKU_12     (0x62000000 + 65536 * 12)
498 #define MAX_CHAR_HANZIKU_12     (0x62000000 + 65536 * 12 + 65535)
499 */
500
501 Emchar decode_builtin_char (Lisp_Object charset, int code_point);
502
503 INLINE_HEADER Lisp_Object
504 get_ccs_octet_table (Lisp_Object table, Lisp_Object ccs, int code);
505 INLINE_HEADER Lisp_Object
506 get_ccs_octet_table (Lisp_Object table, Lisp_Object ccs, int code)
507 {
508   int byte_offset = XCHARSET_BYTE_OFFSET (ccs);
509
510   if (VECTORP (table))
511     {
512       int idx = code - byte_offset;
513
514       if (idx < XVECTOR_LENGTH(table))
515         return XVECTOR_DATA(table)[idx];
516       else
517         return Qunbound;
518     }
519   else
520     return table;
521 }
522
523 INLINE_HEADER Lisp_Object
524 put_ccs_octet_table (Lisp_Object table, Lisp_Object ccs, int code,
525                      Lisp_Object value);
526 INLINE_HEADER Lisp_Object
527 put_ccs_octet_table (Lisp_Object table, Lisp_Object ccs, int code,
528                      Lisp_Object value)
529 {
530   int byte_offset = XCHARSET_BYTE_OFFSET (ccs);
531   int ccs_len = XCHARSET_BYTE_SIZE (ccs);
532
533   if (VECTORP (table))
534     {
535       XVECTOR_DATA(table)[code - byte_offset] = value;
536       return table;
537     }
538   else if (EQ (table, value))
539     return table;
540   else
541     {
542       table = make_vector (ccs_len, table);
543       XVECTOR_DATA(table)[code - byte_offset] = value;
544       return table;
545     }
546 }
547
548 INLINE_HEADER void
549 decoding_table_put_char (Lisp_Object ccs,
550                          int code_point, Lisp_Object character);
551 INLINE_HEADER void
552 decoding_table_put_char (Lisp_Object ccs,
553                          int code_point, Lisp_Object character)
554 {
555 #if 1
556   Lisp_Object table1 = XCHARSET_DECODING_TABLE (ccs);
557   int dim = XCHARSET_DIMENSION (ccs);
558
559   if (dim == 1)
560     XCHARSET_DECODING_TABLE (ccs)
561       = put_ccs_octet_table (table1, ccs, code_point, character);
562   else if (dim == 2)
563     {
564       Lisp_Object table2
565         = get_ccs_octet_table (table1, ccs, (unsigned char)(code_point >> 8));
566
567       table2 = put_ccs_octet_table (table2, ccs,
568                                     (unsigned char)code_point, character);
569       XCHARSET_DECODING_TABLE (ccs)
570         = put_ccs_octet_table (table1, ccs,
571                                (unsigned char)(code_point >> 8), table2);
572     }
573   else if (dim == 3)
574     {
575       Lisp_Object table2
576         = get_ccs_octet_table (table1, ccs, (unsigned char)(code_point >> 16));
577       Lisp_Object table3
578         = get_ccs_octet_table (table2, ccs, (unsigned char)(code_point >>  8));
579
580       table3 = put_ccs_octet_table (table3, ccs,
581                                     (unsigned char)code_point, character);
582       table2 = put_ccs_octet_table (table2, ccs,
583                                     (unsigned char)(code_point >> 8), table3);
584       XCHARSET_DECODING_TABLE (ccs)
585         = put_ccs_octet_table (table1, ccs,
586                                (unsigned char)(code_point >> 16), table2);
587     }
588   else /* if (dim == 4) */
589     {
590       Lisp_Object table2
591         = get_ccs_octet_table (table1, ccs, (unsigned char)(code_point >> 24));
592       Lisp_Object table3
593         = get_ccs_octet_table (table2, ccs, (unsigned char)(code_point >> 16));
594       Lisp_Object table4
595         = get_ccs_octet_table (table3, ccs, (unsigned char)(code_point >>  8));
596
597       table4 = put_ccs_octet_table (table4, ccs,
598                                     (unsigned char)code_point, character);
599       table3 = put_ccs_octet_table (table3, ccs,
600                                     (unsigned char)(code_point >>  8), table4);
601       table2 = put_ccs_octet_table (table2, ccs,
602                                     (unsigned char)(code_point >> 16), table3);
603       XCHARSET_DECODING_TABLE (ccs)
604         = put_ccs_octet_table (table1, ccs,
605                                (unsigned char)(code_point >> 24), table2);
606     }
607 #else
608   Lisp_Object v = XCHARSET_DECODING_TABLE (ccs);
609   int dim = XCHARSET_DIMENSION (ccs);
610   int byte_offset = XCHARSET_BYTE_OFFSET (ccs);
611   int i = -1;
612   Lisp_Object nv;
613   int ccs_len = XVECTOR_LENGTH (v);
614
615   while (dim > 0)
616     {
617       dim--;
618       i = ((code_point >> (8 * dim)) & 255) - byte_offset;
619       nv = XVECTOR_DATA(v)[i];
620       if (dim > 0)
621         {
622           if (!VECTORP (nv))
623             {
624               if (EQ (nv, character))
625                 return;
626               else
627                 nv = (XVECTOR_DATA(v)[i] = make_vector (ccs_len, Qnil));
628             }
629           v = nv;
630         }
631       else
632         break;
633     }
634   XVECTOR_DATA(v)[i] = character;
635 #endif
636 }
637
638 INLINE_HEADER void
639 decoding_table_remove_char (Lisp_Object ccs, int code_point);
640 INLINE_HEADER void
641 decoding_table_remove_char (Lisp_Object ccs, int code_point)
642 {
643   decoding_table_put_char (ccs, code_point, Qunbound);
644 }
645
646 #ifdef HAVE_CHISE_CLIENT
647 Emchar load_char_decoding_entry_maybe (Lisp_Object ccs, int code_point);
648 #endif
649
650 Emchar decode_defined_char (Lisp_Object charset, int code_point);
651
652 INLINE_HEADER Emchar DECODE_CHAR (Lisp_Object charset, int code_point);
653 INLINE_HEADER Emchar
654 DECODE_CHAR (Lisp_Object charset, int code_point)
655 {
656   Emchar char_id = decode_defined_char (charset, code_point);
657
658   if (char_id >= 0)
659     return char_id;
660   else
661     return decode_builtin_char (charset, code_point);
662 }
663
664 /* Return a character whose charset is CHARSET and position-codes
665    are C1 and C2.  TYPE9N character ignores C2. */
666
667 INLINE_HEADER Emchar MAKE_CHAR (Lisp_Object charset, int c1, int c2);
668 INLINE_HEADER Emchar
669 MAKE_CHAR (Lisp_Object charset, int c1, int c2)
670 {
671   if (XCHARSET_DIMENSION (charset) == 1)
672     return DECODE_CHAR (charset, c1);
673   else
674     return DECODE_CHAR (charset, (c1 << 8) | c2);
675 }
676
677 extern Lisp_Object Vcharacter_attribute_table;
678
679 int encode_builtin_char_1 (Emchar c, Lisp_Object* charset);
680 int charset_code_point (Lisp_Object charset, Emchar ch, int defined_only);
681 int range_charset_code_point (Lisp_Object charset, Emchar ch);
682
683 extern Lisp_Object Vdefault_coded_charset_priority_list;
684 EXFUN (Ffind_charset, 1);
685
686 INLINE_HEADER int encode_char_1 (Emchar ch, Lisp_Object* charset);
687 INLINE_HEADER int
688 encode_char_1 (Emchar ch, Lisp_Object* charset)
689 {
690   Lisp_Object charsets = Vdefault_coded_charset_priority_list;
691
692   while (!NILP (charsets))
693     {
694       *charset = Ffind_charset (Fcar (charsets));
695       if (!NILP (*charset))
696         {
697           int code_point = charset_code_point (*charset, ch, 0);
698
699           if (code_point >= 0)
700             return code_point;
701         }
702       charsets = Fcdr (charsets);             
703     }
704   
705   /* otherwise --- maybe for bootstrap */
706   return encode_builtin_char_1 (ch, charset);
707 }
708
709 #define ENCODE_CHAR(ch, charset)        encode_char_1 (ch, &(charset))
710
711 INLINE_HEADER void
712 breakup_char_1 (Emchar c, Lisp_Object *charset, int *c1, int *c2);
713 INLINE_HEADER void
714 breakup_char_1 (Emchar c, Lisp_Object *charset, int *c1, int *c2)
715 {
716   int code_point = encode_char_1 (c, charset);
717
718   if (code_point >= 0)
719     {
720       int dim = XCHARSET_DIMENSION (*charset);
721
722        if (dim == 1)
723          {
724            *c1 = code_point;
725            *c2 = 0;
726          }
727        else /* if (dim == 2) */
728          {
729            *c1 = code_point >> 8;
730            *c2 = code_point & 255;
731          }
732     }
733   else{
734     *c1 = *c2 = 0;
735   }
736 }
737
738 #define BREAKUP_CHAR(ch, charset, b1, b2) \
739   breakup_char_1 (ch, &(charset), &(b1), &(b2))
740
741 INLINE_HEADER Lisp_Object CHAR_CHARSET (Emchar ch);
742 INLINE_HEADER Lisp_Object
743 CHAR_CHARSET (Emchar ch)
744 {
745   Lisp_Object charset;
746  
747   ENCODE_CHAR (ch, charset);
748   return charset;
749 }
750
751 #define CHAR_CHARSET_ID(c)  (XCHARSET_ID(CHAR_CHARSET(c)))
752 #define CHAR_COLUMNS(c)     (CHARSET_COLUMNS(XCHARSET(CHAR_CHARSET(c))))
753
754
755 typedef struct Charc
756 {
757   Lisp_Object charset;
758   int code_point;
759 } Charc;
760
761 INLINE_HEADER Charc CHAR_TO_CHARC (Emchar ch);
762 INLINE_HEADER Charc
763 CHAR_TO_CHARC (Emchar ch)
764 {
765   Charc cc;
766
767   cc.code_point = encode_char_1 (ch, &cc.charset);
768   return cc;
769 }
770
771 #endif /* INCLUDED_char_ucs_h_ */