* buffer.h (BSET): Remove.
[bpt/emacs.git] / src / category.c
CommitLineData
4ed46869 1/* GNU Emacs routines to deal with category tables.
95df8112 2
acaf905b 3Copyright (C) 1998, 2001-2012 Free Software Foundation, Inc.
95df8112
GM
4Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 2005, 2006, 2007, 2008, 2009, 2010, 2011
6 National Institute of Advanced Industrial Science and Technology (AIST)
7 Registration Number H14PRO021
8Copyright (C) 2003
9 National Institute of Advanced Industrial Science and Technology (AIST)
10 Registration Number H13PRO009
4ed46869
KH
11
12This file is part of GNU Emacs.
13
9ec0b715 14GNU Emacs is free software: you can redistribute it and/or modify
4ed46869 15it under the terms of the GNU General Public License as published by
9ec0b715
GM
16the Free Software Foundation, either version 3 of the License, or
17(at your option) any later version.
4ed46869
KH
18
19GNU Emacs is distributed in the hope that it will be useful,
20but WITHOUT ANY WARRANTY; without even the implied warranty of
21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22GNU General Public License for more details.
23
24You should have received a copy of the GNU General Public License
9ec0b715 25along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
4ed46869
KH
26
27
28/* Here we handle three objects: category, category set, and category
29 table. Read comments in the file category.h to understand them. */
30
31#include <config.h>
f162bcc3
PE
32
33#define CATEGORY_INLINE EXTERN_INLINE
34
d7306fe6 35#include <setjmp.h>
4ed46869 36#include "lisp.h"
ea012abd 37#include "character.h"
e5560ff7 38#include "buffer.h"
4ed46869
KH
39#include "charset.h"
40#include "category.h"
e35f6ff7 41#include "keymap.h"
4ed46869 42
39eb03f1
PE
43/* This setter is used only in this file, so it can be private. */
44static inline void
45bset_category_table (struct buffer *b, Lisp_Object val)
46{
47 b->INTERNAL_FIELD (category_table) = val;
48}
49
4ed46869
KH
50/* The version number of the latest category table. Each category
51 table has a unique version number. It is assigned a new number
52 also when it is modified. When a regular expression is compiled
53 into the struct re_pattern_buffer, the version number of the
54 category table (of the current buffer) at that moment is also
55 embedded in the structure.
56
57 For the moment, we are not using this feature. */
58static int category_table_version;
59
955cbe7b 60static Lisp_Object Qcategory_table, Qcategoryp, Qcategorysetp, Qcategory_table_p;
4ed46869 61
d85b608f
PE
62/* Make CATEGORY_SET includes (if VAL is t) or excludes (if VAL is
63 nil) CATEGORY. */
64#define SET_CATEGORY_SET(category_set, category, val) \
65 set_category_set (category_set, category, val)
66static void set_category_set (Lisp_Object, Lisp_Object, Lisp_Object);
4ed46869
KH
67\f
68/* Category set staff. */
69
f57e2426 70static Lisp_Object hash_get_category_set (Lisp_Object, Lisp_Object);
cd486875
KH
71
72static Lisp_Object
971de7fb 73hash_get_category_set (Lisp_Object table, Lisp_Object category_set)
cd486875 74{
cd486875 75 struct Lisp_Hash_Table *h;
d3411f89 76 ptrdiff_t i;
0de4bb68 77 EMACS_UINT hash;
cd486875
KH
78
79 if (NILP (XCHAR_TABLE (table)->extras[1]))
34dabdb7 80 set_char_table_extras
a098c930
DA
81 (table, 1,
82 make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE),
83 make_float (DEFAULT_REHASH_SIZE),
84 make_float (DEFAULT_REHASH_THRESHOLD),
85 Qnil, Qnil, Qnil));
cd486875
KH
86 h = XHASH_TABLE (XCHAR_TABLE (table)->extras[1]);
87 i = hash_lookup (h, category_set, &hash);
88 if (i >= 0)
89 return HASH_KEY (h, i);
90 hash_put (h, category_set, Qnil, hash);
91 return category_set;
92}
93
94
4ed46869 95DEFUN ("make-category-set", Fmake_category_set, Smake_category_set, 1, 1, 0,
fdb82f93
PJ
96 doc: /* Return a newly created category-set which contains CATEGORIES.
97CATEGORIES is a string of category mnemonics.
98The value is a bool-vector which has t at the indices corresponding to
99those categories. */)
5842a27b 100 (Lisp_Object categories)
4ed46869
KH
101{
102 Lisp_Object val;
103 int len;
104
b7826503 105 CHECK_STRING (categories);
4ed46869
KH
106 val = MAKE_CATEGORY_SET;
107
115afec3 108 if (STRING_MULTIBYTE (categories))
95030461 109 error ("Multibyte string in `make-category-set'");
115afec3 110
d5db4077 111 len = SCHARS (categories);
4ed46869
KH
112 while (--len >= 0)
113 {
15c60737 114 Lisp_Object category;
4ed46869 115
d5db4077 116 XSETFASTINT (category, SREF (categories, len));
b7826503 117 CHECK_CATEGORY (category);
4ed46869
KH
118 SET_CATEGORY_SET (val, category, Qt);
119 }
120 return val;
121}
122
123\f
124/* Category staff. */
125
d85b608f 126static Lisp_Object check_category_table (Lisp_Object table);
4ed46869
KH
127
128DEFUN ("define-category", Fdefine_category, Sdefine_category, 2, 3, 0,
839966f3
KH
129 doc: /* Define CATEGORY as a category which is described by DOCSTRING.
130CATEGORY should be an ASCII printing character in the range ` ' to `~'.
f6d2f045
KH
131DOCSTRING is the documentation string of the category. The first line
132should be a terse text (preferably less than 16 characters),
133and the rest lines should be the full description.
fdb82f93 134The category is defined only in category table TABLE, which defaults to
839966f3 135the current buffer's category table. */)
5842a27b 136 (Lisp_Object category, Lisp_Object docstring, Lisp_Object table)
4ed46869 137{
b7826503
PJ
138 CHECK_CATEGORY (category);
139 CHECK_STRING (docstring);
4ed46869
KH
140 table = check_category_table (table);
141
142 if (!NILP (CATEGORY_DOCSTRING (table, XFASTINT (category))))
5fdb398c 143 error ("Category `%c' is already defined", (int) XFASTINT (category));
905a9ed3
DN
144 if (!NILP (Vpurify_flag))
145 docstring = Fpurecopy (docstring);
4ed46869
KH
146 CATEGORY_DOCSTRING (table, XFASTINT (category)) = docstring;
147
148 return Qnil;
149}
150
151DEFUN ("category-docstring", Fcategory_docstring, Scategory_docstring, 1, 2, 0,
839966f3
KH
152 doc: /* Return the documentation string of CATEGORY, as defined in TABLE.
153TABLE should be a category table and defaults to the current buffer's
154category table. */)
5842a27b 155 (Lisp_Object category, Lisp_Object table)
4ed46869 156{
b7826503 157 CHECK_CATEGORY (category);
4ed46869
KH
158 table = check_category_table (table);
159
160 return CATEGORY_DOCSTRING (table, XFASTINT (category));
161}
162
163DEFUN ("get-unused-category", Fget_unused_category, Sget_unused_category,
164 0, 1, 0,
839966f3 165 doc: /* Return a category which is not yet defined in TABLE.
0b6694a5 166If no category remains available, return nil.
839966f3 167The optional argument TABLE specifies which category table to modify;
0b6694a5 168it defaults to the current buffer's category table. */)
5842a27b 169 (Lisp_Object table)
4ed46869
KH
170{
171 int i;
4ed46869
KH
172
173 table = check_category_table (table);
174
175 for (i = ' '; i <= '~'; i++)
176 if (NILP (CATEGORY_DOCSTRING (table, i)))
177 return make_number (i);
178
179 return Qnil;
180}
181
182\f
183/* Category-table staff. */
184
185DEFUN ("category-table-p", Fcategory_table_p, Scategory_table_p, 1, 1, 0,
fdb82f93 186 doc: /* Return t if ARG is a category table. */)
5842a27b 187 (Lisp_Object arg)
4ed46869
KH
188{
189 if (CHAR_TABLE_P (arg)
ed8ec86d 190 && EQ (XCHAR_TABLE (arg)->purpose, Qcategory_table))
4ed46869
KH
191 return Qt;
192 return Qnil;
193}
194
195/* If TABLE is nil, return the current category table. If TABLE is
196 not nil, check the validity of TABLE as a category table. If
197 valid, return TABLE itself, but if not valid, signal an error of
198 wrong-type-argument. */
199
d85b608f 200static Lisp_Object
971de7fb 201check_category_table (Lisp_Object table)
4ed46869 202{
4ed46869 203 if (NILP (table))
4b4deea2 204 return BVAR (current_buffer, category_table);
88674269 205 CHECK_TYPE (!NILP (Fcategory_table_p (table)), Qcategory_table_p, table);
4ed46869 206 return table;
177c0ea7 207}
4ed46869
KH
208
209DEFUN ("category-table", Fcategory_table, Scategory_table, 0, 0, 0,
fdb82f93
PJ
210 doc: /* Return the current category table.
211This is the one specified by the current buffer. */)
5842a27b 212 (void)
4ed46869 213{
4b4deea2 214 return BVAR (current_buffer, category_table);
4ed46869
KH
215}
216
217DEFUN ("standard-category-table", Fstandard_category_table,
218 Sstandard_category_table, 0, 0, 0,
fdb82f93
PJ
219 doc: /* Return the standard category table.
220This is the one used for new buffers. */)
5842a27b 221 (void)
4ed46869
KH
222{
223 return Vstandard_category_table;
224}
225
ea012abd
KH
226
227static void
971de7fb 228copy_category_entry (Lisp_Object table, Lisp_Object c, Lisp_Object val)
ea012abd 229{
f4b670ef 230 val = Fcopy_sequence (val);
8f924df7
KH
231 if (CONSP (c))
232 char_table_set_range (table, XINT (XCAR (c)), XINT (XCDR (c)), val);
f4b670ef 233 else
8f924df7 234 char_table_set (table, XINT (c), val);
ea012abd
KH
235}
236
4ed46869
KH
237/* Return a copy of category table TABLE. We can't simply use the
238 function copy-sequence because no contents should be shared between
ed8ec86d 239 the original and the copy. This function is called recursively by
9da95d53 240 binding TABLE to a sub char table. */
4ed46869 241
9f3b5e69 242static Lisp_Object
971de7fb 243copy_category_table (Lisp_Object table)
4ed46869 244{
ea012abd 245 table = copy_char_table (table);
4ed46869 246
ea012abd 247 if (! NILP (XCHAR_TABLE (table)->defalt))
742af32f
PE
248 set_char_table_defalt (table,
249 Fcopy_sequence (XCHAR_TABLE (table)->defalt));
34dabdb7 250 set_char_table_extras
a098c930 251 (table, 0, Fcopy_sequence (XCHAR_TABLE (table)->extras[0]));
8f924df7 252 map_char_table (copy_category_entry, Qnil, table, table);
ed8ec86d 253
4ed46869
KH
254 return table;
255}
256
257DEFUN ("copy-category-table", Fcopy_category_table, Scopy_category_table,
258 0, 1, 0,
fdb82f93
PJ
259 doc: /* Construct a new category table and return it.
260It is a copy of the TABLE, which defaults to the standard category table. */)
5842a27b 261 (Lisp_Object table)
4ed46869
KH
262{
263 if (!NILP (table))
264 check_category_table (table);
265 else
266 table = Vstandard_category_table;
267
9da95d53 268 return copy_category_table (table);
4ed46869
KH
269}
270
70414a3d
KH
271DEFUN ("make-category-table", Fmake_category_table, Smake_category_table,
272 0, 0, 0,
fdb82f93 273 doc: /* Construct a new and empty category table and return it. */)
5842a27b 274 (void)
70414a3d
KH
275{
276 Lisp_Object val;
ea012abd 277 int i;
70414a3d
KH
278
279 val = Fmake_char_table (Qcategory_table, Qnil);
742af32f 280 set_char_table_defalt (val, MAKE_CATEGORY_SET);
8f924df7 281 for (i = 0; i < (1 << CHARTAB_SIZE_BITS_0); i++)
34dabdb7 282 set_char_table_contents (val, i, MAKE_CATEGORY_SET);
70414a3d
KH
283 Fset_char_table_extra_slot (val, make_number (0),
284 Fmake_vector (make_number (95), Qnil));
285 return val;
286}
287
4ed46869 288DEFUN ("set-category-table", Fset_category_table, Sset_category_table, 1, 1, 0,
839966f3
KH
289 doc: /* Specify TABLE as the category table for the current buffer.
290Return TABLE. */)
5842a27b 291 (Lisp_Object table)
4ed46869 292{
6f598a6d 293 int idx;
4ed46869 294 table = check_category_table (table);
39eb03f1 295 bset_category_table (current_buffer, table);
4ed46869 296 /* Indicate that this buffer now has a specified category table. */
f6cd0527
GM
297 idx = PER_BUFFER_VAR_IDX (category_table);
298 SET_PER_BUFFER_VALUE_P (current_buffer, idx, 1);
4ed46869
KH
299 return table;
300}
301
302\f
ea012abd 303Lisp_Object
971de7fb 304char_category_set (int c)
ea012abd 305{
4b4deea2 306 return CHAR_TABLE_REF (BVAR (current_buffer, category_table), c);
ea012abd
KH
307}
308
4ed46869 309DEFUN ("char-category-set", Fchar_category_set, Schar_category_set, 1, 1, 0,
a2c2f196
JB
310 doc: /* Return the category set of CHAR.
311usage: (char-category-set CHAR) */)
5842a27b 312 (Lisp_Object ch)
4ed46869 313{
d311d28c 314 CHECK_CHARACTER (ch);
4ed46869
KH
315 return CATEGORY_SET (XFASTINT (ch));
316}
317
318DEFUN ("category-set-mnemonics", Fcategory_set_mnemonics,
319 Scategory_set_mnemonics, 1, 1, 0,
fdb82f93
PJ
320 doc: /* Return a string containing mnemonics of the categories in CATEGORY-SET.
321CATEGORY-SET is a bool-vector, and the categories \"in\" it are those
839966f3 322that are indexes where t occurs in the bool-vector.
fdb82f93 323The return value is a string containing those same categories. */)
5842a27b 324 (Lisp_Object category_set)
4ed46869
KH
325{
326 int i, j;
327 char str[96];
328
b7826503 329 CHECK_CATEGORY_SET (category_set);
4ed46869
KH
330
331 j = 0;
332 for (i = 32; i < 127; i++)
333 if (CATEGORY_MEMBER (i, category_set))
334 str[j++] = i;
335 str[j] = '\0';
336
337 return build_string (str);
338}
339
d85b608f 340static void
971de7fb 341set_category_set (Lisp_Object category_set, Lisp_Object category, Lisp_Object val)
4ed46869
KH
342{
343 do {
344 int idx = XINT (category) / 8;
345 unsigned char bits = 1 << (XINT (category) % 8);
346
347 if (NILP (val))
348 XCATEGORY_SET (category_set)->data[idx] &= ~bits;
349 else
350 XCATEGORY_SET (category_set)->data[idx] |= bits;
351 } while (0);
352}
353
354DEFUN ("modify-category-entry", Fmodify_category_entry,
355 Smodify_category_entry, 2, 4, 0,
fdb82f93
PJ
356 doc: /* Modify the category set of CHARACTER by adding CATEGORY to it.
357The category is changed only for table TABLE, which defaults to
8f7e5042
DL
358the current buffer's category table.
359CHARACTER can be either a single character or a cons representing the
360lower and upper ends of an inclusive character range to modify.
fdb82f93
PJ
361If optional fourth argument RESET is non-nil,
362then delete CATEGORY from the category set instead of adding it. */)
5842a27b 363 (Lisp_Object character, Lisp_Object category, Lisp_Object table, Lisp_Object reset)
4ed46869 364{
4ed46869 365 Lisp_Object set_value; /* Actual value to be set in category sets. */
8f7e5042 366 Lisp_Object category_set;
ea012abd
KH
367 int start, end;
368 int from, to;
4ed46869 369
ea012abd 370 if (INTEGERP (character))
4ed46869 371 {
ea012abd
KH
372 CHECK_CHARACTER (character);
373 start = end = XFASTINT (character);
4ed46869 374 }
ea012abd 375 else
4ed46869 376 {
ea012abd 377 CHECK_CONS (character);
8f924df7
KH
378 CHECK_CHARACTER_CAR (character);
379 CHECK_CHARACTER_CDR (character);
ea012abd
KH
380 start = XFASTINT (XCAR (character));
381 end = XFASTINT (XCDR (character));
4ed46869 382 }
4ed46869 383
b7826503 384 CHECK_CATEGORY (category);
4ed46869 385 table = check_category_table (table);
4ed46869 386
4ed46869 387 if (NILP (CATEGORY_DOCSTRING (table, XFASTINT (category))))
5fdb398c 388 error ("Undefined category: %c", (int) XFASTINT (category));
4ed46869 389
4ed46869 390 set_value = NILP (reset) ? Qt : Qnil;
4ed46869 391
ea012abd 392 while (start <= end)
4ed46869 393 {
cd486875 394 from = start, to = end;
ea012abd 395 category_set = char_table_ref_and_range (table, start, &from, &to);
0b261f59 396 if (CATEGORY_MEMBER (XFASTINT (category), category_set) != NILP (reset))
ea012abd 397 {
d8887a31
KH
398 category_set = Fcopy_sequence (category_set);
399 SET_CATEGORY_SET (category_set, category, set_value);
cd486875
KH
400 category_set = hash_get_category_set (table, category_set);
401 char_table_set_range (table, start, to, category_set);
ea012abd 402 }
ea012abd 403 start = to + 1;
4ed46869 404 }
4ed46869
KH
405
406 return Qnil;
407}
408\f
4ed46869
KH
409/* Return 1 if there is a word boundary between two word-constituent
410 characters C1 and C2 if they appear in this order, else return 0.
411 Use the macro WORD_BOUNDARY_P instead of calling this function
412 directly. */
413
414int
971de7fb 415word_boundary_p (int c1, int c2)
4ed46869
KH
416{
417 Lisp_Object category_set1, category_set2;
418 Lisp_Object tail;
419 int default_result;
420
714b2198
KH
421 if (EQ (CHAR_TABLE_REF (Vchar_script_table, c1),
422 CHAR_TABLE_REF (Vchar_script_table, c2)))
4ed46869
KH
423 {
424 tail = Vword_separating_categories;
425 default_result = 0;
426 }
427 else
428 {
429 tail = Vword_combining_categories;
430 default_result = 1;
431 }
432
433 category_set1 = CATEGORY_SET (c1);
434 if (NILP (category_set1))
435 return default_result;
436 category_set2 = CATEGORY_SET (c2);
437 if (NILP (category_set2))
438 return default_result;
439
03699b14 440 for (; CONSP (tail); tail = XCDR (tail))
4ed46869 441 {
03699b14 442 Lisp_Object elt = XCAR (tail);
4ed46869
KH
443
444 if (CONSP (elt)
714b2198
KH
445 && (NILP (XCAR (elt))
446 || (CATEGORYP (XCAR (elt))
8a605fe8
KH
447 && CATEGORY_MEMBER (XFASTINT (XCAR (elt)), category_set1)
448 && ! CATEGORY_MEMBER (XFASTINT (XCAR (elt)), category_set2)))
714b2198
KH
449 && (NILP (XCDR (elt))
450 || (CATEGORYP (XCDR (elt))
8a605fe8 451 && ! CATEGORY_MEMBER (XFASTINT (XCDR (elt)), category_set1)
714b2198 452 && CATEGORY_MEMBER (XFASTINT (XCDR (elt)), category_set2))))
4ed46869
KH
453 return !default_result;
454 }
455 return default_result;
456}
457
458\f
dfcf069d 459void
971de7fb 460init_category_once (void)
4ed46869
KH
461{
462 /* This has to be done here, before we call Fmake_char_table. */
cd3520a4 463 DEFSYM (Qcategory_table, "category-table");
4ed46869
KH
464
465 /* Intern this now in case it isn't already done.
466 Setting this variable twice is harmless.
467 But don't staticpro it here--that is done in alloc.c. */
d67b4f80 468 Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots");
4ed46869
KH
469
470 /* Now we are ready to set up this property, so we can
471 create category tables. */
472 Fput (Qcategory_table, Qchar_table_extra_slots, make_number (2));
473
474 Vstandard_category_table = Fmake_char_table (Qcategory_table, Qnil);
177c0ea7 475 /* Set a category set which contains nothing to the default. */
742af32f 476 set_char_table_defalt (Vstandard_category_table, MAKE_CATEGORY_SET);
9da95d53 477 Fset_char_table_extra_slot (Vstandard_category_table, make_number (0),
4ed46869
KH
478 Fmake_vector (make_number (95), Qnil));
479}
480
dfcf069d 481void
971de7fb 482syms_of_category (void)
4ed46869 483{
cd3520a4
JB
484 DEFSYM (Qcategoryp, "categoryp");
485 DEFSYM (Qcategorysetp, "categorysetp");
486 DEFSYM (Qcategory_table_p, "category-table-p");
4ed46869 487
29208e82 488 DEFVAR_LISP ("word-combining-categories", Vword_combining_categories,
fdb82f93
PJ
489 doc: /* List of pair (cons) of categories to determine word boundary.
490
491Emacs treats a sequence of word constituent characters as a single
e0f24100 492word (i.e. finds no word boundary between them) only if they belong to
714b2198 493the same script. But, exceptions are allowed in the following cases.
fdb82f93 494
714b2198 495\(1) The case that characters are in different scripts is controlled
fdb82f93
PJ
496by the variable `word-combining-categories'.
497
714b2198 498Emacs finds no word boundary between characters of different scripts
fdb82f93
PJ
499if they have categories matching some element of this list.
500
501More precisely, if an element of this list is a cons of category CAT1
502and CAT2, and a multibyte character C1 which has CAT1 is followed by
503C2 which has CAT2, there's no word boundary between C1 and C2.
504
714b2198
KH
505For instance, to tell that Han characters followed by Hiragana
506characters can form a single word, the element `(?C . ?H)' should be
507in this list.
fdb82f93 508
714b2198 509\(2) The case that character are in the same script is controlled by
fdb82f93
PJ
510the variable `word-separating-categories'.
511
ecdcaa09 512Emacs finds a word boundary between characters of the same script
fdb82f93
PJ
513if they have categories matching some element of this list.
514
515More precisely, if an element of this list is a cons of category CAT1
8a605fe8
KH
516and CAT2, and a multibyte character C1 which has CAT1 but not CAT2 is
517followed by C2 which has CAT2 but not CAT1, there's a word boundary
518between C1 and C2.
fdb82f93 519
714b2198
KH
520For instance, to tell that there's a word boundary between Hiragana
521and Katakana (both are in the same script `kana'),
522the element `(?H . ?K) should be in this list. */);
4ed46869
KH
523
524 Vword_combining_categories = Qnil;
525
29208e82 526 DEFVAR_LISP ("word-separating-categories", Vword_separating_categories,
fdb82f93
PJ
527 doc: /* List of pair (cons) of categories to determine word boundary.
528See the documentation of the variable `word-combining-categories'. */);
4ed46869
KH
529
530 Vword_separating_categories = Qnil;
531
532 defsubr (&Smake_category_set);
533 defsubr (&Sdefine_category);
534 defsubr (&Scategory_docstring);
535 defsubr (&Sget_unused_category);
536 defsubr (&Scategory_table_p);
537 defsubr (&Scategory_table);
538 defsubr (&Sstandard_category_table);
539 defsubr (&Scopy_category_table);
70414a3d 540 defsubr (&Smake_category_table);
4ed46869
KH
541 defsubr (&Sset_category_table);
542 defsubr (&Schar_category_set);
543 defsubr (&Scategory_set_mnemonics);
544 defsubr (&Smodify_category_entry);
4ed46869
KH
545
546 category_table_version = 0;
547}