Auto-commit of generated files.
[emacs.git] / src / casetab.c
blob5f3c8db2869801695722906187bbaf0e5124f9e7
1 /* GNU Emacs routines to deal with case tables.
2 Copyright (C) 1993-1994, 2001-2013 Free Software Foundation, Inc.
4 Author: Howard Gayle
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
23 #include "lisp.h"
24 #include "character.h"
25 #include "buffer.h"
27 static Lisp_Object Qcase_table_p, Qcase_table;
28 Lisp_Object Vascii_downcase_table;
29 static Lisp_Object Vascii_upcase_table;
30 Lisp_Object Vascii_canon_table;
31 static Lisp_Object Vascii_eqv_table;
33 static void set_canon (Lisp_Object case_table, Lisp_Object range, Lisp_Object elt);
34 static void set_identity (Lisp_Object table, Lisp_Object c, Lisp_Object elt);
35 static void shuffle (Lisp_Object table, Lisp_Object c, Lisp_Object elt);
37 DEFUN ("case-table-p", Fcase_table_p, Scase_table_p, 1, 1, 0,
38 doc: /* Return t if OBJECT is a case table.
39 See `set-case-table' for more information on these data structures. */)
40 (Lisp_Object object)
42 Lisp_Object up, canon, eqv;
44 if (! CHAR_TABLE_P (object))
45 return Qnil;
46 if (! EQ (XCHAR_TABLE (object)->purpose, Qcase_table))
47 return Qnil;
49 up = XCHAR_TABLE (object)->extras[0];
50 canon = XCHAR_TABLE (object)->extras[1];
51 eqv = XCHAR_TABLE (object)->extras[2];
53 return ((NILP (up) || CHAR_TABLE_P (up))
54 && ((NILP (canon) && NILP (eqv))
55 || (CHAR_TABLE_P (canon)
56 && (NILP (eqv) || CHAR_TABLE_P (eqv))))
57 ? Qt : Qnil);
60 static Lisp_Object
61 check_case_table (Lisp_Object obj)
63 CHECK_TYPE (!NILP (Fcase_table_p (obj)), Qcase_table_p, obj);
64 return (obj);
67 DEFUN ("current-case-table", Fcurrent_case_table, Scurrent_case_table, 0, 0, 0,
68 doc: /* Return the case table of the current buffer. */)
69 (void)
71 return BVAR (current_buffer, downcase_table);
74 DEFUN ("standard-case-table", Fstandard_case_table, Sstandard_case_table, 0, 0, 0,
75 doc: /* Return the standard case table.
76 This is the one used for new buffers. */)
77 (void)
79 return Vascii_downcase_table;
82 static Lisp_Object set_case_table (Lisp_Object, bool);
84 DEFUN ("set-case-table", Fset_case_table, Sset_case_table, 1, 1, 0,
85 doc: /* Select a new case table for the current buffer.
86 A case table is a char-table which maps characters
87 to their lower-case equivalents. It also has three \"extra\" slots
88 which may be additional char-tables or nil.
89 These slots are called UPCASE, CANONICALIZE and EQUIVALENCES.
90 UPCASE maps each non-upper-case character to its upper-case equivalent.
91 (The value in UPCASE for an upper-case character is never used.)
92 If lower and upper case characters are in 1-1 correspondence,
93 you may use nil and the upcase table will be deduced from DOWNCASE.
94 CANONICALIZE maps each character to a canonical equivalent;
95 any two characters that are related by case-conversion have the same
96 canonical equivalent character; it may be nil, in which case it is
97 deduced from DOWNCASE and UPCASE.
98 EQUIVALENCES is a map that cyclically permutes each equivalence class
99 (of characters with the same canonical equivalent); it may be nil,
100 in which case it is deduced from CANONICALIZE. */)
101 (Lisp_Object table)
103 return set_case_table (table, 0);
106 DEFUN ("set-standard-case-table", Fset_standard_case_table,
107 Sset_standard_case_table, 1, 1, 0,
108 doc: /* Select a new standard case table for new buffers.
109 See `set-case-table' for more info on case tables. */)
110 (Lisp_Object table)
112 return set_case_table (table, 1);
115 static Lisp_Object
116 set_case_table (Lisp_Object table, bool standard)
118 Lisp_Object up, canon, eqv;
120 check_case_table (table);
122 up = XCHAR_TABLE (table)->extras[0];
123 canon = XCHAR_TABLE (table)->extras[1];
124 eqv = XCHAR_TABLE (table)->extras[2];
126 if (NILP (up))
128 up = Fmake_char_table (Qcase_table, Qnil);
129 map_char_table (set_identity, Qnil, table, up);
130 map_char_table (shuffle, Qnil, table, up);
131 set_char_table_extras (table, 0, up);
134 if (NILP (canon))
136 canon = Fmake_char_table (Qcase_table, Qnil);
137 set_char_table_extras (table, 1, canon);
138 map_char_table (set_canon, Qnil, table, table);
141 if (NILP (eqv))
143 eqv = Fmake_char_table (Qcase_table, Qnil);
144 map_char_table (set_identity, Qnil, canon, eqv);
145 map_char_table (shuffle, Qnil, canon, eqv);
146 set_char_table_extras (table, 2, eqv);
149 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
150 set_char_table_extras (canon, 2, eqv);
152 if (standard)
154 Vascii_downcase_table = table;
155 Vascii_upcase_table = up;
156 Vascii_canon_table = canon;
157 Vascii_eqv_table = eqv;
159 else
161 bset_downcase_table (current_buffer, table);
162 bset_upcase_table (current_buffer, up);
163 bset_case_canon_table (current_buffer, canon);
164 bset_case_eqv_table (current_buffer, eqv);
167 return table;
170 /* The following functions are called in map_char_table. */
172 /* Set CANON char-table element for characters in RANGE to a
173 translated ELT by UP and DOWN char-tables. This is done only when
174 ELT is a character. The char-tables CANON, UP, and DOWN are in
175 CASE_TABLE. */
177 static void
178 set_canon (Lisp_Object case_table, Lisp_Object range, Lisp_Object elt)
180 Lisp_Object up = XCHAR_TABLE (case_table)->extras[0];
181 Lisp_Object canon = XCHAR_TABLE (case_table)->extras[1];
183 if (NATNUMP (elt))
184 Fset_char_table_range (canon, range, Faref (case_table, Faref (up, elt)));
187 /* Set elements of char-table TABLE for C to C itself. C may be a
188 cons specifying a character range. In that case, set characters in
189 that range to themselves. This is done only when ELT is a
190 character. This is called in map_char_table. */
192 static void
193 set_identity (Lisp_Object table, Lisp_Object c, Lisp_Object elt)
195 if (NATNUMP (elt))
197 int from, to;
199 if (CONSP (c))
201 from = XINT (XCAR (c));
202 to = XINT (XCDR (c));
204 else
205 from = to = XINT (c);
207 to++;
208 lint_assume (to <= MAX_CHAR + 1);
209 for (; from < to; from++)
210 CHAR_TABLE_SET (table, from, make_number (from));
214 /* Permute the elements of TABLE (which is initially an identity
215 mapping) so that it has one cycle for each equivalence class
216 induced by the translation table on which map_char_table is
217 operated. */
219 static void
220 shuffle (Lisp_Object table, Lisp_Object c, Lisp_Object elt)
222 if (NATNUMP (elt))
224 int from, to;
226 if (CONSP (c))
228 from = XINT (XCAR (c));
229 to = XINT (XCDR (c));
231 else
232 from = to = XINT (c);
234 to++;
235 lint_assume (to <= MAX_CHAR + 1);
236 for (; from < to; from++)
238 Lisp_Object tem = Faref (table, elt);
239 Faset (table, elt, make_number (from));
240 Faset (table, make_number (from), tem);
245 void
246 init_casetab_once (void)
248 register int i;
249 Lisp_Object down, up, eqv;
250 DEFSYM (Qcase_table, "case-table");
252 /* Intern this now in case it isn't already done.
253 Setting this variable twice is harmless.
254 But don't staticpro it here--that is done in alloc.c. */
255 Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots");
257 /* Now we are ready to set up this property, so we can
258 create char tables. */
259 Fput (Qcase_table, Qchar_table_extra_slots, make_number (3));
261 down = Fmake_char_table (Qcase_table, Qnil);
262 Vascii_downcase_table = down;
263 set_char_table_purpose (down, Qcase_table);
265 for (i = 0; i < 128; i++)
267 int c = (i >= 'A' && i <= 'Z') ? i + ('a' - 'A') : i;
268 CHAR_TABLE_SET (down, i, make_number (c));
271 set_char_table_extras (down, 1, Fcopy_sequence (down));
273 up = Fmake_char_table (Qcase_table, Qnil);
274 set_char_table_extras (down, 0, up);
276 for (i = 0; i < 128; i++)
278 int c = (i >= 'a' && i <= 'z') ? i + ('A' - 'a') : i;
279 CHAR_TABLE_SET (up, i, make_number (c));
282 eqv = Fmake_char_table (Qcase_table, Qnil);
284 for (i = 0; i < 128; i++)
286 int c = ((i >= 'A' && i <= 'Z') ? i + ('a' - 'A')
287 : ((i >= 'a' && i <= 'z') ? i + ('A' - 'a')
288 : i));
289 CHAR_TABLE_SET (eqv, i, make_number (c));
292 set_char_table_extras (down, 2, eqv);
294 /* Fill in what isn't filled in. */
295 set_case_table (down, 1);
298 void
299 syms_of_casetab (void)
301 DEFSYM (Qcase_table_p, "case-table-p");
303 staticpro (&Vascii_canon_table);
304 staticpro (&Vascii_downcase_table);
305 staticpro (&Vascii_eqv_table);
306 staticpro (&Vascii_upcase_table);
308 defsubr (&Scase_table_p);
309 defsubr (&Scurrent_case_table);
310 defsubr (&Sstandard_case_table);
311 defsubr (&Sset_case_table);
312 defsubr (&Sset_standard_case_table);