(Vcharacter_composition_table): Deleted.
[chise/xemacs-chise.git-] / src / chartab.h
1 /* Declarations having to do with Mule char tables.
2    Copyright (C) 1992 Free Software Foundation, Inc.
3    Copyright (C) 1995 Sun Microsystems, Inc.
4    Copyright (C) 1999,2000,2001,2002 MORIOKA Tomohiko
5
6 This file is part of XEmacs.
7
8 XEmacs is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 2, or (at your option) any
11 later version.
12
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with XEmacs; see the file COPYING.  If not, write to
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23 /* Synched up with: Mule 2.3.  Not synched with FSF.
24
25    This file was written independently of the FSF implementation,
26    and is not compatible. */
27
28 #ifndef INCLUDED_chartab_h_
29 #define INCLUDED_chartab_h_
30
31
32 #ifdef UTF2000
33
34 #ifdef HAVE_DATABASE
35 #include "database.h"
36 #endif
37
38 EXFUN (Fmake_char, 3);
39 EXFUN (Fdecode_char, 3);
40
41 EXFUN (Fput_char_attribute, 3);
42
43
44 /************************************************************************/
45 /*                          Char-ID Tables                              */
46 /************************************************************************/
47
48 struct Lisp_Uint8_Byte_Table
49 {
50   struct lcrecord_header header;
51
52   unsigned char property[256];
53 };
54 typedef struct Lisp_Uint8_Byte_Table Lisp_Uint8_Byte_Table;
55
56 DECLARE_LRECORD (uint8_byte_table, Lisp_Uint8_Byte_Table);
57 #define XUINT8_BYTE_TABLE(x) \
58    XRECORD (x, uint8_byte_table, Lisp_Uint8_Byte_Table)
59 #define XSETUINT8_BYTE_TABLE(x, p) XSETRECORD (x, p, uint8_byte_table)
60 #define UINT8_BYTE_TABLE_P(x) RECORDP (x, uint8_byte_table)
61 #define GC_UINT8_BYTE_TABLE_P(x) GC_RECORDP (x, uint8_byte_table)
62 /* #define CHECK_UINT8_BYTE_TABLE(x) CHECK_RECORD (x, uint8_byte_table)
63    char table entries should never escape to Lisp */
64
65
66 struct Lisp_Uint16_Byte_Table
67 {
68   struct lcrecord_header header;
69
70   unsigned short property[256];
71 };
72 typedef struct Lisp_Uint16_Byte_Table Lisp_Uint16_Byte_Table;
73
74 DECLARE_LRECORD (uint16_byte_table, Lisp_Uint16_Byte_Table);
75 #define XUINT16_BYTE_TABLE(x) \
76    XRECORD (x, uint16_byte_table, Lisp_Uint16_Byte_Table)
77 #define XSETUINT16_BYTE_TABLE(x, p) XSETRECORD (x, p, uint16_byte_table)
78 #define UINT16_BYTE_TABLE_P(x) RECORDP (x, uint16_byte_table)
79 #define GC_UINT16_BYTE_TABLE_P(x) GC_RECORDP (x, uint16_byte_table)
80 /* #define CHECK_UINT16_BYTE_TABLE(x) CHECK_RECORD (x, uint16_byte_table)
81    char table entries should never escape to Lisp */
82
83
84 struct Lisp_Byte_Table
85 {
86   struct lcrecord_header header;
87
88   Lisp_Object property[256];
89 };
90 typedef struct Lisp_Byte_Table Lisp_Byte_Table;
91
92 DECLARE_LRECORD (byte_table, Lisp_Byte_Table);
93 #define XBYTE_TABLE(x) XRECORD (x, byte_table, Lisp_Byte_Table)
94 #define XSETBYTE_TABLE(x, p) XSETRECORD (x, p, byte_table)
95 #define BYTE_TABLE_P(x) RECORDP (x, byte_table)
96 #define GC_BYTE_TABLE_P(x) GC_RECORDP (x, byte_table)
97 /* #define CHECK_BYTE_TABLE(x) CHECK_RECORD (x, byte_table)
98    char table entries should never escape to Lisp */
99
100 Lisp_Object get_byte_table (Lisp_Object table, unsigned char idx);
101
102 Lisp_Object put_byte_table (Lisp_Object table, unsigned char idx,
103                             Lisp_Object value);
104
105
106 Lisp_Object make_char_id_table (Lisp_Object initval);
107
108 #endif
109
110
111 /************************************************************************/
112 /*                               Char Tables                            */
113 /************************************************************************/
114
115 /* Under Mule, we use a complex representation (see below).
116    When not under Mule, there are only 256 possible characters
117    so we just represent them directly. */
118
119 #if defined(MULE)&&!defined(UTF2000)
120
121 struct Lisp_Char_Table_Entry
122 {
123   struct lcrecord_header header;
124
125   /* In the interests of simplicity, we just use a fixed 96-entry
126      table.  If we felt like being smarter, we could make this
127      variable-size and add an offset value into this structure. */
128   Lisp_Object level2[96];
129 };
130 typedef struct Lisp_Char_Table_Entry Lisp_Char_Table_Entry;
131
132 DECLARE_LRECORD (char_table_entry, Lisp_Char_Table_Entry);
133 #define XCHAR_TABLE_ENTRY(x) \
134   XRECORD (x, char_table_entry, Lisp_Char_Table_Entry)
135 #define XSETCHAR_TABLE_ENTRY(x, p) XSETRECORD (x, p, char_table_entry)
136 #define CHAR_TABLE_ENTRYP(x) RECORDP (x, char_table_entry)
137 /* #define CHECK_CHAR_TABLE_ENTRY(x) CHECK_RECORD (x, char_table_entry)
138    char table entries should never escape to Lisp */
139
140 #endif /* MULE */
141
142 enum char_table_type
143 {
144   CHAR_TABLE_TYPE_GENERIC,
145 #ifdef MULE
146   CHAR_TABLE_TYPE_CATEGORY,
147 #endif
148   CHAR_TABLE_TYPE_SYNTAX,
149   CHAR_TABLE_TYPE_DISPLAY,
150   CHAR_TABLE_TYPE_CHAR
151 };
152
153 #ifndef UTF2000
154 #ifdef MULE
155 #define NUM_ASCII_CHARS 160
156 #else
157 #define NUM_ASCII_CHARS 256
158 #endif
159 #endif
160
161 struct Lisp_Char_Table
162 {
163   struct lcrecord_header header;
164
165 #ifdef UTF2000
166   Lisp_Object table;
167   Lisp_Object default_value;
168   Lisp_Object name;
169   Lisp_Object db;
170   unsigned char unloaded;
171 #else
172   Lisp_Object ascii[NUM_ASCII_CHARS];
173
174 #ifdef MULE
175   /* We basically duplicate the Mule vectors-of-vectors implementation.
176      We can do this because we know a great deal about the sorts of
177      things we are going to be indexing.
178
179      The current implementation is as follows:
180
181      ascii[0-159] is used for ASCII and Control-1 characters.
182
183      level1[0 .. (NUM_LEADING_BYTES-1)] indexes charsets by leading
184      byte (subtract MIN_LEADING_BYTE from the leading byte).  If the
185      value of this is not an opaque, then it specifies a value for all
186      characters in the charset.  Otherwise, it will be a
187      96-Lisp-Object opaque that we created, specifying a value for
188      each row.  If the value of this is not an opaque, then it
189      specifies a value for all characters in the row.  Otherwise, it
190      will be a 96-Lisp-Object opaque that we created, specifying a
191      value for each character.
192
193      NOTE: 1) This will fail if some C routine passes an opaque to
194               Fput_char_table().  Currently this is not a problem
195               since all char tables that are created are Lisp-visible
196               and thus no one should ever be putting an opaque in
197               a char table.  Another possibility is to consider
198               adding a type to */
199
200   Lisp_Object level1[NUM_LEADING_BYTES];
201
202 #endif /* MULE */
203 #endif /* non UTF2000 */
204
205   enum char_table_type type;
206
207 #ifndef UTF2000
208   /* stuff used for syntax tables */
209   Lisp_Object mirror_table;
210 #endif
211   Lisp_Object next_table; /* DO NOT mark through this. */
212 };
213 typedef struct Lisp_Char_Table Lisp_Char_Table;
214
215 DECLARE_LRECORD (char_table, Lisp_Char_Table);
216 #define XCHAR_TABLE(x) XRECORD (x, char_table, Lisp_Char_Table)
217 #define XSETCHAR_TABLE(x, p) XSETRECORD (x, p, char_table)
218 #define CHAR_TABLEP(x) RECORDP (x, char_table)
219 #define CHECK_CHAR_TABLE(x) CHECK_RECORD (x, char_table)
220 #define CONCHECK_CHAR_TABLE(x) CONCHECK_RECORD (x, char_table)
221
222 #define CHAR_TABLE_TYPE(ct) ((ct)->type)
223 #define XCHAR_TABLE_TYPE(ct) CHAR_TABLE_TYPE (XCHAR_TABLE (ct))
224
225 #ifdef UTF2000
226
227 #define CHAR_TABLE_NAME(ct) ((ct)->name)
228 #define XCHAR_TABLE_NAME(ct) CHAR_TABLE_NAME (XCHAR_TABLE (ct))
229
230 #define CHAR_TABLE_UNLOADED(ct) ((ct)->unloaded)
231 #define XCHAR_TABLE_UNLOADED(ct) CHAR_TABLE_UNLOADED (XCHAR_TABLE (ct))
232
233 INLINE_HEADER Lisp_Object
234 CHAR_TABLE_VALUE_UNSAFE (Lisp_Char_Table *ct, Emchar ch);
235 INLINE_HEADER Lisp_Object
236 CHAR_TABLE_VALUE_UNSAFE (Lisp_Char_Table *ct, Emchar ch)
237 {
238   Lisp_Object val = get_byte_table (get_byte_table
239                                     (get_byte_table
240                                      (get_byte_table
241                                       (ct->table,
242                                        (unsigned char)(ch >> 24)),
243                                       (unsigned char) (ch >> 16)),
244                                      (unsigned char)  (ch >> 8)),
245                                     (unsigned char)    ch);
246   if (UNBOUNDP (val))
247     return ct->default_value;
248   else
249     return val;
250 }
251
252 #elif defined(MULE)
253
254 Lisp_Object get_non_ascii_char_table_value (Lisp_Char_Table *ct,
255                                             Charset_ID leading_byte,
256                                             Emchar c);
257
258 INLINE_HEADER Lisp_Object
259 CHAR_TABLE_NON_ASCII_VALUE_UNSAFE (Lisp_Char_Table *ct, Emchar ch);
260 INLINE_HEADER Lisp_Object
261 CHAR_TABLE_NON_ASCII_VALUE_UNSAFE (Lisp_Char_Table *ct, Emchar ch)
262 {
263 #ifdef UTF2000
264   Charset_ID lb = CHAR_CHARSET_ID (ch);
265 #else
266   Charset_ID lb = CHAR_LEADING_BYTE (ch);
267 #endif
268   if (!CHAR_TABLE_ENTRYP ((ct)->level1[lb - MIN_LEADING_BYTE]))
269     return (ct)->level1[lb - MIN_LEADING_BYTE];
270   else
271     return get_non_ascii_char_table_value (ct, lb, ch);
272 }
273
274 #define CHAR_TABLE_VALUE_UNSAFE(ct, ch)         \
275   ((ch) < NUM_ASCII_CHARS                       \
276    ? (ct)->ascii[ch]                            \
277    : CHAR_TABLE_NON_ASCII_VALUE_UNSAFE (ct, ch))
278
279 #else /* not MULE */
280
281 #define CHAR_TABLE_VALUE_UNSAFE(ct, ch) ((ct)->ascii[(unsigned char) (ch)])
282
283 #endif /* not MULE */
284
285 #define XCHAR_TABLE_VALUE_UNSAFE(ct, ch) \
286   CHAR_TABLE_VALUE_UNSAFE (XCHAR_TABLE (ct), ch)
287
288 enum chartab_range_type
289 {
290   CHARTAB_RANGE_ALL,
291 #ifdef UTF2000
292   CHARTAB_RANGE_DEFAULT,
293 #endif
294 #ifdef MULE
295   CHARTAB_RANGE_CHARSET,
296   CHARTAB_RANGE_ROW,
297 #endif
298   CHARTAB_RANGE_CHAR
299 };
300
301 struct chartab_range
302 {
303   enum chartab_range_type type;
304   Emchar ch;
305   Lisp_Object charset;
306   int row;
307 };
308
309 void fill_char_table (Lisp_Char_Table *ct, Lisp_Object value);
310 void put_char_table (Lisp_Char_Table *ct, struct chartab_range *range,
311                      Lisp_Object val);
312 Lisp_Object get_char_table (Emchar, Lisp_Char_Table *);
313 int map_char_table (Lisp_Char_Table *ct,
314                     struct chartab_range *range,
315                     int (*fn) (struct chartab_range *range,
316                                Lisp_Object val, void *arg),
317                     void *arg);
318 void prune_syntax_tables (void);
319
320 EXFUN (Fcopy_char_table, 1);
321 EXFUN (Fmake_char_table, 1);
322 EXFUN (Fput_char_table, 3);
323 EXFUN (Fget_char_table, 2);
324
325 extern Lisp_Object Vall_syntax_tables;
326
327 \f
328 #ifdef UTF2000
329
330 INLINE_HEADER void
331 put_char_id_table_0 (Lisp_Char_Table* cit, Emchar code, Lisp_Object value);
332 INLINE_HEADER void
333 put_char_id_table_0 (Lisp_Char_Table* cit, Emchar code, Lisp_Object value)
334 {
335   Lisp_Object table1, table2, table3, table4;
336         
337   table1 = cit->table;
338   table2 = get_byte_table (table1, (unsigned char)(code >> 24));
339   table3 = get_byte_table (table2, (unsigned char)(code >> 16));
340   table4 = get_byte_table (table3, (unsigned char)(code >>  8));
341
342   table4     = put_byte_table (table4, (unsigned char) code, value);
343   table3     = put_byte_table (table3, (unsigned char)(code >>  8), table4);
344   table2     = put_byte_table (table2, (unsigned char)(code >> 16), table3);
345   cit->table = put_byte_table (table1, (unsigned char)(code >> 24), table2);
346 }
347
348 #ifdef HAVE_DATABASE
349 extern Lisp_Object Qsystem_char_id;
350
351 Lisp_Object
352 char_attribute_system_db_file (Lisp_Object key_type, Lisp_Object attribute,
353                                int writing_mode);
354
355 Lisp_Object load_char_attribute_maybe (Lisp_Char_Table* cit, Emchar ch);
356 #endif
357
358 INLINE_HEADER Lisp_Object
359 get_char_id_table_0 (Lisp_Char_Table* cit, Emchar ch);
360 INLINE_HEADER Lisp_Object
361 get_char_id_table_0 (Lisp_Char_Table* cit, Emchar ch)
362 {
363   return get_byte_table (get_byte_table
364                          (get_byte_table
365                           (get_byte_table
366                            (cit->table,
367                             (unsigned char)(ch >> 24)),
368                            (unsigned char) (ch >> 16)),
369                           (unsigned char)  (ch >> 8)),
370                          (unsigned char)    ch);
371 }
372
373 INLINE_HEADER Lisp_Object
374 get_char_id_table (Lisp_Char_Table* cit, Emchar ch);
375 INLINE_HEADER Lisp_Object
376 get_char_id_table (Lisp_Char_Table* cit, Emchar ch)
377 {
378   Lisp_Object val = get_char_id_table_0 (cit, ch);
379
380 #ifdef HAVE_DATABASE
381   if (EQ (val, Qunloaded))
382     {
383       val = load_char_attribute_maybe (cit, ch);
384       put_char_id_table_0 (cit, ch, val);
385     }
386 #endif
387   if (UNBOUNDP (val))
388     return cit->default_value;
389   else
390     return val;
391 }
392
393 void
394 decode_char_table_range (Lisp_Object range, struct chartab_range *outrange);
395
396 INLINE_HEADER void
397 put_char_id_table (Lisp_Char_Table* table,
398                    Lisp_Object character, Lisp_Object value);
399 INLINE_HEADER void
400 put_char_id_table (Lisp_Char_Table* table,
401                    Lisp_Object character, Lisp_Object value)
402 {
403   struct chartab_range range;
404
405   decode_char_table_range (character, &range);
406   put_char_table (table, &range, value);
407 }
408
409
410 EXFUN (Fget_char_attribute, 3);
411
412 #endif
413 \f
414
415 #ifdef MULE
416 int check_category_char(Emchar ch, Lisp_Object ctbl,
417                         unsigned int designator, unsigned int not_p);
418
419 extern Lisp_Object Vstandard_category_table;
420
421 #define CATEGORY_DESIGNATORP(x) \
422  (CHARP (x) && XCHAR (x) >= 32 && XCHAR (x) <= 126)
423
424 #define CHECK_CATEGORY_DESIGNATOR(x) do {                       \
425   if (!CATEGORY_DESIGNATORP (x))                                \
426     dead_wrong_type_argument (Qcategory_designator_p, x);       \
427 } while (0)
428
429 #define CONCHECK_CATEGORY_DESIGNATOR(x) do {                    \
430   if (!CATEGORY_DESIGNATORP (x))                                \
431     x = wrong_type_argument (Qcategory_designator_p, x);        \
432 } while (0)
433
434 #define CATEGORY_TABLE_VALUEP(x) \
435  (NILP (x) || (BIT_VECTORP (x) && (bit_vector_length (XBIT_VECTOR (x)) == 95)))
436
437 #define CHECK_CATEGORY_TABLE_VALUE(x) do {                      \
438   if (!CATEGORY_TABLE_VALUEP (x))                               \
439     dead_wrong_type_argument (Qcategory_table_value_p, x);      \
440 } while (0)
441
442 #define CONCHECK_CATEGORY_TABLE_VALUE(x) do {                   \
443   if (!CATEGORY_TABLE_VALUEP (x))                               \
444     x = wrong_type_argument (Qcategory_table_value_p, x);       \
445 } while (0)
446
447 #endif /* MULE */
448
449 #endif /* INCLUDED_chartab_h_ */