* alloc.c: Do not define struct catchtag.
[bpt/emacs.git] / src / charset.c
1 /* Basic character set support.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 2008, 2009 Free Software Foundation, Inc.
4 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 2005, 2006, 2007, 2008, 2009
6 National Institute of Advanced Industrial Science and Technology (AIST)
7 Registration Number H14PRO021
8
9 Copyright (C) 2003, 2004
10 National Institute of Advanced Industrial Science and Technology (AIST)
11 Registration Number H13PRO009
12
13 This file is part of GNU Emacs.
14
15 GNU Emacs is free software: you can redistribute it and/or modify
16 it under the terms of the GNU General Public License as published by
17 the Free Software Foundation, either version 3 of the License, or
18 (at your option) any later version.
19
20 GNU Emacs is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
27
28 #include <config.h>
29
30 #include <stdio.h>
31 #include <unistd.h>
32 #include <ctype.h>
33 #include <sys/types.h>
34 #include <setjmp.h>
35 #include "lisp.h"
36 #include "character.h"
37 #include "charset.h"
38 #include "coding.h"
39 #include "disptab.h"
40 #include "buffer.h"
41
42 /*** GENERAL NOTES on CODED CHARACTER SETS (CHARSETS) ***
43
44 A coded character set ("charset" hereafter) is a meaningful
45 collection (i.e. language, culture, functionality, etc.) of
46 characters. Emacs handles multiple charsets at once. In Emacs Lisp
47 code, a charset is represented by a symbol. In C code, a charset is
48 represented by its ID number or by a pointer to a struct charset.
49
50 The actual information about each charset is stored in two places.
51 Lispy information is stored in the hash table Vcharset_hash_table as
52 a vector (charset attributes). The other information is stored in
53 charset_table as a struct charset.
54
55 */
56
57 /* List of all charsets. This variable is used only from Emacs
58 Lisp. */
59 Lisp_Object Vcharset_list;
60
61 /* Hash table that contains attributes of each charset. Keys are
62 charset symbols, and values are vectors of charset attributes. */
63 Lisp_Object Vcharset_hash_table;
64
65 /* Table of struct charset. */
66 struct charset *charset_table;
67
68 static int charset_table_size;
69 static int charset_table_used;
70
71 Lisp_Object Qcharsetp;
72
73 /* Special charset symbols. */
74 Lisp_Object Qascii;
75 Lisp_Object Qeight_bit;
76 Lisp_Object Qiso_8859_1;
77 Lisp_Object Qunicode;
78 Lisp_Object Qemacs;
79
80 /* The corresponding charsets. */
81 int charset_ascii;
82 int charset_eight_bit;
83 int charset_iso_8859_1;
84 int charset_unicode;
85 int charset_emacs;
86
87 /* The other special charsets. */
88 int charset_jisx0201_roman;
89 int charset_jisx0208_1978;
90 int charset_jisx0208;
91 int charset_ksc5601;
92
93 /* Value of charset attribute `charset-iso-plane'. */
94 Lisp_Object Qgl, Qgr;
95
96 /* Charset of unibyte characters. */
97 int charset_unibyte;
98
99 /* List of charsets ordered by the priority. */
100 Lisp_Object Vcharset_ordered_list;
101
102 /* Sub-list of Vcharset_ordered_list that contains all non-preferred
103 charsets. */
104 Lisp_Object Vcharset_non_preferred_head;
105
106 /* Incremented everytime we change Vcharset_ordered_list. This is
107 unsigned short so that it fits in Lisp_Int and never matches
108 -1. */
109 unsigned short charset_ordered_list_tick;
110
111 /* List of iso-2022 charsets. */
112 Lisp_Object Viso_2022_charset_list;
113
114 /* List of emacs-mule charsets. */
115 Lisp_Object Vemacs_mule_charset_list;
116
117 struct charset *emacs_mule_charset[256];
118
119 /* Mapping table from ISO2022's charset (specified by DIMENSION,
120 CHARS, and FINAL-CHAR) to Emacs' charset. */
121 int iso_charset_table[ISO_MAX_DIMENSION][ISO_MAX_CHARS][ISO_MAX_FINAL];
122
123 Lisp_Object Vcharset_map_path;
124
125 /* If nonzero, don't load charset maps. */
126 int inhibit_load_charset_map;
127
128 Lisp_Object Vcurrent_iso639_language;
129
130 /* Defined in chartab.c */
131 extern void
132 map_char_table_for_charset P_ ((void (*c_function) (Lisp_Object, Lisp_Object),
133 Lisp_Object function, Lisp_Object table,
134 Lisp_Object arg, struct charset *charset,
135 unsigned from, unsigned to));
136
137 #define CODE_POINT_TO_INDEX(charset, code) \
138 ((charset)->code_linear_p \
139 ? (code) - (charset)->min_code \
140 : (((charset)->code_space_mask[(code) >> 24] & 0x8) \
141 && ((charset)->code_space_mask[((code) >> 16) & 0xFF] & 0x4) \
142 && ((charset)->code_space_mask[((code) >> 8) & 0xFF] & 0x2) \
143 && ((charset)->code_space_mask[(code) & 0xFF] & 0x1)) \
144 ? (((((code) >> 24) - (charset)->code_space[12]) \
145 * (charset)->code_space[11]) \
146 + (((((code) >> 16) & 0xFF) - (charset)->code_space[8]) \
147 * (charset)->code_space[7]) \
148 + (((((code) >> 8) & 0xFF) - (charset)->code_space[4]) \
149 * (charset)->code_space[3]) \
150 + (((code) & 0xFF) - (charset)->code_space[0]) \
151 - ((charset)->char_index_offset)) \
152 : -1)
153
154
155 /* Convert the character index IDX to code-point CODE for CHARSET.
156 It is assumed that IDX is in a valid range. */
157
158 #define INDEX_TO_CODE_POINT(charset, idx) \
159 ((charset)->code_linear_p \
160 ? (idx) + (charset)->min_code \
161 : (idx += (charset)->char_index_offset, \
162 (((charset)->code_space[0] + (idx) % (charset)->code_space[2]) \
163 | (((charset)->code_space[4] \
164 + ((idx) / (charset)->code_space[3] % (charset)->code_space[6])) \
165 << 8) \
166 | (((charset)->code_space[8] \
167 + ((idx) / (charset)->code_space[7] % (charset)->code_space[10])) \
168 << 16) \
169 | (((charset)->code_space[12] + ((idx) / (charset)->code_space[11])) \
170 << 24))))
171
172 /* Structure to hold mapping tables for a charset. Used by temacs
173 invoked for dumping. */
174
175 static struct
176 {
177 /* The current charset for which the following tables are setup. */
178 struct charset *current;
179
180 /* 1 iff the following table is used for encoder. */
181 short for_encoder;
182
183 /* When the following table is used for encoding, mininum and
184 maxinum character of the current charset. */
185 int min_char, max_char;
186
187 /* A Unicode character correspoinding to the code indice 0 (i.e. the
188 minimum code-point) of the current charset, or -1 if the code
189 indice 0 is not a Unicode character. This is checked when
190 table.encoder[CHAR] is zero. */
191 int zero_index_char;
192
193 union {
194 /* Table mapping code-indices (not code-points) of the current
195 charset to Unicode characters. If decoder[CHAR] is -1, CHAR
196 doesn't belong to the current charset. */
197 int decoder[0x10000];
198 /* Table mapping Unicode characters to code-indices of the current
199 charset. The first 0x10000 elements are for BMP (0..0xFFFF),
200 and the last 0x10000 are for SMP (0x10000..0x1FFFF) or SIP
201 (0x20000..0x2FFFF). Note that there is no charset map that
202 uses both SMP and SIP. */
203 unsigned short encoder[0x20000];
204 } table;
205 } *temp_charset_work;
206
207 #define SET_TEMP_CHARSET_WORK_ENCODER(C, CODE) \
208 do { \
209 if ((CODE) == 0) \
210 temp_charset_work->zero_index_char = (C); \
211 else if ((C) < 0x20000) \
212 temp_charset_work->table.encoder[(C)] = (CODE); \
213 else \
214 temp_charset_work->table.encoder[(C) - 0x10000] = (CODE); \
215 } while (0)
216
217 #define GET_TEMP_CHARSET_WORK_ENCODER(C) \
218 ((C) == temp_charset_work->zero_index_char ? 0 \
219 : (C) < 0x20000 ? (temp_charset_work->table.encoder[(C)] \
220 ? (int) temp_charset_work->table.encoder[(C)] : -1) \
221 : temp_charset_work->table.encoder[(C) - 0x10000] \
222 ? temp_charset_work->table.encoder[(C) - 0x10000] : -1)
223
224 #define SET_TEMP_CHARSET_WORK_DECODER(C, CODE) \
225 (temp_charset_work->table.decoder[(CODE)] = (C))
226
227 #define GET_TEMP_CHARSET_WORK_DECODER(CODE) \
228 (temp_charset_work->table.decoder[(CODE)])
229 \f
230
231 /* Set to 1 to warn that a charset map is loaded and thus a buffer
232 text and a string data may be relocated. */
233 int charset_map_loaded;
234
235 struct charset_map_entries
236 {
237 struct {
238 unsigned from, to;
239 int c;
240 } entry[0x10000];
241 struct charset_map_entries *next;
242 };
243
244 /* Load the mapping information of CHARSET from ENTRIES for
245 initializing (CONTROL_FLAG == 0), decoding (CONTROL_FLAG == 1), and
246 encoding (CONTROL_FLAG == 2).
247
248 If CONTROL_FLAG is 0, setup CHARSET->min_char, CHARSET->max_char,
249 and CHARSET->fast_map.
250
251 If CONTROL_FLAG is 1, setup the following tables according to
252 CHARSET->method and inhibit_load_charset_map.
253
254 CHARSET->method | inhibit_lcm == 0 | inhibit_lcm == 1
255 ----------------------+--------------------+---------------------------
256 CHARSET_METHOD_MAP | CHARSET->decoder | temp_charset_work->decoder
257 ----------------------+--------------------+---------------------------
258 CHARSET_METHOD_OFFSET | Vchar_unify_table | temp_charset_work->decoder
259
260 If CONTROL_FLAG is 2, setup the following tables.
261
262 CHARSET->method | inhibit_lcm == 0 | inhibit_lcm == 1
263 ----------------------+--------------------+---------------------------
264 CHARSET_METHOD_MAP | CHARSET->encoder | temp_charset_work->encoder
265 ----------------------+--------------------+--------------------------
266 CHARSET_METHOD_OFFSET | CHARSET->deunifier | temp_charset_work->encoder
267 */
268
269 static void
270 load_charset_map (charset, entries, n_entries, control_flag)
271 struct charset *charset;
272 struct charset_map_entries *entries;
273 int n_entries;
274 int control_flag;
275 {
276 Lisp_Object vec, table;
277 unsigned max_code = CHARSET_MAX_CODE (charset);
278 int ascii_compatible_p = charset->ascii_compatible_p;
279 int min_char, max_char, nonascii_min_char;
280 int i;
281 unsigned char *fast_map = charset->fast_map;
282
283 if (n_entries <= 0)
284 return;
285
286 if (control_flag)
287 {
288 if (! inhibit_load_charset_map)
289 {
290 if (control_flag == 1)
291 {
292 if (charset->method == CHARSET_METHOD_MAP)
293 {
294 int n = CODE_POINT_TO_INDEX (charset, max_code) + 1;
295
296 vec = CHARSET_DECODER (charset)
297 = Fmake_vector (make_number (n), make_number (-1));
298 }
299 else
300 {
301 char_table_set_range (Vchar_unify_table,
302 charset->min_char, charset->max_char,
303 Qnil);
304 }
305 }
306 else
307 {
308 table = Fmake_char_table (Qnil, Qnil);
309 if (charset->method == CHARSET_METHOD_MAP)
310 CHARSET_ENCODER (charset) = table;
311 else
312 CHARSET_DEUNIFIER (charset) = table;
313 }
314 }
315 else
316 {
317 if (! temp_charset_work)
318 temp_charset_work = malloc (sizeof (*temp_charset_work));
319 if (control_flag == 1)
320 {
321 memset (temp_charset_work->table.decoder, -1,
322 sizeof (int) * 0x10000);
323 }
324 else
325 {
326 memset (temp_charset_work->table.encoder, 0,
327 sizeof (unsigned short) * 0x20000);
328 temp_charset_work->zero_index_char = -1;
329 }
330 temp_charset_work->current = charset;
331 temp_charset_work->for_encoder = (control_flag == 2);
332 control_flag += 2;
333 }
334 charset_map_loaded = 1;
335 }
336
337 min_char = max_char = entries->entry[0].c;
338 nonascii_min_char = MAX_CHAR;
339 for (i = 0; i < n_entries; i++)
340 {
341 unsigned from, to;
342 int from_index, to_index;
343 int from_c, to_c;
344 int idx = i % 0x10000;
345
346 if (i > 0 && idx == 0)
347 entries = entries->next;
348 from = entries->entry[idx].from;
349 to = entries->entry[idx].to;
350 from_c = entries->entry[idx].c;
351 from_index = CODE_POINT_TO_INDEX (charset, from);
352 if (from == to)
353 {
354 to_index = from_index;
355 to_c = from_c;
356 }
357 else
358 {
359 to_index = CODE_POINT_TO_INDEX (charset, to);
360 to_c = from_c + (to_index - from_index);
361 }
362 if (from_index < 0 || to_index < 0)
363 continue;
364
365 if (to_c > max_char)
366 max_char = to_c;
367 else if (from_c < min_char)
368 min_char = from_c;
369
370 if (control_flag == 1)
371 {
372 if (charset->method == CHARSET_METHOD_MAP)
373 for (; from_index <= to_index; from_index++, from_c++)
374 ASET (vec, from_index, make_number (from_c));
375 else
376 for (; from_index <= to_index; from_index++, from_c++)
377 CHAR_TABLE_SET (Vchar_unify_table,
378 CHARSET_CODE_OFFSET (charset) + from_index,
379 make_number (from_c));
380 }
381 else if (control_flag == 2)
382 {
383 if (charset->method == CHARSET_METHOD_MAP
384 && CHARSET_COMPACT_CODES_P (charset))
385 for (; from_index <= to_index; from_index++, from_c++)
386 {
387 unsigned code = INDEX_TO_CODE_POINT (charset, from_index);
388
389 if (NILP (CHAR_TABLE_REF (table, from_c)))
390 CHAR_TABLE_SET (table, from_c, make_number (code));
391 }
392 else
393 for (; from_index <= to_index; from_index++, from_c++)
394 {
395 if (NILP (CHAR_TABLE_REF (table, from_c)))
396 CHAR_TABLE_SET (table, from_c, make_number (from_index));
397 }
398 }
399 else if (control_flag == 3)
400 for (; from_index <= to_index; from_index++, from_c++)
401 SET_TEMP_CHARSET_WORK_DECODER (from_c, from_index);
402 else if (control_flag == 4)
403 for (; from_index <= to_index; from_index++, from_c++)
404 SET_TEMP_CHARSET_WORK_ENCODER (from_c, from_index);
405 else /* control_flag == 0 */
406 {
407 if (ascii_compatible_p)
408 {
409 if (! ASCII_BYTE_P (from_c))
410 {
411 if (from_c < nonascii_min_char)
412 nonascii_min_char = from_c;
413 }
414 else if (! ASCII_BYTE_P (to_c))
415 {
416 nonascii_min_char = 0x80;
417 }
418 }
419
420 for (; from_c <= to_c; from_c++)
421 CHARSET_FAST_MAP_SET (from_c, fast_map);
422 }
423 }
424
425 if (control_flag == 0)
426 {
427 CHARSET_MIN_CHAR (charset) = (ascii_compatible_p
428 ? nonascii_min_char : min_char);
429 CHARSET_MAX_CHAR (charset) = max_char;
430 }
431 else if (control_flag == 4)
432 {
433 temp_charset_work->min_char = min_char;
434 temp_charset_work->max_char = max_char;
435 }
436 }
437
438
439 /* Read a hexadecimal number (preceded by "0x") from the file FP while
440 paying attention to comment charcter '#'. */
441
442 static INLINE unsigned
443 read_hex (fp, eof)
444 FILE *fp;
445 int *eof;
446 {
447 int c;
448 unsigned n;
449
450 while ((c = getc (fp)) != EOF)
451 {
452 if (c == '#')
453 {
454 while ((c = getc (fp)) != EOF && c != '\n');
455 }
456 else if (c == '0')
457 {
458 if ((c = getc (fp)) == EOF || c == 'x')
459 break;
460 }
461 }
462 if (c == EOF)
463 {
464 *eof = 1;
465 return 0;
466 }
467 *eof = 0;
468 n = 0;
469 if (c == 'x')
470 while ((c = getc (fp)) != EOF && isxdigit (c))
471 n = ((n << 4)
472 | (c <= '9' ? c - '0' : c <= 'F' ? c - 'A' + 10 : c - 'a' + 10));
473 else
474 while ((c = getc (fp)) != EOF && isdigit (c))
475 n = (n * 10) + c - '0';
476 if (c != EOF)
477 ungetc (c, fp);
478 return n;
479 }
480
481 extern Lisp_Object Qfile_name_handler_alist;
482
483 /* Return a mapping vector for CHARSET loaded from MAPFILE.
484 Each line of MAPFILE has this form
485 0xAAAA 0xCCCC
486 where 0xAAAA is a code-point and 0xCCCC is the corresponding
487 character code, or this form
488 0xAAAA-0xBBBB 0xCCCC
489 where 0xAAAA and 0xBBBB are code-points specifying a range, and
490 0xCCCC is the first character code of the range.
491
492 The returned vector has this form:
493 [ CODE1 CHAR1 CODE2 CHAR2 .... ]
494 where CODE1 is a code-point or a cons of code-points specifying a
495 range.
496
497 Note that this function uses `openp' to open MAPFILE but ignores
498 `file-name-handler-alist' to avoid running any Lisp code. */
499
500 extern void add_to_log P_ ((char *, Lisp_Object, Lisp_Object));
501
502 static void
503 load_charset_map_from_file (charset, mapfile, control_flag)
504 struct charset *charset;
505 Lisp_Object mapfile;
506 int control_flag;
507 {
508 unsigned min_code = CHARSET_MIN_CODE (charset);
509 unsigned max_code = CHARSET_MAX_CODE (charset);
510 int fd;
511 FILE *fp;
512 int eof;
513 Lisp_Object suffixes;
514 struct charset_map_entries *head, *entries;
515 int n_entries;
516 int count = SPECPDL_INDEX ();
517
518 suffixes = Fcons (build_string (".map"),
519 Fcons (build_string (".TXT"), Qnil));
520
521 specbind (Qfile_name_handler_alist, Qnil);
522 fd = openp (Vcharset_map_path, mapfile, suffixes, NULL, Qnil);
523 unbind_to (count, Qnil);
524 if (fd < 0
525 || ! (fp = fdopen (fd, "r")))
526 error ("Failure in loading charset map: %S", SDATA (mapfile));
527
528 head = entries = ((struct charset_map_entries *)
529 alloca (sizeof (struct charset_map_entries)));
530 n_entries = 0;
531 eof = 0;
532 while (1)
533 {
534 unsigned from, to;
535 int c;
536 int idx;
537
538 from = read_hex (fp, &eof);
539 if (eof)
540 break;
541 if (getc (fp) == '-')
542 to = read_hex (fp, &eof);
543 else
544 to = from;
545 c = (int) read_hex (fp, &eof);
546
547 if (from < min_code || to > max_code || from > to || c > MAX_CHAR)
548 continue;
549
550 if (n_entries > 0 && (n_entries % 0x10000) == 0)
551 {
552 entries->next = ((struct charset_map_entries *)
553 alloca (sizeof (struct charset_map_entries)));
554 entries = entries->next;
555 }
556 idx = n_entries % 0x10000;
557 entries->entry[idx].from = from;
558 entries->entry[idx].to = to;
559 entries->entry[idx].c = c;
560 n_entries++;
561 }
562 fclose (fp);
563 close (fd);
564
565 load_charset_map (charset, head, n_entries, control_flag);
566 }
567
568 static void
569 load_charset_map_from_vector (charset, vec, control_flag)
570 struct charset *charset;
571 Lisp_Object vec;
572 int control_flag;
573 {
574 unsigned min_code = CHARSET_MIN_CODE (charset);
575 unsigned max_code = CHARSET_MAX_CODE (charset);
576 struct charset_map_entries *head, *entries;
577 int n_entries;
578 int len = ASIZE (vec);
579 int i;
580
581 if (len % 2 == 1)
582 {
583 add_to_log ("Failure in loading charset map: %V", vec, Qnil);
584 return;
585 }
586
587 head = entries = ((struct charset_map_entries *)
588 alloca (sizeof (struct charset_map_entries)));
589 n_entries = 0;
590 for (i = 0; i < len; i += 2)
591 {
592 Lisp_Object val, val2;
593 unsigned from, to;
594 int c;
595 int idx;
596
597 val = AREF (vec, i);
598 if (CONSP (val))
599 {
600 val2 = XCDR (val);
601 val = XCAR (val);
602 CHECK_NATNUM (val);
603 CHECK_NATNUM (val2);
604 from = XFASTINT (val);
605 to = XFASTINT (val2);
606 }
607 else
608 {
609 CHECK_NATNUM (val);
610 from = to = XFASTINT (val);
611 }
612 val = AREF (vec, i + 1);
613 CHECK_NATNUM (val);
614 c = XFASTINT (val);
615
616 if (from < min_code || to > max_code || from > to || c > MAX_CHAR)
617 continue;
618
619 if (n_entries > 0 && (n_entries % 0x10000) == 0)
620 {
621 entries->next = ((struct charset_map_entries *)
622 alloca (sizeof (struct charset_map_entries)));
623 entries = entries->next;
624 }
625 idx = n_entries % 0x10000;
626 entries->entry[idx].from = from;
627 entries->entry[idx].to = to;
628 entries->entry[idx].c = c;
629 n_entries++;
630 }
631
632 load_charset_map (charset, head, n_entries, control_flag);
633 }
634
635
636 /* Load a mapping table for CHARSET. CONTROL-FLAG tells what kind of
637 map it is (see the comment of load_charset_map for the detail). */
638
639 static void
640 load_charset (charset, control_flag)
641 struct charset *charset;
642 int control_flag;
643 {
644 Lisp_Object map;
645
646 if (inhibit_load_charset_map
647 && temp_charset_work
648 && charset == temp_charset_work->current
649 && ((control_flag == 2) == temp_charset_work->for_encoder))
650 return;
651
652 if (CHARSET_METHOD (charset) == CHARSET_METHOD_MAP)
653 map = CHARSET_MAP (charset);
654 else if (CHARSET_UNIFIED_P (charset))
655 map = CHARSET_UNIFY_MAP (charset);
656 if (STRINGP (map))
657 load_charset_map_from_file (charset, map, control_flag);
658 else
659 load_charset_map_from_vector (charset, map, control_flag);
660 }
661
662
663 DEFUN ("charsetp", Fcharsetp, Scharsetp, 1, 1, 0,
664 doc: /* Return non-nil if and only if OBJECT is a charset.*/)
665 (object)
666 Lisp_Object object;
667 {
668 return (CHARSETP (object) ? Qt : Qnil);
669 }
670
671
672 void map_charset_for_dump P_ ((void (*c_function) (Lisp_Object, Lisp_Object),
673 Lisp_Object function, Lisp_Object arg,
674 unsigned from, unsigned to));
675
676 void
677 map_charset_for_dump (c_function, function, arg, from, to)
678 void (*c_function) (Lisp_Object, Lisp_Object);
679 Lisp_Object function, arg;
680 unsigned from, to;
681 {
682 int from_idx = CODE_POINT_TO_INDEX (temp_charset_work->current, from);
683 int to_idx = CODE_POINT_TO_INDEX (temp_charset_work->current, to);
684 Lisp_Object range;
685 int c, stop;
686 struct gcpro gcpro1;
687
688 range = Fcons (Qnil, Qnil);
689 GCPRO1 (range);
690
691 c = temp_charset_work->min_char;
692 stop = (temp_charset_work->max_char < 0x20000
693 ? temp_charset_work->max_char : 0xFFFF);
694
695 while (1)
696 {
697 int index = GET_TEMP_CHARSET_WORK_ENCODER (c);
698
699 if (index >= from_idx && index <= to_idx)
700 {
701 if (NILP (XCAR (range)))
702 XSETCAR (range, make_number (c));
703 }
704 else if (! NILP (XCAR (range)))
705 {
706 XSETCDR (range, make_number (c - 1));
707 if (c_function)
708 (*c_function) (arg, range);
709 else
710 call2 (function, range, arg);
711 XSETCAR (range, Qnil);
712 }
713 if (c == stop)
714 {
715 if (c == temp_charset_work->max_char)
716 {
717 if (! NILP (XCAR (range)))
718 {
719 XSETCDR (range, make_number (c));
720 if (c_function)
721 (*c_function) (arg, range);
722 else
723 call2 (function, range, arg);
724 }
725 break;
726 }
727 c = 0x1FFFF;
728 stop = temp_charset_work->max_char;
729 }
730 c++;
731 }
732 UNGCPRO;
733 }
734
735 void
736 map_charset_chars (c_function, function, arg,
737 charset, from, to)
738 void (*c_function) P_ ((Lisp_Object, Lisp_Object));
739 Lisp_Object function, arg;
740 struct charset *charset;
741 unsigned from, to;
742 {
743 Lisp_Object range;
744 int partial;
745
746 partial = (from > CHARSET_MIN_CODE (charset)
747 || to < CHARSET_MAX_CODE (charset));
748
749 if (CHARSET_METHOD (charset) == CHARSET_METHOD_OFFSET)
750 {
751 int from_idx = CODE_POINT_TO_INDEX (charset, from);
752 int to_idx = CODE_POINT_TO_INDEX (charset, to);
753 int from_c = from_idx + CHARSET_CODE_OFFSET (charset);
754 int to_c = to_idx + CHARSET_CODE_OFFSET (charset);
755
756 if (CHARSET_UNIFIED_P (charset))
757 {
758 if (! CHAR_TABLE_P (CHARSET_DEUNIFIER (charset)))
759 load_charset (charset, 2);
760 if (CHAR_TABLE_P (CHARSET_DEUNIFIER (charset)))
761 map_char_table_for_charset (c_function, function,
762 CHARSET_DEUNIFIER (charset), arg,
763 partial ? charset : NULL, from, to);
764 else
765 map_charset_for_dump (c_function, function, arg, from, to);
766 }
767
768 range = Fcons (make_number (from_c), make_number (to_c));
769 if (NILP (function))
770 (*c_function) (arg, range);
771 else
772 call2 (function, range, arg);
773 }
774 else if (CHARSET_METHOD (charset) == CHARSET_METHOD_MAP)
775 {
776 if (! CHAR_TABLE_P (CHARSET_ENCODER (charset)))
777 load_charset (charset, 2);
778 if (CHAR_TABLE_P (CHARSET_ENCODER (charset)))
779 map_char_table_for_charset (c_function, function,
780 CHARSET_ENCODER (charset), arg,
781 partial ? charset : NULL, from, to);
782 else
783 map_charset_for_dump (c_function, function, arg, from, to);
784 }
785 else if (CHARSET_METHOD (charset) == CHARSET_METHOD_SUBSET)
786 {
787 Lisp_Object subset_info;
788 int offset;
789
790 subset_info = CHARSET_SUBSET (charset);
791 charset = CHARSET_FROM_ID (XFASTINT (AREF (subset_info, 0)));
792 offset = XINT (AREF (subset_info, 3));
793 from -= offset;
794 if (from < XFASTINT (AREF (subset_info, 1)))
795 from = XFASTINT (AREF (subset_info, 1));
796 to -= offset;
797 if (to > XFASTINT (AREF (subset_info, 2)))
798 to = XFASTINT (AREF (subset_info, 2));
799 map_charset_chars (c_function, function, arg, charset, from, to);
800 }
801 else /* i.e. CHARSET_METHOD_SUPERSET */
802 {
803 Lisp_Object parents;
804
805 for (parents = CHARSET_SUPERSET (charset); CONSP (parents);
806 parents = XCDR (parents))
807 {
808 int offset;
809 unsigned this_from, this_to;
810
811 charset = CHARSET_FROM_ID (XFASTINT (XCAR (XCAR (parents))));
812 offset = XINT (XCDR (XCAR (parents)));
813 this_from = from > offset ? from - offset : 0;
814 this_to = to > offset ? to - offset : 0;
815 if (this_from < CHARSET_MIN_CODE (charset))
816 this_from = CHARSET_MIN_CODE (charset);
817 if (this_to > CHARSET_MAX_CODE (charset))
818 this_to = CHARSET_MAX_CODE (charset);
819 map_charset_chars (c_function, function, arg, charset,
820 this_from, this_to);
821 }
822 }
823 }
824
825 DEFUN ("map-charset-chars", Fmap_charset_chars, Smap_charset_chars, 2, 5, 0,
826 doc: /* Call FUNCTION for all characters in CHARSET.
827 FUNCTION is called with an argument RANGE and the optional 3rd
828 argument ARG.
829
830 RANGE is a cons (FROM . TO), where FROM and TO indicate a range of
831 characters contained in CHARSET.
832
833 The optional 4th and 5th arguments FROM-CODE and TO-CODE specify the
834 range of code points (in CHARSET) of target characters. */)
835 (function, charset, arg, from_code, to_code)
836 Lisp_Object function, charset, arg, from_code, to_code;
837 {
838 struct charset *cs;
839 unsigned from, to;
840
841 CHECK_CHARSET_GET_CHARSET (charset, cs);
842 if (NILP (from_code))
843 from = CHARSET_MIN_CODE (cs);
844 else
845 {
846 CHECK_NATNUM (from_code);
847 from = XINT (from_code);
848 if (from < CHARSET_MIN_CODE (cs))
849 from = CHARSET_MIN_CODE (cs);
850 }
851 if (NILP (to_code))
852 to = CHARSET_MAX_CODE (cs);
853 else
854 {
855 CHECK_NATNUM (to_code);
856 to = XINT (to_code);
857 if (to > CHARSET_MAX_CODE (cs))
858 to = CHARSET_MAX_CODE (cs);
859 }
860 map_charset_chars (NULL, function, arg, cs, from, to);
861 return Qnil;
862 }
863
864
865 /* Define a charset according to the arguments. The Nth argument is
866 the Nth attribute of the charset (the last attribute `charset-id'
867 is not included). See the docstring of `define-charset' for the
868 detail. */
869
870 DEFUN ("define-charset-internal", Fdefine_charset_internal,
871 Sdefine_charset_internal, charset_arg_max, MANY, 0,
872 doc: /* For internal use only.
873 usage: (define-charset-internal ...) */)
874 (nargs, args)
875 int nargs;
876 Lisp_Object *args;
877 {
878 /* Charset attr vector. */
879 Lisp_Object attrs;
880 Lisp_Object val;
881 unsigned hash_code;
882 struct Lisp_Hash_Table *hash_table = XHASH_TABLE (Vcharset_hash_table);
883 int i, j;
884 struct charset charset;
885 int id;
886 int dimension;
887 int new_definition_p;
888 int nchars;
889
890 if (nargs != charset_arg_max)
891 return Fsignal (Qwrong_number_of_arguments,
892 Fcons (intern ("define-charset-internal"),
893 make_number (nargs)));
894
895 attrs = Fmake_vector (make_number (charset_attr_max), Qnil);
896
897 CHECK_SYMBOL (args[charset_arg_name]);
898 ASET (attrs, charset_name, args[charset_arg_name]);
899
900 val = args[charset_arg_code_space];
901 for (i = 0, dimension = 0, nchars = 1; i < 4; i++)
902 {
903 int min_byte, max_byte;
904
905 min_byte = XINT (Faref (val, make_number (i * 2)));
906 max_byte = XINT (Faref (val, make_number (i * 2 + 1)));
907 if (min_byte < 0 || min_byte > max_byte || max_byte >= 256)
908 error ("Invalid :code-space value");
909 charset.code_space[i * 4] = min_byte;
910 charset.code_space[i * 4 + 1] = max_byte;
911 charset.code_space[i * 4 + 2] = max_byte - min_byte + 1;
912 nchars *= charset.code_space[i * 4 + 2];
913 charset.code_space[i * 4 + 3] = nchars;
914 if (max_byte > 0)
915 dimension = i + 1;
916 }
917
918 val = args[charset_arg_dimension];
919 if (NILP (val))
920 charset.dimension = dimension;
921 else
922 {
923 CHECK_NATNUM (val);
924 charset.dimension = XINT (val);
925 if (charset.dimension < 1 || charset.dimension > 4)
926 args_out_of_range_3 (val, make_number (1), make_number (4));
927 }
928
929 charset.code_linear_p
930 = (charset.dimension == 1
931 || (charset.code_space[2] == 256
932 && (charset.dimension == 2
933 || (charset.code_space[6] == 256
934 && (charset.dimension == 3
935 || charset.code_space[10] == 256)))));
936
937 if (! charset.code_linear_p)
938 {
939 charset.code_space_mask = (unsigned char *) xmalloc (256);
940 bzero (charset.code_space_mask, 256);
941 for (i = 0; i < 4; i++)
942 for (j = charset.code_space[i * 4]; j <= charset.code_space[i * 4 + 1];
943 j++)
944 charset.code_space_mask[j] |= (1 << i);
945 }
946
947 charset.iso_chars_96 = charset.code_space[2] == 96;
948
949 charset.min_code = (charset.code_space[0]
950 | (charset.code_space[4] << 8)
951 | (charset.code_space[8] << 16)
952 | (charset.code_space[12] << 24));
953 charset.max_code = (charset.code_space[1]
954 | (charset.code_space[5] << 8)
955 | (charset.code_space[9] << 16)
956 | (charset.code_space[13] << 24));
957 charset.char_index_offset = 0;
958
959 val = args[charset_arg_min_code];
960 if (! NILP (val))
961 {
962 unsigned code;
963
964 if (INTEGERP (val))
965 code = XINT (val);
966 else
967 {
968 CHECK_CONS (val);
969 CHECK_NUMBER_CAR (val);
970 CHECK_NUMBER_CDR (val);
971 code = (XINT (XCAR (val)) << 16) | (XINT (XCDR (val)));
972 }
973 if (code < charset.min_code
974 || code > charset.max_code)
975 args_out_of_range_3 (make_number (charset.min_code),
976 make_number (charset.max_code), val);
977 charset.char_index_offset = CODE_POINT_TO_INDEX (&charset, code);
978 charset.min_code = code;
979 }
980
981 val = args[charset_arg_max_code];
982 if (! NILP (val))
983 {
984 unsigned code;
985
986 if (INTEGERP (val))
987 code = XINT (val);
988 else
989 {
990 CHECK_CONS (val);
991 CHECK_NUMBER_CAR (val);
992 CHECK_NUMBER_CDR (val);
993 code = (XINT (XCAR (val)) << 16) | (XINT (XCDR (val)));
994 }
995 if (code < charset.min_code
996 || code > charset.max_code)
997 args_out_of_range_3 (make_number (charset.min_code),
998 make_number (charset.max_code), val);
999 charset.max_code = code;
1000 }
1001
1002 charset.compact_codes_p = charset.max_code < 0x10000;
1003
1004 val = args[charset_arg_invalid_code];
1005 if (NILP (val))
1006 {
1007 if (charset.min_code > 0)
1008 charset.invalid_code = 0;
1009 else
1010 {
1011 XSETINT (val, charset.max_code + 1);
1012 if (XINT (val) == charset.max_code + 1)
1013 charset.invalid_code = charset.max_code + 1;
1014 else
1015 error ("Attribute :invalid-code must be specified");
1016 }
1017 }
1018 else
1019 {
1020 CHECK_NATNUM (val);
1021 charset.invalid_code = XFASTINT (val);
1022 }
1023
1024 val = args[charset_arg_iso_final];
1025 if (NILP (val))
1026 charset.iso_final = -1;
1027 else
1028 {
1029 CHECK_NUMBER (val);
1030 if (XINT (val) < '0' || XINT (val) > 127)
1031 error ("Invalid iso-final-char: %d", XINT (val));
1032 charset.iso_final = XINT (val);
1033 }
1034
1035 val = args[charset_arg_iso_revision];
1036 if (NILP (val))
1037 charset.iso_revision = -1;
1038 else
1039 {
1040 CHECK_NUMBER (val);
1041 if (XINT (val) > 63)
1042 args_out_of_range (make_number (63), val);
1043 charset.iso_revision = XINT (val);
1044 }
1045
1046 val = args[charset_arg_emacs_mule_id];
1047 if (NILP (val))
1048 charset.emacs_mule_id = -1;
1049 else
1050 {
1051 CHECK_NATNUM (val);
1052 if ((XINT (val) > 0 && XINT (val) <= 128) || XINT (val) >= 256)
1053 error ("Invalid emacs-mule-id: %d", XINT (val));
1054 charset.emacs_mule_id = XINT (val);
1055 }
1056
1057 charset.ascii_compatible_p = ! NILP (args[charset_arg_ascii_compatible_p]);
1058
1059 charset.supplementary_p = ! NILP (args[charset_arg_supplementary_p]);
1060
1061 charset.unified_p = 0;
1062
1063 bzero (charset.fast_map, sizeof (charset.fast_map));
1064
1065 if (! NILP (args[charset_arg_code_offset]))
1066 {
1067 val = args[charset_arg_code_offset];
1068 CHECK_NUMBER (val);
1069
1070 charset.method = CHARSET_METHOD_OFFSET;
1071 charset.code_offset = XINT (val);
1072
1073 i = CODE_POINT_TO_INDEX (&charset, charset.min_code);
1074 charset.min_char = i + charset.code_offset;
1075 i = CODE_POINT_TO_INDEX (&charset, charset.max_code);
1076 charset.max_char = i + charset.code_offset;
1077 if (charset.max_char > MAX_CHAR)
1078 error ("Unsupported max char: %d", charset.max_char);
1079
1080 i = (charset.min_char >> 7) << 7;
1081 for (; i < 0x10000 && i <= charset.max_char; i += 128)
1082 CHARSET_FAST_MAP_SET (i, charset.fast_map);
1083 i = (i >> 12) << 12;
1084 for (; i <= charset.max_char; i += 0x1000)
1085 CHARSET_FAST_MAP_SET (i, charset.fast_map);
1086 if (charset.code_offset == 0 && charset.max_char >= 0x80)
1087 charset.ascii_compatible_p = 1;
1088 }
1089 else if (! NILP (args[charset_arg_map]))
1090 {
1091 val = args[charset_arg_map];
1092 ASET (attrs, charset_map, val);
1093 charset.method = CHARSET_METHOD_MAP;
1094 }
1095 else if (! NILP (args[charset_arg_subset]))
1096 {
1097 Lisp_Object parent;
1098 Lisp_Object parent_min_code, parent_max_code, parent_code_offset;
1099 struct charset *parent_charset;
1100
1101 val = args[charset_arg_subset];
1102 parent = Fcar (val);
1103 CHECK_CHARSET_GET_CHARSET (parent, parent_charset);
1104 parent_min_code = Fnth (make_number (1), val);
1105 CHECK_NATNUM (parent_min_code);
1106 parent_max_code = Fnth (make_number (2), val);
1107 CHECK_NATNUM (parent_max_code);
1108 parent_code_offset = Fnth (make_number (3), val);
1109 CHECK_NUMBER (parent_code_offset);
1110 val = Fmake_vector (make_number (4), Qnil);
1111 ASET (val, 0, make_number (parent_charset->id));
1112 ASET (val, 1, parent_min_code);
1113 ASET (val, 2, parent_max_code);
1114 ASET (val, 3, parent_code_offset);
1115 ASET (attrs, charset_subset, val);
1116
1117 charset.method = CHARSET_METHOD_SUBSET;
1118 /* Here, we just copy the parent's fast_map. It's not accurate,
1119 but at least it works for quickly detecting which character
1120 DOESN'T belong to this charset. */
1121 for (i = 0; i < 190; i++)
1122 charset.fast_map[i] = parent_charset->fast_map[i];
1123
1124 /* We also copy these for parents. */
1125 charset.min_char = parent_charset->min_char;
1126 charset.max_char = parent_charset->max_char;
1127 }
1128 else if (! NILP (args[charset_arg_superset]))
1129 {
1130 val = args[charset_arg_superset];
1131 charset.method = CHARSET_METHOD_SUPERSET;
1132 val = Fcopy_sequence (val);
1133 ASET (attrs, charset_superset, val);
1134
1135 charset.min_char = MAX_CHAR;
1136 charset.max_char = 0;
1137 for (; ! NILP (val); val = Fcdr (val))
1138 {
1139 Lisp_Object elt, car_part, cdr_part;
1140 int this_id, offset;
1141 struct charset *this_charset;
1142
1143 elt = Fcar (val);
1144 if (CONSP (elt))
1145 {
1146 car_part = XCAR (elt);
1147 cdr_part = XCDR (elt);
1148 CHECK_CHARSET_GET_ID (car_part, this_id);
1149 CHECK_NUMBER (cdr_part);
1150 offset = XINT (cdr_part);
1151 }
1152 else
1153 {
1154 CHECK_CHARSET_GET_ID (elt, this_id);
1155 offset = 0;
1156 }
1157 XSETCAR (val, Fcons (make_number (this_id), make_number (offset)));
1158
1159 this_charset = CHARSET_FROM_ID (this_id);
1160 if (charset.min_char > this_charset->min_char)
1161 charset.min_char = this_charset->min_char;
1162 if (charset.max_char < this_charset->max_char)
1163 charset.max_char = this_charset->max_char;
1164 for (i = 0; i < 190; i++)
1165 charset.fast_map[i] |= this_charset->fast_map[i];
1166 }
1167 }
1168 else
1169 error ("None of :code-offset, :map, :parents are specified");
1170
1171 val = args[charset_arg_unify_map];
1172 if (! NILP (val) && !STRINGP (val))
1173 CHECK_VECTOR (val);
1174 ASET (attrs, charset_unify_map, val);
1175
1176 CHECK_LIST (args[charset_arg_plist]);
1177 ASET (attrs, charset_plist, args[charset_arg_plist]);
1178
1179 charset.hash_index = hash_lookup (hash_table, args[charset_arg_name],
1180 &hash_code);
1181 if (charset.hash_index >= 0)
1182 {
1183 new_definition_p = 0;
1184 id = XFASTINT (CHARSET_SYMBOL_ID (args[charset_arg_name]));
1185 HASH_VALUE (hash_table, charset.hash_index) = attrs;
1186 }
1187 else
1188 {
1189 charset.hash_index = hash_put (hash_table, args[charset_arg_name], attrs,
1190 hash_code);
1191 if (charset_table_used == charset_table_size)
1192 {
1193 struct charset *new_table
1194 = (struct charset *) xmalloc (sizeof (struct charset)
1195 * (charset_table_size + 16));
1196 bcopy (charset_table, new_table,
1197 sizeof (struct charset) * charset_table_size);
1198 charset_table_size += 16;
1199 charset_table = new_table;
1200 }
1201 id = charset_table_used++;
1202 new_definition_p = 1;
1203 }
1204
1205 ASET (attrs, charset_id, make_number (id));
1206 charset.id = id;
1207 charset_table[id] = charset;
1208
1209 if (charset.method == CHARSET_METHOD_MAP)
1210 {
1211 load_charset (&charset, 0);
1212 charset_table[id] = charset;
1213 }
1214
1215 if (charset.iso_final >= 0)
1216 {
1217 ISO_CHARSET_TABLE (charset.dimension, charset.iso_chars_96,
1218 charset.iso_final) = id;
1219 if (new_definition_p)
1220 Viso_2022_charset_list = nconc2 (Viso_2022_charset_list,
1221 Fcons (make_number (id), Qnil));
1222 if (ISO_CHARSET_TABLE (1, 0, 'J') == id)
1223 charset_jisx0201_roman = id;
1224 else if (ISO_CHARSET_TABLE (2, 0, '@') == id)
1225 charset_jisx0208_1978 = id;
1226 else if (ISO_CHARSET_TABLE (2, 0, 'B') == id)
1227 charset_jisx0208 = id;
1228 else if (ISO_CHARSET_TABLE (2, 0, 'C') == id)
1229 charset_ksc5601 = id;
1230 }
1231
1232 if (charset.emacs_mule_id >= 0)
1233 {
1234 emacs_mule_charset[charset.emacs_mule_id] = CHARSET_FROM_ID (id);
1235 if (charset.emacs_mule_id < 0xA0)
1236 emacs_mule_bytes[charset.emacs_mule_id] = charset.dimension + 1;
1237 else
1238 emacs_mule_bytes[charset.emacs_mule_id] = charset.dimension + 2;
1239 if (new_definition_p)
1240 Vemacs_mule_charset_list = nconc2 (Vemacs_mule_charset_list,
1241 Fcons (make_number (id), Qnil));
1242 }
1243
1244 if (new_definition_p)
1245 {
1246 Vcharset_list = Fcons (args[charset_arg_name], Vcharset_list);
1247 if (charset.supplementary_p)
1248 Vcharset_ordered_list = nconc2 (Vcharset_ordered_list,
1249 Fcons (make_number (id), Qnil));
1250 else
1251 {
1252 Lisp_Object tail;
1253
1254 for (tail = Vcharset_ordered_list; CONSP (tail); tail = XCDR (tail))
1255 {
1256 struct charset *cs = CHARSET_FROM_ID (XINT (XCAR (tail)));
1257
1258 if (cs->supplementary_p)
1259 break;
1260 }
1261 if (EQ (tail, Vcharset_ordered_list))
1262 Vcharset_ordered_list = Fcons (make_number (id),
1263 Vcharset_ordered_list);
1264 else if (NILP (tail))
1265 Vcharset_ordered_list = nconc2 (Vcharset_ordered_list,
1266 Fcons (make_number (id), Qnil));
1267 else
1268 {
1269 val = Fcons (XCAR (tail), XCDR (tail));
1270 XSETCDR (tail, val);
1271 XSETCAR (tail, make_number (id));
1272 }
1273 }
1274 charset_ordered_list_tick++;
1275 }
1276
1277 return Qnil;
1278 }
1279
1280
1281 /* Same as Fdefine_charset_internal but arguments are more convenient
1282 to call from C (typically in syms_of_charset). This can define a
1283 charset of `offset' method only. Return the ID of the new
1284 charset. */
1285
1286 static int
1287 define_charset_internal (name, dimension, code_space, min_code, max_code,
1288 iso_final, iso_revision, emacs_mule_id,
1289 ascii_compatible, supplementary,
1290 code_offset)
1291 Lisp_Object name;
1292 int dimension;
1293 unsigned char *code_space;
1294 unsigned min_code, max_code;
1295 int iso_final, iso_revision, emacs_mule_id;
1296 int ascii_compatible, supplementary;
1297 int code_offset;
1298 {
1299 Lisp_Object args[charset_arg_max];
1300 Lisp_Object plist[14];
1301 Lisp_Object val;
1302 int i;
1303
1304 args[charset_arg_name] = name;
1305 args[charset_arg_dimension] = make_number (dimension);
1306 val = Fmake_vector (make_number (8), make_number (0));
1307 for (i = 0; i < 8; i++)
1308 ASET (val, i, make_number (code_space[i]));
1309 args[charset_arg_code_space] = val;
1310 args[charset_arg_min_code] = make_number (min_code);
1311 args[charset_arg_max_code] = make_number (max_code);
1312 args[charset_arg_iso_final]
1313 = (iso_final < 0 ? Qnil : make_number (iso_final));
1314 args[charset_arg_iso_revision] = make_number (iso_revision);
1315 args[charset_arg_emacs_mule_id]
1316 = (emacs_mule_id < 0 ? Qnil : make_number (emacs_mule_id));
1317 args[charset_arg_ascii_compatible_p] = ascii_compatible ? Qt : Qnil;
1318 args[charset_arg_supplementary_p] = supplementary ? Qt : Qnil;
1319 args[charset_arg_invalid_code] = Qnil;
1320 args[charset_arg_code_offset] = make_number (code_offset);
1321 args[charset_arg_map] = Qnil;
1322 args[charset_arg_subset] = Qnil;
1323 args[charset_arg_superset] = Qnil;
1324 args[charset_arg_unify_map] = Qnil;
1325
1326 plist[0] = intern (":name");
1327 plist[1] = args[charset_arg_name];
1328 plist[2] = intern (":dimension");
1329 plist[3] = args[charset_arg_dimension];
1330 plist[4] = intern (":code-space");
1331 plist[5] = args[charset_arg_code_space];
1332 plist[6] = intern (":iso-final-char");
1333 plist[7] = args[charset_arg_iso_final];
1334 plist[8] = intern (":emacs-mule-id");
1335 plist[9] = args[charset_arg_emacs_mule_id];
1336 plist[10] = intern (":ascii-compatible-p");
1337 plist[11] = args[charset_arg_ascii_compatible_p];
1338 plist[12] = intern (":code-offset");
1339 plist[13] = args[charset_arg_code_offset];
1340
1341 args[charset_arg_plist] = Flist (14, plist);
1342 Fdefine_charset_internal (charset_arg_max, args);
1343
1344 return XINT (CHARSET_SYMBOL_ID (name));
1345 }
1346
1347
1348 DEFUN ("define-charset-alias", Fdefine_charset_alias,
1349 Sdefine_charset_alias, 2, 2, 0,
1350 doc: /* Define ALIAS as an alias for charset CHARSET. */)
1351 (alias, charset)
1352 Lisp_Object alias, charset;
1353 {
1354 Lisp_Object attr;
1355
1356 CHECK_CHARSET_GET_ATTR (charset, attr);
1357 Fputhash (alias, attr, Vcharset_hash_table);
1358 Vcharset_list = Fcons (alias, Vcharset_list);
1359 return Qnil;
1360 }
1361
1362
1363 DEFUN ("charset-plist", Fcharset_plist, Scharset_plist, 1, 1, 0,
1364 doc: /* Return the property list of CHARSET. */)
1365 (charset)
1366 Lisp_Object charset;
1367 {
1368 Lisp_Object attrs;
1369
1370 CHECK_CHARSET_GET_ATTR (charset, attrs);
1371 return CHARSET_ATTR_PLIST (attrs);
1372 }
1373
1374
1375 DEFUN ("set-charset-plist", Fset_charset_plist, Sset_charset_plist, 2, 2, 0,
1376 doc: /* Set CHARSET's property list to PLIST. */)
1377 (charset, plist)
1378 Lisp_Object charset, plist;
1379 {
1380 Lisp_Object attrs;
1381
1382 CHECK_CHARSET_GET_ATTR (charset, attrs);
1383 CHARSET_ATTR_PLIST (attrs) = plist;
1384 return plist;
1385 }
1386
1387
1388 DEFUN ("unify-charset", Funify_charset, Sunify_charset, 1, 3, 0,
1389 doc: /* Unify characters of CHARSET with Unicode.
1390 This means reading the relevant file and installing the table defined
1391 by CHARSET's `:unify-map' property.
1392
1393 Optional second arg UNIFY-MAP is a file name string or a vector. It has
1394 the same meaning as the `:unify-map' attribute in the function
1395 `define-charset' (which see).
1396
1397 Optional third argument DEUNIFY, if non-nil, means to de-unify CHARSET. */)
1398 (charset, unify_map, deunify)
1399 Lisp_Object charset, unify_map, deunify;
1400 {
1401 int id;
1402 struct charset *cs;
1403
1404 CHECK_CHARSET_GET_ID (charset, id);
1405 cs = CHARSET_FROM_ID (id);
1406 if (NILP (deunify)
1407 ? CHARSET_UNIFIED_P (cs) && ! NILP (CHARSET_DEUNIFIER (cs))
1408 : ! CHARSET_UNIFIED_P (cs))
1409 return Qnil;
1410
1411 CHARSET_UNIFIED_P (cs) = 0;
1412 if (NILP (deunify))
1413 {
1414 if (CHARSET_METHOD (cs) != CHARSET_METHOD_OFFSET
1415 || CHARSET_CODE_OFFSET (cs) < 0x110000)
1416 error ("Can't unify charset: %s", SDATA (SYMBOL_NAME (charset)));
1417 if (NILP (unify_map))
1418 unify_map = CHARSET_UNIFY_MAP (cs);
1419 else
1420 {
1421 if (! STRINGP (unify_map) && ! VECTORP (unify_map))
1422 signal_error ("Bad unify-map", unify_map);
1423 CHARSET_UNIFY_MAP (cs) = unify_map;
1424 }
1425 if (NILP (Vchar_unify_table))
1426 Vchar_unify_table = Fmake_char_table (Qnil, Qnil);
1427 char_table_set_range (Vchar_unify_table,
1428 cs->min_char, cs->max_char, charset);
1429 CHARSET_UNIFIED_P (cs) = 1;
1430 }
1431 else if (CHAR_TABLE_P (Vchar_unify_table))
1432 {
1433 int min_code = CHARSET_MIN_CODE (cs);
1434 int max_code = CHARSET_MAX_CODE (cs);
1435 int min_char = DECODE_CHAR (cs, min_code);
1436 int max_char = DECODE_CHAR (cs, max_code);
1437
1438 char_table_set_range (Vchar_unify_table, min_char, max_char, Qnil);
1439 }
1440
1441 return Qnil;
1442 }
1443
1444 DEFUN ("get-unused-iso-final-char", Fget_unused_iso_final_char,
1445 Sget_unused_iso_final_char, 2, 2, 0,
1446 doc: /*
1447 Return an unused ISO final char for a charset of DIMENSION and CHARS.
1448 DIMENSION is the number of bytes to represent a character: 1 or 2.
1449 CHARS is the number of characters in a dimension: 94 or 96.
1450
1451 This final char is for private use, thus the range is `0' (48) .. `?' (63).
1452 If there's no unused final char for the specified kind of charset,
1453 return nil. */)
1454 (dimension, chars)
1455 Lisp_Object dimension, chars;
1456 {
1457 int final_char;
1458
1459 CHECK_NUMBER (dimension);
1460 CHECK_NUMBER (chars);
1461 if (XINT (dimension) != 1 && XINT (dimension) != 2 && XINT (dimension) != 3)
1462 args_out_of_range_3 (dimension, make_number (1), make_number (3));
1463 if (XINT (chars) != 94 && XINT (chars) != 96)
1464 args_out_of_range_3 (chars, make_number (94), make_number (96));
1465 for (final_char = '0'; final_char <= '?'; final_char++)
1466 if (ISO_CHARSET_TABLE (XINT (dimension), XINT (chars), final_char) < 0)
1467 break;
1468 return (final_char <= '?' ? make_number (final_char) : Qnil);
1469 }
1470
1471 static void
1472 check_iso_charset_parameter (dimension, chars, final_char)
1473 Lisp_Object dimension, chars, final_char;
1474 {
1475 CHECK_NATNUM (dimension);
1476 CHECK_NATNUM (chars);
1477 CHECK_NATNUM (final_char);
1478
1479 if (XINT (dimension) > 3)
1480 error ("Invalid DIMENSION %d, it should be 1, 2, or 3", XINT (dimension));
1481 if (XINT (chars) != 94 && XINT (chars) != 96)
1482 error ("Invalid CHARS %d, it should be 94 or 96", XINT (chars));
1483 if (XINT (final_char) < '0' || XINT (final_char) > '~')
1484 error ("Invalid FINAL-CHAR %c, it should be `0'..`~'", XINT (chars));
1485 }
1486
1487
1488 DEFUN ("declare-equiv-charset", Fdeclare_equiv_charset, Sdeclare_equiv_charset,
1489 4, 4, 0,
1490 doc: /* Declare an equivalent charset for ISO-2022 decoding.
1491
1492 On decoding by an ISO-2022 base coding system, when a charset
1493 specified by DIMENSION, CHARS, and FINAL-CHAR is designated, behave as
1494 if CHARSET is designated instead. */)
1495 (dimension, chars, final_char, charset)
1496 Lisp_Object dimension, chars, final_char, charset;
1497 {
1498 int id;
1499 int chars_flag;
1500
1501 CHECK_CHARSET_GET_ID (charset, id);
1502 check_iso_charset_parameter (dimension, chars, final_char);
1503 chars_flag = XINT (chars) == 96;
1504 ISO_CHARSET_TABLE (XINT (dimension), chars_flag, XINT (final_char)) = id;
1505 return Qnil;
1506 }
1507
1508
1509 /* Return information about charsets in the text at PTR of NBYTES
1510 bytes, which are NCHARS characters. The value is:
1511
1512 0: Each character is represented by one byte. This is always
1513 true for a unibyte string. For a multibyte string, true if
1514 it contains only ASCII characters.
1515
1516 1: No charsets other than ascii, control-1, and latin-1 are
1517 found.
1518
1519 2: Otherwise.
1520 */
1521
1522 int
1523 string_xstring_p (string)
1524 Lisp_Object string;
1525 {
1526 const unsigned char *p = SDATA (string);
1527 const unsigned char *endp = p + SBYTES (string);
1528
1529 if (SCHARS (string) == SBYTES (string))
1530 return 0;
1531
1532 while (p < endp)
1533 {
1534 int c = STRING_CHAR_ADVANCE (p);
1535
1536 if (c >= 0x100)
1537 return 2;
1538 }
1539 return 1;
1540 }
1541
1542
1543 /* Find charsets in the string at PTR of NCHARS and NBYTES.
1544
1545 CHARSETS is a vector. If Nth element is non-nil, it means the
1546 charset whose id is N is already found.
1547
1548 It may lookup a translation table TABLE if supplied. */
1549
1550 static void
1551 find_charsets_in_text (ptr, nchars, nbytes, charsets, table, multibyte)
1552 const unsigned char *ptr;
1553 EMACS_INT nchars, nbytes;
1554 Lisp_Object charsets, table;
1555 int multibyte;
1556 {
1557 const unsigned char *pend = ptr + nbytes;
1558
1559 if (nchars == nbytes)
1560 {
1561 if (multibyte)
1562 ASET (charsets, charset_ascii, Qt);
1563 else
1564 while (ptr < pend)
1565 {
1566 int c = *ptr++;
1567
1568 if (!NILP (table))
1569 c = translate_char (table, c);
1570 if (ASCII_BYTE_P (c))
1571 ASET (charsets, charset_ascii, Qt);
1572 else
1573 ASET (charsets, charset_eight_bit, Qt);
1574 }
1575 }
1576 else
1577 {
1578 while (ptr < pend)
1579 {
1580 int c = STRING_CHAR_ADVANCE (ptr);
1581 struct charset *charset;
1582
1583 if (!NILP (table))
1584 c = translate_char (table, c);
1585 charset = CHAR_CHARSET (c);
1586 ASET (charsets, CHARSET_ID (charset), Qt);
1587 }
1588 }
1589 }
1590
1591 DEFUN ("find-charset-region", Ffind_charset_region, Sfind_charset_region,
1592 2, 3, 0,
1593 doc: /* Return a list of charsets in the region between BEG and END.
1594 BEG and END are buffer positions.
1595 Optional arg TABLE if non-nil is a translation table to look up.
1596
1597 If the current buffer is unibyte, the returned list may contain
1598 only `ascii', `eight-bit-control', and `eight-bit-graphic'. */)
1599 (beg, end, table)
1600 Lisp_Object beg, end, table;
1601 {
1602 Lisp_Object charsets;
1603 EMACS_INT from, from_byte, to, stop, stop_byte;
1604 int i;
1605 Lisp_Object val;
1606 int multibyte = ! NILP (current_buffer->enable_multibyte_characters);
1607
1608 validate_region (&beg, &end);
1609 from = XFASTINT (beg);
1610 stop = to = XFASTINT (end);
1611
1612 if (from < GPT && GPT < to)
1613 {
1614 stop = GPT;
1615 stop_byte = GPT_BYTE;
1616 }
1617 else
1618 stop_byte = CHAR_TO_BYTE (stop);
1619
1620 from_byte = CHAR_TO_BYTE (from);
1621
1622 charsets = Fmake_vector (make_number (charset_table_used), Qnil);
1623 while (1)
1624 {
1625 find_charsets_in_text (BYTE_POS_ADDR (from_byte), stop - from,
1626 stop_byte - from_byte, charsets, table,
1627 multibyte);
1628 if (stop < to)
1629 {
1630 from = stop, from_byte = stop_byte;
1631 stop = to, stop_byte = CHAR_TO_BYTE (stop);
1632 }
1633 else
1634 break;
1635 }
1636
1637 val = Qnil;
1638 for (i = charset_table_used - 1; i >= 0; i--)
1639 if (!NILP (AREF (charsets, i)))
1640 val = Fcons (CHARSET_NAME (charset_table + i), val);
1641 return val;
1642 }
1643
1644 DEFUN ("find-charset-string", Ffind_charset_string, Sfind_charset_string,
1645 1, 2, 0,
1646 doc: /* Return a list of charsets in STR.
1647 Optional arg TABLE if non-nil is a translation table to look up.
1648
1649 If STR is unibyte, the returned list may contain
1650 only `ascii', `eight-bit-control', and `eight-bit-graphic'. */)
1651 (str, table)
1652 Lisp_Object str, table;
1653 {
1654 Lisp_Object charsets;
1655 int i;
1656 Lisp_Object val;
1657
1658 CHECK_STRING (str);
1659
1660 charsets = Fmake_vector (make_number (charset_table_used), Qnil);
1661 find_charsets_in_text (SDATA (str), SCHARS (str), SBYTES (str),
1662 charsets, table,
1663 STRING_MULTIBYTE (str));
1664 val = Qnil;
1665 for (i = charset_table_used - 1; i >= 0; i--)
1666 if (!NILP (AREF (charsets, i)))
1667 val = Fcons (CHARSET_NAME (charset_table + i), val);
1668 return val;
1669 }
1670
1671 \f
1672
1673 /* Return a unified character code for C (>= 0x110000). VAL is a
1674 value of Vchar_unify_table for C; i.e. it is nil, an integer, or a
1675 charset symbol. */
1676 int
1677 maybe_unify_char (c, val)
1678 int c;
1679 Lisp_Object val;
1680 {
1681 struct charset *charset;
1682
1683 if (INTEGERP (val))
1684 return XINT (val);
1685 if (NILP (val))
1686 return c;
1687
1688 CHECK_CHARSET_GET_CHARSET (val, charset);
1689 load_charset (charset, 1);
1690 if (! inhibit_load_charset_map)
1691 {
1692 val = CHAR_TABLE_REF (Vchar_unify_table, c);
1693 if (! NILP (val))
1694 c = XINT (val);
1695 }
1696 else
1697 {
1698 int code_index = c - CHARSET_CODE_OFFSET (charset);
1699 int unified = GET_TEMP_CHARSET_WORK_DECODER (code_index);
1700
1701 if (unified > 0)
1702 c = unified;
1703 }
1704 return c;
1705 }
1706
1707
1708 /* Return a character correponding to the code-point CODE of
1709 CHARSET. */
1710
1711 int
1712 decode_char (charset, code)
1713 struct charset *charset;
1714 unsigned code;
1715 {
1716 int c, char_index;
1717 enum charset_method method = CHARSET_METHOD (charset);
1718
1719 if (code < CHARSET_MIN_CODE (charset) || code > CHARSET_MAX_CODE (charset))
1720 return -1;
1721
1722 if (method == CHARSET_METHOD_SUBSET)
1723 {
1724 Lisp_Object subset_info;
1725
1726 subset_info = CHARSET_SUBSET (charset);
1727 charset = CHARSET_FROM_ID (XFASTINT (AREF (subset_info, 0)));
1728 code -= XINT (AREF (subset_info, 3));
1729 if (code < XFASTINT (AREF (subset_info, 1))
1730 || code > XFASTINT (AREF (subset_info, 2)))
1731 c = -1;
1732 else
1733 c = DECODE_CHAR (charset, code);
1734 }
1735 else if (method == CHARSET_METHOD_SUPERSET)
1736 {
1737 Lisp_Object parents;
1738
1739 parents = CHARSET_SUPERSET (charset);
1740 c = -1;
1741 for (; CONSP (parents); parents = XCDR (parents))
1742 {
1743 int id = XINT (XCAR (XCAR (parents)));
1744 int code_offset = XINT (XCDR (XCAR (parents)));
1745 unsigned this_code = code - code_offset;
1746
1747 charset = CHARSET_FROM_ID (id);
1748 if ((c = DECODE_CHAR (charset, this_code)) >= 0)
1749 break;
1750 }
1751 }
1752 else
1753 {
1754 char_index = CODE_POINT_TO_INDEX (charset, code);
1755 if (char_index < 0)
1756 return -1;
1757
1758 if (method == CHARSET_METHOD_MAP)
1759 {
1760 Lisp_Object decoder;
1761
1762 decoder = CHARSET_DECODER (charset);
1763 if (! VECTORP (decoder))
1764 {
1765 load_charset (charset, 1);
1766 decoder = CHARSET_DECODER (charset);
1767 }
1768 if (VECTORP (decoder))
1769 c = XINT (AREF (decoder, char_index));
1770 else
1771 c = GET_TEMP_CHARSET_WORK_DECODER (char_index);
1772 }
1773 else /* method == CHARSET_METHOD_OFFSET */
1774 {
1775 c = char_index + CHARSET_CODE_OFFSET (charset);
1776 if (CHARSET_UNIFIED_P (charset)
1777 && c > MAX_UNICODE_CHAR)
1778 MAYBE_UNIFY_CHAR (c);
1779 }
1780 }
1781
1782 return c;
1783 }
1784
1785 /* Variable used temporarily by the macro ENCODE_CHAR. */
1786 Lisp_Object charset_work;
1787
1788 /* Return a code-point of CHAR in CHARSET. If CHAR doesn't belong to
1789 CHARSET, return CHARSET_INVALID_CODE (CHARSET). If STRICT is true,
1790 use CHARSET's strict_max_char instead of max_char. */
1791
1792 unsigned
1793 encode_char (charset, c)
1794 struct charset *charset;
1795 int c;
1796 {
1797 unsigned code;
1798 enum charset_method method = CHARSET_METHOD (charset);
1799
1800 if (CHARSET_UNIFIED_P (charset))
1801 {
1802 Lisp_Object deunifier;
1803 int code_index = -1;
1804
1805 deunifier = CHARSET_DEUNIFIER (charset);
1806 if (! CHAR_TABLE_P (deunifier))
1807 {
1808 load_charset (charset, 2);
1809 deunifier = CHARSET_DEUNIFIER (charset);
1810 }
1811 if (CHAR_TABLE_P (deunifier))
1812 {
1813 Lisp_Object deunified = CHAR_TABLE_REF (deunifier, c);
1814
1815 if (INTEGERP (deunified))
1816 code_index = XINT (deunified);
1817 }
1818 else
1819 {
1820 code_index = GET_TEMP_CHARSET_WORK_ENCODER (c);
1821 }
1822 if (code_index >= 0)
1823 c = CHARSET_CODE_OFFSET (charset) + code_index;
1824 }
1825
1826 if (method == CHARSET_METHOD_SUBSET)
1827 {
1828 Lisp_Object subset_info;
1829 struct charset *this_charset;
1830
1831 subset_info = CHARSET_SUBSET (charset);
1832 this_charset = CHARSET_FROM_ID (XFASTINT (AREF (subset_info, 0)));
1833 code = ENCODE_CHAR (this_charset, c);
1834 if (code == CHARSET_INVALID_CODE (this_charset)
1835 || code < XFASTINT (AREF (subset_info, 1))
1836 || code > XFASTINT (AREF (subset_info, 2)))
1837 return CHARSET_INVALID_CODE (charset);
1838 code += XINT (AREF (subset_info, 3));
1839 return code;
1840 }
1841
1842 if (method == CHARSET_METHOD_SUPERSET)
1843 {
1844 Lisp_Object parents;
1845
1846 parents = CHARSET_SUPERSET (charset);
1847 for (; CONSP (parents); parents = XCDR (parents))
1848 {
1849 int id = XINT (XCAR (XCAR (parents)));
1850 int code_offset = XINT (XCDR (XCAR (parents)));
1851 struct charset *this_charset = CHARSET_FROM_ID (id);
1852
1853 code = ENCODE_CHAR (this_charset, c);
1854 if (code != CHARSET_INVALID_CODE (this_charset))
1855 return code + code_offset;
1856 }
1857 return CHARSET_INVALID_CODE (charset);
1858 }
1859
1860 if (! CHARSET_FAST_MAP_REF ((c), charset->fast_map)
1861 || c < CHARSET_MIN_CHAR (charset) || c > CHARSET_MAX_CHAR (charset))
1862 return CHARSET_INVALID_CODE (charset);
1863
1864 if (method == CHARSET_METHOD_MAP)
1865 {
1866 Lisp_Object encoder;
1867 Lisp_Object val;
1868
1869 encoder = CHARSET_ENCODER (charset);
1870 if (! CHAR_TABLE_P (CHARSET_ENCODER (charset)))
1871 {
1872 load_charset (charset, 2);
1873 encoder = CHARSET_ENCODER (charset);
1874 }
1875 if (CHAR_TABLE_P (encoder))
1876 {
1877 val = CHAR_TABLE_REF (encoder, c);
1878 if (NILP (val))
1879 return CHARSET_INVALID_CODE (charset);
1880 code = XINT (val);
1881 if (! CHARSET_COMPACT_CODES_P (charset))
1882 code = INDEX_TO_CODE_POINT (charset, code);
1883 }
1884 else
1885 {
1886 code = GET_TEMP_CHARSET_WORK_ENCODER (c);
1887 code = INDEX_TO_CODE_POINT (charset, code);
1888 }
1889 }
1890 else /* method == CHARSET_METHOD_OFFSET */
1891 {
1892 int code_index = c - CHARSET_CODE_OFFSET (charset);
1893
1894 code = INDEX_TO_CODE_POINT (charset, code_index);
1895 }
1896
1897 return code;
1898 }
1899
1900
1901 DEFUN ("decode-char", Fdecode_char, Sdecode_char, 2, 3, 0,
1902 doc: /* Decode the pair of CHARSET and CODE-POINT into a character.
1903 Return nil if CODE-POINT is not valid in CHARSET.
1904
1905 CODE-POINT may be a cons (HIGHER-16-BIT-VALUE . LOWER-16-BIT-VALUE).
1906
1907 Optional argument RESTRICTION specifies a way to map the pair of CCS
1908 and CODE-POINT to a character. Currently not supported and just ignored. */)
1909 (charset, code_point, restriction)
1910 Lisp_Object charset, code_point, restriction;
1911 {
1912 int c, id;
1913 unsigned code;
1914 struct charset *charsetp;
1915
1916 CHECK_CHARSET_GET_ID (charset, id);
1917 if (CONSP (code_point))
1918 {
1919 CHECK_NATNUM_CAR (code_point);
1920 CHECK_NATNUM_CDR (code_point);
1921 code = (XINT (XCAR (code_point)) << 16) | (XINT (XCDR (code_point)));
1922 }
1923 else
1924 {
1925 CHECK_NATNUM (code_point);
1926 code = XINT (code_point);
1927 }
1928 charsetp = CHARSET_FROM_ID (id);
1929 c = DECODE_CHAR (charsetp, code);
1930 return (c >= 0 ? make_number (c) : Qnil);
1931 }
1932
1933
1934 DEFUN ("encode-char", Fencode_char, Sencode_char, 2, 3, 0,
1935 doc: /* Encode the character CH into a code-point of CHARSET.
1936 Return nil if CHARSET doesn't include CH.
1937
1938 Optional argument RESTRICTION specifies a way to map CH to a
1939 code-point in CCS. Currently not supported and just ignored. */)
1940 (ch, charset, restriction)
1941 Lisp_Object ch, charset, restriction;
1942 {
1943 int id;
1944 unsigned code;
1945 struct charset *charsetp;
1946
1947 CHECK_CHARSET_GET_ID (charset, id);
1948 CHECK_NATNUM (ch);
1949 charsetp = CHARSET_FROM_ID (id);
1950 code = ENCODE_CHAR (charsetp, XINT (ch));
1951 if (code == CHARSET_INVALID_CODE (charsetp))
1952 return Qnil;
1953 if (code > 0x7FFFFFF)
1954 return Fcons (make_number (code >> 16), make_number (code & 0xFFFF));
1955 return make_number (code);
1956 }
1957
1958
1959 DEFUN ("make-char", Fmake_char, Smake_char, 1, 5, 0,
1960 doc:
1961 /* Return a character of CHARSET whose position codes are CODEn.
1962
1963 CODE1 through CODE4 are optional, but if you don't supply sufficient
1964 position codes, it is assumed that the minimum code in each dimension
1965 is specified. */)
1966 (charset, code1, code2, code3, code4)
1967 Lisp_Object charset, code1, code2, code3, code4;
1968 {
1969 int id, dimension;
1970 struct charset *charsetp;
1971 unsigned code;
1972 int c;
1973
1974 CHECK_CHARSET_GET_ID (charset, id);
1975 charsetp = CHARSET_FROM_ID (id);
1976
1977 dimension = CHARSET_DIMENSION (charsetp);
1978 if (NILP (code1))
1979 code = (CHARSET_ASCII_COMPATIBLE_P (charsetp)
1980 ? 0 : CHARSET_MIN_CODE (charsetp));
1981 else
1982 {
1983 CHECK_NATNUM (code1);
1984 if (XFASTINT (code1) >= 0x100)
1985 args_out_of_range (make_number (0xFF), code1);
1986 code = XFASTINT (code1);
1987
1988 if (dimension > 1)
1989 {
1990 code <<= 8;
1991 if (NILP (code2))
1992 code |= charsetp->code_space[(dimension - 2) * 4];
1993 else
1994 {
1995 CHECK_NATNUM (code2);
1996 if (XFASTINT (code2) >= 0x100)
1997 args_out_of_range (make_number (0xFF), code2);
1998 code |= XFASTINT (code2);
1999 }
2000
2001 if (dimension > 2)
2002 {
2003 code <<= 8;
2004 if (NILP (code3))
2005 code |= charsetp->code_space[(dimension - 3) * 4];
2006 else
2007 {
2008 CHECK_NATNUM (code3);
2009 if (XFASTINT (code3) >= 0x100)
2010 args_out_of_range (make_number (0xFF), code3);
2011 code |= XFASTINT (code3);
2012 }
2013
2014 if (dimension > 3)
2015 {
2016 code <<= 8;
2017 if (NILP (code4))
2018 code |= charsetp->code_space[0];
2019 else
2020 {
2021 CHECK_NATNUM (code4);
2022 if (XFASTINT (code4) >= 0x100)
2023 args_out_of_range (make_number (0xFF), code4);
2024 code |= XFASTINT (code4);
2025 }
2026 }
2027 }
2028 }
2029 }
2030
2031 if (CHARSET_ISO_FINAL (charsetp) >= 0)
2032 code &= 0x7F7F7F7F;
2033 c = DECODE_CHAR (charsetp, code);
2034 if (c < 0)
2035 error ("Invalid code(s)");
2036 return make_number (c);
2037 }
2038
2039
2040 /* Return the first charset in CHARSET_LIST that contains C.
2041 CHARSET_LIST is a list of charset IDs. If it is nil, use
2042 Vcharset_ordered_list. */
2043
2044 struct charset *
2045 char_charset (c, charset_list, code_return)
2046 int c;
2047 Lisp_Object charset_list;
2048 unsigned *code_return;
2049 {
2050 int maybe_null = 0;
2051
2052 if (NILP (charset_list))
2053 charset_list = Vcharset_ordered_list;
2054 else
2055 maybe_null = 1;
2056
2057 while (CONSP (charset_list))
2058 {
2059 struct charset *charset = CHARSET_FROM_ID (XINT (XCAR (charset_list)));
2060 unsigned code = ENCODE_CHAR (charset, c);
2061
2062 if (code != CHARSET_INVALID_CODE (charset))
2063 {
2064 if (code_return)
2065 *code_return = code;
2066 return charset;
2067 }
2068 charset_list = XCDR (charset_list);
2069 if (c <= MAX_UNICODE_CHAR
2070 && EQ (charset_list, Vcharset_non_preferred_head))
2071 return CHARSET_FROM_ID (charset_unicode);
2072 }
2073 return (maybe_null ? NULL
2074 : c <= MAX_5_BYTE_CHAR ? CHARSET_FROM_ID (charset_emacs)
2075 : CHARSET_FROM_ID (charset_eight_bit));
2076 }
2077
2078
2079 DEFUN ("split-char", Fsplit_char, Ssplit_char, 1, 1, 0,
2080 doc:
2081 /*Return list of charset and one to four position-codes of CH.
2082 The charset is decided by the current priority order of charsets.
2083 A position-code is a byte value of each dimension of the code-point of
2084 CH in the charset. */)
2085 (ch)
2086 Lisp_Object ch;
2087 {
2088 struct charset *charset;
2089 int c, dimension;
2090 unsigned code;
2091 Lisp_Object val;
2092
2093 CHECK_CHARACTER (ch);
2094 c = XFASTINT (ch);
2095 charset = CHAR_CHARSET (c);
2096 if (! charset)
2097 abort ();
2098 code = ENCODE_CHAR (charset, c);
2099 if (code == CHARSET_INVALID_CODE (charset))
2100 abort ();
2101 dimension = CHARSET_DIMENSION (charset);
2102 for (val = Qnil; dimension > 0; dimension--)
2103 {
2104 val = Fcons (make_number (code & 0xFF), val);
2105 code >>= 8;
2106 }
2107 return Fcons (CHARSET_NAME (charset), val);
2108 }
2109
2110
2111 DEFUN ("char-charset", Fchar_charset, Schar_charset, 1, 2, 0,
2112 doc: /* Return the charset of highest priority that contains CH.
2113 If optional 2nd arg RESTRICTION is non-nil, it is a list of charsets
2114 from which to find the charset. It may also be a coding system. In
2115 that case, find the charset from what supported by that coding system. */)
2116 (ch, restriction)
2117 Lisp_Object ch, restriction;
2118 {
2119 struct charset *charset;
2120
2121 CHECK_CHARACTER (ch);
2122 if (NILP (restriction))
2123 charset = CHAR_CHARSET (XINT (ch));
2124 else
2125 {
2126 Lisp_Object charset_list;
2127
2128 if (CONSP (restriction))
2129 {
2130 for (charset_list = Qnil; CONSP (restriction);
2131 restriction = XCDR (restriction))
2132 {
2133 int id;
2134
2135 CHECK_CHARSET_GET_ID (XCAR (restriction), id);
2136 charset_list = Fcons (make_number (id), charset_list);
2137 }
2138 charset_list = Fnreverse (charset_list);
2139 }
2140 else
2141 charset_list = coding_system_charset_list (restriction);
2142 charset = char_charset (XINT (ch), charset_list, NULL);
2143 if (! charset)
2144 return Qnil;
2145 }
2146 return (CHARSET_NAME (charset));
2147 }
2148
2149
2150 DEFUN ("charset-after", Fcharset_after, Scharset_after, 0, 1, 0,
2151 doc: /*
2152 Return charset of a character in the current buffer at position POS.
2153 If POS is nil, it defauls to the current point.
2154 If POS is out of range, the value is nil. */)
2155 (pos)
2156 Lisp_Object pos;
2157 {
2158 Lisp_Object ch;
2159 struct charset *charset;
2160
2161 ch = Fchar_after (pos);
2162 if (! INTEGERP (ch))
2163 return ch;
2164 charset = CHAR_CHARSET (XINT (ch));
2165 return (CHARSET_NAME (charset));
2166 }
2167
2168
2169 DEFUN ("iso-charset", Fiso_charset, Siso_charset, 3, 3, 0,
2170 doc: /*
2171 Return charset of ISO's specification DIMENSION, CHARS, and FINAL-CHAR.
2172
2173 ISO 2022's designation sequence (escape sequence) distinguishes charsets
2174 by their DIMENSION, CHARS, and FINAL-CHAR,
2175 whereas Emacs distinguishes them by charset symbol.
2176 See the documentation of the function `charset-info' for the meanings of
2177 DIMENSION, CHARS, and FINAL-CHAR. */)
2178 (dimension, chars, final_char)
2179 Lisp_Object dimension, chars, final_char;
2180 {
2181 int id;
2182 int chars_flag;
2183
2184 check_iso_charset_parameter (dimension, chars, final_char);
2185 chars_flag = XFASTINT (chars) == 96;
2186 id = ISO_CHARSET_TABLE (XFASTINT (dimension), chars_flag,
2187 XFASTINT (final_char));
2188 return (id >= 0 ? CHARSET_NAME (CHARSET_FROM_ID (id)) : Qnil);
2189 }
2190
2191
2192 DEFUN ("clear-charset-maps", Fclear_charset_maps, Sclear_charset_maps,
2193 0, 0, 0,
2194 doc: /*
2195 Internal use only.
2196 Clear temporary charset mapping tables.
2197 It should be called only from temacs invoked for dumping. */)
2198 ()
2199 {
2200 if (temp_charset_work)
2201 {
2202 free (temp_charset_work);
2203 temp_charset_work = NULL;
2204 }
2205
2206 if (CHAR_TABLE_P (Vchar_unify_table))
2207 Foptimize_char_table (Vchar_unify_table, Qnil);
2208
2209 return Qnil;
2210 }
2211
2212 DEFUN ("charset-priority-list", Fcharset_priority_list,
2213 Scharset_priority_list, 0, 1, 0,
2214 doc: /* Return the list of charsets ordered by priority.
2215 HIGHESTP non-nil means just return the highest priority one. */)
2216 (highestp)
2217 Lisp_Object highestp;
2218 {
2219 Lisp_Object val = Qnil, list = Vcharset_ordered_list;
2220
2221 if (!NILP (highestp))
2222 return CHARSET_NAME (CHARSET_FROM_ID (XINT (Fcar (list))));
2223
2224 while (!NILP (list))
2225 {
2226 val = Fcons (CHARSET_NAME (CHARSET_FROM_ID (XINT (XCAR (list)))), val);
2227 list = XCDR (list);
2228 }
2229 return Fnreverse (val);
2230 }
2231
2232 DEFUN ("set-charset-priority", Fset_charset_priority, Sset_charset_priority,
2233 1, MANY, 0,
2234 doc: /* Assign higher priority to the charsets given as arguments.
2235 usage: (set-charset-priority &rest charsets) */)
2236 (nargs, args)
2237 int nargs;
2238 Lisp_Object *args;
2239 {
2240 Lisp_Object new_head, old_list, arglist[2];
2241 Lisp_Object list_2022, list_emacs_mule;
2242 int i, id;
2243
2244 old_list = Fcopy_sequence (Vcharset_ordered_list);
2245 new_head = Qnil;
2246 for (i = 0; i < nargs; i++)
2247 {
2248 CHECK_CHARSET_GET_ID (args[i], id);
2249 if (! NILP (Fmemq (make_number (id), old_list)))
2250 {
2251 old_list = Fdelq (make_number (id), old_list);
2252 new_head = Fcons (make_number (id), new_head);
2253 }
2254 }
2255 arglist[0] = Fnreverse (new_head);
2256 arglist[1] = Vcharset_non_preferred_head = old_list;
2257 Vcharset_ordered_list = Fnconc (2, arglist);
2258 charset_ordered_list_tick++;
2259
2260 charset_unibyte = -1;
2261 for (old_list = Vcharset_ordered_list, list_2022 = list_emacs_mule = Qnil;
2262 CONSP (old_list); old_list = XCDR (old_list))
2263 {
2264 if (! NILP (Fmemq (XCAR (old_list), Viso_2022_charset_list)))
2265 list_2022 = Fcons (XCAR (old_list), list_2022);
2266 if (! NILP (Fmemq (XCAR (old_list), Vemacs_mule_charset_list)))
2267 list_emacs_mule = Fcons (XCAR (old_list), list_emacs_mule);
2268 if (charset_unibyte < 0)
2269 {
2270 struct charset *charset = CHARSET_FROM_ID (XINT (XCAR (old_list)));
2271
2272 if (CHARSET_DIMENSION (charset) == 1
2273 && CHARSET_ASCII_COMPATIBLE_P (charset)
2274 && CHARSET_MAX_CHAR (charset) >= 0x80)
2275 charset_unibyte = CHARSET_ID (charset);
2276 }
2277 }
2278 Viso_2022_charset_list = Fnreverse (list_2022);
2279 Vemacs_mule_charset_list = Fnreverse (list_emacs_mule);
2280 if (charset_unibyte < 0)
2281 charset_unibyte = charset_iso_8859_1;
2282
2283 return Qnil;
2284 }
2285
2286 DEFUN ("charset-id-internal", Fcharset_id_internal, Scharset_id_internal,
2287 0, 1, 0,
2288 doc: /* Internal use only.
2289 Return charset identification number of CHARSET. */)
2290 (charset)
2291 Lisp_Object charset;
2292 {
2293 int id;
2294
2295 CHECK_CHARSET_GET_ID (charset, id);
2296 return make_number (id);
2297 }
2298
2299 \f
2300 void
2301 init_charset ()
2302 {
2303 Lisp_Object tempdir;
2304 tempdir = Fexpand_file_name (build_string ("charsets"), Vdata_directory);
2305 if (access ((char *) SDATA (tempdir), 0) < 0)
2306 {
2307 dir_warning ("Error: charsets directory (%s) does not exist.\n\
2308 Emacs will not function correctly without the character map files.\n\
2309 Please check your installation!\n",
2310 tempdir);
2311 /* TODO should this be a fatal error? (Bug#909) */
2312 }
2313
2314 Vcharset_map_path = Fcons (tempdir, Qnil);
2315 }
2316
2317
2318 void
2319 init_charset_once ()
2320 {
2321 int i, j, k;
2322
2323 for (i = 0; i < ISO_MAX_DIMENSION; i++)
2324 for (j = 0; j < ISO_MAX_CHARS; j++)
2325 for (k = 0; k < ISO_MAX_FINAL; k++)
2326 iso_charset_table[i][j][k] = -1;
2327
2328 for (i = 0; i < 256; i++)
2329 emacs_mule_charset[i] = NULL;
2330
2331 charset_jisx0201_roman = -1;
2332 charset_jisx0208_1978 = -1;
2333 charset_jisx0208 = -1;
2334 charset_ksc5601 = -1;
2335 }
2336
2337 #ifdef emacs
2338
2339 void
2340 syms_of_charset ()
2341 {
2342 DEFSYM (Qcharsetp, "charsetp");
2343
2344 DEFSYM (Qascii, "ascii");
2345 DEFSYM (Qunicode, "unicode");
2346 DEFSYM (Qemacs, "emacs");
2347 DEFSYM (Qeight_bit, "eight-bit");
2348 DEFSYM (Qiso_8859_1, "iso-8859-1");
2349
2350 DEFSYM (Qgl, "gl");
2351 DEFSYM (Qgr, "gr");
2352
2353 staticpro (&Vcharset_ordered_list);
2354 Vcharset_ordered_list = Qnil;
2355
2356 staticpro (&Viso_2022_charset_list);
2357 Viso_2022_charset_list = Qnil;
2358
2359 staticpro (&Vemacs_mule_charset_list);
2360 Vemacs_mule_charset_list = Qnil;
2361
2362 /* Don't staticpro them here. It's done in syms_of_fns. */
2363 QCtest = intern (":test");
2364 Qeq = intern ("eq");
2365
2366 staticpro (&Vcharset_hash_table);
2367 {
2368 Lisp_Object args[2];
2369 args[0] = QCtest;
2370 args[1] = Qeq;
2371 Vcharset_hash_table = Fmake_hash_table (2, args);
2372 }
2373
2374 charset_table_size = 128;
2375 charset_table = ((struct charset *)
2376 xmalloc (sizeof (struct charset) * charset_table_size));
2377 charset_table_used = 0;
2378
2379 defsubr (&Scharsetp);
2380 defsubr (&Smap_charset_chars);
2381 defsubr (&Sdefine_charset_internal);
2382 defsubr (&Sdefine_charset_alias);
2383 defsubr (&Scharset_plist);
2384 defsubr (&Sset_charset_plist);
2385 defsubr (&Sunify_charset);
2386 defsubr (&Sget_unused_iso_final_char);
2387 defsubr (&Sdeclare_equiv_charset);
2388 defsubr (&Sfind_charset_region);
2389 defsubr (&Sfind_charset_string);
2390 defsubr (&Sdecode_char);
2391 defsubr (&Sencode_char);
2392 defsubr (&Ssplit_char);
2393 defsubr (&Smake_char);
2394 defsubr (&Schar_charset);
2395 defsubr (&Scharset_after);
2396 defsubr (&Siso_charset);
2397 defsubr (&Sclear_charset_maps);
2398 defsubr (&Scharset_priority_list);
2399 defsubr (&Sset_charset_priority);
2400 defsubr (&Scharset_id_internal);
2401
2402 DEFVAR_LISP ("charset-map-path", &Vcharset_map_path,
2403 doc: /* *List of directories to search for charset map files. */);
2404 Vcharset_map_path = Qnil;
2405
2406 DEFVAR_BOOL ("inhibit-load-charset-map", &inhibit_load_charset_map,
2407 doc: /* Inhibit loading of charset maps. Used when dumping Emacs. */);
2408 inhibit_load_charset_map = 0;
2409
2410 DEFVAR_LISP ("charset-list", &Vcharset_list,
2411 doc: /* List of all charsets ever defined. */);
2412 Vcharset_list = Qnil;
2413
2414 DEFVAR_LISP ("current-iso639-language", &Vcurrent_iso639_language,
2415 doc: /* ISO639 language mnemonic symbol for the current language environment.
2416 If the current language environment is for multiple languages (e.g. "Latin-1"),
2417 the value may be a list of mnemonics. */);
2418 Vcurrent_iso639_language = Qnil;
2419
2420 charset_ascii
2421 = define_charset_internal (Qascii, 1, "\x00\x7F\x00\x00\x00\x00",
2422 0, 127, 'B', -1, 0, 1, 0, 0);
2423 charset_iso_8859_1
2424 = define_charset_internal (Qiso_8859_1, 1, "\x00\xFF\x00\x00\x00\x00",
2425 0, 255, -1, -1, -1, 1, 0, 0);
2426 charset_unicode
2427 = define_charset_internal (Qunicode, 3, "\x00\xFF\x00\xFF\x00\x10",
2428 0, MAX_UNICODE_CHAR, -1, 0, -1, 1, 0, 0);
2429 charset_emacs
2430 = define_charset_internal (Qemacs, 3, "\x00\xFF\x00\xFF\x00\x3F",
2431 0, MAX_5_BYTE_CHAR, -1, 0, -1, 1, 1, 0);
2432 charset_eight_bit
2433 = define_charset_internal (Qeight_bit, 1, "\x80\xFF\x00\x00\x00\x00",
2434 128, 255, -1, 0, -1, 0, 1,
2435 MAX_5_BYTE_CHAR + 1);
2436 charset_unibyte = charset_iso_8859_1;
2437 }
2438
2439 #endif /* emacs */
2440
2441 /* arch-tag: 66a89b8d-4c28-47d3-9ca1-56f78440d69f
2442 (do not change this comment) */