Regenerated
[bpt/emacs.git] / src / charset.c
CommitLineData
3263d5a2 1/* Basic character set support.
c8f94403 2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007,
76b6f707 3 2008, 2009 Free Software Foundation, Inc.
7976eda0 4 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
76b6f707 5 2005, 2006, 2007, 2008, 2009
ce03bf76
KH
6 National Institute of Advanced Industrial Science and Technology (AIST)
7 Registration Number H14PRO021
4ed46869 8
327719ee 9 Copyright (C) 2003, 2004
3263d5a2
KH
10 National Institute of Advanced Industrial Science and Technology (AIST)
11 Registration Number H13PRO009
4ed46869 12
369314dc
KH
13This file is part of GNU Emacs.
14
9ec0b715 15GNU Emacs is free software: you can redistribute it and/or modify
369314dc 16it under the terms of the GNU General Public License as published by
9ec0b715
GM
17the Free Software Foundation, either version 3 of the License, or
18(at your option) any later version.
4ed46869 19
369314dc
KH
20GNU Emacs is distributed in the hope that it will be useful,
21but WITHOUT ANY WARRANTY; without even the implied warranty of
22MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23GNU General Public License for more details.
4ed46869 24
369314dc 25You should have received a copy of the GNU General Public License
9ec0b715 26along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
4ed46869 27
68c45bf0 28#include <config.h>
68c45bf0 29
4ed46869 30#include <stdio.h>
3263d5a2
KH
31#include <unistd.h>
32#include <ctype.h>
4ed46869 33#include <sys/types.h>
d7306fe6 34#include <setjmp.h>
4ed46869 35#include "lisp.h"
3263d5a2 36#include "character.h"
4ed46869
KH
37#include "charset.h"
38#include "coding.h"
fc6b09bf 39#include "disptab.h"
3263d5a2 40#include "buffer.h"
4ed46869 41
04c2f2c5 42/*** GENERAL NOTES on CODED CHARACTER SETS (CHARSETS) ***
4ed46869 43
3263d5a2 44 A coded character set ("charset" hereafter) is a meaningful
04c2f2c5 45 collection (i.e. language, culture, functionality, etc.) of
3263d5a2 46 characters. Emacs handles multiple charsets at once. In Emacs Lisp
04c2f2c5
DL
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.
4ed46869 49
3263d5a2
KH
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
04c2f2c5 53 charset_table as a struct charset.
4ed46869 54
3263d5a2 55*/
4ed46869 56
3263d5a2
KH
57/* List of all charsets. This variable is used only from Emacs
58 Lisp. */
4ed46869 59Lisp_Object Vcharset_list;
4ed46869 60
3263d5a2
KH
61/* Hash table that contains attributes of each charset. Keys are
62 charset symbols, and values are vectors of charset attributes. */
63Lisp_Object Vcharset_hash_table;
4ed46869 64
3263d5a2
KH
65/* Table of struct charset. */
66struct charset *charset_table;
4ed46869 67
3263d5a2 68static int charset_table_size;
5af5dd92 69static int charset_table_used;
4ed46869 70
3263d5a2 71Lisp_Object Qcharsetp;
4ed46869 72
3263d5a2
KH
73/* Special charset symbols. */
74Lisp_Object Qascii;
2fe1edd1 75Lisp_Object Qeight_bit;
3263d5a2
KH
76Lisp_Object Qiso_8859_1;
77Lisp_Object Qunicode;
6c652beb 78Lisp_Object Qemacs;
4ed46869 79
3263d5a2
KH
80/* The corresponding charsets. */
81int charset_ascii;
2fe1edd1 82int charset_eight_bit;
3263d5a2
KH
83int charset_iso_8859_1;
84int charset_unicode;
6c652beb 85int charset_emacs;
b0e3cf2b 86
7c7dceee
KH
87/* The other special charsets. */
88int charset_jisx0201_roman;
89int charset_jisx0208_1978;
90int charset_jisx0208;
d32320c4 91int charset_ksc5601;
c1a08b4c 92
3263d5a2
KH
93/* Value of charset attribute `charset-iso-plane'. */
94Lisp_Object Qgl, Qgr;
c1a08b4c 95
d1a04588
KH
96/* Charset of unibyte characters. */
97int charset_unibyte;
4ed46869 98
3263d5a2
KH
99/* List of charsets ordered by the priority. */
100Lisp_Object Vcharset_ordered_list;
4ed46869 101
6a9c90ec
KH
102/* Sub-list of Vcharset_ordered_list that contains all non-preferred
103 charsets. */
104Lisp_Object Vcharset_non_preferred_head;
105
dbbb237d 106/* Incremented everytime we change Vcharset_ordered_list. This is
64165ae2 107 unsigned short so that it fits in Lisp_Int and never matches
dbbb237d
KH
108 -1. */
109unsigned short charset_ordered_list_tick;
4ed46869 110
3263d5a2
KH
111/* List of iso-2022 charsets. */
112Lisp_Object Viso_2022_charset_list;
35e623fb 113
3263d5a2
KH
114/* List of emacs-mule charsets. */
115Lisp_Object Vemacs_mule_charset_list;
116
117struct charset *emacs_mule_charset[256];
4ed46869
KH
118
119/* Mapping table from ISO2022's charset (specified by DIMENSION,
120 CHARS, and FINAL-CHAR) to Emacs' charset. */
3263d5a2
KH
121int iso_charset_table[ISO_MAX_DIMENSION][ISO_MAX_CHARS][ISO_MAX_FINAL];
122
4beef065 123Lisp_Object Vcharset_map_path;
3263d5a2 124
ecca2aad
KH
125/* If nonzero, don't load charset maps. */
126int inhibit_load_charset_map;
3263d5a2 127
6a9c90ec
KH
128Lisp_Object Vcurrent_iso639_language;
129
64165ae2
DL
130/* Defined in chartab.c */
131extern void
132map_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
69f8de5b
KH
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]) \
820ee249
KH
150 + (((code) & 0xFF) - (charset)->code_space[0]) \
151 - ((charset)->char_index_offset)) \
3263d5a2
KH
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
820ee249
KH
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))))
4cf9710d 171
ecca2aad
KH
172/* Structure to hold mapping tables for a charset. Used by temacs
173 invoked for dumping. */
8a73a704 174
ecca2aad
KH
175static 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)])
046b1f03 229\f
93bcb785 230
e9ce014c
KH
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. */
3263d5a2 233int charset_map_loaded;
4ed46869 234
e9ce014c 235struct charset_map_entries
4ed46869 236{
e9ce014c
KH
237 struct {
238 unsigned from, to;
239 int c;
240 } entry[0x10000];
241 struct charset_map_entries *next;
242};
243
ecca2aad
KH
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.
4cf9710d 253
ecca2aad
KH
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
8a73a704 259
ecca2aad 260 If CONTROL_FLAG is 2, setup the following tables.
93bcb785 261
ecca2aad
KH
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*/
4ed46869 268
3263d5a2 269static void
e9ce014c 270load_charset_map (charset, entries, n_entries, control_flag)
3263d5a2 271 struct charset *charset;
e9ce014c
KH
272 struct charset_map_entries *entries;
273 int n_entries;
3263d5a2 274 int control_flag;
4ed46869 275{
3263d5a2 276 Lisp_Object vec, table;
3263d5a2
KH
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;
3263d5a2 280 int i;
3263d5a2 281 unsigned char *fast_map = charset->fast_map;
99529c2c 282
e9ce014c
KH
283 if (n_entries <= 0)
284 return;
285
ecca2aad 286 if (control_flag)
8ac5a9cc 287 {
ecca2aad
KH
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;
6662e69b 295
ecca2aad
KH
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);
ecca2aad
KH
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 }
3263d5a2 334 charset_map_loaded = 1;
2e344af3 335 }
6662e69b 336
e9ce014c 337 min_char = max_char = entries->entry[0].c;
3263d5a2 338 nonascii_min_char = MAX_CHAR;
e9ce014c 339 for (i = 0; i < n_entries; i++)
2e344af3 340 {
e9ce014c 341 unsigned from, to;
3b4f4446
KH
342 int from_index, to_index;
343 int from_c, to_c;
e9ce014c 344 int idx = i % 0x10000;
3263d5a2 345
e9ce014c
KH
346 if (i > 0 && idx == 0)
347 entries = entries->next;
348 from = entries->entry[idx].from;
349 to = entries->entry[idx].to;
3b4f4446
KH
350 from_c = entries->entry[idx].c;
351 from_index = CODE_POINT_TO_INDEX (charset, from);
352 if (from == to)
6662e69b 353 {
3b4f4446
KH
354 to_index = from_index;
355 to_c = from_c;
6662e69b 356 }
3b4f4446 357 else
6662e69b 358 {
3b4f4446
KH
359 to_index = CODE_POINT_TO_INDEX (charset, to);
360 to_c = from_c + (to_index - from_index);
6662e69b 361 }
3b4f4446
KH
362 if (from_index < 0 || to_index < 0)
363 continue;
3263d5a2 364
ecca2aad
KH
365 if (to_c > max_char)
366 max_char = to_c;
367 else if (from_c < min_char)
368 min_char = from_c;
6662e69b 369
ecca2aad
KH
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 {
3b4f4446
KH
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 }
177c0ea7 419
ecca2aad
KH
420 for (; from_c <= to_c; from_c++)
421 CHARSET_FAST_MAP_SET (from_c, fast_map);
2e344af3 422 }
8ac5a9cc 423 }
3263d5a2 424
ecca2aad 425 if (control_flag == 0)
4ed46869 426 {
3263d5a2
KH
427 CHARSET_MIN_CHAR (charset) = (ascii_compatible_p
428 ? nonascii_min_char : min_char);
429 CHARSET_MAX_CHAR (charset) = max_char;
4ed46869 430 }
ecca2aad
KH
431 else if (control_flag == 4)
432 {
433 temp_charset_work->min_char = min_char;
434 temp_charset_work->max_char = max_char;
435 }
4ed46869
KH
436}
437
12bcae05 438
3263d5a2
KH
439/* Read a hexadecimal number (preceded by "0x") from the file FP while
440 paying attention to comment charcter '#'. */
12bcae05 441
3263d5a2
KH
442static INLINE unsigned
443read_hex (fp, eof)
444 FILE *fp;
445 int *eof;
12bcae05 446{
3263d5a2
KH
447 int c;
448 unsigned n;
12bcae05 449
3263d5a2
KH
450 while ((c = getc (fp)) != EOF)
451 {
69f8de5b 452 if (c == '#')
3263d5a2
KH
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 }
8f924df7 461 }
3263d5a2
KH
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';
e9ce014c
KH
476 if (c != EOF)
477 ungetc (c, fp);
3263d5a2
KH
478 return n;
479}
12bcae05 480
dde2559c 481extern Lisp_Object Qfile_name_handler_alist;
537efd8d 482
3263d5a2 483/* Return a mapping vector for CHARSET loaded from MAPFILE.
e9ce014c
KH
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.
4ed46869 491
3263d5a2
KH
492 The returned vector has this form:
493 [ CODE1 CHAR1 CODE2 CHAR2 .... ]
e9ce014c 494 where CODE1 is a code-point or a cons of code-points specifying a
dde2559c
KH
495 range.
496
18a10a21
JB
497 Note that this function uses `openp' to open MAPFILE but ignores
498 `file-name-handler-alist' to avoid running any Lisp code. */
4ed46869 499
c449997d 500extern void add_to_log P_ ((char *, Lisp_Object, Lisp_Object));
4ed46869 501
e9ce014c
KH
502static void
503load_charset_map_from_file (charset, mapfile, control_flag)
3263d5a2
KH
504 struct charset *charset;
505 Lisp_Object mapfile;
e9ce014c 506 int control_flag;
4ed46869 507{
e9ce014c
KH
508 unsigned min_code = CHARSET_MIN_CODE (charset);
509 unsigned max_code = CHARSET_MAX_CODE (charset);
3263d5a2
KH
510 int fd;
511 FILE *fp;
3263d5a2
KH
512 int eof;
513 Lisp_Object suffixes;
e9ce014c
KH
514 struct charset_map_entries *head, *entries;
515 int n_entries;
dde2559c 516 int count = SPECPDL_INDEX ();
4ed46869 517
3263d5a2
KH
518 suffixes = Fcons (build_string (".map"),
519 Fcons (build_string (".TXT"), Qnil));
4ed46869 520
dde2559c 521 specbind (Qfile_name_handler_alist, Qnil);
4beef065 522 fd = openp (Vcharset_map_path, mapfile, suffixes, NULL, Qnil);
dde2559c 523 unbind_to (count, Qnil);
3263d5a2
KH
524 if (fd < 0
525 || ! (fp = fdopen (fd, "r")))
8458d4c1 526 error ("Failure in loading charset map: %S", SDATA (mapfile));
4ed46869 527
e9ce014c
KH
528 head = entries = ((struct charset_map_entries *)
529 alloca (sizeof (struct charset_map_entries)));
530 n_entries = 0;
3263d5a2
KH
531 eof = 0;
532 while (1)
533 {
e9ce014c
KH
534 unsigned from, to;
535 int c;
536 int idx;
4ed46869 537
e9ce014c 538 from = read_hex (fp, &eof);
3263d5a2
KH
539 if (eof)
540 break;
e9ce014c
KH
541 if (getc (fp) == '-')
542 to = read_hex (fp, &eof);
543 else
544 to = from;
545 c = (int) read_hex (fp, &eof);
ac4137cc 546
e9ce014c
KH
547 if (from < min_code || to > max_code || from > to || c > MAX_CHAR)
548 continue;
ac4137cc 549
e9ce014c 550 if (n_entries > 0 && (n_entries % 0x10000) == 0)
3263d5a2 551 {
e9ce014c
KH
552 entries->next = ((struct charset_map_entries *)
553 alloca (sizeof (struct charset_map_entries)));
554 entries = entries->next;
3263d5a2 555 }
e9ce014c
KH
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++;
3263d5a2
KH
561 }
562 fclose (fp);
563 close (fd);
177c0ea7 564
e9ce014c 565 load_charset_map (charset, head, n_entries, control_flag);
4ed46869
KH
566}
567
e9ce014c
KH
568static void
569load_charset_map_from_vector (charset, vec, control_flag)
570 struct charset *charset;
571 Lisp_Object vec;
572 int control_flag;
23d2a7f1 573{
e9ce014c
KH
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;
23d2a7f1 580
e9ce014c 581 if (len % 2 == 1)
3263d5a2 582 {
e9ce014c
KH
583 add_to_log ("Failure in loading charset map: %V", vec, Qnil);
584 return;
3263d5a2 585 }
35e623fb 586
e9ce014c
KH
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)
35e623fb 591 {
e9ce014c
KH
592 Lisp_Object val, val2;
593 unsigned from, to;
594 int c;
595 int idx;
d2665018 596
e9ce014c
KH
597 val = AREF (vec, i);
598 if (CONSP (val))
bbf12bb3 599 {
e9ce014c
KH
600 val2 = XCDR (val);
601 val = XCAR (val);
602 CHECK_NATNUM (val);
603 CHECK_NATNUM (val2);
604 from = XFASTINT (val);
605 to = XFASTINT (val2);
bbf12bb3 606 }
e9ce014c 607 else
bbf12bb3 608 {
e9ce014c
KH
609 CHECK_NATNUM (val);
610 from = to = XFASTINT (val);
bbf12bb3 611 }
e9ce014c
KH
612 val = AREF (vec, i + 1);
613 CHECK_NATNUM (val);
614 c = XFASTINT (val);
76d7b829 615
e9ce014c
KH
616 if (from < min_code || to > max_code || from > to || c > MAX_CHAR)
617 continue;
76d7b829 618
dcc694d7 619 if (n_entries > 0 && (n_entries % 0x10000) == 0)
e9ce014c
KH
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 }
76d7b829 631
e9ce014c 632 load_charset_map (charset, head, n_entries, control_flag);
ac4137cc
KH
633}
634
ecca2aad
KH
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
3263d5a2 639static void
ecca2aad 640load_charset (charset, control_flag)
3263d5a2 641 struct charset *charset;
ecca2aad 642 int control_flag;
76d7b829 643{
ecca2aad 644 Lisp_Object map;
76d7b829 645
ecca2aad
KH
646 if (inhibit_load_charset_map
647 && temp_charset_work
648 && charset == temp_charset_work->current
56f00ed2 649 && ((control_flag == 2) == temp_charset_work->for_encoder))
ecca2aad
KH
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);
4ed46869 660}
76d7b829 661
3263d5a2
KH
662
663DEFUN ("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;
23d2a7f1 667{
3263d5a2 668 return (CHARSETP (object) ? Qt : Qnil);
76d7b829
KH
669}
670
4ed46869 671
ecca2aad
KH
672void 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
676void
677map_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 }
c542407d 732 UNGCPRO;
ecca2aad
KH
733}
734
4ed46869 735void
374c5cfd
KH
736map_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;
4ed46869 742{
3263d5a2 743 Lisp_Object range;
374c5cfd 744 int partial;
3263d5a2 745
374c5cfd
KH
746 partial = (from > CHARSET_MIN_CODE (charset)
747 || to < CHARSET_MAX_CODE (charset));
748
3263d5a2 749 if (CHARSET_METHOD (charset) == CHARSET_METHOD_OFFSET)
4ed46869 750 {
374c5cfd
KH
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
ecca2aad
KH
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
374c5cfd 768 range = Fcons (make_number (from_c), make_number (to_c));
3263d5a2 769 if (NILP (function))
5af5dd92 770 (*c_function) (arg, range);
3263d5a2
KH
771 else
772 call2 (function, range, arg);
c83ef371 773 }
3263d5a2
KH
774 else if (CHARSET_METHOD (charset) == CHARSET_METHOD_MAP)
775 {
776 if (! CHAR_TABLE_P (CHARSET_ENCODER (charset)))
ecca2aad
KH
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);
3263d5a2 784 }
374c5cfd 785 else if (CHARSET_METHOD (charset) == CHARSET_METHOD_SUBSET)
4ed46869 786 {
374c5cfd
KH
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);
4ed46869 800 }
374c5cfd
KH
801 else /* i.e. CHARSET_METHOD_SUPERSET */
802 {
803 Lisp_Object parents;
4ed46869 804
374c5cfd
KH
805 for (parents = CHARSET_SUPERSET (charset); CONSP (parents);
806 parents = XCDR (parents))
bbf12bb3 807 {
374c5cfd
KH
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)));
12b55765
KH
813 this_from = from > offset ? from - offset : 0;
814 this_to = to > offset ? to - offset : 0;
374c5cfd
KH
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);
111daccf
KH
819 map_charset_chars (c_function, function, arg, charset,
820 this_from, this_to);
bbf12bb3 821 }
35e623fb 822 }
4ed46869
KH
823}
824
374c5cfd 825DEFUN ("map-charset-chars", Fmap_charset_chars, Smap_charset_chars, 2, 5, 0,
04c2f2c5 826 doc: /* Call FUNCTION for all characters in CHARSET.
374c5cfd 827FUNCTION is called with an argument RANGE and the optional 3rd
3263d5a2 828argument ARG.
4ed46869 829
374c5cfd
KH
830RANGE is a cons (FROM . TO), where FROM and TO indicate a range of
831characters contained in CHARSET.
4ed46869 832
374c5cfd 833The optional 4th and 5th arguments FROM-CODE and TO-CODE specify the
72d51285 834range of code points (in CHARSET) of target characters. */)
374c5cfd
KH
835 (function, charset, arg, from_code, to_code)
836 Lisp_Object function, charset, arg, from_code, to_code;
4ed46869 837{
374c5cfd 838 struct charset *cs;
16fed1fc 839 unsigned from, to;
4ed46869 840
374c5cfd
KH
841 CHECK_CHARSET_GET_CHARSET (charset, cs);
842 if (NILP (from_code))
16fed1fc 843 from = CHARSET_MIN_CODE (cs);
970b7474 844 else
4ed46869 845 {
970b7474
KH
846 CHECK_NATNUM (from_code);
847 from = XINT (from_code);
848 if (from < CHARSET_MIN_CODE (cs))
849 from = CHARSET_MIN_CODE (cs);
4ed46869 850 }
374c5cfd 851 if (NILP (to_code))
970b7474 852 to = CHARSET_MAX_CODE (cs);
4ed46869
KH
853 else
854 {
970b7474
KH
855 CHECK_NATNUM (to_code);
856 to = XINT (to_code);
857 if (to > CHARSET_MAX_CODE (cs))
858 to = CHARSET_MAX_CODE (cs);
4ed46869 859 }
16fed1fc 860 map_charset_chars (NULL, function, arg, cs, from, to);
3263d5a2 861 return Qnil;
35e623fb 862}
4ed46869 863
4ed46869 864
3263d5a2
KH
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. */
4ed46869 869
3263d5a2
KH
870DEFUN ("define-charset-internal", Fdefine_charset_internal,
871 Sdefine_charset_internal, charset_arg_max, MANY, 0,
04c2f2c5
DL
872 doc: /* For internal use only.
873usage: (define-charset-internal ...) */)
3263d5a2
KH
874 (nargs, args)
875 int nargs;
876 Lisp_Object *args;
4ed46869 877{
3263d5a2
KH
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);
69f8de5b 883 int i, j;
3263d5a2
KH
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++)
76d7b829 902 {
3263d5a2
KH
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 }
4ed46869 917
3263d5a2
KH
918 val = args[charset_arg_dimension];
919 if (NILP (val))
920 charset.dimension = dimension;
921 else
4ed46869 922 {
3263d5a2
KH
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));
4ed46869
KH
927 }
928
3263d5a2
KH
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
69f8de5b 937 if (! charset.code_linear_p)
4ed46869 938 {
69f8de5b 939 charset.code_space_mask = (unsigned char *) xmalloc (256);
33df3183 940 bzero (charset.code_space_mask, 256);
69f8de5b
KH
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);
4ed46869
KH
945 }
946
3263d5a2 947 charset.iso_chars_96 = charset.code_space[2] == 96;
4ed46869 948
3263d5a2
KH
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));
820ee249 957 charset.char_index_offset = 0;
8a73a704 958
820ee249
KH
959 val = args[charset_arg_min_code];
960 if (! NILP (val))
961 {
962 unsigned code;
fdb82f93 963
820ee249
KH
964 if (INTEGERP (val))
965 code = XINT (val);
966 else
967 {
968 CHECK_CONS (val);
8f924df7
KH
969 CHECK_NUMBER_CAR (val);
970 CHECK_NUMBER_CDR (val);
820ee249
KH
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 }
3fac5a51 980
820ee249
KH
981 val = args[charset_arg_max_code];
982 if (! NILP (val))
3fac5a51 983 {
820ee249
KH
984 unsigned code;
985
986 if (INTEGERP (val))
987 code = XINT (val);
988 else
989 {
990 CHECK_CONS (val);
8f924df7
KH
991 CHECK_NUMBER_CAR (val);
992 CHECK_NUMBER_CDR (val);
820ee249
KH
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;
3fac5a51 1000 }
3fac5a51 1001
ecca2aad 1002 charset.compact_codes_p = charset.max_code < 0x10000;
4ed46869 1003
3263d5a2
KH
1004 val = args[charset_arg_invalid_code];
1005 if (NILP (val))
1006 {
1007 if (charset.min_code > 0)
1008 charset.invalid_code = 0;
bbf12bb3
KH
1009 else
1010 {
3263d5a2
KH
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");
76d7b829 1016 }
76d7b829 1017 }
3263d5a2
KH
1018 else
1019 {
1020 CHECK_NATNUM (val);
1021 charset.invalid_code = XFASTINT (val);
1022 }
4ed46869 1023
3263d5a2
KH
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 }
4ed46869 1034
3263d5a2
KH
1035 val = args[charset_arg_iso_revision];
1036 if (NILP (val))
1037 charset.iso_revision = -1;
1038 else
4ed46869 1039 {
3263d5a2
KH
1040 CHECK_NUMBER (val);
1041 if (XINT (val) > 63)
1042 args_out_of_range (make_number (63), val);
1043 charset.iso_revision = XINT (val);
4ed46869 1044 }
4ed46869 1045
3263d5a2
KH
1046 val = args[charset_arg_emacs_mule_id];
1047 if (NILP (val))
1048 charset.emacs_mule_id = -1;
4ed46869
KH
1049 else
1050 {
3263d5a2
KH
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);
c83ef371 1055 }
f6302ac9 1056
3263d5a2 1057 charset.ascii_compatible_p = ! NILP (args[charset_arg_ascii_compatible_p]);
1d67c29b 1058
3263d5a2 1059 charset.supplementary_p = ! NILP (args[charset_arg_supplementary_p]);
4ed46869 1060
3263d5a2
KH
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
f148205f
KH
1080 i = (charset.min_char >> 7) << 7;
1081 for (; i < 0x10000 && i <= charset.max_char; i += 128)
3263d5a2 1082 CHARSET_FAST_MAP_SET (i, charset.fast_map);
f148205f 1083 i = (i >> 12) << 12;
3263d5a2
KH
1084 for (; i <= charset.max_char; i += 0x1000)
1085 CHARSET_FAST_MAP_SET (i, charset.fast_map);
3620330b
KH
1086 if (charset.code_offset == 0 && charset.max_char >= 0x80)
1087 charset.ascii_compatible_p = 1;
3263d5a2
KH
1088 }
1089 else if (! NILP (args[charset_arg_map]))
1090 {
1091 val = args[charset_arg_map];
1092 ASET (attrs, charset_map, val);
ecca2aad 1093 charset.method = CHARSET_METHOD_MAP;
3263d5a2 1094 }
374c5cfd 1095 else if (! NILP (args[charset_arg_subset]))
3263d5a2 1096 {
374c5cfd
KH
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]))
0282eb69 1129 {
374c5cfd
KH
1130 val = args[charset_arg_superset];
1131 charset.method = CHARSET_METHOD_SUPERSET;
3263d5a2 1132 val = Fcopy_sequence (val);
374c5cfd 1133 ASET (attrs, charset_superset, val);
3263d5a2
KH
1134
1135 charset.min_char = MAX_CHAR;
1136 charset.max_char = 0;
1137 for (; ! NILP (val); val = Fcdr (val))
0282eb69 1138 {
3263d5a2
KH
1139 Lisp_Object elt, car_part, cdr_part;
1140 int this_id, offset;
1141 struct charset *this_charset;
2e344af3 1142
3263d5a2
KH
1143 elt = Fcar (val);
1144 if (CONSP (elt))
2e344af3 1145 {
3263d5a2
KH
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);
177c0ea7 1151 }
3263d5a2 1152 else
4ed46869 1153 {
3263d5a2
KH
1154 CHECK_CHARSET_GET_ID (elt, this_id);
1155 offset = 0;
4ed46869 1156 }
3263d5a2
KH
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];
0282eb69 1166 }
0282eb69 1167 }
2e344af3 1168 else
3263d5a2 1169 error ("None of :code-offset, :map, :parents are specified");
05505664 1170
3263d5a2
KH
1171 val = args[charset_arg_unify_map];
1172 if (! NILP (val) && !STRINGP (val))
1173 CHECK_VECTOR (val);
1174 ASET (attrs, charset_unify_map, val);
05505664 1175
3263d5a2
KH
1176 CHECK_LIST (args[charset_arg_plist]);
1177 ASET (attrs, charset_plist, args[charset_arg_plist]);
4ed46869 1178
3263d5a2
KH
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;
4f65af01 1184 id = XFASTINT (CHARSET_SYMBOL_ID (args[charset_arg_name]));
3263d5a2
KH
1185 HASH_VALUE (hash_table, charset.hash_index) = attrs;
1186 }
1a45ff10 1187 else
3263d5a2
KH
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 {
2fe1edd1
KH
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;
3263d5a2
KH
1200 }
1201 id = charset_table_used++;
3263d5a2
KH
1202 new_definition_p = 1;
1203 }
2e344af3 1204
4f65af01 1205 ASET (attrs, charset_id, make_number (id));
3263d5a2
KH
1206 charset.id = id;
1207 charset_table[id] = charset;
2e344af3 1208
ecca2aad 1209 if (charset.method == CHARSET_METHOD_MAP)
b8ebe9dd
KH
1210 {
1211 load_charset (&charset, 0);
1212 charset_table[id] = charset;
1213 }
ecca2aad 1214
3263d5a2 1215 if (charset.iso_final >= 0)
4ed46869 1216 {
3263d5a2
KH
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));
7c7dceee
KH
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;
d32320c4
KH
1228 else if (ISO_CHARSET_TABLE (2, 0, 'C') == id)
1229 charset_ksc5601 = id;
4ed46869 1230 }
d0cf2d48 1231
3263d5a2 1232 if (charset.emacs_mule_id >= 0)
4ed46869 1233 {
3263d5a2 1234 emacs_mule_charset[charset.emacs_mule_id] = CHARSET_FROM_ID (id);
4f65af01
KH
1235 if (charset.emacs_mule_id < 0xA0)
1236 emacs_mule_bytes[charset.emacs_mule_id] = charset.dimension + 1;
3b1ae89b
KH
1237 else
1238 emacs_mule_bytes[charset.emacs_mule_id] = charset.dimension + 2;
3263d5a2
KH
1239 if (new_definition_p)
1240 Vemacs_mule_charset_list = nconc2 (Vemacs_mule_charset_list,
1241 Fcons (make_number (id), Qnil));
4ed46869
KH
1242 }
1243
3263d5a2
KH
1244 if (new_definition_p)
1245 {
1246 Vcharset_list = Fcons (args[charset_arg_name], Vcharset_list);
8055c66a
KH
1247 if (charset.supplementary_p)
1248 Vcharset_ordered_list = nconc2 (Vcharset_ordered_list,
1249 Fcons (make_number (id), Qnil));
1250 else
880820fe
KH
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 }
dbbb237d 1274 charset_ordered_list_tick++;
3263d5a2 1275 }
4ed46869 1276
3263d5a2 1277 return Qnil;
4ed46869
KH
1278}
1279
2fe1edd1
KH
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
1286static int
1287define_charset_internal (name, dimension, code_space, min_code, max_code,
1288 iso_final, iso_revision, emacs_mule_id,
7acf89e6 1289 ascii_compatible, supplementary,
2fe1edd1
KH
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;
7acf89e6 1296 int ascii_compatible, supplementary;
2fe1edd1
KH
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;
7acf89e6 1318 args[charset_arg_supplementary_p] = supplementary ? Qt : Qnil;
2fe1edd1
KH
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
3263d5a2
KH
1348DEFUN ("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;
4ed46869 1353{
3263d5a2
KH
1354 Lisp_Object attr;
1355
1356 CHECK_CHARSET_GET_ATTR (charset, attr);
1357 Fputhash (alias, attr, Vcharset_hash_table);
528623a0 1358 Vcharset_list = Fcons (alias, Vcharset_list);
3263d5a2
KH
1359 return Qnil;
1360}
4ed46869 1361
4ed46869 1362
3263d5a2 1363DEFUN ("charset-plist", Fcharset_plist, Scharset_plist, 1, 1, 0,
56a46d1d 1364 doc: /* Return the property list of CHARSET. */)
3263d5a2
KH
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
1375DEFUN ("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
dbbb237d 1388DEFUN ("unify-charset", Funify_charset, Sunify_charset, 1, 3, 0,
56a46d1d
DL
1389 doc: /* Unify characters of CHARSET with Unicode.
1390This means reading the relevant file and installing the table defined
dbbb237d
KH
1391by CHARSET's `:unify-map' property.
1392
64165ae2
DL
1393Optional second arg UNIFY-MAP is a file name string or a vector. It has
1394the same meaning as the `:unify-map' attribute in the function
dbbb237d
KH
1395`define-charset' (which see).
1396
1397Optional third argument DEUNIFY, if non-nil, means to de-unify CHARSET. */)
1398 (charset, unify_map, deunify)
1399 Lisp_Object charset, unify_map, deunify;
8a73a704 1400{
3263d5a2
KH
1401 int id;
1402 struct charset *cs;
8f924df7 1403
3263d5a2
KH
1404 CHECK_CHARSET_GET_ID (charset, id);
1405 cs = CHARSET_FROM_ID (id);
dbbb237d
KH
1406 if (NILP (deunify)
1407 ? CHARSET_UNIFIED_P (cs) && ! NILP (CHARSET_DEUNIFIER (cs))
1408 : ! CHARSET_UNIFIED_P (cs))
3263d5a2 1409 return Qnil;
dbbb237d 1410
3263d5a2 1411 CHARSET_UNIFIED_P (cs) = 0;
dbbb237d
KH
1412 if (NILP (deunify))
1413 {
ecca2aad
KH
1414 if (CHARSET_METHOD (cs) != CHARSET_METHOD_OFFSET
1415 || CHARSET_CODE_OFFSET (cs) < 0x110000)
8f924df7 1416 error ("Can't unify charset: %s", SDATA (SYMBOL_NAME (charset)));
dbbb237d
KH
1417 if (NILP (unify_map))
1418 unify_map = CHARSET_UNIFY_MAP (cs);
dbbb237d 1419 else
ecca2aad
KH
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);
dbbb237d
KH
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);
8f924df7 1437
dbbb237d
KH
1438 char_table_set_range (Vchar_unify_table, min_char, max_char, Qnil);
1439 }
8f924df7 1440
3263d5a2 1441 return Qnil;
8a73a704
KH
1442}
1443
3fac5a51
KH
1444DEFUN ("get-unused-iso-final-char", Fget_unused_iso_final_char,
1445 Sget_unused_iso_final_char, 2, 2, 0,
3263d5a2 1446 doc: /*
d0cf2d48 1447Return an unused ISO final char for a charset of DIMENSION and CHARS.
fdb82f93
PJ
1448DIMENSION is the number of bytes to represent a character: 1 or 2.
1449CHARS is the number of characters in a dimension: 94 or 96.
1450
1451This final char is for private use, thus the range is `0' (48) .. `?' (63).
1721b6af 1452If there's no unused final char for the specified kind of charset,
fdb82f93
PJ
1453return nil. */)
1454 (dimension, chars)
3fac5a51
KH
1455 Lisp_Object dimension, chars;
1456{
1457 int final_char;
1458
b7826503
PJ
1459 CHECK_NUMBER (dimension);
1460 CHECK_NUMBER (chars);
3263d5a2
KH
1461 if (XINT (dimension) != 1 && XINT (dimension) != 2 && XINT (dimension) != 3)
1462 args_out_of_range_3 (dimension, make_number (1), make_number (3));
3fac5a51 1463 if (XINT (chars) != 94 && XINT (chars) != 96)
3263d5a2 1464 args_out_of_range_3 (chars, make_number (94), make_number (96));
3fac5a51 1465 for (final_char = '0'; final_char <= '?'; final_char++)
3263d5a2
KH
1466 if (ISO_CHARSET_TABLE (XINT (dimension), XINT (chars), final_char) < 0)
1467 break;
3fac5a51
KH
1468 return (final_char <= '?' ? make_number (final_char) : Qnil);
1469}
1470
3263d5a2
KH
1471static void
1472check_iso_charset_parameter (dimension, chars, final_char)
1473 Lisp_Object dimension, chars, final_char;
4ed46869 1474{
3263d5a2
KH
1475 CHECK_NATNUM (dimension);
1476 CHECK_NATNUM (chars);
1477 CHECK_NATNUM (final_char);
4ed46869 1478
3263d5a2
KH
1479 if (XINT (dimension) > 3)
1480 error ("Invalid DIMENSION %d, it should be 1, 2, or 3", XINT (dimension));
4ed46869
KH
1481 if (XINT (chars) != 94 && XINT (chars) != 96)
1482 error ("Invalid CHARS %d, it should be 94 or 96", XINT (chars));
3263d5a2 1483 if (XINT (final_char) < '0' || XINT (final_char) > '~')
4ed46869 1484 error ("Invalid FINAL-CHAR %c, it should be `0'..`~'", XINT (chars));
3263d5a2
KH
1485}
1486
1487
1488DEFUN ("declare-equiv-charset", Fdeclare_equiv_charset, Sdeclare_equiv_charset,
1489 4, 4, 0,
cefd8c4f
KH
1490 doc: /* Declare an equivalent charset for ISO-2022 decoding.
1491
1492On decoding by an ISO-2022 base coding system, when a charset
1493specified by DIMENSION, CHARS, and FINAL-CHAR is designated, behave as
1494if CHARSET is designated instead. */)
3263d5a2
KH
1495 (dimension, chars, final_char, charset)
1496 Lisp_Object dimension, chars, final_char, charset;
1497{
1498 int id;
82215ce9 1499 int chars_flag;
4ed46869 1500
3263d5a2
KH
1501 CHECK_CHARSET_GET_ID (charset, id);
1502 check_iso_charset_parameter (dimension, chars, final_char);
82215ce9
KH
1503 chars_flag = XINT (chars) == 96;
1504 ISO_CHARSET_TABLE (XINT (dimension), chars_flag, XINT (final_char)) = id;
4ed46869
KH
1505 return Qnil;
1506}
1507
3263d5a2 1508
2e344af3
KH
1509/* Return information about charsets in the text at PTR of NBYTES
1510 bytes, which are NCHARS characters. The value is:
f6302ac9 1511
cfe34140 1512 0: Each character is represented by one byte. This is always
3263d5a2
KH
1513 true for a unibyte string. For a multibyte string, true if
1514 it contains only ASCII characters.
1515
28c026cd
DL
1516 1: No charsets other than ascii, control-1, and latin-1 are
1517 found.
1d67c29b 1518
3263d5a2
KH
1519 2: Otherwise.
1520*/
4ed46869
KH
1521
1522int
3263d5a2
KH
1523string_xstring_p (string)
1524 Lisp_Object string;
4ed46869 1525{
8f924df7
KH
1526 const unsigned char *p = SDATA (string);
1527 const unsigned char *endp = p + SBYTES (string);
3263d5a2 1528
8f924df7 1529 if (SCHARS (string) == SBYTES (string))
3263d5a2
KH
1530 return 0;
1531
3263d5a2 1532 while (p < endp)
0282eb69 1533 {
3263d5a2 1534 int c = STRING_CHAR_ADVANCE (p);
2e344af3 1535
3cc67a4d 1536 if (c >= 0x100)
3263d5a2 1537 return 2;
0282eb69 1538 }
3263d5a2
KH
1539 return 1;
1540}
05505664 1541
05505664 1542
3263d5a2 1543/* Find charsets in the string at PTR of NCHARS and NBYTES.
4ed46869 1544
3cc67a4d
KH
1545 CHARSETS is a vector. If Nth element is non-nil, it means the
1546 charset whose id is N is already found.
2e344af3 1547
3263d5a2 1548 It may lookup a translation table TABLE if supplied. */
2e344af3 1549
3263d5a2 1550static void
3cc67a4d 1551find_charsets_in_text (ptr, nchars, nbytes, charsets, table, multibyte)
dbbb237d 1552 const unsigned char *ptr;
42ca828e 1553 EMACS_INT nchars, nbytes;
3263d5a2 1554 Lisp_Object charsets, table;
3cc67a4d 1555 int multibyte;
3263d5a2 1556{
dbbb237d 1557 const unsigned char *pend = ptr + nbytes;
3263d5a2
KH
1558
1559 if (nchars == nbytes)
3263d5a2 1560 {
3cc67a4d
KH
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)
3263d5a2 1579 {
3cc67a4d
KH
1580 int c = STRING_CHAR_ADVANCE (ptr);
1581 struct charset *charset;
3263d5a2 1582
3cc67a4d
KH
1583 if (!NILP (table))
1584 c = translate_char (table, c);
1585 charset = CHAR_CHARSET (c);
1586 ASET (charsets, CHARSET_ID (charset), Qt);
4ed46869 1587 }
4ed46869 1588 }
4ed46869
KH
1589}
1590
1591DEFUN ("find-charset-region", Ffind_charset_region, Sfind_charset_region,
23d2a7f1 1592 2, 3, 0,
fdb82f93
PJ
1593 doc: /* Return a list of charsets in the region between BEG and END.
1594BEG and END are buffer positions.
1595Optional arg TABLE if non-nil is a translation table to look up.
1596
fdb82f93
PJ
1597If the current buffer is unibyte, the returned list may contain
1598only `ascii', `eight-bit-control', and `eight-bit-graphic'. */)
1599 (beg, end, table)
23d2a7f1 1600 Lisp_Object beg, end, table;
4ed46869 1601{
3263d5a2 1602 Lisp_Object charsets;
42ca828e
DL
1603 EMACS_INT from, from_byte, to, stop, stop_byte;
1604 int i;
4ed46869 1605 Lisp_Object val;
3cc67a4d 1606 int multibyte = ! NILP (current_buffer->enable_multibyte_characters);
4ed46869
KH
1607
1608 validate_region (&beg, &end);
1609 from = XFASTINT (beg);
1610 stop = to = XFASTINT (end);
6ae1f27e 1611
4ed46869 1612 if (from < GPT && GPT < to)
6ae1f27e
RS
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
3263d5a2 1622 charsets = Fmake_vector (make_number (charset_table_used), Qnil);
4ed46869
KH
1623 while (1)
1624 {
3263d5a2 1625 find_charsets_in_text (BYTE_POS_ADDR (from_byte), stop - from,
3cc67a4d
KH
1626 stop_byte - from_byte, charsets, table,
1627 multibyte);
4ed46869 1628 if (stop < to)
6ae1f27e
RS
1629 {
1630 from = stop, from_byte = stop_byte;
1631 stop = to, stop_byte = CHAR_TO_BYTE (stop);
1632 }
4ed46869
KH
1633 else
1634 break;
1635 }
6ae1f27e 1636
4ed46869 1637 val = Qnil;
3263d5a2 1638 for (i = charset_table_used - 1; i >= 0; i--)
3cc67a4d 1639 if (!NILP (AREF (charsets, i)))
3263d5a2 1640 val = Fcons (CHARSET_NAME (charset_table + i), val);
4ed46869
KH
1641 return val;
1642}
1643
1644DEFUN ("find-charset-string", Ffind_charset_string, Sfind_charset_string,
23d2a7f1 1645 1, 2, 0,
fdb82f93
PJ
1646 doc: /* Return a list of charsets in STR.
1647Optional arg TABLE if non-nil is a translation table to look up.
1648
fdb82f93 1649If STR is unibyte, the returned list may contain
3263d5a2 1650only `ascii', `eight-bit-control', and `eight-bit-graphic'. */)
fdb82f93 1651 (str, table)
23d2a7f1 1652 Lisp_Object str, table;
4ed46869 1653{
3263d5a2 1654 Lisp_Object charsets;
4ed46869
KH
1655 int i;
1656 Lisp_Object val;
1657
b7826503 1658 CHECK_STRING (str);
87b089ad 1659
3263d5a2 1660 charsets = Fmake_vector (make_number (charset_table_used), Qnil);
8f924df7 1661 find_charsets_in_text (SDATA (str), SCHARS (str), SBYTES (str),
3cc67a4d
KH
1662 charsets, table,
1663 STRING_MULTIBYTE (str));
4ed46869 1664 val = Qnil;
3263d5a2 1665 for (i = charset_table_used - 1; i >= 0; i--)
3cc67a4d 1666 if (!NILP (AREF (charsets, i)))
3263d5a2 1667 val = Fcons (CHARSET_NAME (charset_table + i), val);
4ed46869
KH
1668 return val;
1669}
2e344af3 1670
4ed46869 1671\f
3263d5a2 1672
ecca2aad
KH
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. */
1676int
1677maybe_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
3263d5a2
KH
1708/* Return a character correponding to the code-point CODE of
1709 CHARSET. */
1710
1711int
1712decode_char (charset, code)
1713 struct charset *charset;
1714 unsigned code;
4ed46869 1715{
3263d5a2
KH
1716 int c, char_index;
1717 enum charset_method method = CHARSET_METHOD (charset);
ac4137cc 1718
3263d5a2
KH
1719 if (code < CHARSET_MIN_CODE (charset) || code > CHARSET_MAX_CODE (charset))
1720 return -1;
4ed46869 1721
374c5cfd 1722 if (method == CHARSET_METHOD_SUBSET)
2e344af3 1723 {
374c5cfd
KH
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);
2e344af3 1734 }
374c5cfd 1735 else if (method == CHARSET_METHOD_SUPERSET)
2e344af3 1736 {
3263d5a2 1737 Lisp_Object parents;
4ed46869 1738
374c5cfd 1739 parents = CHARSET_SUPERSET (charset);
3263d5a2
KH
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)));
374c5cfd 1745 unsigned this_code = code - code_offset;
4ed46869 1746
3263d5a2
KH
1747 charset = CHARSET_FROM_ID (id);
1748 if ((c = DECODE_CHAR (charset, this_code)) >= 0)
1749 break;
1750 }
1751 }
1752 else
ac4137cc 1753 {
3263d5a2 1754 char_index = CODE_POINT_TO_INDEX (charset, code);
69f8de5b
KH
1755 if (char_index < 0)
1756 return -1;
4ed46869 1757
3263d5a2 1758 if (method == CHARSET_METHOD_MAP)
ac4137cc 1759 {
3263d5a2 1760 Lisp_Object decoder;
4ed46869 1761
3263d5a2
KH
1762 decoder = CHARSET_DECODER (charset);
1763 if (! VECTORP (decoder))
ecca2aad
KH
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);
ac4137cc 1772 }
ecca2aad 1773 else /* method == CHARSET_METHOD_OFFSET */
ac4137cc 1774 {
3263d5a2 1775 c = char_index + CHARSET_CODE_OFFSET (charset);
ecca2aad
KH
1776 if (CHARSET_UNIFIED_P (charset)
1777 && c > MAX_UNICODE_CHAR)
1778 MAYBE_UNIFY_CHAR (c);
ac4137cc
KH
1779 }
1780 }
4ed46869 1781
3263d5a2 1782 return c;
90d7b74e
KH
1783}
1784
374c5cfd
KH
1785/* Variable used temporarily by the macro ENCODE_CHAR. */
1786Lisp_Object charset_work;
4ed46869 1787
3263d5a2 1788/* Return a code-point of CHAR in CHARSET. If CHAR doesn't belong to
28c026cd
DL
1789 CHARSET, return CHARSET_INVALID_CODE (CHARSET). If STRICT is true,
1790 use CHARSET's strict_max_char instead of max_char. */
4ed46869 1791
3263d5a2
KH
1792unsigned
1793encode_char (charset, c)
1794 struct charset *charset;
9b6a601f 1795 int c;
9d3d8cba 1796{
3263d5a2
KH
1797 unsigned code;
1798 enum charset_method method = CHARSET_METHOD (charset);
9d3d8cba 1799
3263d5a2 1800 if (CHARSET_UNIFIED_P (charset))
ac4137cc 1801 {
6809ca75 1802 Lisp_Object deunifier;
ecca2aad 1803 int code_index = -1;
4ed46869 1804
3263d5a2
KH
1805 deunifier = CHARSET_DEUNIFIER (charset);
1806 if (! CHAR_TABLE_P (deunifier))
ac4137cc 1807 {
ecca2aad 1808 load_charset (charset, 2);
3263d5a2 1809 deunifier = CHARSET_DEUNIFIER (charset);
ac4137cc 1810 }
ecca2aad
KH
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;
ac4137cc 1824 }
9d3d8cba 1825
374c5cfd
KH
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 }
9d3d8cba 1841
374c5cfd 1842 if (method == CHARSET_METHOD_SUPERSET)
859f2b3c 1843 {
3263d5a2 1844 Lisp_Object parents;
d2665018 1845
374c5cfd 1846 parents = CHARSET_SUPERSET (charset);
3263d5a2 1847 for (; CONSP (parents); parents = XCDR (parents))
beeedaad 1848 {
3263d5a2
KH
1849 int id = XINT (XCAR (XCAR (parents)));
1850 int code_offset = XINT (XCDR (XCAR (parents)));
1851 struct charset *this_charset = CHARSET_FROM_ID (id);
d2665018 1852
3263d5a2 1853 code = ENCODE_CHAR (this_charset, c);
dbbb237d
KH
1854 if (code != CHARSET_INVALID_CODE (this_charset))
1855 return code + code_offset;
beeedaad 1856 }
3263d5a2
KH
1857 return CHARSET_INVALID_CODE (charset);
1858 }
1bcc1567 1859
15c85a88
KH
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);
1bcc1567 1863
3263d5a2 1864 if (method == CHARSET_METHOD_MAP)
3f62427c 1865 {
3263d5a2 1866 Lisp_Object encoder;
beeedaad 1867 Lisp_Object val;
9b6a601f 1868
3263d5a2
KH
1869 encoder = CHARSET_ENCODER (charset);
1870 if (! CHAR_TABLE_P (CHARSET_ENCODER (charset)))
b8ebe9dd
KH
1871 {
1872 load_charset (charset, 2);
1873 encoder = CHARSET_ENCODER (charset);
1874 }
1875 if (CHAR_TABLE_P (encoder))
ecca2aad
KH
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 }
3263d5a2 1889 }
820ee249 1890 else /* method == CHARSET_METHOD_OFFSET */
beeedaad 1891 {
ecca2aad
KH
1892 int code_index = c - CHARSET_CODE_OFFSET (charset);
1893
1894 code = INDEX_TO_CODE_POINT (charset, code_index);
3f62427c 1895 }
8ac5a9cc 1896
3263d5a2 1897 return code;
4ed46869
KH
1898}
1899
4ed46869 1900
3263d5a2
KH
1901DEFUN ("decode-char", Fdecode_char, Sdecode_char, 2, 3, 0,
1902 doc: /* Decode the pair of CHARSET and CODE-POINT into a character.
1903Return nil if CODE-POINT is not valid in CHARSET.
4ed46869 1904
3263d5a2 1905CODE-POINT may be a cons (HIGHER-16-BIT-VALUE . LOWER-16-BIT-VALUE).
859f2b3c 1906
3263d5a2 1907Optional argument RESTRICTION specifies a way to map the pair of CCS
d0cf2d48 1908and CODE-POINT to a character. Currently not supported and just ignored. */)
3263d5a2
KH
1909 (charset, code_point, restriction)
1910 Lisp_Object charset, code_point, restriction;
4ed46869 1911{
3263d5a2
KH
1912 int c, id;
1913 unsigned code;
1914 struct charset *charsetp;
859f2b3c 1915
3263d5a2
KH
1916 CHECK_CHARSET_GET_ID (charset, id);
1917 if (CONSP (code_point))
1918 {
8f924df7
KH
1919 CHECK_NATNUM_CAR (code_point);
1920 CHECK_NATNUM_CDR (code_point);
69f8de5b 1921 code = (XINT (XCAR (code_point)) << 16) | (XINT (XCDR (code_point)));
3263d5a2 1922 }
4ed46869
KH
1923 else
1924 {
3263d5a2
KH
1925 CHECK_NATNUM (code_point);
1926 code = XINT (code_point);
4ed46869 1927 }
3263d5a2
KH
1928 charsetp = CHARSET_FROM_ID (id);
1929 c = DECODE_CHAR (charsetp, code);
1930 return (c >= 0 ? make_number (c) : Qnil);
4ed46869
KH
1931}
1932
859f2b3c 1933
3263d5a2
KH
1934DEFUN ("encode-char", Fencode_char, Sencode_char, 2, 3, 0,
1935 doc: /* Encode the character CH into a code-point of CHARSET.
1936Return nil if CHARSET doesn't include CH.
17e7ef1b 1937
d0cf2d48 1938Optional argument RESTRICTION specifies a way to map CH to a
3263d5a2
KH
1939code-point in CCS. Currently not supported and just ignored. */)
1940 (ch, charset, restriction)
1941 Lisp_Object ch, charset, restriction;
4ed46869 1942{
16fed1fc 1943 int id;
3263d5a2
KH
1944 unsigned code;
1945 struct charset *charsetp;
046b1f03 1946
3263d5a2
KH
1947 CHECK_CHARSET_GET_ID (charset, id);
1948 CHECK_NATNUM (ch);
3263d5a2 1949 charsetp = CHARSET_FROM_ID (id);
16fed1fc 1950 code = ENCODE_CHAR (charsetp, XINT (ch));
3263d5a2
KH
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);
beeedaad
KH
1956}
1957
beeedaad 1958
b121a744
KH
1959DEFUN ("make-char", Fmake_char, Smake_char, 1, 5, 0,
1960 doc:
1961 /* Return a character of CHARSET whose position codes are CODEn.
1962
1963CODE1 through CODE4 are optional, but if you don't supply sufficient
1964position codes, it is assumed that the minimum code in each dimension
04c2f2c5 1965is specified. */)
b121a744
KH
1966 (charset, code1, code2, code3, code4)
1967 Lisp_Object charset, code1, code2, code3, code4;
beeedaad 1968{
3263d5a2
KH
1969 int id, dimension;
1970 struct charset *charsetp;
b121a744
KH
1971 unsigned code;
1972 int c;
87b089ad 1973
3263d5a2
KH
1974 CHECK_CHARSET_GET_ID (charset, id);
1975 charsetp = CHARSET_FROM_ID (id);
4ed46869 1976
b121a744
KH
1977 dimension = CHARSET_DIMENSION (charsetp);
1978 if (NILP (code1))
d47073ca
KH
1979 code = (CHARSET_ASCII_COMPATIBLE_P (charsetp)
1980 ? 0 : CHARSET_MIN_CODE (charsetp));
3263d5a2 1981 else
859f2b3c 1982 {
b121a744
KH
1983 CHECK_NATNUM (code1);
1984 if (XFASTINT (code1) >= 0x100)
1985 args_out_of_range (make_number (0xFF), code1);
1986 code = XFASTINT (code1);
859f2b3c 1987
b0a1e45e 1988 if (dimension > 1)
beeedaad 1989 {
b121a744 1990 code <<= 8;
b0a1e45e
KH
1991 if (NILP (code2))
1992 code |= charsetp->code_space[(dimension - 2) * 4];
beeedaad 1993 else
b121a744 1994 {
b0a1e45e
KH
1995 CHECK_NATNUM (code2);
1996 if (XFASTINT (code2) >= 0x100)
1997 args_out_of_range (make_number (0xFF), code2);
1998 code |= XFASTINT (code2);
b121a744 1999 }
99529c2c 2000
b0a1e45e 2001 if (dimension > 2)
b121a744
KH
2002 {
2003 code <<= 8;
b0a1e45e
KH
2004 if (NILP (code3))
2005 code |= charsetp->code_space[(dimension - 3) * 4];
b121a744
KH
2006 else
2007 {
b0a1e45e
KH
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 }
b121a744
KH
2026 }
2027 }
beeedaad 2028 }
859f2b3c 2029 }
beeedaad 2030
b121a744
KH
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)");
3263d5a2 2036 return make_number (c);
4ed46869
KH
2037}
2038
beeedaad 2039
3263d5a2
KH
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. */
beeedaad 2043
3263d5a2
KH
2044struct charset *
2045char_charset (c, charset_list, code_return)
2046 int c;
2047 Lisp_Object charset_list;
2048 unsigned *code_return;
2e344af3 2049{
8a1816bb
KH
2050 int maybe_null = 0;
2051
3263d5a2
KH
2052 if (NILP (charset_list))
2053 charset_list = Vcharset_ordered_list;
8a1816bb
KH
2054 else
2055 maybe_null = 1;
beeedaad 2056
6c652beb 2057 while (CONSP (charset_list))
2e344af3 2058 {
3263d5a2
KH
2059 struct charset *charset = CHARSET_FROM_ID (XINT (XCAR (charset_list)));
2060 unsigned code = ENCODE_CHAR (charset, c);
beeedaad 2061
3263d5a2 2062 if (code != CHARSET_INVALID_CODE (charset))
beeedaad 2063 {
3263d5a2
KH
2064 if (code_return)
2065 *code_return = code;
2066 return charset;
3f62427c 2067 }
3263d5a2 2068 charset_list = XCDR (charset_list);
6c652beb
KH
2069 if (c <= MAX_UNICODE_CHAR
2070 && EQ (charset_list, Vcharset_non_preferred_head))
2071 return CHARSET_FROM_ID (charset_unicode);
3f62427c 2072 }
8a1816bb
KH
2073 return (maybe_null ? NULL
2074 : c <= MAX_5_BYTE_CHAR ? CHARSET_FROM_ID (charset_emacs)
6a9c90ec 2075 : CHARSET_FROM_ID (charset_eight_bit));
3f62427c
KH
2076}
2077
2e344af3 2078
3263d5a2 2079DEFUN ("split-char", Fsplit_char, Ssplit_char, 1, 1, 0,
3cc67a4d 2080 doc:
d0cf2d48 2081 /*Return list of charset and one to four position-codes of CH.
3cc67a4d
KH
2082The charset is decided by the current priority order of charsets.
2083A position-code is a byte value of each dimension of the code-point of
d0cf2d48 2084CH in the charset. */)
3263d5a2
KH
2085 (ch)
2086 Lisp_Object ch;
4ed46869 2087{
3263d5a2
KH
2088 struct charset *charset;
2089 int c, dimension;
2090 unsigned code;
4ed46869
KH
2091 Lisp_Object val;
2092
3263d5a2
KH
2093 CHECK_CHARACTER (ch);
2094 c = XFASTINT (ch);
2095 charset = CHAR_CHARSET (c);
2096 if (! charset)
3cc67a4d 2097 abort ();
3263d5a2
KH
2098 code = ENCODE_CHAR (charset, c);
2099 if (code == CHARSET_INVALID_CODE (charset))
2100 abort ();
2101 dimension = CHARSET_DIMENSION (charset);
3cc67a4d
KH
2102 for (val = Qnil; dimension > 0; dimension--)
2103 {
2104 val = Fcons (make_number (code & 0xFF), val);
2105 code >>= 8;
2106 }
3263d5a2 2107 return Fcons (CHARSET_NAME (charset), val);
4ed46869
KH
2108}
2109
740f080d 2110
4cb75c4b
KH
2111DEFUN ("char-charset", Fchar_charset, Schar_charset, 1, 2, 0,
2112 doc: /* Return the charset of highest priority that contains CH.
2113If optional 2nd arg RESTRICTION is non-nil, it is a list of charsets
2114from which to find the charset. It may also be a coding system. In
2115that case, find the charset from what supported by that coding system. */)
2116 (ch, restriction)
2117 Lisp_Object ch, restriction;
4ed46869 2118{
3263d5a2 2119 struct charset *charset;
4ed46869 2120
3263d5a2 2121 CHECK_CHARACTER (ch);
4cb75c4b
KH
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 }
3263d5a2 2146 return (CHARSET_NAME (charset));
4ed46869
KH
2147}
2148
17e7ef1b 2149
3263d5a2
KH
2150DEFUN ("charset-after", Fcharset_after, Scharset_after, 0, 1, 0,
2151 doc: /*
2152Return charset of a character in the current buffer at position POS.
2153If POS is nil, it defauls to the current point.
2154If POS is out of range, the value is nil. */)
2155 (pos)
2156 Lisp_Object pos;
2e344af3 2157{
3263d5a2
KH
2158 Lisp_Object ch;
2159 struct charset *charset;
046b1f03 2160
3263d5a2
KH
2161 ch = Fchar_after (pos);
2162 if (! INTEGERP (ch))
2163 return ch;
2164 charset = CHAR_CHARSET (XINT (ch));
2165 return (CHARSET_NAME (charset));
6ae1f27e 2166}
9036eb45 2167
87b089ad 2168
3263d5a2
KH
2169DEFUN ("iso-charset", Fiso_charset, Siso_charset, 3, 3, 0,
2170 doc: /*
2171Return charset of ISO's specification DIMENSION, CHARS, and FINAL-CHAR.
2172
2173ISO 2022's designation sequence (escape sequence) distinguishes charsets
2174by their DIMENSION, CHARS, and FINAL-CHAR,
d0cf2d48 2175whereas Emacs distinguishes them by charset symbol.
3263d5a2
KH
2176See the documentation of the function `charset-info' for the meanings of
2177DIMENSION, CHARS, and FINAL-CHAR. */)
2178 (dimension, chars, final_char)
2179 Lisp_Object dimension, chars, final_char;
6ae1f27e 2180{
3263d5a2 2181 int id;
82215ce9 2182 int chars_flag;
a8a35e61 2183
3263d5a2 2184 check_iso_charset_parameter (dimension, chars, final_char);
82215ce9
KH
2185 chars_flag = XFASTINT (chars) == 96;
2186 id = ISO_CHARSET_TABLE (XFASTINT (dimension), chars_flag,
3263d5a2
KH
2187 XFASTINT (final_char));
2188 return (id >= 0 ? CHARSET_NAME (CHARSET_FROM_ID (id)) : Qnil);
046b1f03
RS
2189}
2190
87b089ad 2191
3263d5a2
KH
2192DEFUN ("clear-charset-maps", Fclear_charset_maps, Sclear_charset_maps,
2193 0, 0, 0,
2194 doc: /*
ecca2aad
KH
2195Internal use only.
2196Clear temporary charset mapping tables.
2197It should be called only from temacs invoked for dumping. */)
3263d5a2 2198 ()
87b089ad 2199{
ecca2aad 2200 if (temp_charset_work)
87b089ad 2201 {
ecca2aad
KH
2202 free (temp_charset_work);
2203 temp_charset_work = NULL;
2e344af3 2204 }
2e344af3 2205
ecca2aad
KH
2206 if (CHAR_TABLE_P (Vchar_unify_table))
2207 Foptimize_char_table (Vchar_unify_table, Qnil);
740f080d 2208
3263d5a2 2209 return Qnil;
740f080d
KH
2210}
2211
8ddf5e57
DL
2212DEFUN ("charset-priority-list", Fcharset_priority_list,
2213 Scharset_priority_list, 0, 1, 0,
2214 doc: /* Return the list of charsets ordered by priority.
2215HIGHESTP non-nil means just return the highest priority one. */)
2216 (highestp)
2217 Lisp_Object highestp;
2e344af3 2218{
8ddf5e57 2219 Lisp_Object val = Qnil, list = Vcharset_ordered_list;
2e344af3 2220
8ddf5e57 2221 if (!NILP (highestp))
16fed1fc 2222 return CHARSET_NAME (CHARSET_FROM_ID (XINT (Fcar (list))));
2e344af3 2223
8ddf5e57 2224 while (!NILP (list))
2e344af3 2225 {
16fed1fc 2226 val = Fcons (CHARSET_NAME (CHARSET_FROM_ID (XINT (XCAR (list)))), val);
8ddf5e57 2227 list = XCDR (list);
2e344af3 2228 }
8ddf5e57 2229 return Fnreverse (val);
2e344af3
KH
2230}
2231
8ddf5e57
DL
2232DEFUN ("set-charset-priority", Fset_charset_priority, Sset_charset_priority,
2233 1, MANY, 0,
2234 doc: /* Assign higher priority to the charsets given as arguments.
2235usage: (set-charset-priority &rest charsets) */)
2236 (nargs, args)
2237 int nargs;
4ed46869
KH
2238 Lisp_Object *args;
2239{
af7c60ca 2240 Lisp_Object new_head, old_list, arglist[2];
321c819c 2241 Lisp_Object list_2022, list_emacs_mule;
16fed1fc 2242 int i, id;
4ed46869 2243
8ddf5e57 2244 old_list = Fcopy_sequence (Vcharset_ordered_list);
af7c60ca 2245 new_head = Qnil;
8ddf5e57 2246 for (i = 0; i < nargs; i++)
4ed46869 2247 {
8ddf5e57 2248 CHECK_CHARSET_GET_ID (args[i], id);
af7c60ca
KH
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 }
5729c92f 2254 }
8ddf5e57 2255 arglist[0] = Fnreverse (new_head);
6a9c90ec 2256 arglist[1] = Vcharset_non_preferred_head = old_list;
8ddf5e57 2257 Vcharset_ordered_list = Fnconc (2, arglist);
dbbb237d 2258 charset_ordered_list_tick++;
5729c92f 2259
6809ca75 2260 charset_unibyte = -1;
321c819c 2261 for (old_list = Vcharset_ordered_list, list_2022 = list_emacs_mule = Qnil;
d017b41e 2262 CONSP (old_list); old_list = XCDR (old_list))
5729c92f 2263 {
e77415b0 2264 if (! NILP (Fmemq (XCAR (old_list), Viso_2022_charset_list)))
321c819c
KH
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);
6809ca75
KH
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 }
4ed46869 2277 }
321c819c
KH
2278 Viso_2022_charset_list = Fnreverse (list_2022);
2279 Vemacs_mule_charset_list = Fnreverse (list_emacs_mule);
6809ca75
KH
2280 if (charset_unibyte < 0)
2281 charset_unibyte = charset_iso_8859_1;
4ed46869 2282
8ddf5e57 2283 return Qnil;
4ed46869
KH
2284}
2285
d5b33309
KH
2286DEFUN ("charset-id-internal", Fcharset_id_internal, Scharset_id_internal,
2287 0, 1, 0,
2288 doc: /* Internal use only.
2289Return charset identification number of CHARSET. */)
2290 (charset)
2291 Lisp_Object charset;
4ed46869 2292{
d5b33309 2293 int id;
4ed46869 2294
d5b33309
KH
2295 CHECK_CHARSET_GET_ID (charset, id);
2296 return make_number (id);
4ed46869
KH
2297}
2298
4ed46869 2299\f
3263d5a2
KH
2300void
2301init_charset ()
4ed46869 2302{
c8f94403
GM
2303 Lisp_Object tempdir;
2304 tempdir = Fexpand_file_name (build_string ("charsets"), Vdata_directory);
6809ca75 2305 if (access ((char *) SDATA (tempdir), 0) < 0)
c8f94403
GM
2306 {
2307 dir_warning ("Error: charsets directory (%s) does not exist.\n\
2308Emacs will not function correctly without the character map files.\n\
2309Please 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);
4ed46869
KH
2315}
2316
4ed46869 2317
dfcf069d 2318void
4ed46869
KH
2319init_charset_once ()
2320{
2321 int i, j, k;
2322
3263d5a2
KH
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;
4ed46869 2327
60383934 2328 for (i = 0; i < 256; i++)
3263d5a2 2329 emacs_mule_charset[i] = NULL;
4ed46869 2330
7c7dceee
KH
2331 charset_jisx0201_roman = -1;
2332 charset_jisx0208_1978 = -1;
2333 charset_jisx0208 = -1;
d32320c4 2334 charset_ksc5601 = -1;
4ed46869
KH
2335}
2336
2337#ifdef emacs
2338
dfcf069d 2339void
4ed46869
KH
2340syms_of_charset ()
2341{
3263d5a2
KH
2342 DEFSYM (Qcharsetp, "charsetp");
2343
2344 DEFSYM (Qascii, "ascii");
2345 DEFSYM (Qunicode, "unicode");
6c652beb 2346 DEFSYM (Qemacs, "emacs");
2fe1edd1 2347 DEFSYM (Qeight_bit, "eight-bit");
3263d5a2
KH
2348 DEFSYM (Qiso_8859_1, "iso-8859-1");
2349
2350 DEFSYM (Qgl, "gl");
2351 DEFSYM (Qgr, "gr");
2352
3263d5a2
KH
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
3943ed76
KH
2362 /* Don't staticpro them here. It's done in syms_of_fns. */
2363 QCtest = intern (":test");
2364 Qeq = intern ("eq");
2365
3263d5a2 2366 staticpro (&Vcharset_hash_table);
8f924df7
KH
2367 {
2368 Lisp_Object args[2];
2369 args[0] = QCtest;
2370 args[1] = Qeq;
2371 Vcharset_hash_table = Fmake_hash_table (2, args);
2372 }
3263d5a2
KH
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
3263d5a2
KH
2379 defsubr (&Scharsetp);
2380 defsubr (&Smap_charset_chars);
2381 defsubr (&Sdefine_charset_internal);
2382 defsubr (&Sdefine_charset_alias);
3263d5a2
KH
2383 defsubr (&Scharset_plist);
2384 defsubr (&Sset_charset_plist);
2385 defsubr (&Sunify_charset);
3fac5a51 2386 defsubr (&Sget_unused_iso_final_char);
4ed46869
KH
2387 defsubr (&Sdeclare_equiv_charset);
2388 defsubr (&Sfind_charset_region);
2389 defsubr (&Sfind_charset_string);
3263d5a2
KH
2390 defsubr (&Sdecode_char);
2391 defsubr (&Sencode_char);
4ed46869 2392 defsubr (&Ssplit_char);
3263d5a2 2393 defsubr (&Smake_char);
4ed46869 2394 defsubr (&Schar_charset);
90d7b74e 2395 defsubr (&Scharset_after);
4ed46869 2396 defsubr (&Siso_charset);
3263d5a2 2397 defsubr (&Sclear_charset_maps);
8ddf5e57
DL
2398 defsubr (&Scharset_priority_list);
2399 defsubr (&Sset_charset_priority);
d5b33309 2400 defsubr (&Scharset_id_internal);
3263d5a2 2401
4beef065 2402 DEFVAR_LISP ("charset-map-path", &Vcharset_map_path,
6f3122a7 2403 doc: /* *List of directories to search for charset map files. */);
4beef065 2404 Vcharset_map_path = Qnil;
4ed46869 2405
ecca2aad
KH
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
4ed46869 2410 DEFVAR_LISP ("charset-list", &Vcharset_list,
528623a0 2411 doc: /* List of all charsets ever defined. */);
3263d5a2
KH
2412 Vcharset_list = Qnil;
2413
6a9c90ec
KH
2414 DEFVAR_LISP ("current-iso639-language", &Vcurrent_iso639_language,
2415 doc: /* ISO639 language mnemonic symbol for the current language environment.
2416If the current language environment is for multiple languages (e.g. "Latin-1"),
2417the value may be a list of mnemonics. */);
2418 Vcurrent_iso639_language = Qnil;
2419
2fe1edd1
KH
2420 charset_ascii
2421 = define_charset_internal (Qascii, 1, "\x00\x7F\x00\x00\x00\x00",
2422 0, 127, 'B', -1, 0, 1, 0, 0);
14e3d523
KH
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);
2fe1edd1 2426 charset_unicode
73fbf2d9 2427 = define_charset_internal (Qunicode, 3, "\x00\xFF\x00\xFF\x00\x10",
2fe1edd1 2428 0, MAX_UNICODE_CHAR, -1, 0, -1, 1, 0, 0);
6c652beb
KH
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);
2fe1edd1
KH
2432 charset_eight_bit
2433 = define_charset_internal (Qeight_bit, 1, "\x80\xFF\x00\x00\x00\x00",
880820fe 2434 128, 255, -1, 0, -1, 0, 1,
2fe1edd1 2435 MAX_5_BYTE_CHAR + 1);
6809ca75 2436 charset_unibyte = charset_iso_8859_1;
4ed46869
KH
2437}
2438
2439#endif /* emacs */
cefd8c4f
KH
2440
2441/* arch-tag: 66a89b8d-4c28-47d3-9ca1-56f78440d69f
2442 (do not change this comment) */