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