]> code.delx.au - gnu-emacs/blob - src/charset.c
(Fchars_in_region): Coerce markers.
[gnu-emacs] / src / charset.c
1 /* Basic multilingual character support.
2 Copyright (C) 1995, 1997, 1998 Electrotechnical Laboratory, JAPAN.
3 Licensed to the Free Software Foundation.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 /* At first, see the document in `charset.h' to understand the code in
23 this file. */
24
25 #include <stdio.h>
26
27 #ifdef emacs
28
29 #include <sys/types.h>
30 #include <config.h>
31 #include "lisp.h"
32 #include "buffer.h"
33 #include "charset.h"
34 #include "coding.h"
35 #include "disptab.h"
36
37 #else /* not emacs */
38
39 #include "mulelib.h"
40
41 #endif /* emacs */
42
43 Lisp_Object Qcharset, Qascii, Qcomposition;
44
45 /* Declaration of special leading-codes. */
46 int leading_code_composition; /* for composite characters */
47 int leading_code_private_11; /* for private DIMENSION1 of 1-column */
48 int leading_code_private_12; /* for private DIMENSION1 of 2-column */
49 int leading_code_private_21; /* for private DIMENSION2 of 1-column */
50 int leading_code_private_22; /* for private DIMENSION2 of 2-column */
51
52 /* Declaration of special charsets. */
53 int charset_ascii; /* ASCII */
54 int charset_composition; /* for a composite character */
55 int charset_latin_iso8859_1; /* ISO8859-1 (Latin-1) */
56 int charset_jisx0208_1978; /* JISX0208.1978 (Japanese Kanji old set) */
57 int charset_jisx0208; /* JISX0208.1983 (Japanese Kanji) */
58 int charset_katakana_jisx0201; /* JISX0201.Kana (Japanese Katakana) */
59 int charset_latin_jisx0201; /* JISX0201.Roman (Japanese Roman) */
60 int charset_big5_1; /* Big5 Level 1 (Chinese Traditional) */
61 int charset_big5_2; /* Big5 Level 2 (Chinese Traditional) */
62
63 int min_composite_char;
64
65 Lisp_Object Qcharset_table;
66
67 /* A char-table containing information of each character set. */
68 Lisp_Object Vcharset_table;
69
70 /* A vector of charset symbol indexed by charset-id. This is used
71 only for returning charset symbol from C functions. */
72 Lisp_Object Vcharset_symbol_table;
73
74 /* A list of charset symbols ever defined. */
75 Lisp_Object Vcharset_list;
76
77 /* Vector of translation table ever defined.
78 ID of a translation table is used to index this vector. */
79 Lisp_Object Vtranslation_table_vector;
80
81 /* Tables used by macros BYTES_BY_CHAR_HEAD and WIDTH_BY_CHAR_HEAD. */
82 int bytes_by_char_head[256];
83 int width_by_char_head[256];
84
85 /* Mapping table from ISO2022's charset (specified by DIMENSION,
86 CHARS, and FINAL-CHAR) to Emacs' charset. */
87 int iso_charset_table[2][2][128];
88
89 /* Table of pointers to the structure `cmpchar_info' indexed by
90 CMPCHAR-ID. */
91 struct cmpchar_info **cmpchar_table;
92 /* The current size of `cmpchar_table'. */
93 static int cmpchar_table_size;
94 /* Number of the current composite characters. */
95 int n_cmpchars;
96
97 /* Variables used locally in the macro FETCH_MULTIBYTE_CHAR. */
98 unsigned char *_fetch_multibyte_char_p;
99 int _fetch_multibyte_char_len;
100
101 /* Offset to add to a non-ASCII value when inserting it. */
102 int nonascii_insert_offset;
103
104 /* Translation table for converting non-ASCII unibyte characters
105 to multibyte codes, or nil. */
106 Lisp_Object Vnonascii_translation_table;
107
108 /* List of all possible generic characters. */
109 Lisp_Object Vgeneric_character_list;
110
111 #define min(X, Y) ((X) < (Y) ? (X) : (Y))
112 #define max(X, Y) ((X) > (Y) ? (X) : (Y))
113 \f
114 void
115 invalid_character (c)
116 int c;
117 {
118 error ("Invalid character: %o, %d, 0x%x", c);
119 }
120
121
122 /* Set STR a pointer to the multi-byte form of the character C. If C
123 is not a composite character, the multi-byte form is set in WORKBUF
124 and STR points WORKBUF. The caller should allocate at least 4-byte
125 area at WORKBUF in advance. Returns the length of the multi-byte
126 form. If C is an invalid character to have a multi-byte form,
127 signal an error.
128
129 Use macro `CHAR_STRING (C, WORKBUF, STR)' instead of calling this
130 function directly if C can be an ASCII character. */
131
132 int
133 non_ascii_char_to_string (c, workbuf, str)
134 int c;
135 unsigned char *workbuf, **str;
136 {
137 int charset, c1, c2;
138
139 if (COMPOSITE_CHAR_P (c))
140 {
141 int cmpchar_id = COMPOSITE_CHAR_ID (c);
142
143 if (cmpchar_id < n_cmpchars)
144 {
145 *str = cmpchar_table[cmpchar_id]->data;
146 return cmpchar_table[cmpchar_id]->len;
147 }
148 else
149 {
150 invalid_character (c);
151 }
152 }
153
154 SPLIT_NON_ASCII_CHAR (c, charset, c1, c2);
155 if (!charset
156 || ! CHARSET_DEFINED_P (charset)
157 || c1 >= 0 && c1 < 32
158 || c2 >= 0 && c2 < 32)
159 invalid_character (c);
160
161 *str = workbuf;
162 *workbuf++ = CHARSET_LEADING_CODE_BASE (charset);
163 if (*workbuf = CHARSET_LEADING_CODE_EXT (charset))
164 workbuf++;
165 *workbuf++ = c1 | 0x80;
166 if (c2 >= 0)
167 *workbuf++ = c2 | 0x80;
168
169 return (workbuf - *str);
170 }
171
172 /* Return a non-ASCII character of which multi-byte form is at STR of
173 length LEN. If ACTUAL_LEN is not NULL, the actual length of the
174 multibyte form is set to the address ACTUAL_LEN.
175
176 If exclude_tail_garbage is nonzero, ACTUAL_LEN excludes gabage
177 bytes following the non-ASCII character.
178
179 Use macro `STRING_CHAR (STR, LEN)' instead of calling this function
180 directly if STR can hold an ASCII character. */
181
182 int
183 string_to_non_ascii_char (str, len, actual_len, exclude_tail_garbage)
184 const unsigned char *str;
185 int len, *actual_len, exclude_tail_garbage;
186 {
187 int charset;
188 unsigned char c1, c2;
189 register int c, bytes;
190
191 c = *str;
192 bytes = 1;
193
194 if (BASE_LEADING_CODE_P (c))
195 {
196 while (bytes < len && ! CHAR_HEAD_P (str[bytes])) bytes++;
197
198 if (c == LEADING_CODE_COMPOSITION)
199 {
200 int cmpchar_id = str_cmpchar_id (str, bytes);
201
202 if (cmpchar_id >= 0)
203 {
204 c = MAKE_COMPOSITE_CHAR (cmpchar_id);
205 if (exclude_tail_garbage)
206 bytes = cmpchar_table[cmpchar_id]->len;
207 }
208 }
209 else
210 {
211 int charset = c, c1, c2 = 0;
212 int char_bytes = BYTES_BY_CHAR_HEAD (c);
213
214 str++;
215 if (c >= LEADING_CODE_PRIVATE_11)
216 charset = *str++;
217 if (char_bytes <= bytes && CHARSET_DEFINED_P (charset))
218 {
219 c1 = *str++ & 0x7f;
220 if (CHARSET_DIMENSION (charset) == 2)
221 c2 = *str & 0x7F;
222 c = MAKE_NON_ASCII_CHAR (charset, c1, c2);
223 if (exclude_tail_garbage)
224 bytes = char_bytes;
225 }
226 }
227 }
228
229 if (actual_len)
230 *actual_len = bytes;
231 return c;
232 }
233
234 /* Return the length of the multi-byte form at string STR of length LEN. */
235 int
236 multibyte_form_length (str, len)
237 const unsigned char *str;
238 int len;
239 {
240 int bytes = 1;
241
242 if (BASE_LEADING_CODE_P (*str))
243 while (bytes < len && ! CHAR_HEAD_P (str[bytes])) bytes++;
244
245 return bytes;
246 }
247
248 /* Check if string STR of length LEN contains valid multi-byte form of
249 a character. If valid, charset and position codes of the character
250 is set at *CHARSET, *C1, and *C2, and return 0. If not valid,
251 return -1. This should be used only in the macro SPLIT_STRING
252 which checks range of STR in advance. */
253
254 int
255 split_non_ascii_string (str, len, charset, c1, c2)
256 register const unsigned char *str;
257 register unsigned char *c1, *c2;
258 register int len, *charset;
259 {
260 register unsigned int cs = *str++;
261
262 if (cs == LEADING_CODE_COMPOSITION)
263 {
264 int cmpchar_id = str_cmpchar_id (str - 1, len);
265
266 if (cmpchar_id < 0)
267 return -1;
268 *charset = cs, *c1 = cmpchar_id >> 7, *c2 = cmpchar_id & 0x7F;
269 }
270 else if ((cs < LEADING_CODE_PRIVATE_11 || (cs = *str++) >= 0xA0)
271 && CHARSET_DEFINED_P (cs))
272 {
273 *charset = cs;
274 if (*str < 0xA0)
275 return -1;
276 *c1 = (*str++) & 0x7F;
277 if (CHARSET_DIMENSION (cs) == 2)
278 {
279 if (*str < 0xA0)
280 return -1;
281 *c2 = (*str++) & 0x7F;
282 }
283 }
284 else
285 return -1;
286 return 0;
287 }
288
289 /* Translate character C by translation table TABLE. If C
290 is negative, translate a character specified by CHARSET, C1, and C2
291 (C1 and C2 are code points of the character). If no translation is
292 found in TABLE, return C. */
293 int
294 translate_char (table, c, charset, c1, c2)
295 Lisp_Object table;
296 int c, charset, c1, c2;
297 {
298 Lisp_Object ch;
299 int alt_charset, alt_c1, alt_c2, dimension;
300
301 if (c < 0) c = MAKE_CHAR (charset, c1, c2);
302 if (!CHAR_TABLE_P (table)
303 || (ch = Faref (table, make_number (c)), !INTEGERP (ch))
304 || XINT (ch) < 0)
305 return c;
306
307 SPLIT_CHAR (XFASTINT (ch), alt_charset, alt_c1, alt_c2);
308 dimension = CHARSET_DIMENSION (alt_charset);
309 if (dimension == 1 && alt_c1 > 0 || dimension == 2 && alt_c2 > 0)
310 /* CH is not a generic character, just return it. */
311 return XFASTINT (ch);
312
313 /* Since CH is a generic character, we must return a specific
314 charater which has the same position codes as C from CH. */
315 if (charset < 0)
316 SPLIT_CHAR (c, charset, c1, c2);
317 if (dimension != CHARSET_DIMENSION (charset))
318 /* We can't make such a character because of dimension mismatch. */
319 return c;
320 return MAKE_CHAR (alt_charset, c1, c2);
321 }
322
323 /* Convert the unibyte character C to multibyte based on
324 Vnonascii_translation_table or nonascii_insert_offset. If they can't
325 convert C to a valid multibyte character, convert it based on
326 DEFAULT_NONASCII_INSERT_OFFSET which makes C a Latin-1 character. */
327
328 int
329 unibyte_char_to_multibyte (c)
330 int c;
331 {
332 if (c >= 0240 && c < 0400)
333 {
334 int c_save = c;
335
336 if (! NILP (Vnonascii_translation_table))
337 c = XINT (Faref (Vnonascii_translation_table, make_number (c)));
338 else if (nonascii_insert_offset > 0)
339 c += nonascii_insert_offset;
340 if (c >= 0240 && (c < 0400 || ! VALID_MULTIBYTE_CHAR_P (c)))
341 c = c_save + DEFAULT_NONASCII_INSERT_OFFSET;
342 }
343 return c;
344 }
345 \f
346 /* Update the table Vcharset_table with the given arguments (see the
347 document of `define-charset' for the meaning of each argument).
348 Several other table contents are also updated. The caller should
349 check the validity of CHARSET-ID and the remaining arguments in
350 advance. */
351
352 void
353 update_charset_table (charset_id, dimension, chars, width, direction,
354 iso_final_char, iso_graphic_plane,
355 short_name, long_name, description)
356 Lisp_Object charset_id, dimension, chars, width, direction;
357 Lisp_Object iso_final_char, iso_graphic_plane;
358 Lisp_Object short_name, long_name, description;
359 {
360 int charset = XINT (charset_id);
361 int bytes;
362 unsigned char leading_code_base, leading_code_ext;
363
364 if (NILP (CHARSET_TABLE_ENTRY (charset)))
365 CHARSET_TABLE_ENTRY (charset)
366 = Fmake_vector (make_number (CHARSET_MAX_IDX), Qnil);
367
368 /* Get byte length of multibyte form, base leading-code, and
369 extended leading-code of the charset. See the comment under the
370 title "GENERAL NOTE on CHARACTER SET (CHARSET)" in charset.h. */
371 bytes = XINT (dimension);
372 if (charset < MIN_CHARSET_PRIVATE_DIMENSION1)
373 {
374 /* Official charset, it doesn't have an extended leading-code. */
375 if (charset != CHARSET_ASCII)
376 bytes += 1; /* For a base leading-code. */
377 leading_code_base = charset;
378 leading_code_ext = 0;
379 }
380 else
381 {
382 /* Private charset. */
383 bytes += 2; /* For base and extended leading-codes. */
384 leading_code_base
385 = (charset < LEADING_CODE_EXT_12
386 ? LEADING_CODE_PRIVATE_11
387 : (charset < LEADING_CODE_EXT_21
388 ? LEADING_CODE_PRIVATE_12
389 : (charset < LEADING_CODE_EXT_22
390 ? LEADING_CODE_PRIVATE_21
391 : LEADING_CODE_PRIVATE_22)));
392 leading_code_ext = charset;
393 }
394
395 CHARSET_TABLE_INFO (charset, CHARSET_ID_IDX) = charset_id;
396 CHARSET_TABLE_INFO (charset, CHARSET_BYTES_IDX) = make_number (bytes);
397 CHARSET_TABLE_INFO (charset, CHARSET_DIMENSION_IDX) = dimension;
398 CHARSET_TABLE_INFO (charset, CHARSET_CHARS_IDX) = chars;
399 CHARSET_TABLE_INFO (charset, CHARSET_WIDTH_IDX) = width;
400 CHARSET_TABLE_INFO (charset, CHARSET_DIRECTION_IDX) = direction;
401 CHARSET_TABLE_INFO (charset, CHARSET_LEADING_CODE_BASE_IDX)
402 = make_number (leading_code_base);
403 CHARSET_TABLE_INFO (charset, CHARSET_LEADING_CODE_EXT_IDX)
404 = make_number (leading_code_ext);
405 CHARSET_TABLE_INFO (charset, CHARSET_ISO_FINAL_CHAR_IDX) = iso_final_char;
406 CHARSET_TABLE_INFO (charset, CHARSET_ISO_GRAPHIC_PLANE_IDX)
407 = iso_graphic_plane;
408 CHARSET_TABLE_INFO (charset, CHARSET_SHORT_NAME_IDX) = short_name;
409 CHARSET_TABLE_INFO (charset, CHARSET_LONG_NAME_IDX) = long_name;
410 CHARSET_TABLE_INFO (charset, CHARSET_DESCRIPTION_IDX) = description;
411 CHARSET_TABLE_INFO (charset, CHARSET_PLIST_IDX) = Qnil;
412
413 {
414 /* If we have already defined a charset which has the same
415 DIMENSION, CHARS and ISO-FINAL-CHAR but the different
416 DIRECTION, we must update the entry REVERSE-CHARSET of both
417 charsets. If there's no such charset, the value of the entry
418 is set to nil. */
419 int i;
420
421 for (i = 0; i <= MAX_CHARSET; i++)
422 if (!NILP (CHARSET_TABLE_ENTRY (i)))
423 {
424 if (CHARSET_DIMENSION (i) == XINT (dimension)
425 && CHARSET_CHARS (i) == XINT (chars)
426 && CHARSET_ISO_FINAL_CHAR (i) == XINT (iso_final_char)
427 && CHARSET_DIRECTION (i) != XINT (direction))
428 {
429 CHARSET_TABLE_INFO (charset, CHARSET_REVERSE_CHARSET_IDX)
430 = make_number (i);
431 CHARSET_TABLE_INFO (i, CHARSET_REVERSE_CHARSET_IDX) = charset_id;
432 break;
433 }
434 }
435 if (i > MAX_CHARSET)
436 /* No such a charset. */
437 CHARSET_TABLE_INFO (charset, CHARSET_REVERSE_CHARSET_IDX)
438 = make_number (-1);
439 }
440
441 if (charset != CHARSET_ASCII
442 && charset < MIN_CHARSET_PRIVATE_DIMENSION1)
443 {
444 /* Update tables bytes_by_char_head and width_by_char_head. */
445 bytes_by_char_head[leading_code_base] = bytes;
446 width_by_char_head[leading_code_base] = XINT (width);
447
448 /* Update table emacs_code_class. */
449 emacs_code_class[charset] = (bytes == 2
450 ? EMACS_leading_code_2
451 : (bytes == 3
452 ? EMACS_leading_code_3
453 : EMACS_leading_code_4));
454 }
455
456 /* Update table iso_charset_table. */
457 if (ISO_CHARSET_TABLE (dimension, chars, iso_final_char) < 0)
458 ISO_CHARSET_TABLE (dimension, chars, iso_final_char) = charset;
459 }
460
461 #ifdef emacs
462
463 /* Return charset id of CHARSET_SYMBOL, or return -1 if CHARSET_SYMBOL
464 is invalid. */
465 int
466 get_charset_id (charset_symbol)
467 Lisp_Object charset_symbol;
468 {
469 Lisp_Object val;
470 int charset;
471
472 return ((SYMBOLP (charset_symbol)
473 && (val = Fget (charset_symbol, Qcharset), VECTORP (val))
474 && (charset = XINT (XVECTOR (val)->contents[CHARSET_ID_IDX]),
475 CHARSET_VALID_P (charset)))
476 ? charset : -1);
477 }
478
479 /* Return an identification number for a new private charset of
480 DIMENSION and WIDTH. If there's no more room for the new charset,
481 return 0. */
482 Lisp_Object
483 get_new_private_charset_id (dimension, width)
484 int dimension, width;
485 {
486 int charset, from, to;
487
488 if (dimension == 1)
489 {
490 if (width == 1)
491 from = LEADING_CODE_EXT_11, to = LEADING_CODE_EXT_12;
492 else
493 from = LEADING_CODE_EXT_12, to = LEADING_CODE_EXT_21;
494 }
495 else
496 {
497 if (width == 1)
498 from = LEADING_CODE_EXT_21, to = LEADING_CODE_EXT_22;
499 else
500 from = LEADING_CODE_EXT_22, to = LEADING_CODE_EXT_MAX + 1;
501 }
502
503 for (charset = from; charset < to; charset++)
504 if (!CHARSET_DEFINED_P (charset)) break;
505
506 return make_number (charset < to ? charset : 0);
507 }
508
509 DEFUN ("define-charset", Fdefine_charset, Sdefine_charset, 3, 3, 0,
510 "Define CHARSET-ID as the identification number of CHARSET with INFO-VECTOR.\n\
511 If CHARSET-ID is nil, it is decided automatically, which means CHARSET is\n\
512 treated as a private charset.\n\
513 INFO-VECTOR is a vector of the format:\n\
514 [DIMENSION CHARS WIDTH DIRECTION ISO-FINAL-CHAR ISO-GRAPHIC-PLANE\n\
515 SHORT-NAME LONG-NAME DESCRIPTION]\n\
516 The meanings of each elements is as follows:\n\
517 DIMENSION (integer) is the number of bytes to represent a character: 1 or 2.\n\
518 CHARS (integer) is the number of characters in a dimension: 94 or 96.\n\
519 WIDTH (integer) is the number of columns a character in the charset\n\
520 occupies on the screen: one of 0, 1, and 2.\n\
521 \n\
522 DIRECTION (integer) is the rendering direction of characters in the\n\
523 charset when rendering. If 0, render from right to left, else\n\
524 render from left to right.\n\
525 \n\
526 ISO-FINAL-CHAR (character) is the final character of the\n\
527 corresponding ISO 2022 charset.\n\
528 \n\
529 ISO-GRAPHIC-PLANE (integer) is the graphic plane to be invoked\n\
530 while encoding to variants of ISO 2022 coding system, one of the\n\
531 following: 0/graphic-plane-left(GL), 1/graphic-plane-right(GR).\n\
532 \n\
533 SHORT-NAME (string) is the short name to refer to the charset.\n\
534 \n\
535 LONG-NAME (string) is the long name to refer to the charset.\n\
536 \n\
537 DESCRIPTION (string) is the description string of the charset.")
538 (charset_id, charset_symbol, info_vector)
539 Lisp_Object charset_id, charset_symbol, info_vector;
540 {
541 Lisp_Object *vec;
542
543 if (!NILP (charset_id))
544 CHECK_NUMBER (charset_id, 0);
545 CHECK_SYMBOL (charset_symbol, 1);
546 CHECK_VECTOR (info_vector, 2);
547
548 if (! NILP (charset_id))
549 {
550 if (! CHARSET_VALID_P (XINT (charset_id)))
551 error ("Invalid CHARSET: %d", XINT (charset_id));
552 else if (CHARSET_DEFINED_P (XINT (charset_id)))
553 error ("Already defined charset: %d", XINT (charset_id));
554 }
555
556 vec = XVECTOR (info_vector)->contents;
557 if (XVECTOR (info_vector)->size != 9
558 || !INTEGERP (vec[0]) || !(XINT (vec[0]) == 1 || XINT (vec[0]) == 2)
559 || !INTEGERP (vec[1]) || !(XINT (vec[1]) == 94 || XINT (vec[1]) == 96)
560 || !INTEGERP (vec[2]) || !(XINT (vec[2]) == 1 || XINT (vec[2]) == 2)
561 || !INTEGERP (vec[3]) || !(XINT (vec[3]) == 0 || XINT (vec[3]) == 1)
562 || !INTEGERP (vec[4]) || !(XINT (vec[4]) >= '0' && XINT (vec[4]) <= '~')
563 || !INTEGERP (vec[5]) || !(XINT (vec[5]) == 0 || XINT (vec[5]) == 1)
564 || !STRINGP (vec[6])
565 || !STRINGP (vec[7])
566 || !STRINGP (vec[8]))
567 error ("Invalid info-vector argument for defining charset %s",
568 XSYMBOL (charset_symbol)->name->data);
569
570 if (NILP (charset_id))
571 {
572 charset_id = get_new_private_charset_id (XINT (vec[0]), XINT (vec[2]));
573 if (XINT (charset_id) == 0)
574 error ("There's no room for a new private charset %s",
575 XSYMBOL (charset_symbol)->name->data);
576 }
577
578 update_charset_table (charset_id, vec[0], vec[1], vec[2], vec[3],
579 vec[4], vec[5], vec[6], vec[7], vec[8]);
580 Fput (charset_symbol, Qcharset, CHARSET_TABLE_ENTRY (XINT (charset_id)));
581 CHARSET_SYMBOL (XINT (charset_id)) = charset_symbol;
582 Vcharset_list = Fcons (charset_symbol, Vcharset_list);
583 return Qnil;
584 }
585
586 DEFUN ("generic-character-list", Fgeneric_character_list,
587 Sgeneric_character_list, 0, 0, 0,
588 "Return a list of all possible generic characters.\n\
589 It includes a generic character for a charset not yet defined.")
590 ()
591 {
592 return Vgeneric_character_list;
593 }
594
595 DEFUN ("get-unused-iso-final-char", Fget_unused_iso_final_char,
596 Sget_unused_iso_final_char, 2, 2, 0,
597 "Return an unsed ISO's final char for a charset of DIMENISION and CHARS.\n\
598 DIMENSION is the number of bytes to represent a character: 1 or 2.\n\
599 CHARS is the number of characters in a dimension: 94 or 96.\n\
600 \n\
601 This final char is for private use, thus the range is `0' (48) .. `?' (63).\n\
602 If there's no unused final char for the specified kind of charset,\n\
603 return nil.")
604 (dimension, chars)
605 Lisp_Object dimension, chars;
606 {
607 int final_char;
608
609 CHECK_NUMBER (dimension, 0);
610 CHECK_NUMBER (chars, 1);
611 if (XINT (dimension) != 1 && XINT (dimension) != 2)
612 error ("Invalid charset dimension %d, it should be 1 or 2",
613 XINT (dimension));
614 if (XINT (chars) != 94 && XINT (chars) != 96)
615 error ("Invalid charset chars %d, it should be 94 or 96",
616 XINT (chars));
617 for (final_char = '0'; final_char <= '?'; final_char++)
618 {
619 if (ISO_CHARSET_TABLE (dimension, chars, make_number (final_char)) < 0)
620 break;
621 }
622 return (final_char <= '?' ? make_number (final_char) : Qnil);
623 }
624
625 DEFUN ("declare-equiv-charset", Fdeclare_equiv_charset, Sdeclare_equiv_charset,
626 4, 4, 0,
627 "Declare a charset of DIMENSION, CHARS, FINAL-CHAR is the same as CHARSET.\n\
628 CHARSET should be defined by `defined-charset' in advance.")
629 (dimension, chars, final_char, charset_symbol)
630 Lisp_Object dimension, chars, final_char, charset_symbol;
631 {
632 int charset;
633
634 CHECK_NUMBER (dimension, 0);
635 CHECK_NUMBER (chars, 1);
636 CHECK_NUMBER (final_char, 2);
637 CHECK_SYMBOL (charset_symbol, 3);
638
639 if (XINT (dimension) != 1 && XINT (dimension) != 2)
640 error ("Invalid DIMENSION %d, it should be 1 or 2", XINT (dimension));
641 if (XINT (chars) != 94 && XINT (chars) != 96)
642 error ("Invalid CHARS %d, it should be 94 or 96", XINT (chars));
643 if (XINT (final_char) < '0' || XFASTINT (final_char) > '~')
644 error ("Invalid FINAL-CHAR %c, it should be `0'..`~'", XINT (chars));
645 if ((charset = get_charset_id (charset_symbol)) < 0)
646 error ("Invalid charset %s", XSYMBOL (charset_symbol)->name->data);
647
648 ISO_CHARSET_TABLE (dimension, chars, final_char) = charset;
649 return Qnil;
650 }
651
652 /* Return number of different charsets in STR of length LEN. In
653 addition, for each found charset N, CHARSETS[N] is set 1. The
654 caller should allocate CHARSETS (MAX_CHARSET + 1 elements) in advance.
655 It may lookup a translation table TABLE if supplied.
656
657 If CMPCHARP is nonzero and some composite character is found,
658 CHARSETS[128] is also set 1 and the returned number is incremented
659 by 1. */
660
661 int
662 find_charset_in_str (str, len, charsets, table, cmpcharp)
663 unsigned char *str;
664 int len, *charsets;
665 Lisp_Object table;
666 int cmpcharp;
667 {
668 register int num = 0, c;
669
670 if (! CHAR_TABLE_P (table))
671 table = Qnil;
672
673 while (len > 0)
674 {
675 int bytes, charset;
676 c = *str;
677
678 if (c == LEADING_CODE_COMPOSITION)
679 {
680 int cmpchar_id = str_cmpchar_id (str, len);
681 GLYPH *glyph;
682
683 if (cmpchar_id >= 0)
684 {
685 struct cmpchar_info *cmpcharp = cmpchar_table[cmpchar_id];
686 int i;
687
688 for (i = 0; i < cmpcharp->glyph_len; i++)
689 {
690 c = cmpcharp->glyph[i];
691 if (!NILP (table))
692 {
693 if ((c = translate_char (table, c, 0, 0, 0)) < 0)
694 c = cmpcharp->glyph[i];
695 }
696 if ((charset = CHAR_CHARSET (c)) < 0)
697 charset = CHARSET_ASCII;
698 if (!charsets[charset])
699 {
700 charsets[charset] = 1;
701 num += 1;
702 }
703 }
704 str += cmpcharp->len;
705 len -= cmpcharp->len;
706 continue;
707 }
708
709 charset = CHARSET_ASCII;
710 bytes = 1;
711 }
712 else
713 {
714 c = STRING_CHAR_AND_LENGTH (str, len, bytes);
715 if (! NILP (table))
716 {
717 int c1 = translate_char (table, c, 0, 0, 0);
718 if (c1 >= 0)
719 c = c1;
720 }
721 charset = CHAR_CHARSET (c);
722 }
723
724 if (!charsets[charset])
725 {
726 charsets[charset] = 1;
727 num += 1;
728 }
729 str += bytes;
730 len -= bytes;
731 }
732 return num;
733 }
734
735 DEFUN ("find-charset-region", Ffind_charset_region, Sfind_charset_region,
736 2, 3, 0,
737 "Return a list of charsets in the region between BEG and END.\n\
738 BEG and END are buffer positions.\n\
739 Optional arg TABLE if non-nil is a translation table to look up.")
740 (beg, end, table)
741 Lisp_Object beg, end, table;
742 {
743 int charsets[MAX_CHARSET + 1];
744 int from, from_byte, to, stop, stop_byte, i;
745 Lisp_Object val;
746
747 validate_region (&beg, &end);
748 from = XFASTINT (beg);
749 stop = to = XFASTINT (end);
750
751 if (from < GPT && GPT < to)
752 {
753 stop = GPT;
754 stop_byte = GPT_BYTE;
755 }
756 else
757 stop_byte = CHAR_TO_BYTE (stop);
758
759 from_byte = CHAR_TO_BYTE (from);
760
761 bzero (charsets, (MAX_CHARSET + 1) * sizeof (int));
762 while (1)
763 {
764 find_charset_in_str (BYTE_POS_ADDR (from_byte), stop_byte - from_byte,
765 charsets, table, 0);
766 if (stop < to)
767 {
768 from = stop, from_byte = stop_byte;
769 stop = to, stop_byte = CHAR_TO_BYTE (stop);
770 }
771 else
772 break;
773 }
774
775 val = Qnil;
776 for (i = MAX_CHARSET; i >= 0; i--)
777 if (charsets[i])
778 val = Fcons (CHARSET_SYMBOL (i), val);
779 return val;
780 }
781
782 DEFUN ("find-charset-string", Ffind_charset_string, Sfind_charset_string,
783 1, 2, 0,
784 "Return a list of charsets in STR.\n\
785 Optional arg TABLE if non-nil is a translation table to look up.")
786 (str, table)
787 Lisp_Object str, table;
788 {
789 int charsets[MAX_CHARSET + 1];
790 int i;
791 Lisp_Object val;
792
793 CHECK_STRING (str, 0);
794
795 if (! STRING_MULTIBYTE (str))
796 return Qnil;
797
798 bzero (charsets, (MAX_CHARSET + 1) * sizeof (int));
799 find_charset_in_str (XSTRING (str)->data, STRING_BYTES (XSTRING (str)),
800 charsets, table, 0);
801 val = Qnil;
802 for (i = MAX_CHARSET; i >= 0; i--)
803 if (charsets[i])
804 val = Fcons (CHARSET_SYMBOL (i), val);
805 return val;
806 }
807 \f
808 DEFUN ("make-char-internal", Fmake_char_internal, Smake_char_internal, 1, 3, 0,
809 "")
810 (charset, code1, code2)
811 Lisp_Object charset, code1, code2;
812 {
813 CHECK_NUMBER (charset, 0);
814
815 if (NILP (code1))
816 XSETFASTINT (code1, 0);
817 else
818 CHECK_NUMBER (code1, 1);
819 if (NILP (code2))
820 XSETFASTINT (code2, 0);
821 else
822 CHECK_NUMBER (code2, 2);
823
824 if (!CHARSET_DEFINED_P (XINT (charset)))
825 error ("Invalid charset: %d", XINT (charset));
826
827 return make_number (MAKE_CHAR (XINT (charset), XINT (code1), XINT (code2)));
828 }
829
830 DEFUN ("split-char", Fsplit_char, Ssplit_char, 1, 1, 0,
831 "Return list of charset and one or two position-codes of CHAR.")
832 (ch)
833 Lisp_Object ch;
834 {
835 Lisp_Object val;
836 int charset, c1, c2;
837
838 CHECK_NUMBER (ch, 0);
839 SPLIT_CHAR (XFASTINT (ch), charset, c1, c2);
840 return (c2 >= 0
841 ? Fcons (CHARSET_SYMBOL (charset),
842 Fcons (make_number (c1), Fcons (make_number (c2), Qnil)))
843 : Fcons (CHARSET_SYMBOL (charset), Fcons (make_number (c1), Qnil)));
844 }
845
846 DEFUN ("char-charset", Fchar_charset, Schar_charset, 1, 1, 0,
847 "Return charset of CHAR.")
848 (ch)
849 Lisp_Object ch;
850 {
851 CHECK_NUMBER (ch, 0);
852
853 return CHARSET_SYMBOL (CHAR_CHARSET (XINT (ch)));
854 }
855
856 DEFUN ("charset-after", Fcharset_after, Scharset_after, 0, 1, 0,
857 "Return charset of a character in current buffer at position POS.\n\
858 If POS is nil, it defauls to the current point.")
859 (pos)
860 Lisp_Object pos;
861 {
862 register int pos_byte, c, charset;
863 register unsigned char *p;
864
865 if (NILP (pos))
866 pos_byte = PT_BYTE;
867 else if (MARKERP (pos))
868 pos_byte = marker_byte_position (pos);
869 else
870 {
871 CHECK_NUMBER (pos, 0);
872 pos_byte = CHAR_TO_BYTE (XINT (pos));
873 }
874 p = BYTE_POS_ADDR (pos_byte);
875 c = STRING_CHAR (p, Z_BYTE - pos_byte);
876 charset = CHAR_CHARSET (c);
877 return CHARSET_SYMBOL (charset);
878 }
879
880 DEFUN ("iso-charset", Fiso_charset, Siso_charset, 3, 3, 0,
881 "Return charset of ISO's specification DIMENSION, CHARS, and FINAL-CHAR.\n\
882 \n\
883 ISO 2022's designation sequence (escape sequence) distinguishes charsets\n\
884 by their DIMENSION, CHARS, and FINAL-CHAR,\n\
885 where as Emacs distinguishes them by charset symbol.\n\
886 See the documentation of the function `charset-info' for the meanings of\n\
887 DIMENSION, CHARS, and FINAL-CHAR.")
888 (dimension, chars, final_char)
889 Lisp_Object dimension, chars, final_char;
890 {
891 int charset;
892
893 CHECK_NUMBER (dimension, 0);
894 CHECK_NUMBER (chars, 1);
895 CHECK_NUMBER (final_char, 2);
896
897 if ((charset = ISO_CHARSET_TABLE (dimension, chars, final_char)) < 0)
898 return Qnil;
899 return CHARSET_SYMBOL (charset);
900 }
901
902 /* If GENERICP is nonzero, return nonzero iff C is a valid normal or
903 generic character. If GENERICP is zero, return nonzero iff C is a
904 valid normal character. Do not call this function directly,
905 instead use macro CHAR_VALID_P. */
906 int
907 char_valid_p (c, genericp)
908 int c, genericp;
909 {
910 int charset, c1, c2;
911
912 if (c < 0)
913 return 0;
914 if (SINGLE_BYTE_CHAR_P (c))
915 return 1;
916 SPLIT_NON_ASCII_CHAR (c, charset, c1, c2);
917 if (!CHARSET_VALID_P (charset))
918 return 0;
919 return (c < MIN_CHAR_COMPOSITION
920 ? ((c & CHAR_FIELD1_MASK) /* i.e. dimension of C is two. */
921 ? (genericp && c1 == 0 && c2 == 0
922 || c1 >= 32 && c2 >= 32)
923 : (genericp && c1 == 0
924 || c1 >= 32))
925 : c < MIN_CHAR_COMPOSITION + n_cmpchars);
926 }
927
928 DEFUN ("char-valid-p", Fchar_valid_p, Schar_valid_p, 1, 2, 0,
929 "Return t if OBJECT is a valid normal character.\n\
930 If optional arg GENERICP is non-nil, also return t if OBJECT is\n\
931 a valid generic character.")
932 (object, genericp)
933 Lisp_Object object, genericp;
934 {
935 if (! NATNUMP (object))
936 return Qnil;
937 return (CHAR_VALID_P (XFASTINT (object), !NILP (genericp)) ? Qt : Qnil);
938 }
939
940 DEFUN ("unibyte-char-to-multibyte", Funibyte_char_to_multibyte,
941 Sunibyte_char_to_multibyte, 1, 1, 0,
942 "Convert the unibyte character CH to multibyte character.\n\
943 The conversion is done based on `nonascii-translation-table' (which see)\n\
944 or `nonascii-insert-offset' (which see).")
945 (ch)
946 Lisp_Object ch;
947 {
948 int c;
949
950 CHECK_NUMBER (ch, 0);
951 c = XINT (ch);
952 if (c < 0 || c >= 0400)
953 error ("Invalid unibyte character: %d", c);
954 c = unibyte_char_to_multibyte (c);
955 if (c < 0)
956 error ("Can't convert to multibyte character: %d", XINT (ch));
957 return make_number (c);
958 }
959
960 DEFUN ("char-bytes", Fchar_bytes, Schar_bytes, 1, 1, 0,
961 "Return byte length of multi-byte form of CHAR.")
962 (ch)
963 Lisp_Object ch;
964 {
965 Lisp_Object val;
966 int bytes;
967
968 CHECK_NUMBER (ch, 0);
969 if (COMPOSITE_CHAR_P (XFASTINT (ch)))
970 {
971 unsigned int id = COMPOSITE_CHAR_ID (XFASTINT (ch));
972
973 bytes = (id < n_cmpchars ? cmpchar_table[id]->len : 1);
974 }
975 else
976 {
977 int charset = CHAR_CHARSET (XFASTINT (ch));
978
979 bytes = CHARSET_DEFINED_P (charset) ? CHARSET_BYTES (charset) : 1;
980 }
981
982 XSETFASTINT (val, bytes);
983 return val;
984 }
985
986 /* Return the width of character of which multi-byte form starts with
987 C. The width is measured by how many columns occupied on the
988 screen when displayed in the current buffer. */
989
990 #define ONE_BYTE_CHAR_WIDTH(c) \
991 (c < 0x20 \
992 ? (c == '\t' \
993 ? XFASTINT (current_buffer->tab_width) \
994 : (c == '\n' ? 0 : (NILP (current_buffer->ctl_arrow) ? 4 : 2))) \
995 : (c < 0x7f \
996 ? 1 \
997 : (c == 0x7F \
998 ? (NILP (current_buffer->ctl_arrow) ? 4 : 2) \
999 : ((! NILP (current_buffer->enable_multibyte_characters) \
1000 && BASE_LEADING_CODE_P (c)) \
1001 ? WIDTH_BY_CHAR_HEAD (c) \
1002 : 4))))
1003
1004 DEFUN ("char-width", Fchar_width, Schar_width, 1, 1, 0,
1005 "Return width of CHAR when displayed in the current buffer.\n\
1006 The width is measured by how many columns it occupies on the screen.")
1007 (ch)
1008 Lisp_Object ch;
1009 {
1010 Lisp_Object val, disp;
1011 int c;
1012 struct Lisp_Char_Table *dp = buffer_display_table ();
1013
1014 CHECK_NUMBER (ch, 0);
1015
1016 c = XINT (ch);
1017
1018 /* Get the way the display table would display it. */
1019 disp = dp ? DISP_CHAR_VECTOR (dp, c) : Qnil;
1020
1021 if (VECTORP (disp))
1022 XSETINT (val, XVECTOR (disp)->size);
1023 else if (SINGLE_BYTE_CHAR_P (c))
1024 XSETINT (val, ONE_BYTE_CHAR_WIDTH (c));
1025 else if (COMPOSITE_CHAR_P (c))
1026 {
1027 int id = COMPOSITE_CHAR_ID (XFASTINT (ch));
1028 XSETFASTINT (val, (id < n_cmpchars ? cmpchar_table[id]->width : 0));
1029 }
1030 else
1031 {
1032 int charset = CHAR_CHARSET (c);
1033
1034 XSETFASTINT (val, CHARSET_WIDTH (charset));
1035 }
1036 return val;
1037 }
1038
1039 /* Return width of string STR of length LEN when displayed in the
1040 current buffer. The width is measured by how many columns it
1041 occupies on the screen. */
1042
1043 int
1044 strwidth (str, len)
1045 unsigned char *str;
1046 int len;
1047 {
1048 unsigned char *endp = str + len;
1049 int width = 0;
1050 struct Lisp_Char_Table *dp = buffer_display_table ();
1051
1052 while (str < endp)
1053 {
1054 if (*str == LEADING_CODE_COMPOSITION)
1055 {
1056 int id = str_cmpchar_id (str, endp - str);
1057
1058 if (id < 0)
1059 {
1060 width += 4;
1061 str++;
1062 }
1063 else
1064 {
1065 width += cmpchar_table[id]->width;
1066 str += cmpchar_table[id]->len;
1067 }
1068 }
1069 else
1070 {
1071 Lisp_Object disp;
1072 int thislen;
1073 int c = STRING_CHAR_AND_LENGTH (str, endp - str, thislen);
1074
1075 /* Get the way the display table would display it. */
1076 if (dp)
1077 disp = DISP_CHAR_VECTOR (dp, c);
1078 else
1079 disp = Qnil;
1080
1081 if (VECTORP (disp))
1082 width += XVECTOR (disp)->size;
1083 else
1084 width += ONE_BYTE_CHAR_WIDTH (*str);
1085
1086 str += thislen;
1087 }
1088 }
1089 return width;
1090 }
1091
1092 DEFUN ("string-width", Fstring_width, Sstring_width, 1, 1, 0,
1093 "Return width of STRING when displayed in the current buffer.\n\
1094 Width is measured by how many columns it occupies on the screen.\n\
1095 When calculating width of a multibyte character in STRING,\n\
1096 only the base leading-code is considered; the validity of\n\
1097 the following bytes is not checked.")
1098 (str)
1099 Lisp_Object str;
1100 {
1101 Lisp_Object val;
1102
1103 CHECK_STRING (str, 0);
1104 XSETFASTINT (val, strwidth (XSTRING (str)->data,
1105 STRING_BYTES (XSTRING (str))));
1106 return val;
1107 }
1108
1109 DEFUN ("char-direction", Fchar_direction, Schar_direction, 1, 1, 0,
1110 "Return the direction of CHAR.\n\
1111 The returned value is 0 for left-to-right and 1 for right-to-left.")
1112 (ch)
1113 Lisp_Object ch;
1114 {
1115 int charset;
1116
1117 CHECK_NUMBER (ch, 0);
1118 charset = CHAR_CHARSET (XFASTINT (ch));
1119 if (!CHARSET_DEFINED_P (charset))
1120 invalid_character (XINT (ch));
1121 return CHARSET_TABLE_INFO (charset, CHARSET_DIRECTION_IDX);
1122 }
1123
1124 DEFUN ("chars-in-region", Fchars_in_region, Schars_in_region, 2, 2, 0,
1125 "Return number of characters between BEG and END.")
1126 (beg, end)
1127 Lisp_Object beg, end;
1128 {
1129 int from, to;
1130
1131 CHECK_NUMBER_COERCE_MARKER (beg, 0);
1132 CHECK_NUMBER_COERCE_MARKER (end, 1);
1133
1134 from = min (XFASTINT (beg), XFASTINT (end));
1135 to = max (XFASTINT (beg), XFASTINT (end));
1136
1137 return make_number (to - from);
1138 }
1139
1140 /* Return the number of characters in the NBYTES bytes at PTR.
1141 This works by looking at the contents and checking for multibyte sequences.
1142 However, if the current buffer has enable-multibyte-characters = nil,
1143 we treat each byte as a character. */
1144
1145 int
1146 chars_in_text (ptr, nbytes)
1147 unsigned char *ptr;
1148 int nbytes;
1149 {
1150 unsigned char *endp, c;
1151 int chars;
1152
1153 /* current_buffer is null at early stages of Emacs initialization. */
1154 if (current_buffer == 0
1155 || NILP (current_buffer->enable_multibyte_characters))
1156 return nbytes;
1157
1158 endp = ptr + nbytes;
1159 chars = 0;
1160
1161 while (ptr < endp)
1162 {
1163 c = *ptr++;
1164
1165 if (BASE_LEADING_CODE_P (c))
1166 while (ptr < endp && ! CHAR_HEAD_P (*ptr)) ptr++;
1167 chars++;
1168 }
1169
1170 return chars;
1171 }
1172
1173 /* Return the number of characters in the NBYTES bytes at PTR.
1174 This works by looking at the contents and checking for multibyte sequences.
1175 It ignores enable-multibyte-characters. */
1176
1177 int
1178 multibyte_chars_in_text (ptr, nbytes)
1179 unsigned char *ptr;
1180 int nbytes;
1181 {
1182 unsigned char *endp, c;
1183 int chars;
1184
1185 endp = ptr + nbytes;
1186 chars = 0;
1187
1188 while (ptr < endp)
1189 {
1190 c = *ptr++;
1191
1192 if (BASE_LEADING_CODE_P (c))
1193 while (ptr < endp && ! CHAR_HEAD_P (*ptr)) ptr++;
1194 chars++;
1195 }
1196
1197 return chars;
1198 }
1199
1200 DEFUN ("string", Fstring, Sstring, 1, MANY, 0,
1201 "Concatenate all the argument characters and make the result a string.")
1202 (n, args)
1203 int n;
1204 Lisp_Object *args;
1205 {
1206 int i;
1207 unsigned char *buf
1208 = (unsigned char *) alloca (MAX_LENGTH_OF_MULTI_BYTE_FORM * n);
1209 unsigned char *p = buf;
1210 Lisp_Object val;
1211
1212 for (i = 0; i < n; i++)
1213 {
1214 int c, len;
1215 unsigned char *str;
1216
1217 if (!INTEGERP (args[i]))
1218 CHECK_NUMBER (args[i], 0);
1219 c = XINT (args[i]);
1220 len = CHAR_STRING (c, p, str);
1221 if (p != str)
1222 /* C is a composite character. */
1223 bcopy (str, p, len);
1224 p += len;
1225 }
1226
1227 val = make_string_from_bytes (buf, n, p - buf);
1228 return val;
1229 }
1230
1231 #endif /* emacs */
1232 \f
1233 /*** Composite characters staffs ***/
1234
1235 /* Each composite character is identified by CMPCHAR-ID which is
1236 assigned when Emacs needs the character code of the composite
1237 character (e.g. when displaying it on the screen). See the
1238 document "GENERAL NOTE on COMPOSITE CHARACTER" in `charset.h' how a
1239 composite character is represented in Emacs. */
1240
1241 /* If `static' is defined, it means that it is defined to null string. */
1242 #ifndef static
1243 /* The following function is copied from lread.c. */
1244 static int
1245 hash_string (ptr, len)
1246 unsigned char *ptr;
1247 int len;
1248 {
1249 register unsigned char *p = ptr;
1250 register unsigned char *end = p + len;
1251 register unsigned char c;
1252 register int hash = 0;
1253
1254 while (p != end)
1255 {
1256 c = *p++;
1257 if (c >= 0140) c -= 40;
1258 hash = ((hash<<3) + (hash>>28) + c);
1259 }
1260 return hash & 07777777777;
1261 }
1262 #endif
1263
1264 #define CMPCHAR_HASH_TABLE_SIZE 0xFFF
1265
1266 static int *cmpchar_hash_table[CMPCHAR_HASH_TABLE_SIZE];
1267
1268 /* Each element of `cmpchar_hash_table' is a pointer to an array of
1269 integer, where the 1st element is the size of the array, the 2nd
1270 element is how many elements are actually used in the array, and
1271 the remaining elements are CMPCHAR-IDs of composite characters of
1272 the same hash value. */
1273 #define CMPCHAR_HASH_SIZE(table) table[0]
1274 #define CMPCHAR_HASH_USED(table) table[1]
1275 #define CMPCHAR_HASH_CMPCHAR_ID(table, i) table[i]
1276
1277 /* Return CMPCHAR-ID of the composite character in STR of the length
1278 LEN. If the composite character has not yet been registered,
1279 register it in `cmpchar_table' and assign new CMPCHAR-ID. This
1280 is the sole function for assigning CMPCHAR-ID. */
1281 int
1282 str_cmpchar_id (str, len)
1283 const unsigned char *str;
1284 int len;
1285 {
1286 int hash_idx, *hashp;
1287 unsigned char *buf;
1288 int embedded_rule; /* 1 if composition rule is embedded. */
1289 int chars; /* number of components. */
1290 int i;
1291 struct cmpchar_info *cmpcharp;
1292
1293 /* The second byte 0xFF means compostion rule is embedded. */
1294 embedded_rule = (str[1] == 0xFF);
1295
1296 /* At first, get the actual length of the composite character. */
1297 {
1298 const unsigned char *p, *endp = str + 1, *lastp = str + len;
1299 int bytes;
1300
1301 while (endp < lastp && ! CHAR_HEAD_P (*endp)) endp++;
1302 if (endp - str < 5)
1303 /* Any composite char have at least 5-byte length. */
1304 return -1;
1305
1306 chars = 0;
1307 p = str + 1;
1308 while (p < endp)
1309 {
1310 if (embedded_rule) p++;
1311 /* No need of checking if *P is 0xA0 because
1312 BYTES_BY_CHAR_HEAD (0x80) surely returns 2. */
1313 p += BYTES_BY_CHAR_HEAD (*p - 0x20);
1314 chars++;
1315 }
1316 if (p > endp || chars < 2 || chars > MAX_COMPONENT_COUNT)
1317 /* Invalid components. */
1318 return -1;
1319 len = p - str;
1320 }
1321 hash_idx = hash_string (str, len) % CMPCHAR_HASH_TABLE_SIZE;
1322 hashp = cmpchar_hash_table[hash_idx];
1323
1324 /* Then, look into the hash table. */
1325 if (hashp != NULL)
1326 /* Find the correct one among composite characters of the same
1327 hash value. */
1328 for (i = 2; i < CMPCHAR_HASH_USED (hashp); i++)
1329 {
1330 cmpcharp = cmpchar_table[CMPCHAR_HASH_CMPCHAR_ID (hashp, i)];
1331 if (len == cmpcharp->len
1332 && ! bcmp (str, cmpcharp->data, len))
1333 return CMPCHAR_HASH_CMPCHAR_ID (hashp, i);
1334 }
1335
1336 /* We have to register the composite character in cmpchar_table. */
1337 if (n_cmpchars > (CHAR_FIELD2_MASK | CHAR_FIELD3_MASK))
1338 /* No, we have no more room for a new composite character. */
1339 return -1;
1340
1341 /* Make the entry in hash table. */
1342 if (hashp == NULL)
1343 {
1344 /* Make a table for 8 composite characters initially. */
1345 hashp = (cmpchar_hash_table[hash_idx]
1346 = (int *) xmalloc (sizeof (int) * (2 + 8)));
1347 CMPCHAR_HASH_SIZE (hashp) = 10;
1348 CMPCHAR_HASH_USED (hashp) = 2;
1349 }
1350 else if (CMPCHAR_HASH_USED (hashp) >= CMPCHAR_HASH_SIZE (hashp))
1351 {
1352 CMPCHAR_HASH_SIZE (hashp) += 8;
1353 hashp = (cmpchar_hash_table[hash_idx]
1354 = (int *) xrealloc (hashp,
1355 sizeof (int) * CMPCHAR_HASH_SIZE (hashp)));
1356 }
1357 CMPCHAR_HASH_CMPCHAR_ID (hashp, CMPCHAR_HASH_USED (hashp)) = n_cmpchars;
1358 CMPCHAR_HASH_USED (hashp)++;
1359
1360 /* Set information of the composite character in cmpchar_table. */
1361 if (cmpchar_table_size == 0)
1362 {
1363 /* This is the first composite character to be registered. */
1364 cmpchar_table_size = 256;
1365 cmpchar_table
1366 = (struct cmpchar_info **) xmalloc (sizeof (cmpchar_table[0])
1367 * cmpchar_table_size);
1368 }
1369 else if (cmpchar_table_size <= n_cmpchars)
1370 {
1371 cmpchar_table_size += 256;
1372 cmpchar_table
1373 = (struct cmpchar_info **) xrealloc (cmpchar_table,
1374 sizeof (cmpchar_table[0])
1375 * cmpchar_table_size);
1376 }
1377
1378 cmpcharp = (struct cmpchar_info *) xmalloc (sizeof (struct cmpchar_info));
1379
1380 cmpcharp->len = len;
1381 cmpcharp->data = (unsigned char *) xmalloc (len + 1);
1382 bcopy (str, cmpcharp->data, len);
1383 cmpcharp->data[len] = 0;
1384 cmpcharp->glyph_len = chars;
1385 cmpcharp->glyph = (GLYPH *) xmalloc (sizeof (GLYPH) * chars);
1386 if (embedded_rule)
1387 {
1388 cmpcharp->cmp_rule = (unsigned char *) xmalloc (chars);
1389 cmpcharp->col_offset = (float *) xmalloc (sizeof (float) * chars);
1390 }
1391 else
1392 {
1393 cmpcharp->cmp_rule = NULL;
1394 cmpcharp->col_offset = NULL;
1395 }
1396
1397 /* Setup GLYPH data and composition rules (if any) so as not to make
1398 them every time on displaying. */
1399 {
1400 unsigned char *bufp;
1401 int width;
1402 float leftmost = 0.0, rightmost = 1.0;
1403
1404 if (embedded_rule)
1405 /* At first, col_offset[N] is set to relative to col_offset[0]. */
1406 cmpcharp->col_offset[0] = 0;
1407
1408 for (i = 0, bufp = cmpcharp->data + 1; i < chars; i++)
1409 {
1410 if (embedded_rule)
1411 cmpcharp->cmp_rule[i] = *bufp++;
1412
1413 if (*bufp == 0xA0) /* This is an ASCII character. */
1414 {
1415 cmpcharp->glyph[i] = FAST_MAKE_GLYPH ((*++bufp & 0x7F), 0);
1416 width = 1;
1417 bufp++;
1418 }
1419 else /* Multibyte character. */
1420 {
1421 /* Make `bufp' point normal multi-byte form temporally. */
1422 *bufp -= 0x20;
1423 cmpcharp->glyph[i]
1424 = FAST_MAKE_GLYPH (string_to_non_ascii_char (bufp, 4, 0, 0), 0);
1425 width = WIDTH_BY_CHAR_HEAD (*bufp);
1426 *bufp += 0x20;
1427 bufp += BYTES_BY_CHAR_HEAD (*bufp - 0x20);
1428 }
1429
1430 if (embedded_rule && i > 0)
1431 {
1432 /* Reference points (global_ref and new_ref) are
1433 encoded as below:
1434
1435 0--1--2 -- ascent
1436 | |
1437 | |
1438 | 4 -+--- center
1439 -- 3 5 -- baseline
1440 | |
1441 6--7--8 -- descent
1442
1443 Now, we calculate the column offset of the new glyph
1444 from the left edge of the first glyph. This can avoid
1445 the same calculation everytime displaying this
1446 composite character. */
1447
1448 /* Reference points of global glyph and new glyph. */
1449 int global_ref = (cmpcharp->cmp_rule[i] - 0xA0) / 9;
1450 int new_ref = (cmpcharp->cmp_rule[i] - 0xA0) % 9;
1451 /* Column offset relative to the first glyph. */
1452 float left = (leftmost
1453 + (global_ref % 3) * (rightmost - leftmost) / 2.0
1454 - (new_ref % 3) * width / 2.0);
1455
1456 cmpcharp->col_offset[i] = left;
1457 if (left < leftmost)
1458 leftmost = left;
1459 if (left + width > rightmost)
1460 rightmost = left + width;
1461 }
1462 else
1463 {
1464 if (width > rightmost)
1465 rightmost = width;
1466 }
1467 }
1468 if (embedded_rule)
1469 {
1470 /* Now col_offset[N] are relative to the left edge of the
1471 first component. Make them relative to the left edge of
1472 overall glyph. */
1473 for (i = 0; i < chars; i++)
1474 cmpcharp->col_offset[i] -= leftmost;
1475 /* Make rightmost holds width of overall glyph. */
1476 rightmost -= leftmost;
1477 }
1478
1479 cmpcharp->width = rightmost;
1480 if (cmpcharp->width < rightmost)
1481 /* To get a ceiling integer value. */
1482 cmpcharp->width++;
1483 }
1484
1485 cmpchar_table[n_cmpchars] = cmpcharp;
1486
1487 return n_cmpchars++;
1488 }
1489
1490 /* Return the Nth element of the composite character C. */
1491 int
1492 cmpchar_component (c, n)
1493 unsigned int c, n;
1494 {
1495 int id = COMPOSITE_CHAR_ID (c);
1496
1497 if (id >= n_cmpchars /* C is not a valid composite character. */
1498 || n >= cmpchar_table[id]->glyph_len) /* No such component. */
1499 return -1;
1500 /* No face data is stored in glyph code. */
1501 return ((int) (cmpchar_table[id]->glyph[n]));
1502 }
1503
1504 DEFUN ("cmpcharp", Fcmpcharp, Scmpcharp, 1, 1, 0,
1505 "T if CHAR is a composite character.")
1506 (ch)
1507 Lisp_Object ch;
1508 {
1509 CHECK_NUMBER (ch, 0);
1510 return (COMPOSITE_CHAR_P (XINT (ch)) ? Qt : Qnil);
1511 }
1512
1513 DEFUN ("composite-char-component", Fcmpchar_component, Scmpchar_component,
1514 2, 2, 0,
1515 "Return the IDXth component character of composite character CHARACTER.")
1516 (character, idx)
1517 Lisp_Object character, idx;
1518 {
1519 int c;
1520
1521 CHECK_NUMBER (character, 0);
1522 CHECK_NUMBER (idx, 1);
1523
1524 if ((c = cmpchar_component (XINT (character), XINT (idx))) < 0)
1525 args_out_of_range (character, idx);
1526
1527 return make_number (c);
1528 }
1529
1530 DEFUN ("composite-char-composition-rule", Fcmpchar_cmp_rule, Scmpchar_cmp_rule,
1531 2, 2, 0,
1532 "Return the Nth composition rule embedded in composite character CHARACTER.\n\
1533 The returned rule is for composing the Nth component\n\
1534 on the (N-1)th component. If N is 0, the returned value is always 255.")
1535 (character, n)
1536 Lisp_Object character, n;
1537 {
1538 int id, i;
1539
1540 CHECK_NUMBER (character, 0);
1541 CHECK_NUMBER (n, 1);
1542
1543 id = COMPOSITE_CHAR_ID (XINT (character));
1544 if (id < 0 || id >= n_cmpchars)
1545 error ("Invalid composite character: %d", XINT (character));
1546 i = XINT (n);
1547 if (i > cmpchar_table[id]->glyph_len)
1548 args_out_of_range (character, n);
1549
1550 return make_number (cmpchar_table[id]->cmp_rule[i]);
1551 }
1552
1553 DEFUN ("composite-char-composition-rule-p", Fcmpchar_cmp_rule_p,
1554 Scmpchar_cmp_rule_p, 1, 1, 0,
1555 "Return non-nil if composite character CHARACTER contains a embedded rule.")
1556 (character)
1557 Lisp_Object character;
1558 {
1559 int id;
1560
1561 CHECK_NUMBER (character, 0);
1562 id = COMPOSITE_CHAR_ID (XINT (character));
1563 if (id < 0 || id >= n_cmpchars)
1564 error ("Invalid composite character: %d", XINT (character));
1565
1566 return (cmpchar_table[id]->cmp_rule ? Qt : Qnil);
1567 }
1568
1569 DEFUN ("composite-char-component-count", Fcmpchar_cmp_count,
1570 Scmpchar_cmp_count, 1, 1, 0,
1571 "Return number of compoents of composite character CHARACTER.")
1572 (character)
1573 Lisp_Object character;
1574 {
1575 int id;
1576
1577 CHECK_NUMBER (character, 0);
1578 id = COMPOSITE_CHAR_ID (XINT (character));
1579 if (id < 0 || id >= n_cmpchars)
1580 error ("Invalid composite character: %d", XINT (character));
1581
1582 return (make_number (cmpchar_table[id]->glyph_len));
1583 }
1584
1585 DEFUN ("compose-string", Fcompose_string, Scompose_string,
1586 1, 1, 0,
1587 "Return one char string composed from all characters in STRING.")
1588 (str)
1589 Lisp_Object str;
1590 {
1591 unsigned char buf[MAX_LENGTH_OF_MULTI_BYTE_FORM], *p, *pend, *ptemp;
1592 int len, i;
1593
1594 CHECK_STRING (str, 0);
1595
1596 buf[0] = LEADING_CODE_COMPOSITION;
1597 p = XSTRING (str)->data;
1598 pend = p + STRING_BYTES (XSTRING (str));
1599 i = 1;
1600 while (p < pend)
1601 {
1602 if (*p < 0x20 || *p == 127) /* control code */
1603 error ("Invalid component character: %d", *p);
1604 else if (*p < 0x80) /* ASCII */
1605 {
1606 if (i + 2 >= MAX_LENGTH_OF_MULTI_BYTE_FORM)
1607 error ("Too long string to be composed: %s", XSTRING (str)->data);
1608 /* Prepend an ASCII charset indicator 0xA0, set MSB of the
1609 code itself. */
1610 buf[i++] = 0xA0;
1611 buf[i++] = *p++ + 0x80;
1612 }
1613 else if (*p == LEADING_CODE_COMPOSITION) /* composite char */
1614 {
1615 /* Already composed. Eliminate the heading
1616 LEADING_CODE_COMPOSITION, keep the remaining bytes
1617 unchanged. */
1618 p++;
1619 ptemp = p;
1620 while (! CHAR_HEAD_P (*p)) p++;
1621 if (i + (p - ptemp) >= MAX_LENGTH_OF_MULTI_BYTE_FORM)
1622 error ("Too long string to be composed: %s", XSTRING (str)->data);
1623 bcopy (ptemp, buf + i, p - ptemp);
1624 i += p - ptemp;
1625 }
1626 else /* multibyte char */
1627 {
1628 /* Add 0x20 to the base leading-code, keep the remaining
1629 bytes unchanged. */
1630 len = BYTES_BY_CHAR_HEAD (*p);
1631 if (i + len >= MAX_LENGTH_OF_MULTI_BYTE_FORM)
1632 error ("Too long string to be composed: %s", XSTRING (str)->data);
1633 bcopy (p, buf + i, len);
1634 buf[i] += 0x20;
1635 p += len, i += len;
1636 }
1637 }
1638
1639 if (i < 5)
1640 /* STR contains only one character, which can't be composed. */
1641 error ("Too short string to be composed: %s", XSTRING (str)->data);
1642
1643 return make_string_from_bytes (buf, 1, i);
1644 }
1645
1646 \f
1647 int
1648 charset_id_internal (charset_name)
1649 char *charset_name;
1650 {
1651 Lisp_Object val = Fget (intern (charset_name), Qcharset);
1652
1653 if (!VECTORP (val))
1654 error ("Charset %s is not defined", charset_name);
1655
1656 return (XINT (XVECTOR (val)->contents[0]));
1657 }
1658
1659 DEFUN ("setup-special-charsets", Fsetup_special_charsets,
1660 Ssetup_special_charsets, 0, 0, 0, "Internal use only.")
1661 ()
1662 {
1663 charset_latin_iso8859_1 = charset_id_internal ("latin-iso8859-1");
1664 charset_jisx0208_1978 = charset_id_internal ("japanese-jisx0208-1978");
1665 charset_jisx0208 = charset_id_internal ("japanese-jisx0208");
1666 charset_katakana_jisx0201 = charset_id_internal ("katakana-jisx0201");
1667 charset_latin_jisx0201 = charset_id_internal ("latin-jisx0201");
1668 charset_big5_1 = charset_id_internal ("chinese-big5-1");
1669 charset_big5_2 = charset_id_internal ("chinese-big5-2");
1670 return Qnil;
1671 }
1672
1673 void
1674 init_charset_once ()
1675 {
1676 int i, j, k;
1677
1678 staticpro (&Vcharset_table);
1679 staticpro (&Vcharset_symbol_table);
1680 staticpro (&Vgeneric_character_list);
1681
1682 /* This has to be done here, before we call Fmake_char_table. */
1683 Qcharset_table = intern ("charset-table");
1684 staticpro (&Qcharset_table);
1685
1686 /* Intern this now in case it isn't already done.
1687 Setting this variable twice is harmless.
1688 But don't staticpro it here--that is done in alloc.c. */
1689 Qchar_table_extra_slots = intern ("char-table-extra-slots");
1690
1691 /* Now we are ready to set up this property, so we can
1692 create the charset table. */
1693 Fput (Qcharset_table, Qchar_table_extra_slots, make_number (0));
1694 Vcharset_table = Fmake_char_table (Qcharset_table, Qnil);
1695
1696 Vcharset_symbol_table = Fmake_vector (make_number (MAX_CHARSET + 1), Qnil);
1697
1698 /* Setup tables. */
1699 for (i = 0; i < 2; i++)
1700 for (j = 0; j < 2; j++)
1701 for (k = 0; k < 128; k++)
1702 iso_charset_table [i][j][k] = -1;
1703
1704 bzero (cmpchar_hash_table, sizeof cmpchar_hash_table);
1705 cmpchar_table_size = n_cmpchars = 0;
1706
1707 for (i = 0; i < 256; i++)
1708 BYTES_BY_CHAR_HEAD (i) = 1;
1709 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_11) = 3;
1710 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_12) = 3;
1711 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_21) = 4;
1712 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_22) = 4;
1713 /* The following doesn't reflect the actual bytes, but just to tell
1714 that it is a start of a multibyte character. */
1715 BYTES_BY_CHAR_HEAD (LEADING_CODE_COMPOSITION) = 2;
1716
1717 for (i = 0; i < 128; i++)
1718 WIDTH_BY_CHAR_HEAD (i) = 1;
1719 for (; i < 256; i++)
1720 WIDTH_BY_CHAR_HEAD (i) = 4;
1721 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_11) = 1;
1722 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_12) = 2;
1723 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_21) = 1;
1724 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_22) = 2;
1725
1726 {
1727 Lisp_Object val = Qnil;
1728
1729 for (i = 0x81; i < 0x90; i++)
1730 val = Fcons (make_number ((i - 0x70) << 7), val);
1731 for (; i < 0x9A; i++)
1732 val = Fcons (make_number ((i - 0x8F) << 14), val);
1733 for (i = 0xA0; i < 0xF0; i++)
1734 val = Fcons (make_number ((i - 0x70) << 7), val);
1735 for (; i < 0xFF; i++)
1736 val = Fcons (make_number ((i - 0xE0) << 14), val);
1737 val = Fcons (make_number (GENERIC_COMPOSITION_CHAR), val);
1738 Vgeneric_character_list = Fnreverse (val);
1739 }
1740 }
1741
1742 #ifdef emacs
1743
1744 void
1745 syms_of_charset ()
1746 {
1747 Qascii = intern ("ascii");
1748 staticpro (&Qascii);
1749
1750 Qcharset = intern ("charset");
1751 staticpro (&Qcharset);
1752
1753 /* Define ASCII charset now. */
1754 update_charset_table (make_number (CHARSET_ASCII),
1755 make_number (1), make_number (94),
1756 make_number (1),
1757 make_number (0),
1758 make_number ('B'),
1759 make_number (0),
1760 build_string ("ASCII"),
1761 build_string ("ASCII"),
1762 build_string ("ASCII (ISO646 IRV)"));
1763 CHARSET_SYMBOL (CHARSET_ASCII) = Qascii;
1764 Fput (Qascii, Qcharset, CHARSET_TABLE_ENTRY (CHARSET_ASCII));
1765
1766 Qcomposition = intern ("composition");
1767 staticpro (&Qcomposition);
1768 CHARSET_SYMBOL (CHARSET_COMPOSITION) = Qcomposition;
1769
1770 defsubr (&Sdefine_charset);
1771 defsubr (&Sgeneric_character_list);
1772 defsubr (&Sget_unused_iso_final_char);
1773 defsubr (&Sdeclare_equiv_charset);
1774 defsubr (&Sfind_charset_region);
1775 defsubr (&Sfind_charset_string);
1776 defsubr (&Smake_char_internal);
1777 defsubr (&Ssplit_char);
1778 defsubr (&Schar_charset);
1779 defsubr (&Scharset_after);
1780 defsubr (&Siso_charset);
1781 defsubr (&Schar_valid_p);
1782 defsubr (&Sunibyte_char_to_multibyte);
1783 defsubr (&Schar_bytes);
1784 defsubr (&Schar_width);
1785 defsubr (&Sstring_width);
1786 defsubr (&Schar_direction);
1787 defsubr (&Schars_in_region);
1788 defsubr (&Sstring);
1789 defsubr (&Scmpcharp);
1790 defsubr (&Scmpchar_component);
1791 defsubr (&Scmpchar_cmp_rule);
1792 defsubr (&Scmpchar_cmp_rule_p);
1793 defsubr (&Scmpchar_cmp_count);
1794 defsubr (&Scompose_string);
1795 defsubr (&Ssetup_special_charsets);
1796
1797 DEFVAR_LISP ("charset-list", &Vcharset_list,
1798 "List of charsets ever defined.");
1799 Vcharset_list = Fcons (Qascii, Qnil);
1800
1801 DEFVAR_LISP ("translation-table-vector", &Vtranslation_table_vector,
1802 "Vector of cons cell of a symbol and translation table ever defined.\n\
1803 An ID of a translation table is an index of this vector.");
1804 Vtranslation_table_vector = Fmake_vector (make_number (16), Qnil);
1805
1806 DEFVAR_INT ("leading-code-composition", &leading_code_composition,
1807 "Leading-code of composite characters.");
1808 leading_code_composition = LEADING_CODE_COMPOSITION;
1809
1810 DEFVAR_INT ("leading-code-private-11", &leading_code_private_11,
1811 "Leading-code of private TYPE9N charset of column-width 1.");
1812 leading_code_private_11 = LEADING_CODE_PRIVATE_11;
1813
1814 DEFVAR_INT ("leading-code-private-12", &leading_code_private_12,
1815 "Leading-code of private TYPE9N charset of column-width 2.");
1816 leading_code_private_12 = LEADING_CODE_PRIVATE_12;
1817
1818 DEFVAR_INT ("leading-code-private-21", &leading_code_private_21,
1819 "Leading-code of private TYPE9Nx9N charset of column-width 1.");
1820 leading_code_private_21 = LEADING_CODE_PRIVATE_21;
1821
1822 DEFVAR_INT ("leading-code-private-22", &leading_code_private_22,
1823 "Leading-code of private TYPE9Nx9N charset of column-width 2.");
1824 leading_code_private_22 = LEADING_CODE_PRIVATE_22;
1825
1826 DEFVAR_INT ("nonascii-insert-offset", &nonascii_insert_offset,
1827 "Offset for converting non-ASCII unibyte codes 0240...0377 to multibyte.\n\
1828 This is used for converting unibyte text to multibyte,\n\
1829 and for inserting character codes specified by number.\n\n\
1830 This serves to convert a Latin-1 or similar 8-bit character code\n\
1831 to the corresponding Emacs multibyte character code.\n\
1832 Typically the value should be (- (make-char CHARSET 0) 128),\n\
1833 for your choice of character set.\n\
1834 If `nonascii-translation-table' is non-nil, it overrides this variable.");
1835 nonascii_insert_offset = 0;
1836
1837 DEFVAR_LISP ("nonascii-translation-table", &Vnonascii_translation_table,
1838 "Translation table to convert non-ASCII unibyte codes to multibyte.\n\
1839 This is used for converting unibyte text to multibyte,\n\
1840 and for inserting character codes specified by number.\n\n\
1841 Conversion is performed only when multibyte characters are enabled,\n\
1842 and it serves to convert a Latin-1 or similar 8-bit character code\n\
1843 to the corresponding Emacs character code.\n\n\
1844 If this is nil, `nonascii-insert-offset' is used instead.\n\
1845 See also the docstring of `make-translation-table'.");
1846 Vnonascii_translation_table = Qnil;
1847
1848 DEFVAR_INT ("min-composite-char", &min_composite_char,
1849 "Minimum character code of a composite character.");
1850 min_composite_char = MIN_CHAR_COMPOSITION;
1851 }
1852
1853 #endif /* emacs */