Don't overide default value of diary-file.
[emacs.git] / src / charset.c
blob1902fe8be8c84fb5a47e54243f202d30b37266cc
1 /* Basic multilingual character support.
2 Copyright (C) 1995, 1997, 1998 Electrotechnical Laboratory, JAPAN.
3 Licensed to the Free Software Foundation.
5 This file is part of GNU Emacs.
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.
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.
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. */
22 /* At first, see the document in `charset.h' to understand the code in
23 this file. */
25 #include <stdio.h>
27 #ifdef emacs
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"
37 #else /* not emacs */
39 #include "mulelib.h"
41 #endif /* emacs */
43 Lisp_Object Qcharset, Qascii, Qcomposition;
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 */
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) */
63 int min_composite_char;
65 Lisp_Object Qcharset_table;
67 /* A char-table containing information of each character set. */
68 Lisp_Object Vcharset_table;
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;
74 /* A list of charset symbols ever defined. */
75 Lisp_Object Vcharset_list;
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;
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];
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];
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;
97 /* Variables used locally in the macro FETCH_MULTIBYTE_CHAR. */
98 unsigned char *_fetch_multibyte_char_p;
99 int _fetch_multibyte_char_len;
101 /* Offset to add to a non-ASCII value when inserting it. */
102 int nonascii_insert_offset;
104 /* Translation table for converting non-ASCII unibyte characters
105 to multibyte codes, or nil. */
106 Lisp_Object Vnonascii_translation_table;
108 #define min(X, Y) ((X) < (Y) ? (X) : (Y))
109 #define max(X, Y) ((X) > (Y) ? (X) : (Y))
111 void
112 invalid_character (c)
113 int c;
115 error ("Invalid character: %o, %d, 0x%x", c);
119 /* Set STR a pointer to the multi-byte form of the character C. If C
120 is not a composite character, the multi-byte form is set in WORKBUF
121 and STR points WORKBUF. The caller should allocate at least 4-byte
122 area at WORKBUF in advance. Returns the length of the multi-byte
123 form. If C is an invalid character to have a multi-byte form,
124 signal an error.
126 Use macro `CHAR_STRING (C, WORKBUF, STR)' instead of calling this
127 function directly if C can be an ASCII character. */
130 non_ascii_char_to_string (c, workbuf, str)
131 int c;
132 unsigned char *workbuf, **str;
134 int charset, c1, c2;
136 if (COMPOSITE_CHAR_P (c))
138 int cmpchar_id = COMPOSITE_CHAR_ID (c);
140 if (cmpchar_id < n_cmpchars)
142 *str = cmpchar_table[cmpchar_id]->data;
143 return cmpchar_table[cmpchar_id]->len;
145 else
147 invalid_character (c);
151 SPLIT_NON_ASCII_CHAR (c, charset, c1, c2);
152 if (!charset
153 || ! CHARSET_DEFINED_P (charset)
154 || c1 >= 0 && c1 < 32
155 || c2 >= 0 && c2 < 32)
156 invalid_character (c);
158 *str = workbuf;
159 *workbuf++ = CHARSET_LEADING_CODE_BASE (charset);
160 if (*workbuf = CHARSET_LEADING_CODE_EXT (charset))
161 workbuf++;
162 *workbuf++ = c1 | 0x80;
163 if (c2 >= 0)
164 *workbuf++ = c2 | 0x80;
166 return (workbuf - *str);
169 /* Return a non-ASCII character of which multi-byte form is at STR of
170 length LEN. If ACTUAL_LEN is not NULL, the actual length of the
171 multibyte form is set to the address ACTUAL_LEN.
173 If exclude_tail_garbage is nonzero, ACTUAL_LEN excludes gabage
174 bytes following the non-ASCII character.
176 Use macro `STRING_CHAR (STR, LEN)' instead of calling this function
177 directly if STR can hold an ASCII character. */
180 string_to_non_ascii_char (str, len, actual_len, exclude_tail_garbage)
181 const unsigned char *str;
182 int len, *actual_len, exclude_tail_garbage;
184 int charset;
185 unsigned char c1, c2;
186 register int c, bytes;
188 c = *str;
189 bytes = 1;
191 if (BASE_LEADING_CODE_P (c))
193 while (bytes < len && ! CHAR_HEAD_P (str[bytes])) bytes++;
195 if (c == LEADING_CODE_COMPOSITION)
197 int cmpchar_id = str_cmpchar_id (str, bytes);
199 if (cmpchar_id >= 0)
201 c = MAKE_COMPOSITE_CHAR (cmpchar_id);
202 if (exclude_tail_garbage)
203 bytes = cmpchar_table[cmpchar_id]->len;
206 else
208 int charset = c, c1, c2 = 0;
209 int char_bytes = BYTES_BY_CHAR_HEAD (c);
211 str++;
212 if (c >= LEADING_CODE_PRIVATE_11)
213 charset = *str++;
214 if (char_bytes <= bytes && CHARSET_DEFINED_P (charset))
216 c1 = *str++ & 0x7f;
217 if (CHARSET_DIMENSION (charset) == 2)
218 c2 = *str & 0x7F;
219 c = MAKE_NON_ASCII_CHAR (charset, c1, c2);
220 if (exclude_tail_garbage)
221 bytes = char_bytes;
226 if (actual_len)
227 *actual_len = bytes;
228 return c;
231 /* Return the length of the multi-byte form at string STR of length LEN. */
233 multibyte_form_length (str, len)
234 const unsigned char *str;
235 int len;
237 int bytes = 1;
239 if (BASE_LEADING_CODE_P (*str))
240 while (bytes < len && ! CHAR_HEAD_P (str[bytes])) bytes++;
242 return bytes;
245 /* Check if string STR of length LEN contains valid multi-byte form of
246 a character. If valid, charset and position codes of the character
247 is set at *CHARSET, *C1, and *C2, and return 0. If not valid,
248 return -1. This should be used only in the macro SPLIT_STRING
249 which checks range of STR in advance. */
252 split_non_ascii_string (str, len, charset, c1, c2)
253 register const unsigned char *str;
254 register unsigned char *c1, *c2;
255 register int len, *charset;
257 register unsigned int cs = *str++;
259 if (cs == LEADING_CODE_COMPOSITION)
261 int cmpchar_id = str_cmpchar_id (str - 1, len);
263 if (cmpchar_id < 0)
264 return -1;
265 *charset = cs, *c1 = cmpchar_id >> 7, *c2 = cmpchar_id & 0x7F;
267 else if ((cs < LEADING_CODE_PRIVATE_11 || (cs = *str++) >= 0xA0)
268 && CHARSET_DEFINED_P (cs))
270 *charset = cs;
271 if (*str < 0xA0)
272 return -1;
273 *c1 = (*str++) & 0x7F;
274 if (CHARSET_DIMENSION (cs) == 2)
276 if (*str < 0xA0)
277 return -1;
278 *c2 = (*str++) & 0x7F;
281 else
282 return -1;
283 return 0;
286 /* Translate character C by translation table TABLE. If C
287 is negative, translate a character specified by CHARSET, C1, and C2
288 (C1 and C2 are code points of the character). If no translation is
289 found in TABLE, return C. */
291 translate_char (table, c, charset, c1, c2)
292 Lisp_Object table;
293 int c, charset, c1, c2;
295 Lisp_Object ch;
296 int alt_charset, alt_c1, alt_c2, dimension;
298 if (c < 0) c = MAKE_CHAR (charset, c1, c2);
299 if (!CHAR_TABLE_P (table)
300 || (ch = Faref (table, make_number (c)), !INTEGERP (ch))
301 || XINT (ch) < 0)
302 return c;
304 SPLIT_CHAR (XFASTINT (ch), alt_charset, alt_c1, alt_c2);
305 dimension = CHARSET_DIMENSION (alt_charset);
306 if (dimension == 1 && alt_c1 > 0 || dimension == 2 && alt_c2 > 0)
307 /* CH is not a generic character, just return it. */
308 return XFASTINT (ch);
310 /* Since CH is a generic character, we must return a specific
311 charater which has the same position codes as C from CH. */
312 if (charset < 0)
313 SPLIT_CHAR (c, charset, c1, c2);
314 if (dimension != CHARSET_DIMENSION (charset))
315 /* We can't make such a character because of dimension mismatch. */
316 return c;
317 return MAKE_CHAR (alt_charset, c1, c2);
320 /* Convert the unibyte character C to multibyte based on
321 Vnonascii_translation_table or nonascii_insert_offset. If they can't
322 convert C to a valid multibyte character, convert it based on
323 DEFAULT_NONASCII_INSERT_OFFSET which makes C a Latin-1 character. */
326 unibyte_char_to_multibyte (c)
327 int c;
329 if (c >= 0240 && c < 0400)
331 int c_save = c;
333 if (! NILP (Vnonascii_translation_table))
334 c = XINT (Faref (Vnonascii_translation_table, make_number (c)));
335 else if (nonascii_insert_offset > 0)
336 c += nonascii_insert_offset;
337 if (c >= 0240 && (c < 0400 || ! VALID_MULTIBYTE_CHAR_P (c)))
338 c = c_save + DEFAULT_NONASCII_INSERT_OFFSET;
340 return c;
343 /* Update the table Vcharset_table with the given arguments (see the
344 document of `define-charset' for the meaning of each argument).
345 Several other table contents are also updated. The caller should
346 check the validity of CHARSET-ID and the remaining arguments in
347 advance. */
349 void
350 update_charset_table (charset_id, dimension, chars, width, direction,
351 iso_final_char, iso_graphic_plane,
352 short_name, long_name, description)
353 Lisp_Object charset_id, dimension, chars, width, direction;
354 Lisp_Object iso_final_char, iso_graphic_plane;
355 Lisp_Object short_name, long_name, description;
357 int charset = XINT (charset_id);
358 int bytes;
359 unsigned char leading_code_base, leading_code_ext;
361 if (NILP (CHARSET_TABLE_ENTRY (charset)))
362 CHARSET_TABLE_ENTRY (charset)
363 = Fmake_vector (make_number (CHARSET_MAX_IDX), Qnil);
365 /* Get byte length of multibyte form, base leading-code, and
366 extended leading-code of the charset. See the comment under the
367 title "GENERAL NOTE on CHARACTER SET (CHARSET)" in charset.h. */
368 bytes = XINT (dimension);
369 if (charset < MIN_CHARSET_PRIVATE_DIMENSION1)
371 /* Official charset, it doesn't have an extended leading-code. */
372 if (charset != CHARSET_ASCII)
373 bytes += 1; /* For a base leading-code. */
374 leading_code_base = charset;
375 leading_code_ext = 0;
377 else
379 /* Private charset. */
380 bytes += 2; /* For base and extended leading-codes. */
381 leading_code_base
382 = (charset < LEADING_CODE_EXT_12
383 ? LEADING_CODE_PRIVATE_11
384 : (charset < LEADING_CODE_EXT_21
385 ? LEADING_CODE_PRIVATE_12
386 : (charset < LEADING_CODE_EXT_22
387 ? LEADING_CODE_PRIVATE_21
388 : LEADING_CODE_PRIVATE_22)));
389 leading_code_ext = charset;
392 CHARSET_TABLE_INFO (charset, CHARSET_ID_IDX) = charset_id;
393 CHARSET_TABLE_INFO (charset, CHARSET_BYTES_IDX) = make_number (bytes);
394 CHARSET_TABLE_INFO (charset, CHARSET_DIMENSION_IDX) = dimension;
395 CHARSET_TABLE_INFO (charset, CHARSET_CHARS_IDX) = chars;
396 CHARSET_TABLE_INFO (charset, CHARSET_WIDTH_IDX) = width;
397 CHARSET_TABLE_INFO (charset, CHARSET_DIRECTION_IDX) = direction;
398 CHARSET_TABLE_INFO (charset, CHARSET_LEADING_CODE_BASE_IDX)
399 = make_number (leading_code_base);
400 CHARSET_TABLE_INFO (charset, CHARSET_LEADING_CODE_EXT_IDX)
401 = make_number (leading_code_ext);
402 CHARSET_TABLE_INFO (charset, CHARSET_ISO_FINAL_CHAR_IDX) = iso_final_char;
403 CHARSET_TABLE_INFO (charset, CHARSET_ISO_GRAPHIC_PLANE_IDX)
404 = iso_graphic_plane;
405 CHARSET_TABLE_INFO (charset, CHARSET_SHORT_NAME_IDX) = short_name;
406 CHARSET_TABLE_INFO (charset, CHARSET_LONG_NAME_IDX) = long_name;
407 CHARSET_TABLE_INFO (charset, CHARSET_DESCRIPTION_IDX) = description;
408 CHARSET_TABLE_INFO (charset, CHARSET_PLIST_IDX) = Qnil;
411 /* If we have already defined a charset which has the same
412 DIMENSION, CHARS and ISO-FINAL-CHAR but the different
413 DIRECTION, we must update the entry REVERSE-CHARSET of both
414 charsets. If there's no such charset, the value of the entry
415 is set to nil. */
416 int i;
418 for (i = 0; i <= MAX_CHARSET; i++)
419 if (!NILP (CHARSET_TABLE_ENTRY (i)))
421 if (CHARSET_DIMENSION (i) == XINT (dimension)
422 && CHARSET_CHARS (i) == XINT (chars)
423 && CHARSET_ISO_FINAL_CHAR (i) == XINT (iso_final_char)
424 && CHARSET_DIRECTION (i) != XINT (direction))
426 CHARSET_TABLE_INFO (charset, CHARSET_REVERSE_CHARSET_IDX)
427 = make_number (i);
428 CHARSET_TABLE_INFO (i, CHARSET_REVERSE_CHARSET_IDX) = charset_id;
429 break;
432 if (i > MAX_CHARSET)
433 /* No such a charset. */
434 CHARSET_TABLE_INFO (charset, CHARSET_REVERSE_CHARSET_IDX)
435 = make_number (-1);
438 if (charset != CHARSET_ASCII
439 && charset < MIN_CHARSET_PRIVATE_DIMENSION1)
441 /* Update tables bytes_by_char_head and width_by_char_head. */
442 bytes_by_char_head[leading_code_base] = bytes;
443 width_by_char_head[leading_code_base] = XINT (width);
445 /* Update table emacs_code_class. */
446 emacs_code_class[charset] = (bytes == 2
447 ? EMACS_leading_code_2
448 : (bytes == 3
449 ? EMACS_leading_code_3
450 : EMACS_leading_code_4));
453 /* Update table iso_charset_table. */
454 if (ISO_CHARSET_TABLE (dimension, chars, iso_final_char) < 0)
455 ISO_CHARSET_TABLE (dimension, chars, iso_final_char) = charset;
458 #ifdef emacs
460 /* Return charset id of CHARSET_SYMBOL, or return -1 if CHARSET_SYMBOL
461 is invalid. */
463 get_charset_id (charset_symbol)
464 Lisp_Object charset_symbol;
466 Lisp_Object val;
467 int charset;
469 return ((SYMBOLP (charset_symbol)
470 && (val = Fget (charset_symbol, Qcharset), VECTORP (val))
471 && (charset = XINT (XVECTOR (val)->contents[CHARSET_ID_IDX]),
472 CHARSET_VALID_P (charset)))
473 ? charset : -1);
476 /* Return an identification number for a new private charset of
477 DIMENSION and WIDTH. If there's no more room for the new charset,
478 return 0. */
479 Lisp_Object
480 get_new_private_charset_id (dimension, width)
481 int dimension, width;
483 int charset, from, to;
485 if (dimension == 1)
487 if (width == 1)
488 from = LEADING_CODE_EXT_11, to = LEADING_CODE_EXT_12;
489 else
490 from = LEADING_CODE_EXT_12, to = LEADING_CODE_EXT_21;
492 else
494 if (width == 1)
495 from = LEADING_CODE_EXT_21, to = LEADING_CODE_EXT_22;
496 else
497 from = LEADING_CODE_EXT_22, to = LEADING_CODE_EXT_MAX + 1;
500 for (charset = from; charset < to; charset++)
501 if (!CHARSET_DEFINED_P (charset)) break;
503 return make_number (charset < to ? charset : 0);
506 DEFUN ("define-charset", Fdefine_charset, Sdefine_charset, 3, 3, 0,
507 "Define CHARSET-ID as the identification number of CHARSET with INFO-VECTOR.\n\
508 If CHARSET-ID is nil, it is decided automatically, which means CHARSET is\n\
509 treated as a private charset.\n\
510 INFO-VECTOR is a vector of the format:\n\
511 [DIMENSION CHARS WIDTH DIRECTION ISO-FINAL-CHAR ISO-GRAPHIC-PLANE\n\
512 SHORT-NAME LONG-NAME DESCRIPTION]\n\
513 The meanings of each elements is as follows:\n\
514 DIMENSION (integer) is the number of bytes to represent a character: 1 or 2.\n\
515 CHARS (integer) is the number of characters in a dimension: 94 or 96.\n\
516 WIDTH (integer) is the number of columns a character in the charset\n\
517 occupies on the screen: one of 0, 1, and 2.\n\
519 DIRECTION (integer) is the rendering direction of characters in the\n\
520 charset when rendering. If 0, render from right to left, else\n\
521 render from left to right.\n\
523 ISO-FINAL-CHAR (character) is the final character of the\n\
524 corresponding ISO 2022 charset.\n\
526 ISO-GRAPHIC-PLANE (integer) is the graphic plane to be invoked\n\
527 while encoding to variants of ISO 2022 coding system, one of the\n\
528 following: 0/graphic-plane-left(GL), 1/graphic-plane-right(GR).\n\
530 SHORT-NAME (string) is the short name to refer to the charset.\n\
532 LONG-NAME (string) is the long name to refer to the charset.\n\
534 DESCRIPTION (string) is the description string of the charset.")
535 (charset_id, charset_symbol, info_vector)
536 Lisp_Object charset_id, charset_symbol, info_vector;
538 Lisp_Object *vec;
540 if (!NILP (charset_id))
541 CHECK_NUMBER (charset_id, 0);
542 CHECK_SYMBOL (charset_symbol, 1);
543 CHECK_VECTOR (info_vector, 2);
545 if (! NILP (charset_id))
547 if (! CHARSET_VALID_P (XINT (charset_id)))
548 error ("Invalid CHARSET: %d", XINT (charset_id));
549 else if (CHARSET_DEFINED_P (XINT (charset_id)))
550 error ("Already defined charset: %d", XINT (charset_id));
553 vec = XVECTOR (info_vector)->contents;
554 if (XVECTOR (info_vector)->size != 9
555 || !INTEGERP (vec[0]) || !(XINT (vec[0]) == 1 || XINT (vec[0]) == 2)
556 || !INTEGERP (vec[1]) || !(XINT (vec[1]) == 94 || XINT (vec[1]) == 96)
557 || !INTEGERP (vec[2]) || !(XINT (vec[2]) == 1 || XINT (vec[2]) == 2)
558 || !INTEGERP (vec[3]) || !(XINT (vec[3]) == 0 || XINT (vec[3]) == 1)
559 || !INTEGERP (vec[4]) || !(XINT (vec[4]) >= '0' && XINT (vec[4]) <= '~')
560 || !INTEGERP (vec[5]) || !(XINT (vec[5]) == 0 || XINT (vec[5]) == 1)
561 || !STRINGP (vec[6])
562 || !STRINGP (vec[7])
563 || !STRINGP (vec[8]))
564 error ("Invalid info-vector argument for defining charset %s",
565 XSYMBOL (charset_symbol)->name->data);
567 if (NILP (charset_id))
569 charset_id = get_new_private_charset_id (XINT (vec[0]), XINT (vec[2]));
570 if (XINT (charset_id) == 0)
571 error ("There's no room for a new private charset %s",
572 XSYMBOL (charset_symbol)->name->data);
575 update_charset_table (charset_id, vec[0], vec[1], vec[2], vec[3],
576 vec[4], vec[5], vec[6], vec[7], vec[8]);
577 Fput (charset_symbol, Qcharset, CHARSET_TABLE_ENTRY (XINT (charset_id)));
578 CHARSET_SYMBOL (XINT (charset_id)) = charset_symbol;
579 Vcharset_list = Fcons (charset_symbol, Vcharset_list);
580 return Qnil;
583 DEFUN ("get-unused-iso-final-char", Fget_unused_iso_final_char,
584 Sget_unused_iso_final_char, 2, 2, 0,
585 "Return an unsed ISO's final char for a charset of DIMENISION and CHARS.\n\
586 DIMENSION is the number of bytes to represent a character: 1 or 2.\n\
587 CHARS is the number of characters in a dimension: 94 or 96.\n\
589 This final char is for private use, thus the range is `0' (48) .. `?' (63).\n\
590 If there's no unused final char for the specified kind of charset,\n\
591 return nil.")
592 (dimension, chars)
593 Lisp_Object dimension, chars;
595 int final_char;
597 CHECK_NUMBER (dimension, 0);
598 CHECK_NUMBER (chars, 1);
599 if (XINT (dimension) != 1 && XINT (dimension) != 2)
600 error ("Invalid charset dimension %d, it should be 1 or 2",
601 XINT (dimension));
602 if (XINT (chars) != 94 && XINT (chars) != 96)
603 error ("Invalid charset chars %d, it should be 94 or 96",
604 XINT (chars));
605 for (final_char = '0'; final_char <= '?'; final_char++)
607 if (ISO_CHARSET_TABLE (dimension, chars, make_number (final_char)) < 0)
608 break;
610 return (final_char <= '?' ? make_number (final_char) : Qnil);
613 DEFUN ("declare-equiv-charset", Fdeclare_equiv_charset, Sdeclare_equiv_charset,
614 4, 4, 0,
615 "Declare a charset of DIMENSION, CHARS, FINAL-CHAR is the same as CHARSET.\n\
616 CHARSET should be defined by `defined-charset' in advance.")
617 (dimension, chars, final_char, charset_symbol)
618 Lisp_Object dimension, chars, final_char, charset_symbol;
620 int charset;
622 CHECK_NUMBER (dimension, 0);
623 CHECK_NUMBER (chars, 1);
624 CHECK_NUMBER (final_char, 2);
625 CHECK_SYMBOL (charset_symbol, 3);
627 if (XINT (dimension) != 1 && XINT (dimension) != 2)
628 error ("Invalid DIMENSION %d, it should be 1 or 2", XINT (dimension));
629 if (XINT (chars) != 94 && XINT (chars) != 96)
630 error ("Invalid CHARS %d, it should be 94 or 96", XINT (chars));
631 if (XINT (final_char) < '0' || XFASTINT (final_char) > '~')
632 error ("Invalid FINAL-CHAR %c, it should be `0'..`~'", XINT (chars));
633 if ((charset = get_charset_id (charset_symbol)) < 0)
634 error ("Invalid charset %s", XSYMBOL (charset_symbol)->name->data);
636 ISO_CHARSET_TABLE (dimension, chars, final_char) = charset;
637 return Qnil;
640 /* Return number of different charsets in STR of length LEN. In
641 addition, for each found charset N, CHARSETS[N] is set 1. The
642 caller should allocate CHARSETS (MAX_CHARSET + 1 elements) in advance.
643 It may lookup a translation table TABLE if supplied.
645 If CMPCHARP is nonzero and some composite character is found,
646 CHARSETS[128] is also set 1 and the returned number is incremented
647 by 1. */
650 find_charset_in_str (str, len, charsets, table, cmpcharp)
651 unsigned char *str;
652 int len, *charsets;
653 Lisp_Object table;
654 int cmpcharp;
656 register int num = 0, c;
658 if (! CHAR_TABLE_P (table))
659 table = Qnil;
661 while (len > 0)
663 int bytes, charset;
664 c = *str;
666 if (c == LEADING_CODE_COMPOSITION)
668 int cmpchar_id = str_cmpchar_id (str, len);
669 GLYPH *glyph;
671 if (cmpchar_id >= 0)
673 struct cmpchar_info *cmpcharp = cmpchar_table[cmpchar_id];
674 int i;
676 for (i = 0; i < cmpcharp->glyph_len; i++)
678 c = cmpcharp->glyph[i];
679 if (!NILP (table))
681 if ((c = translate_char (table, c, 0, 0, 0)) < 0)
682 c = cmpcharp->glyph[i];
684 if ((charset = CHAR_CHARSET (c)) < 0)
685 charset = CHARSET_ASCII;
686 if (!charsets[charset])
688 charsets[charset] = 1;
689 num += 1;
692 str += cmpcharp->len;
693 len -= cmpcharp->len;
694 if (!charsets[LEADING_CODE_COMPOSITION])
696 charsets[LEADING_CODE_COMPOSITION] = 1;
697 num += 1;
699 continue;
702 charset = CHARSET_ASCII;
703 bytes = 1;
705 else
707 c = STRING_CHAR_AND_LENGTH (str, len, bytes);
708 if (! NILP (table))
710 int c1 = translate_char (table, c, 0, 0, 0);
711 if (c1 >= 0)
712 c = c1;
714 charset = CHAR_CHARSET (c);
717 if (!charsets[charset])
719 charsets[charset] = 1;
720 num += 1;
722 str += bytes;
723 len -= bytes;
725 return num;
728 DEFUN ("find-charset-region", Ffind_charset_region, Sfind_charset_region,
729 2, 3, 0,
730 "Return a list of charsets in the region between BEG and END.\n\
731 BEG and END are buffer positions.\n\
732 Optional arg TABLE if non-nil is a translation table to look up.")
733 (beg, end, table)
734 Lisp_Object beg, end, table;
736 int charsets[MAX_CHARSET + 1];
737 int from, from_byte, to, stop, stop_byte, i;
738 Lisp_Object val;
740 validate_region (&beg, &end);
741 from = XFASTINT (beg);
742 stop = to = XFASTINT (end);
744 if (from < GPT && GPT < to)
746 stop = GPT;
747 stop_byte = GPT_BYTE;
749 else
750 stop_byte = CHAR_TO_BYTE (stop);
752 from_byte = CHAR_TO_BYTE (from);
754 bzero (charsets, (MAX_CHARSET + 1) * sizeof (int));
755 while (1)
757 find_charset_in_str (BYTE_POS_ADDR (from_byte), stop_byte - from_byte,
758 charsets, table, 0);
759 if (stop < to)
761 from = stop, from_byte = stop_byte;
762 stop = to, stop_byte = CHAR_TO_BYTE (stop);
764 else
765 break;
768 val = Qnil;
769 for (i = MAX_CHARSET; i >= 0; i--)
770 if (charsets[i])
771 val = Fcons (CHARSET_SYMBOL (i), val);
772 return val;
775 DEFUN ("find-charset-string", Ffind_charset_string, Sfind_charset_string,
776 1, 2, 0,
777 "Return a list of charsets in STR.\n\
778 Optional arg TABLE if non-nil is a translation table to look up.")
779 (str, table)
780 Lisp_Object str, table;
782 int charsets[MAX_CHARSET + 1];
783 int i;
784 Lisp_Object val;
786 CHECK_STRING (str, 0);
788 if (! STRING_MULTIBYTE (str))
789 return Qnil;
791 bzero (charsets, (MAX_CHARSET + 1) * sizeof (int));
792 find_charset_in_str (XSTRING (str)->data, STRING_BYTES (XSTRING (str)),
793 charsets, table, 0);
794 val = Qnil;
795 for (i = MAX_CHARSET; i >= 0; i--)
796 if (charsets[i])
797 val = Fcons (CHARSET_SYMBOL (i), val);
798 return val;
801 DEFUN ("make-char-internal", Fmake_char_internal, Smake_char_internal, 1, 3, 0,
803 (charset, code1, code2)
804 Lisp_Object charset, code1, code2;
806 CHECK_NUMBER (charset, 0);
808 if (NILP (code1))
809 XSETFASTINT (code1, 0);
810 else
811 CHECK_NUMBER (code1, 1);
812 if (NILP (code2))
813 XSETFASTINT (code2, 0);
814 else
815 CHECK_NUMBER (code2, 2);
817 if (!CHARSET_DEFINED_P (XINT (charset)))
818 error ("Invalid charset: %d", XINT (charset));
820 return make_number (MAKE_CHAR (XINT (charset), XINT (code1), XINT (code2)));
823 DEFUN ("split-char", Fsplit_char, Ssplit_char, 1, 1, 0,
824 "Return list of charset and one or two position-codes of CHAR.")
825 (ch)
826 Lisp_Object ch;
828 Lisp_Object val;
829 int charset, c1, c2;
831 CHECK_NUMBER (ch, 0);
832 SPLIT_CHAR (XFASTINT (ch), charset, c1, c2);
833 return (c2 >= 0
834 ? Fcons (CHARSET_SYMBOL (charset),
835 Fcons (make_number (c1), Fcons (make_number (c2), Qnil)))
836 : Fcons (CHARSET_SYMBOL (charset), Fcons (make_number (c1), Qnil)));
839 DEFUN ("char-charset", Fchar_charset, Schar_charset, 1, 1, 0,
840 "Return charset of CHAR.")
841 (ch)
842 Lisp_Object ch;
844 CHECK_NUMBER (ch, 0);
846 return CHARSET_SYMBOL (CHAR_CHARSET (XINT (ch)));
849 DEFUN ("charset-after", Fcharset_after, Scharset_after, 0, 1, 0,
850 "Return charset of a character in current buffer at position POS.\n\
851 If POS is nil, it defauls to the current point.")
852 (pos)
853 Lisp_Object pos;
855 register int pos_byte, c, charset;
856 register unsigned char *p;
858 if (NILP (pos))
859 pos_byte = PT_BYTE;
860 else if (MARKERP (pos))
861 pos_byte = marker_byte_position (pos);
862 else
864 CHECK_NUMBER (pos, 0);
865 pos_byte = CHAR_TO_BYTE (XINT (pos));
867 p = BYTE_POS_ADDR (pos_byte);
868 c = STRING_CHAR (p, Z_BYTE - pos_byte);
869 charset = CHAR_CHARSET (c);
870 return CHARSET_SYMBOL (charset);
873 DEFUN ("iso-charset", Fiso_charset, Siso_charset, 3, 3, 0,
874 "Return charset of ISO's specification DIMENSION, CHARS, and FINAL-CHAR.\n\
876 ISO 2022's designation sequence (escape sequence) distinguishes charsets\n\
877 by their DIMENSION, CHARS, and FINAL-CHAR,\n\
878 where as Emacs distinguishes them by charset symbol.\n\
879 See the documentation of the function `charset-info' for the meanings of\n\
880 DIMENSION, CHARS, and FINAL-CHAR.")
881 (dimension, chars, final_char)
882 Lisp_Object dimension, chars, final_char;
884 int charset;
886 CHECK_NUMBER (dimension, 0);
887 CHECK_NUMBER (chars, 1);
888 CHECK_NUMBER (final_char, 2);
890 if ((charset = ISO_CHARSET_TABLE (dimension, chars, final_char)) < 0)
891 return Qnil;
892 return CHARSET_SYMBOL (charset);
895 /* If GENERICP is nonzero, return nonzero iff C is a valid normal or
896 generic character. If GENERICP is zero, return nonzero iff C is a
897 valid normal character. Do not call this function directly,
898 instead use macro CHAR_VALID_P. */
900 char_valid_p (c, genericp)
901 int c, genericp;
903 int charset, c1, c2;
905 if (c < 0)
906 return 0;
907 if (SINGLE_BYTE_CHAR_P (c))
908 return 1;
909 SPLIT_NON_ASCII_CHAR (c, charset, c1, c2);
910 if (!CHARSET_VALID_P (charset))
911 return 0;
912 return (c < MIN_CHAR_COMPOSITION
913 ? ((c & CHAR_FIELD1_MASK) /* i.e. dimension of C is two. */
914 ? (genericp && c1 == 0 && c2 == 0
915 || c1 >= 32 && c2 >= 32)
916 : (genericp && c1 == 0
917 || c1 >= 32))
918 : c < MIN_CHAR_COMPOSITION + n_cmpchars);
921 DEFUN ("char-valid-p", Fchar_valid_p, Schar_valid_p, 1, 2, 0,
922 "Return t if OBJECT is a valid normal character.\n\
923 If optional arg GENERICP is non-nil, also return t if OBJECT is\n\
924 a valid generic character.")
925 (object, genericp)
926 Lisp_Object object, genericp;
928 if (! NATNUMP (object))
929 return Qnil;
930 return (CHAR_VALID_P (XFASTINT (object), !NILP (genericp)) ? Qt : Qnil);
933 DEFUN ("unibyte-char-to-multibyte", Funibyte_char_to_multibyte,
934 Sunibyte_char_to_multibyte, 1, 1, 0,
935 "Convert the unibyte character CH to multibyte character.\n\
936 The conversion is done based on `nonascii-translation-table' (which see)\n\
937 or `nonascii-insert-offset' (which see).")
938 (ch)
939 Lisp_Object ch;
941 int c;
943 CHECK_NUMBER (ch, 0);
944 c = XINT (ch);
945 if (c < 0 || c >= 0400)
946 error ("Invalid unibyte character: %d", c);
947 c = unibyte_char_to_multibyte (c);
948 if (c < 0)
949 error ("Can't convert to multibyte character: %d", XINT (ch));
950 return make_number (c);
953 DEFUN ("char-bytes", Fchar_bytes, Schar_bytes, 1, 1, 0,
954 "Return byte length of multi-byte form of CHAR.")
955 (ch)
956 Lisp_Object ch;
958 Lisp_Object val;
959 int bytes;
961 CHECK_NUMBER (ch, 0);
962 if (COMPOSITE_CHAR_P (XFASTINT (ch)))
964 unsigned int id = COMPOSITE_CHAR_ID (XFASTINT (ch));
966 bytes = (id < n_cmpchars ? cmpchar_table[id]->len : 1);
968 else
970 int charset = CHAR_CHARSET (XFASTINT (ch));
972 bytes = CHARSET_DEFINED_P (charset) ? CHARSET_BYTES (charset) : 1;
975 XSETFASTINT (val, bytes);
976 return val;
979 /* Return the width of character of which multi-byte form starts with
980 C. The width is measured by how many columns occupied on the
981 screen when displayed in the current buffer. */
983 #define ONE_BYTE_CHAR_WIDTH(c) \
984 (c < 0x20 \
985 ? (c == '\t' \
986 ? XFASTINT (current_buffer->tab_width) \
987 : (c == '\n' ? 0 : (NILP (current_buffer->ctl_arrow) ? 4 : 2))) \
988 : (c < 0x7f \
989 ? 1 \
990 : (c == 0x7F \
991 ? (NILP (current_buffer->ctl_arrow) ? 4 : 2) \
992 : ((! NILP (current_buffer->enable_multibyte_characters) \
993 && BASE_LEADING_CODE_P (c)) \
994 ? WIDTH_BY_CHAR_HEAD (c) \
995 : 4))))
997 DEFUN ("char-width", Fchar_width, Schar_width, 1, 1, 0,
998 "Return width of CHAR when displayed in the current buffer.\n\
999 The width is measured by how many columns it occupies on the screen.")
1000 (ch)
1001 Lisp_Object ch;
1003 Lisp_Object val, disp;
1004 int c;
1005 struct Lisp_Char_Table *dp = buffer_display_table ();
1007 CHECK_NUMBER (ch, 0);
1009 c = XINT (ch);
1011 /* Get the way the display table would display it. */
1012 disp = dp ? DISP_CHAR_VECTOR (dp, c) : Qnil;
1014 if (VECTORP (disp))
1015 XSETINT (val, XVECTOR (disp)->size);
1016 else if (SINGLE_BYTE_CHAR_P (c))
1017 XSETINT (val, ONE_BYTE_CHAR_WIDTH (c));
1018 else if (COMPOSITE_CHAR_P (c))
1020 int id = COMPOSITE_CHAR_ID (XFASTINT (ch));
1021 XSETFASTINT (val, (id < n_cmpchars ? cmpchar_table[id]->width : 0));
1023 else
1025 int charset = CHAR_CHARSET (c);
1027 XSETFASTINT (val, CHARSET_WIDTH (charset));
1029 return val;
1032 /* Return width of string STR of length LEN when displayed in the
1033 current buffer. The width is measured by how many columns it
1034 occupies on the screen. */
1037 strwidth (str, len)
1038 unsigned char *str;
1039 int len;
1041 unsigned char *endp = str + len;
1042 int width = 0;
1043 struct Lisp_Char_Table *dp = buffer_display_table ();
1045 while (str < endp)
1047 if (*str == LEADING_CODE_COMPOSITION)
1049 int id = str_cmpchar_id (str, endp - str);
1051 if (id < 0)
1053 width += 4;
1054 str++;
1056 else
1058 width += cmpchar_table[id]->width;
1059 str += cmpchar_table[id]->len;
1062 else
1064 Lisp_Object disp;
1065 int thislen;
1066 int c = STRING_CHAR_AND_LENGTH (str, endp - str, thislen);
1068 /* Get the way the display table would display it. */
1069 if (dp)
1070 disp = DISP_CHAR_VECTOR (dp, c);
1071 else
1072 disp = Qnil;
1074 if (VECTORP (disp))
1075 width += XVECTOR (disp)->size;
1076 else
1077 width += ONE_BYTE_CHAR_WIDTH (*str);
1079 str += thislen;
1082 return width;
1085 DEFUN ("string-width", Fstring_width, Sstring_width, 1, 1, 0,
1086 "Return width of STRING when displayed in the current buffer.\n\
1087 Width is measured by how many columns it occupies on the screen.\n\
1088 When calculating width of a multibyte character in STRING,\n\
1089 only the base leading-code is considered; the validity of\n\
1090 the following bytes is not checked.")
1091 (str)
1092 Lisp_Object str;
1094 Lisp_Object val;
1096 CHECK_STRING (str, 0);
1097 XSETFASTINT (val, strwidth (XSTRING (str)->data,
1098 STRING_BYTES (XSTRING (str))));
1099 return val;
1102 DEFUN ("char-direction", Fchar_direction, Schar_direction, 1, 1, 0,
1103 "Return the direction of CHAR.\n\
1104 The returned value is 0 for left-to-right and 1 for right-to-left.")
1105 (ch)
1106 Lisp_Object ch;
1108 int charset;
1110 CHECK_NUMBER (ch, 0);
1111 charset = CHAR_CHARSET (XFASTINT (ch));
1112 if (!CHARSET_DEFINED_P (charset))
1113 invalid_character (XINT (ch));
1114 return CHARSET_TABLE_INFO (charset, CHARSET_DIRECTION_IDX);
1117 DEFUN ("chars-in-region", Fchars_in_region, Schars_in_region, 2, 2, 0,
1118 "Return number of characters between BEG and END.")
1119 (beg, end)
1120 Lisp_Object beg, end;
1122 int from, to;
1124 from = min (XFASTINT (beg), XFASTINT (end));
1125 to = max (XFASTINT (beg), XFASTINT (end));
1127 return make_number (to - from);
1130 /* Return the number of characters in the NBYTES bytes at PTR.
1131 This works by looking at the contents and checking for multibyte sequences.
1132 However, if the current buffer has enable-multibyte-characters = nil,
1133 we treat each byte as a character. */
1136 chars_in_text (ptr, nbytes)
1137 unsigned char *ptr;
1138 int nbytes;
1140 unsigned char *endp, c;
1141 int chars;
1143 /* current_buffer is null at early stages of Emacs initialization. */
1144 if (current_buffer == 0
1145 || NILP (current_buffer->enable_multibyte_characters))
1146 return nbytes;
1148 endp = ptr + nbytes;
1149 chars = 0;
1151 while (ptr < endp)
1153 c = *ptr++;
1155 if (BASE_LEADING_CODE_P (c))
1156 while (ptr < endp && ! CHAR_HEAD_P (*ptr)) ptr++;
1157 chars++;
1160 return chars;
1163 /* Return the number of characters in the NBYTES bytes at PTR.
1164 This works by looking at the contents and checking for multibyte sequences.
1165 It ignores enable-multibyte-characters. */
1168 multibyte_chars_in_text (ptr, nbytes)
1169 unsigned char *ptr;
1170 int nbytes;
1172 unsigned char *endp, c;
1173 int chars;
1175 endp = ptr + nbytes;
1176 chars = 0;
1178 while (ptr < endp)
1180 c = *ptr++;
1182 if (BASE_LEADING_CODE_P (c))
1183 while (ptr < endp && ! CHAR_HEAD_P (*ptr)) ptr++;
1184 chars++;
1187 return chars;
1190 DEFUN ("string", Fstring, Sstring, 1, MANY, 0,
1191 "Concatenate all the argument characters and make the result a string.")
1192 (n, args)
1193 int n;
1194 Lisp_Object *args;
1196 int i;
1197 unsigned char *buf
1198 = (unsigned char *) alloca (MAX_LENGTH_OF_MULTI_BYTE_FORM * n);
1199 unsigned char *p = buf;
1200 Lisp_Object val;
1202 for (i = 0; i < n; i++)
1204 int c, len;
1205 unsigned char *str;
1207 if (!INTEGERP (args[i]))
1208 CHECK_NUMBER (args[i], 0);
1209 c = XINT (args[i]);
1210 len = CHAR_STRING (c, p, str);
1211 if (p != str)
1212 /* C is a composite character. */
1213 bcopy (str, p, len);
1214 p += len;
1217 val = make_string_from_bytes (buf, n, p - buf);
1218 return val;
1221 #endif /* emacs */
1223 /*** Composite characters staffs ***/
1225 /* Each composite character is identified by CMPCHAR-ID which is
1226 assigned when Emacs needs the character code of the composite
1227 character (e.g. when displaying it on the screen). See the
1228 document "GENERAL NOTE on COMPOSITE CHARACTER" in `charset.h' how a
1229 composite character is represented in Emacs. */
1231 /* If `static' is defined, it means that it is defined to null string. */
1232 #ifndef static
1233 /* The following function is copied from lread.c. */
1234 static int
1235 hash_string (ptr, len)
1236 unsigned char *ptr;
1237 int len;
1239 register unsigned char *p = ptr;
1240 register unsigned char *end = p + len;
1241 register unsigned char c;
1242 register int hash = 0;
1244 while (p != end)
1246 c = *p++;
1247 if (c >= 0140) c -= 40;
1248 hash = ((hash<<3) + (hash>>28) + c);
1250 return hash & 07777777777;
1252 #endif
1254 #define CMPCHAR_HASH_TABLE_SIZE 0xFFF
1256 static int *cmpchar_hash_table[CMPCHAR_HASH_TABLE_SIZE];
1258 /* Each element of `cmpchar_hash_table' is a pointer to an array of
1259 integer, where the 1st element is the size of the array, the 2nd
1260 element is how many elements are actually used in the array, and
1261 the remaining elements are CMPCHAR-IDs of composite characters of
1262 the same hash value. */
1263 #define CMPCHAR_HASH_SIZE(table) table[0]
1264 #define CMPCHAR_HASH_USED(table) table[1]
1265 #define CMPCHAR_HASH_CMPCHAR_ID(table, i) table[i]
1267 /* Return CMPCHAR-ID of the composite character in STR of the length
1268 LEN. If the composite character has not yet been registered,
1269 register it in `cmpchar_table' and assign new CMPCHAR-ID. This
1270 is the sole function for assigning CMPCHAR-ID. */
1272 str_cmpchar_id (str, len)
1273 const unsigned char *str;
1274 int len;
1276 int hash_idx, *hashp;
1277 unsigned char *buf;
1278 int embedded_rule; /* 1 if composition rule is embedded. */
1279 int chars; /* number of components. */
1280 int i;
1281 struct cmpchar_info *cmpcharp;
1283 /* The second byte 0xFF means compostion rule is embedded. */
1284 embedded_rule = (str[1] == 0xFF);
1286 /* At first, get the actual length of the composite character. */
1288 const unsigned char *p, *endp = str + 1, *lastp = str + len;
1289 int bytes;
1291 while (endp < lastp && ! CHAR_HEAD_P (*endp)) endp++;
1292 if (endp - str < 5)
1293 /* Any composite char have at least 5-byte length. */
1294 return -1;
1296 chars = 0;
1297 p = str + 1;
1298 while (p < endp)
1300 if (embedded_rule) p++;
1301 /* No need of checking if *P is 0xA0 because
1302 BYTES_BY_CHAR_HEAD (0x80) surely returns 2. */
1303 p += BYTES_BY_CHAR_HEAD (*p - 0x20);
1304 chars++;
1306 if (p > endp || chars < 2 || chars > MAX_COMPONENT_COUNT)
1307 /* Invalid components. */
1308 return -1;
1309 len = p - str;
1311 hash_idx = hash_string (str, len) % CMPCHAR_HASH_TABLE_SIZE;
1312 hashp = cmpchar_hash_table[hash_idx];
1314 /* Then, look into the hash table. */
1315 if (hashp != NULL)
1316 /* Find the correct one among composite characters of the same
1317 hash value. */
1318 for (i = 2; i < CMPCHAR_HASH_USED (hashp); i++)
1320 cmpcharp = cmpchar_table[CMPCHAR_HASH_CMPCHAR_ID (hashp, i)];
1321 if (len == cmpcharp->len
1322 && ! bcmp (str, cmpcharp->data, len))
1323 return CMPCHAR_HASH_CMPCHAR_ID (hashp, i);
1326 /* We have to register the composite character in cmpchar_table. */
1327 if (n_cmpchars > (CHAR_FIELD2_MASK | CHAR_FIELD3_MASK))
1328 /* No, we have no more room for a new composite character. */
1329 return -1;
1331 /* Make the entry in hash table. */
1332 if (hashp == NULL)
1334 /* Make a table for 8 composite characters initially. */
1335 hashp = (cmpchar_hash_table[hash_idx]
1336 = (int *) xmalloc (sizeof (int) * (2 + 8)));
1337 CMPCHAR_HASH_SIZE (hashp) = 10;
1338 CMPCHAR_HASH_USED (hashp) = 2;
1340 else if (CMPCHAR_HASH_USED (hashp) >= CMPCHAR_HASH_SIZE (hashp))
1342 CMPCHAR_HASH_SIZE (hashp) += 8;
1343 hashp = (cmpchar_hash_table[hash_idx]
1344 = (int *) xrealloc (hashp,
1345 sizeof (int) * CMPCHAR_HASH_SIZE (hashp)));
1347 CMPCHAR_HASH_CMPCHAR_ID (hashp, CMPCHAR_HASH_USED (hashp)) = n_cmpchars;
1348 CMPCHAR_HASH_USED (hashp)++;
1350 /* Set information of the composite character in cmpchar_table. */
1351 if (cmpchar_table_size == 0)
1353 /* This is the first composite character to be registered. */
1354 cmpchar_table_size = 256;
1355 cmpchar_table
1356 = (struct cmpchar_info **) xmalloc (sizeof (cmpchar_table[0])
1357 * cmpchar_table_size);
1359 else if (cmpchar_table_size <= n_cmpchars)
1361 cmpchar_table_size += 256;
1362 cmpchar_table
1363 = (struct cmpchar_info **) xrealloc (cmpchar_table,
1364 sizeof (cmpchar_table[0])
1365 * cmpchar_table_size);
1368 cmpcharp = (struct cmpchar_info *) xmalloc (sizeof (struct cmpchar_info));
1370 cmpcharp->len = len;
1371 cmpcharp->data = (unsigned char *) xmalloc (len + 1);
1372 bcopy (str, cmpcharp->data, len);
1373 cmpcharp->data[len] = 0;
1374 cmpcharp->glyph_len = chars;
1375 cmpcharp->glyph = (GLYPH *) xmalloc (sizeof (GLYPH) * chars);
1376 if (embedded_rule)
1378 cmpcharp->cmp_rule = (unsigned char *) xmalloc (chars);
1379 cmpcharp->col_offset = (float *) xmalloc (sizeof (float) * chars);
1381 else
1383 cmpcharp->cmp_rule = NULL;
1384 cmpcharp->col_offset = NULL;
1387 /* Setup GLYPH data and composition rules (if any) so as not to make
1388 them every time on displaying. */
1390 unsigned char *bufp;
1391 int width;
1392 float leftmost = 0.0, rightmost = 1.0;
1394 if (embedded_rule)
1395 /* At first, col_offset[N] is set to relative to col_offset[0]. */
1396 cmpcharp->col_offset[0] = 0;
1398 for (i = 0, bufp = cmpcharp->data + 1; i < chars; i++)
1400 if (embedded_rule)
1401 cmpcharp->cmp_rule[i] = *bufp++;
1403 if (*bufp == 0xA0) /* This is an ASCII character. */
1405 cmpcharp->glyph[i] = FAST_MAKE_GLYPH ((*++bufp & 0x7F), 0);
1406 width = 1;
1407 bufp++;
1409 else /* Multibyte character. */
1411 /* Make `bufp' point normal multi-byte form temporally. */
1412 *bufp -= 0x20;
1413 cmpcharp->glyph[i]
1414 = FAST_MAKE_GLYPH (string_to_non_ascii_char (bufp, 4, 0, 0), 0);
1415 width = WIDTH_BY_CHAR_HEAD (*bufp);
1416 *bufp += 0x20;
1417 bufp += BYTES_BY_CHAR_HEAD (*bufp - 0x20);
1420 if (embedded_rule && i > 0)
1422 /* Reference points (global_ref and new_ref) are
1423 encoded as below:
1425 0--1--2 -- ascent
1428 | 4 -+--- center
1429 -- 3 5 -- baseline
1431 6--7--8 -- descent
1433 Now, we calculate the column offset of the new glyph
1434 from the left edge of the first glyph. This can avoid
1435 the same calculation everytime displaying this
1436 composite character. */
1438 /* Reference points of global glyph and new glyph. */
1439 int global_ref = (cmpcharp->cmp_rule[i] - 0xA0) / 9;
1440 int new_ref = (cmpcharp->cmp_rule[i] - 0xA0) % 9;
1441 /* Column offset relative to the first glyph. */
1442 float left = (leftmost
1443 + (global_ref % 3) * (rightmost - leftmost) / 2.0
1444 - (new_ref % 3) * width / 2.0);
1446 cmpcharp->col_offset[i] = left;
1447 if (left < leftmost)
1448 leftmost = left;
1449 if (left + width > rightmost)
1450 rightmost = left + width;
1452 else
1454 if (width > rightmost)
1455 rightmost = width;
1458 if (embedded_rule)
1460 /* Now col_offset[N] are relative to the left edge of the
1461 first component. Make them relative to the left edge of
1462 overall glyph. */
1463 for (i = 0; i < chars; i++)
1464 cmpcharp->col_offset[i] -= leftmost;
1465 /* Make rightmost holds width of overall glyph. */
1466 rightmost -= leftmost;
1469 cmpcharp->width = rightmost;
1470 if (cmpcharp->width < rightmost)
1471 /* To get a ceiling integer value. */
1472 cmpcharp->width++;
1475 cmpchar_table[n_cmpchars] = cmpcharp;
1477 return n_cmpchars++;
1480 /* Return the Nth element of the composite character C. */
1482 cmpchar_component (c, n)
1483 unsigned int c, n;
1485 int id = COMPOSITE_CHAR_ID (c);
1487 if (id >= n_cmpchars /* C is not a valid composite character. */
1488 || n >= cmpchar_table[id]->glyph_len) /* No such component. */
1489 return -1;
1490 /* No face data is stored in glyph code. */
1491 return ((int) (cmpchar_table[id]->glyph[n]));
1494 DEFUN ("cmpcharp", Fcmpcharp, Scmpcharp, 1, 1, 0,
1495 "T if CHAR is a composite character.")
1496 (ch)
1497 Lisp_Object ch;
1499 CHECK_NUMBER (ch, 0);
1500 return (COMPOSITE_CHAR_P (XINT (ch)) ? Qt : Qnil);
1503 DEFUN ("composite-char-component", Fcmpchar_component, Scmpchar_component,
1504 2, 2, 0,
1505 "Return the IDXth component character of composite character CHARACTER.")
1506 (character, idx)
1507 Lisp_Object character, idx;
1509 int c;
1511 CHECK_NUMBER (character, 0);
1512 CHECK_NUMBER (idx, 1);
1514 if ((c = cmpchar_component (XINT (character), XINT (idx))) < 0)
1515 args_out_of_range (character, idx);
1517 return make_number (c);
1520 DEFUN ("composite-char-composition-rule", Fcmpchar_cmp_rule, Scmpchar_cmp_rule,
1521 2, 2, 0,
1522 "Return the Nth composition rule embedded in composite character CHARACTER.\n\
1523 The returned rule is for composing the Nth component\n\
1524 on the (N-1)th component. If N is 0, the returned value is always 255.")
1525 (character, n)
1526 Lisp_Object character, n;
1528 int id, i;
1530 CHECK_NUMBER (character, 0);
1531 CHECK_NUMBER (n, 1);
1533 id = COMPOSITE_CHAR_ID (XINT (character));
1534 if (id < 0 || id >= n_cmpchars)
1535 error ("Invalid composite character: %d", XINT (character));
1536 i = XINT (n);
1537 if (i > cmpchar_table[id]->glyph_len)
1538 args_out_of_range (character, n);
1540 return make_number (cmpchar_table[id]->cmp_rule[i]);
1543 DEFUN ("composite-char-composition-rule-p", Fcmpchar_cmp_rule_p,
1544 Scmpchar_cmp_rule_p, 1, 1, 0,
1545 "Return non-nil if composite character CHARACTER contains a embedded rule.")
1546 (character)
1547 Lisp_Object character;
1549 int id;
1551 CHECK_NUMBER (character, 0);
1552 id = COMPOSITE_CHAR_ID (XINT (character));
1553 if (id < 0 || id >= n_cmpchars)
1554 error ("Invalid composite character: %d", XINT (character));
1556 return (cmpchar_table[id]->cmp_rule ? Qt : Qnil);
1559 DEFUN ("composite-char-component-count", Fcmpchar_cmp_count,
1560 Scmpchar_cmp_count, 1, 1, 0,
1561 "Return number of compoents of composite character CHARACTER.")
1562 (character)
1563 Lisp_Object character;
1565 int id;
1567 CHECK_NUMBER (character, 0);
1568 id = COMPOSITE_CHAR_ID (XINT (character));
1569 if (id < 0 || id >= n_cmpchars)
1570 error ("Invalid composite character: %d", XINT (character));
1572 return (make_number (cmpchar_table[id]->glyph_len));
1575 DEFUN ("compose-string", Fcompose_string, Scompose_string,
1576 1, 1, 0,
1577 "Return one char string composed from all characters in STRING.")
1578 (str)
1579 Lisp_Object str;
1581 unsigned char buf[MAX_LENGTH_OF_MULTI_BYTE_FORM], *p, *pend, *ptemp;
1582 int len, i;
1584 CHECK_STRING (str, 0);
1586 buf[0] = LEADING_CODE_COMPOSITION;
1587 p = XSTRING (str)->data;
1588 pend = p + STRING_BYTES (XSTRING (str));
1589 i = 1;
1590 while (p < pend)
1592 if (*p < 0x20 || *p == 127) /* control code */
1593 error ("Invalid component character: %d", *p);
1594 else if (*p < 0x80) /* ASCII */
1596 if (i + 2 >= MAX_LENGTH_OF_MULTI_BYTE_FORM)
1597 error ("Too long string to be composed: %s", XSTRING (str)->data);
1598 /* Prepend an ASCII charset indicator 0xA0, set MSB of the
1599 code itself. */
1600 buf[i++] = 0xA0;
1601 buf[i++] = *p++ + 0x80;
1603 else if (*p == LEADING_CODE_COMPOSITION) /* composite char */
1605 /* Already composed. Eliminate the heading
1606 LEADING_CODE_COMPOSITION, keep the remaining bytes
1607 unchanged. */
1608 p++;
1609 ptemp = p;
1610 while (! CHAR_HEAD_P (*p)) p++;
1611 if (i + (p - ptemp) >= MAX_LENGTH_OF_MULTI_BYTE_FORM)
1612 error ("Too long string to be composed: %s", XSTRING (str)->data);
1613 bcopy (ptemp, buf + i, p - ptemp);
1614 i += p - ptemp;
1616 else /* multibyte char */
1618 /* Add 0x20 to the base leading-code, keep the remaining
1619 bytes unchanged. */
1620 len = BYTES_BY_CHAR_HEAD (*p);
1621 if (i + len >= MAX_LENGTH_OF_MULTI_BYTE_FORM)
1622 error ("Too long string to be composed: %s", XSTRING (str)->data);
1623 bcopy (p, buf + i, len);
1624 buf[i] += 0x20;
1625 p += len, i += len;
1629 if (i < 5)
1630 /* STR contains only one character, which can't be composed. */
1631 error ("Too short string to be composed: %s", XSTRING (str)->data);
1633 return make_string_from_bytes (buf, 1, i);
1638 charset_id_internal (charset_name)
1639 char *charset_name;
1641 Lisp_Object val = Fget (intern (charset_name), Qcharset);
1643 if (!VECTORP (val))
1644 error ("Charset %s is not defined", charset_name);
1646 return (XINT (XVECTOR (val)->contents[0]));
1649 DEFUN ("setup-special-charsets", Fsetup_special_charsets,
1650 Ssetup_special_charsets, 0, 0, 0, "Internal use only.")
1653 charset_latin_iso8859_1 = charset_id_internal ("latin-iso8859-1");
1654 charset_jisx0208_1978 = charset_id_internal ("japanese-jisx0208-1978");
1655 charset_jisx0208 = charset_id_internal ("japanese-jisx0208");
1656 charset_katakana_jisx0201 = charset_id_internal ("katakana-jisx0201");
1657 charset_latin_jisx0201 = charset_id_internal ("latin-jisx0201");
1658 charset_big5_1 = charset_id_internal ("chinese-big5-1");
1659 charset_big5_2 = charset_id_internal ("chinese-big5-2");
1660 return Qnil;
1663 void
1664 init_charset_once ()
1666 int i, j, k;
1668 staticpro (&Vcharset_table);
1669 staticpro (&Vcharset_symbol_table);
1671 /* This has to be done here, before we call Fmake_char_table. */
1672 Qcharset_table = intern ("charset-table");
1673 staticpro (&Qcharset_table);
1675 /* Intern this now in case it isn't already done.
1676 Setting this variable twice is harmless.
1677 But don't staticpro it here--that is done in alloc.c. */
1678 Qchar_table_extra_slots = intern ("char-table-extra-slots");
1680 /* Now we are ready to set up this property, so we can
1681 create the charset table. */
1682 Fput (Qcharset_table, Qchar_table_extra_slots, make_number (0));
1683 Vcharset_table = Fmake_char_table (Qcharset_table, Qnil);
1685 Vcharset_symbol_table = Fmake_vector (make_number (MAX_CHARSET + 1), Qnil);
1687 /* Setup tables. */
1688 for (i = 0; i < 2; i++)
1689 for (j = 0; j < 2; j++)
1690 for (k = 0; k < 128; k++)
1691 iso_charset_table [i][j][k] = -1;
1693 bzero (cmpchar_hash_table, sizeof cmpchar_hash_table);
1694 cmpchar_table_size = n_cmpchars = 0;
1696 for (i = 0; i < 256; i++)
1697 BYTES_BY_CHAR_HEAD (i) = 1;
1698 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_11) = 3;
1699 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_12) = 3;
1700 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_21) = 4;
1701 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_22) = 4;
1702 /* The following doesn't reflect the actual bytes, but just to tell
1703 that it is a start of a multibyte character. */
1704 BYTES_BY_CHAR_HEAD (LEADING_CODE_COMPOSITION) = 2;
1706 for (i = 0; i < 128; i++)
1707 WIDTH_BY_CHAR_HEAD (i) = 1;
1708 for (; i < 256; i++)
1709 WIDTH_BY_CHAR_HEAD (i) = 4;
1710 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_11) = 1;
1711 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_12) = 2;
1712 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_21) = 1;
1713 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_22) = 2;
1716 #ifdef emacs
1718 void
1719 syms_of_charset ()
1721 Qascii = intern ("ascii");
1722 staticpro (&Qascii);
1724 Qcharset = intern ("charset");
1725 staticpro (&Qcharset);
1727 /* Define ASCII charset now. */
1728 update_charset_table (make_number (CHARSET_ASCII),
1729 make_number (1), make_number (94),
1730 make_number (1),
1731 make_number (0),
1732 make_number ('B'),
1733 make_number (0),
1734 build_string ("ASCII"),
1735 build_string ("ASCII"),
1736 build_string ("ASCII (ISO646 IRV)"));
1737 CHARSET_SYMBOL (CHARSET_ASCII) = Qascii;
1738 Fput (Qascii, Qcharset, CHARSET_TABLE_ENTRY (CHARSET_ASCII));
1740 Qcomposition = intern ("composition");
1741 staticpro (&Qcomposition);
1742 CHARSET_SYMBOL (CHARSET_COMPOSITION) = Qcomposition;
1744 defsubr (&Sdefine_charset);
1745 defsubr (&Sget_unused_iso_final_char);
1746 defsubr (&Sdeclare_equiv_charset);
1747 defsubr (&Sfind_charset_region);
1748 defsubr (&Sfind_charset_string);
1749 defsubr (&Smake_char_internal);
1750 defsubr (&Ssplit_char);
1751 defsubr (&Schar_charset);
1752 defsubr (&Scharset_after);
1753 defsubr (&Siso_charset);
1754 defsubr (&Schar_valid_p);
1755 defsubr (&Sunibyte_char_to_multibyte);
1756 defsubr (&Schar_bytes);
1757 defsubr (&Schar_width);
1758 defsubr (&Sstring_width);
1759 defsubr (&Schar_direction);
1760 defsubr (&Schars_in_region);
1761 defsubr (&Sstring);
1762 defsubr (&Scmpcharp);
1763 defsubr (&Scmpchar_component);
1764 defsubr (&Scmpchar_cmp_rule);
1765 defsubr (&Scmpchar_cmp_rule_p);
1766 defsubr (&Scmpchar_cmp_count);
1767 defsubr (&Scompose_string);
1768 defsubr (&Ssetup_special_charsets);
1770 DEFVAR_LISP ("charset-list", &Vcharset_list,
1771 "List of charsets ever defined.");
1772 Vcharset_list = Fcons (Qascii, Qnil);
1774 DEFVAR_LISP ("translation-table-vector", &Vtranslation_table_vector,
1775 "Vector of cons cell of a symbol and translation table ever defined.\n\
1776 An ID of a translation table is an index of this vector.");
1777 Vtranslation_table_vector = Fmake_vector (make_number (16), Qnil);
1779 DEFVAR_INT ("leading-code-composition", &leading_code_composition,
1780 "Leading-code of composite characters.");
1781 leading_code_composition = LEADING_CODE_COMPOSITION;
1783 DEFVAR_INT ("leading-code-private-11", &leading_code_private_11,
1784 "Leading-code of private TYPE9N charset of column-width 1.");
1785 leading_code_private_11 = LEADING_CODE_PRIVATE_11;
1787 DEFVAR_INT ("leading-code-private-12", &leading_code_private_12,
1788 "Leading-code of private TYPE9N charset of column-width 2.");
1789 leading_code_private_12 = LEADING_CODE_PRIVATE_12;
1791 DEFVAR_INT ("leading-code-private-21", &leading_code_private_21,
1792 "Leading-code of private TYPE9Nx9N charset of column-width 1.");
1793 leading_code_private_21 = LEADING_CODE_PRIVATE_21;
1795 DEFVAR_INT ("leading-code-private-22", &leading_code_private_22,
1796 "Leading-code of private TYPE9Nx9N charset of column-width 2.");
1797 leading_code_private_22 = LEADING_CODE_PRIVATE_22;
1799 DEFVAR_INT ("nonascii-insert-offset", &nonascii_insert_offset,
1800 "Offset for converting non-ASCII unibyte codes 0240...0377 to multibyte.\n\
1801 This is used for converting unibyte text to multibyte,\n\
1802 and for inserting character codes specified by number.\n\n\
1803 This serves to convert a Latin-1 or similar 8-bit character code\n\
1804 to the corresponding Emacs multibyte character code.\n\
1805 Typically the value should be (- (make-char CHARSET 0) 128),\n\
1806 for your choice of character set.\n\
1807 If `nonascii-translation-table' is non-nil, it overrides this variable.");
1808 nonascii_insert_offset = 0;
1810 DEFVAR_LISP ("nonascii-translation-table", &Vnonascii_translation_table,
1811 "Translation table to convert non-ASCII unibyte codes to multibyte.\n\
1812 This is used for converting unibyte text to multibyte,\n\
1813 and for inserting character codes specified by number.\n\n\
1814 Conversion is performed only when multibyte characters are enabled,\n\
1815 and it serves to convert a Latin-1 or similar 8-bit character code\n\
1816 to the corresponding Emacs character code.\n\n\
1817 If this is nil, `nonascii-insert-offset' is used instead.\n\
1818 See also the docstring of `make-translation-table'.");
1819 Vnonascii_translation_table = Qnil;
1821 DEFVAR_INT ("min-composite-char", &min_composite_char,
1822 "Minimum character code of a composite character.");
1823 min_composite_char = MIN_CHAR_COMPOSITION;
1826 #endif /* emacs */