0
|
1 /* Specifier implementation
|
|
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
|
|
3 Copyright (C) 1995, 1996 Ben Wing.
|
|
4 Copyright (C) 1995 Sun Microsystems, Inc.
|
|
5
|
|
6 This file is part of XEmacs.
|
|
7
|
|
8 XEmacs is free software; you can redistribute it and/or modify it
|
|
9 under the terms of the GNU General Public License as published by the
|
|
10 Free Software Foundation; either version 2, or (at your option) any
|
|
11 later version.
|
|
12
|
|
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
16 for more details.
|
|
17
|
|
18 You should have received a copy of the GNU General Public License
|
|
19 along with XEmacs; see the file COPYING. If not, write to
|
|
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
21 Boston, MA 02111-1307, USA. */
|
|
22
|
|
23 /* Synched up with: Not in FSF. */
|
|
24
|
|
25 /* Design by Ben Wing;
|
|
26 Original version by Chuck Thompson;
|
280
|
27 rewritten by Ben Wing;
|
|
28 Magic specifiers by Kirill Katsnelson;
|
|
29 */
|
0
|
30
|
|
31 #include <config.h>
|
|
32 #include "lisp.h"
|
|
33
|
|
34 #include "buffer.h"
|
|
35 #include "device.h"
|
|
36 #include "frame.h"
|
|
37 #include "opaque.h"
|
|
38 #include "specifier.h"
|
|
39 #include "window.h"
|
384
|
40 #include "chartab.h"
|
|
41 #include "rangetab.h"
|
0
|
42
|
|
43 Lisp_Object Qspecifierp;
|
412
|
44 Lisp_Object Qprepend, Qappend, Qremove_tag_set_prepend, Qremove_tag_set_append;
|
0
|
45 Lisp_Object Qremove_locale, Qremove_locale_type, Qremove_all;
|
|
46 Lisp_Object Qfallback;
|
|
47
|
|
48 /* Qinteger, Qboolean, Qgeneric defined in general.c. */
|
|
49 Lisp_Object Qnatnum;
|
|
50
|
|
51 Lisp_Object Qconsole_type, Qdevice_class;
|
|
52
|
276
|
53 static Lisp_Object Vuser_defined_tags;
|
0
|
54
|
185
|
55 typedef struct specifier_type_entry specifier_type_entry;
|
0
|
56 struct specifier_type_entry
|
|
57 {
|
|
58 Lisp_Object symbol;
|
|
59 struct specifier_methods *meths;
|
|
60 };
|
|
61
|
185
|
62 typedef struct
|
0
|
63 {
|
185
|
64 Dynarr_declare (specifier_type_entry);
|
0
|
65 } specifier_type_entry_dynarr;
|
|
66
|
412
|
67 specifier_type_entry_dynarr *the_specifier_type_entry_dynarr;
|
0
|
68
|
276
|
69 static Lisp_Object Vspecifier_type_list;
|
|
70
|
|
71 static Lisp_Object Vcached_specifiers;
|
0
|
72 /* Do NOT mark through this, or specifiers will never be GC'd. */
|
276
|
73 static Lisp_Object Vall_specifiers;
|
|
74
|
280
|
75 static Lisp_Object Vunlock_ghost_specifiers;
|
0
|
76
|
|
77 /* #### The purpose of this is to check for inheritance loops
|
|
78 in specifiers that can inherit from other specifiers, but it's
|
|
79 not yet implemented.
|
|
80
|
70
|
81 #### Look into this for 19.14. */
|
280
|
82 /* static Lisp_Object_dynarr current_specifiers; */
|
0
|
83
|
|
84 static void recompute_cached_specifier_everywhere (Lisp_Object specifier);
|
|
85
|
272
|
86 EXFUN (Fspecifier_specs, 4);
|
|
87 EXFUN (Fremove_specifier, 4);
|
|
88
|
0
|
89
|
|
90 /************************************************************************/
|
|
91 /* Specifier object methods */
|
|
92 /************************************************************************/
|
|
93
|
|
94 /* Remove dead objects from the specified assoc list. */
|
|
95
|
|
96 static Lisp_Object
|
|
97 cleanup_assoc_list (Lisp_Object list)
|
|
98 {
|
|
99 Lisp_Object loop, prev, retval;
|
|
100
|
|
101 loop = retval = list;
|
|
102 prev = Qnil;
|
|
103
|
|
104 while (!NILP (loop))
|
|
105 {
|
|
106 Lisp_Object entry = XCAR (loop);
|
|
107 Lisp_Object key = XCAR (entry);
|
|
108
|
|
109 /* remember, dead windows can become alive again. */
|
|
110 if (!WINDOWP (key) && object_dead_p (key))
|
|
111 {
|
|
112 if (NILP (prev))
|
|
113 {
|
|
114 /* Removing the head. */
|
|
115 retval = XCDR (retval);
|
|
116 }
|
|
117 else
|
|
118 {
|
|
119 Fsetcdr (prev, XCDR (loop));
|
|
120 }
|
|
121 }
|
|
122 else
|
|
123 prev = loop;
|
|
124
|
|
125 loop = XCDR (loop);
|
|
126 }
|
|
127
|
|
128 return retval;
|
|
129 }
|
|
130
|
|
131 /* Remove dead objects from the various lists so that they
|
|
132 don't keep getting marked as long as this specifier exists and
|
|
133 therefore wasting memory. */
|
|
134
|
|
135 void
|
|
136 cleanup_specifiers (void)
|
|
137 {
|
|
138 Lisp_Object rest;
|
|
139
|
|
140 for (rest = Vall_specifiers;
|
|
141 !NILP (rest);
|
|
142 rest = XSPECIFIER (rest)->next_specifier)
|
|
143 {
|
412
|
144 struct Lisp_Specifier *sp = XSPECIFIER (rest);
|
0
|
145 /* This effectively changes the specifier specs.
|
|
146 However, there's no need to call
|
|
147 recompute_cached_specifier_everywhere() or the
|
|
148 after-change methods because the only specs we
|
|
149 are removing are for dead objects, and they can
|
|
150 never have any effect on the specifier values:
|
|
151 specifiers can only be instantiated over live
|
|
152 objects, and you can't derive a dead object
|
|
153 from a live one. */
|
|
154 sp->device_specs = cleanup_assoc_list (sp->device_specs);
|
|
155 sp->frame_specs = cleanup_assoc_list (sp->frame_specs);
|
|
156 sp->buffer_specs = cleanup_assoc_list (sp->buffer_specs);
|
|
157 /* windows are handled specially because dead windows
|
|
158 can be resurrected */
|
|
159 }
|
|
160 }
|
|
161
|
|
162 void
|
|
163 kill_specifier_buffer_locals (Lisp_Object buffer)
|
|
164 {
|
|
165 Lisp_Object rest;
|
|
166
|
|
167 for (rest = Vall_specifiers;
|
|
168 !NILP (rest);
|
|
169 rest = XSPECIFIER (rest)->next_specifier)
|
|
170 {
|
412
|
171 struct Lisp_Specifier *sp = XSPECIFIER (rest);
|
0
|
172
|
|
173 /* Make sure we're actually going to be changing something.
|
|
174 Fremove_specifier() always calls
|
|
175 recompute_cached_specifier_everywhere() (#### but should
|
|
176 be smarter about this). */
|
|
177 if (!NILP (assq_no_quit (buffer, sp->buffer_specs)))
|
|
178 Fremove_specifier (rest, buffer, Qnil, Qnil);
|
|
179 }
|
|
180 }
|
|
181
|
|
182 static Lisp_Object
|
412
|
183 mark_specifier (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
0
|
184 {
|
412
|
185 struct Lisp_Specifier *specifier = XSPECIFIER (obj);
|
|
186
|
|
187 markobj (specifier->global_specs);
|
|
188 markobj (specifier->device_specs);
|
|
189 markobj (specifier->frame_specs);
|
|
190 markobj (specifier->window_specs);
|
|
191 markobj (specifier->buffer_specs);
|
|
192 markobj (specifier->magic_parent);
|
|
193 markobj (specifier->fallback);
|
276
|
194 if (!GHOST_SPECIFIER_P (XSPECIFIER (obj)))
|
412
|
195 MAYBE_SPECMETH (specifier, mark, (obj, markobj));
|
0
|
196 return Qnil;
|
|
197 }
|
|
198
|
|
199 /* The idea here is that the specifier specs point to locales
|
|
200 (windows, buffers, frames, and devices), and we want to make sure
|
|
201 that the specs disappear automatically when the associated locale
|
|
202 is no longer in use. For all but windows, "no longer in use"
|
|
203 corresponds exactly to when the object is deleted (non-deleted
|
|
204 objects are always held permanently in special lists, and deleted
|
|
205 objects are never on these lists and never reusable). To handle
|
|
206 this, we just have cleanup_specifiers() called periodically
|
|
207 (at the beginning of garbage collection); it removes all dead
|
|
208 objects.
|
|
209
|
|
210 For windows, however, it's trickier because dead objects can be
|
|
211 converted to live ones again if the dead object is in a window
|
|
212 configuration. Therefore, for windows, "no longer in use"
|
|
213 corresponds to when the window object is garbage-collected.
|
|
214 We now use weak lists for this purpose.
|
|
215
|
|
216 */
|
|
217
|
|
218 void
|
412
|
219 prune_specifiers (int (*obj_marked_p) (Lisp_Object))
|
0
|
220 {
|
|
221 Lisp_Object rest, prev = Qnil;
|
|
222
|
|
223 for (rest = Vall_specifiers;
|
412
|
224 !GC_NILP (rest);
|
0
|
225 rest = XSPECIFIER (rest)->next_specifier)
|
|
226 {
|
412
|
227 if (! obj_marked_p (rest))
|
0
|
228 {
|
412
|
229 struct Lisp_Specifier* sp = XSPECIFIER (rest);
|
276
|
230 /* A bit of assertion that we're removing both parts of the
|
|
231 magic one altogether */
|
412
|
232 assert (!GC_MAGIC_SPECIFIER_P(sp)
|
|
233 || (GC_BODILY_SPECIFIER_P(sp) && obj_marked_p (sp->fallback))
|
|
234 || (GC_GHOST_SPECIFIER_P(sp) && obj_marked_p (sp->magic_parent)));
|
0
|
235 /* This specifier is garbage. Remove it from the list. */
|
412
|
236 if (GC_NILP (prev))
|
276
|
237 Vall_specifiers = sp->next_specifier;
|
0
|
238 else
|
276
|
239 XSPECIFIER (prev)->next_specifier = sp->next_specifier;
|
0
|
240 }
|
276
|
241 else
|
|
242 prev = rest;
|
0
|
243 }
|
|
244 }
|
|
245
|
|
246 static void
|
|
247 print_specifier (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
248 {
|
412
|
249 struct Lisp_Specifier *sp = XSPECIFIER (obj);
|
0
|
250 char buf[100];
|
|
251 int count = specpdl_depth ();
|
|
252 Lisp_Object the_specs;
|
|
253
|
|
254 if (print_readably)
|
|
255 error ("printing unreadable object #<%s-specifier 0x%x>",
|
|
256 sp->methods->name, sp->header.uid);
|
|
257
|
|
258 sprintf (buf, "#<%s-specifier global=", sp->methods->name);
|
|
259 write_c_string (buf, printcharfun);
|
|
260 specbind (Qprint_string_length, make_int (100));
|
|
261 specbind (Qprint_length, make_int (5));
|
|
262 the_specs = Fspecifier_specs (obj, Qglobal, Qnil, Qnil);
|
|
263 if (NILP (the_specs))
|
|
264 /* there are no global specs */
|
|
265 write_c_string ("<unspecified>", printcharfun);
|
|
266 else
|
|
267 print_internal (the_specs, printcharfun, 1);
|
|
268 if (!NILP (sp->fallback))
|
|
269 {
|
|
270 write_c_string (" fallback=", printcharfun);
|
|
271 print_internal (sp->fallback, printcharfun, escapeflag);
|
|
272 }
|
|
273 unbind_to (count, Qnil);
|
|
274 sprintf (buf, " 0x%x>", sp->header.uid);
|
|
275 write_c_string (buf, printcharfun);
|
|
276 }
|
|
277
|
|
278 static void
|
|
279 finalize_specifier (void *header, int for_disksave)
|
|
280 {
|
412
|
281 struct Lisp_Specifier *sp = (struct Lisp_Specifier *) header;
|
0
|
282 /* don't be snafued by the disksave finalization. */
|
412
|
283 if (!for_disksave && !GC_GHOST_SPECIFIER_P(sp) && sp->caching)
|
0
|
284 {
|
|
285 xfree (sp->caching);
|
|
286 sp->caching = 0;
|
|
287 }
|
|
288 }
|
|
289
|
|
290 static int
|
380
|
291 specifier_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
|
0
|
292 {
|
412
|
293 struct Lisp_Specifier *s1 = XSPECIFIER (obj1);
|
|
294 struct Lisp_Specifier *s2 = XSPECIFIER (obj2);
|
0
|
295 int retval;
|
|
296 Lisp_Object old_inhibit_quit = Vinhibit_quit;
|
|
297
|
|
298 /* This function can be called from within redisplay.
|
|
299 internal_equal can trigger a quit. That leads to Bad Things. */
|
|
300 Vinhibit_quit = Qt;
|
|
301
|
|
302 depth++;
|
272
|
303 retval =
|
|
304 (s1->methods == s2->methods &&
|
|
305 internal_equal (s1->global_specs, s2->global_specs, depth) &&
|
|
306 internal_equal (s1->device_specs, s2->device_specs, depth) &&
|
|
307 internal_equal (s1->frame_specs, s2->frame_specs, depth) &&
|
|
308 internal_equal (s1->window_specs, s2->window_specs, depth) &&
|
280
|
309 internal_equal (s1->buffer_specs, s2->buffer_specs, depth) &&
|
|
310 internal_equal (s1->fallback, s2->fallback, depth));
|
272
|
311
|
|
312 if (retval && HAS_SPECMETH_P (s1, equal))
|
380
|
313 retval = SPECMETH (s1, equal, (obj1, obj2, depth - 1));
|
0
|
314
|
|
315 Vinhibit_quit = old_inhibit_quit;
|
|
316 return retval;
|
|
317 }
|
|
318
|
|
319 static unsigned long
|
|
320 specifier_hash (Lisp_Object obj, int depth)
|
|
321 {
|
412
|
322 struct Lisp_Specifier *s = XSPECIFIER (obj);
|
0
|
323
|
|
324 /* specifier hashing is a bit problematic because there are so
|
|
325 many places where data can be stored. We pick what are perhaps
|
|
326 the most likely places where interesting stuff will be. */
|
272
|
327 return HASH5 ((HAS_SPECMETH_P (s, hash) ?
|
|
328 SPECMETH (s, hash, (obj, depth)) : 0),
|
0
|
329 (unsigned long) s->methods,
|
|
330 internal_hash (s->global_specs, depth + 1),
|
272
|
331 internal_hash (s->frame_specs, depth + 1),
|
0
|
332 internal_hash (s->buffer_specs, depth + 1));
|
|
333 }
|
|
334
|
272
|
335 static size_t
|
412
|
336 sizeof_specifier (CONST void *header)
|
0
|
337 {
|
412
|
338 if (GHOST_SPECIFIER_P ((struct Lisp_Specifier *) header))
|
|
339 return sizeof (struct Lisp_Specifier);
|
276
|
340 else
|
|
341 {
|
412
|
342 CONST struct Lisp_Specifier *p = (CONST struct Lisp_Specifier *) header;
|
|
343 return sizeof (*p) + p->methods->extra_data_size - 1;
|
276
|
344 }
|
0
|
345 }
|
|
346
|
272
|
347 DEFINE_LRECORD_SEQUENCE_IMPLEMENTATION ("specifier", specifier,
|
|
348 mark_specifier, print_specifier,
|
|
349 finalize_specifier,
|
|
350 specifier_equal, specifier_hash,
|
|
351 sizeof_specifier,
|
412
|
352 struct Lisp_Specifier);
|
0
|
353
|
|
354 /************************************************************************/
|
|
355 /* Creating specifiers */
|
|
356 /************************************************************************/
|
|
357
|
|
358 static struct specifier_methods *
|
|
359 decode_specifier_type (Lisp_Object type, Error_behavior errb)
|
|
360 {
|
|
361 int i;
|
|
362
|
|
363 for (i = 0; i < Dynarr_length (the_specifier_type_entry_dynarr); i++)
|
|
364 {
|
|
365 if (EQ (type, Dynarr_at (the_specifier_type_entry_dynarr, i).symbol))
|
|
366 return Dynarr_at (the_specifier_type_entry_dynarr, i).meths;
|
|
367 }
|
|
368
|
|
369 maybe_signal_simple_error ("Invalid specifier type", type,
|
|
370 Qspecifier, errb);
|
|
371
|
|
372 return 0;
|
|
373 }
|
|
374
|
|
375 static int
|
|
376 valid_specifier_type_p (Lisp_Object type)
|
|
377 {
|
272
|
378 return decode_specifier_type (type, ERROR_ME_NOT) != 0;
|
0
|
379 }
|
|
380
|
20
|
381 DEFUN ("valid-specifier-type-p", Fvalid_specifier_type_p, 1, 1, 0, /*
|
0
|
382 Given a SPECIFIER-TYPE, return non-nil if it is valid.
|
|
383 Valid types are 'generic, 'integer, boolean, 'color, 'font, 'image,
|
|
384 'face-boolean, and 'toolbar.
|
20
|
385 */
|
|
386 (specifier_type))
|
0
|
387 {
|
272
|
388 return valid_specifier_type_p (specifier_type) ? Qt : Qnil;
|
0
|
389 }
|
|
390
|
20
|
391 DEFUN ("specifier-type-list", Fspecifier_type_list, 0, 0, 0, /*
|
0
|
392 Return a list of valid specifier types.
|
20
|
393 */
|
|
394 ())
|
0
|
395 {
|
|
396 return Fcopy_sequence (Vspecifier_type_list);
|
|
397 }
|
|
398
|
|
399 void
|
|
400 add_entry_to_specifier_type_list (Lisp_Object symbol,
|
|
401 struct specifier_methods *meths)
|
|
402 {
|
|
403 struct specifier_type_entry entry;
|
|
404
|
|
405 entry.symbol = symbol;
|
|
406 entry.meths = meths;
|
|
407 Dynarr_add (the_specifier_type_entry_dynarr, entry);
|
|
408 Vspecifier_type_list = Fcons (symbol, Vspecifier_type_list);
|
|
409 }
|
|
410
|
|
411 static Lisp_Object
|
276
|
412 make_specifier_internal (struct specifier_methods *spec_meths,
|
|
413 size_t data_size, int call_create_meth)
|
0
|
414 {
|
272
|
415 Lisp_Object specifier;
|
412
|
416 struct Lisp_Specifier *sp = (struct Lisp_Specifier *)
|
|
417 alloc_lcrecord (sizeof (struct Lisp_Specifier) +
|
|
418 data_size - 1, &lrecord_specifier);
|
0
|
419
|
|
420 sp->methods = spec_meths;
|
|
421 sp->global_specs = Qnil;
|
|
422 sp->device_specs = Qnil;
|
|
423 sp->frame_specs = Qnil;
|
|
424 sp->window_specs = make_weak_list (WEAK_LIST_KEY_ASSOC);
|
|
425 sp->buffer_specs = Qnil;
|
|
426 sp->fallback = Qnil;
|
276
|
427 sp->magic_parent = Qnil;
|
0
|
428 sp->caching = 0;
|
|
429 sp->next_specifier = Vall_specifiers;
|
|
430
|
|
431 XSETSPECIFIER (specifier, sp);
|
|
432 Vall_specifiers = specifier;
|
|
433
|
276
|
434 if (call_create_meth)
|
|
435 {
|
|
436 struct gcpro gcpro1;
|
|
437 GCPRO1 (specifier);
|
|
438 MAYBE_SPECMETH (XSPECIFIER (specifier), create, (specifier));
|
|
439 UNGCPRO;
|
|
440 }
|
|
441 return specifier;
|
|
442 }
|
|
443
|
|
444 static Lisp_Object
|
|
445 make_specifier (struct specifier_methods *meths)
|
|
446 {
|
|
447 return make_specifier_internal (meths, meths->extra_data_size, 1);
|
|
448 }
|
|
449
|
|
450 Lisp_Object
|
|
451 make_magic_specifier (Lisp_Object type)
|
|
452 {
|
|
453 /* This function can GC */
|
|
454 struct specifier_methods *meths = decode_specifier_type (type, ERROR_ME);
|
|
455 Lisp_Object bodily, ghost;
|
|
456 struct gcpro gcpro1;
|
|
457
|
|
458 bodily = make_specifier (meths);
|
|
459 GCPRO1 (bodily);
|
|
460 ghost = make_specifier_internal (meths, 0, 0);
|
0
|
461 UNGCPRO;
|
276
|
462
|
|
463 /* Connect guys together */
|
|
464 XSPECIFIER(bodily)->magic_parent = Qt;
|
|
465 XSPECIFIER(bodily)->fallback = ghost;
|
|
466 XSPECIFIER(ghost)->magic_parent = bodily;
|
|
467
|
|
468 return bodily;
|
0
|
469 }
|
|
470
|
20
|
471 DEFUN ("make-specifier", Fmake_specifier, 1, 1, 0, /*
|
272
|
472 Return a new specifier object of type TYPE.
|
0
|
473
|
|
474 A specifier is an object that can be used to keep track of a property
|
|
475 whose value can be per-buffer, per-window, per-frame, or per-device,
|
412
|
476 and can further be restricted to a particular console-type or device-class.
|
|
477 Specifiers are used, for example, for the various built-in properties of a
|
|
478 face; this allows a face to have different values in different frames,
|
|
479 buffers, etc. For more information, see `specifier-instance',
|
0
|
480 `specifier-specs', and `add-spec-to-specifier'; or, for a detailed
|
412
|
481 description of specifiers, including how they are instantiated over a
|
|
482 particular domain (i.e. how their value in that domain is determined),
|
|
483 see the chapter on specifiers in the XEmacs Lisp Reference Manual.
|
0
|
484
|
|
485 TYPE specifies the particular type of specifier, and should be one of
|
412
|
486 the symbols 'generic, 'integer, 'boolean, 'color, 'font, 'image,
|
|
487 'face-boolean, or 'toolbar.
|
|
488
|
|
489 For more information on particular types of specifiers, see the functions
|
|
490 `generic-specifier-p', `integer-specifier-p', `boolean-specifier-p',
|
|
491 `color-specifier-p', `font-specifier-p', `image-specifier-p',
|
|
492 `face-boolean-specifier-p', and `toolbar-specifier-p'.
|
20
|
493 */
|
|
494 (type))
|
0
|
495 {
|
|
496 /* This function can GC */
|
412
|
497 struct specifier_methods *meths = decode_specifier_type (type,
|
|
498 ERROR_ME);
|
0
|
499
|
|
500 return make_specifier (meths);
|
|
501 }
|
|
502
|
20
|
503 DEFUN ("specifierp", Fspecifierp, 1, 1, 0, /*
|
272
|
504 Return t if OBJECT is a specifier.
|
0
|
505
|
|
506 A specifier is an object that can be used to keep track of a property
|
|
507 whose value can be per-buffer, per-window, per-frame, or per-device,
|
|
508 and can further be restricted to a particular console-type or device-class.
|
|
509 See `make-specifier'.
|
20
|
510 */
|
|
511 (object))
|
0
|
512 {
|
272
|
513 return SPECIFIERP (object) ? Qt : Qnil;
|
0
|
514 }
|
|
515
|
20
|
516 DEFUN ("specifier-type", Fspecifier_type, 1, 1, 0, /*
|
0
|
517 Return the type of SPECIFIER.
|
20
|
518 */
|
|
519 (specifier))
|
0
|
520 {
|
|
521 CHECK_SPECIFIER (specifier);
|
|
522 return intern (XSPECIFIER (specifier)->methods->name);
|
|
523 }
|
|
524
|
|
525
|
|
526 /************************************************************************/
|
|
527 /* Locales and domains */
|
|
528 /************************************************************************/
|
|
529
|
20
|
530 DEFUN ("valid-specifier-locale-p", Fvalid_specifier_locale_p, 1, 1, 0, /*
|
272
|
531 Return t if LOCALE is a valid specifier locale.
|
|
532 Valid locales are devices, frames, windows, buffers, and 'global.
|
|
533 \(nil is not valid.)
|
20
|
534 */
|
|
535 (locale))
|
0
|
536 {
|
|
537 /* This cannot GC. */
|
272
|
538 return ((DEVICEP (locale) && DEVICE_LIVE_P (XDEVICE (locale))) ||
|
|
539 (FRAMEP (locale) && FRAME_LIVE_P (XFRAME (locale))) ||
|
|
540 (BUFFERP (locale) && BUFFER_LIVE_P (XBUFFER (locale))) ||
|
|
541 /* dead windows are allowed because they may become live
|
|
542 windows again when a window configuration is restored */
|
|
543 WINDOWP (locale) ||
|
|
544 EQ (locale, Qglobal))
|
|
545 ? Qt : Qnil;
|
0
|
546 }
|
|
547
|
20
|
548 DEFUN ("valid-specifier-domain-p", Fvalid_specifier_domain_p, 1, 1, 0, /*
|
272
|
549 Return t if DOMAIN is a valid specifier domain.
|
0
|
550 A domain is used to instance a specifier (i.e. determine the specifier's
|
412
|
551 value in that domain). Valid domains are windows, frames, and devices.
|
|
552 \(nil is not valid.)
|
20
|
553 */
|
70
|
554 (domain))
|
0
|
555 {
|
|
556 /* This cannot GC. */
|
272
|
557 return ((DEVICEP (domain) && DEVICE_LIVE_P (XDEVICE (domain))) ||
|
|
558 (FRAMEP (domain) && FRAME_LIVE_P (XFRAME (domain))) ||
|
412
|
559 (WINDOWP (domain) && WINDOW_LIVE_P (XWINDOW (domain))))
|
272
|
560 ? Qt : Qnil;
|
0
|
561 }
|
|
562
|
20
|
563 DEFUN ("valid-specifier-locale-type-p", Fvalid_specifier_locale_type_p, 1, 1, 0, /*
|
0
|
564 Given a specifier LOCALE-TYPE, return non-nil if it is valid.
|
|
565 Valid locale types are 'global, 'device, 'frame, 'window, and 'buffer.
|
272
|
566 \(Note, however, that in functions that accept either a locale or a locale
|
0
|
567 type, 'global is considered an individual locale.)
|
20
|
568 */
|
70
|
569 (locale_type))
|
0
|
570 {
|
|
571 /* This cannot GC. */
|
272
|
572 return (EQ (locale_type, Qglobal) ||
|
|
573 EQ (locale_type, Qdevice) ||
|
|
574 EQ (locale_type, Qframe) ||
|
|
575 EQ (locale_type, Qwindow) ||
|
|
576 EQ (locale_type, Qbuffer)) ? Qt : Qnil;
|
0
|
577 }
|
|
578
|
|
579 static void
|
|
580 check_valid_locale_or_locale_type (Lisp_Object locale)
|
|
581 {
|
|
582 /* This cannot GC. */
|
|
583 if (EQ (locale, Qall) ||
|
|
584 !NILP (Fvalid_specifier_locale_p (locale)) ||
|
|
585 !NILP (Fvalid_specifier_locale_type_p (locale)))
|
|
586 return;
|
|
587 signal_simple_error ("Invalid specifier locale or locale type", locale);
|
|
588 }
|
|
589
|
280
|
590 DEFUN ("specifier-locale-type-from-locale", Fspecifier_locale_type_from_locale,
|
|
591 1, 1, 0, /*
|
0
|
592 Given a specifier LOCALE, return its type.
|
20
|
593 */
|
|
594 (locale))
|
0
|
595 {
|
|
596 /* This cannot GC. */
|
|
597 if (NILP (Fvalid_specifier_locale_p (locale)))
|
|
598 signal_simple_error ("Invalid specifier locale", locale);
|
272
|
599 if (DEVICEP (locale)) return Qdevice;
|
|
600 if (FRAMEP (locale)) return Qframe;
|
|
601 if (WINDOWP (locale)) return Qwindow;
|
|
602 if (BUFFERP (locale)) return Qbuffer;
|
0
|
603 assert (EQ (locale, Qglobal));
|
|
604 return Qglobal;
|
|
605 }
|
|
606
|
272
|
607 static Lisp_Object
|
0
|
608 decode_locale (Lisp_Object locale)
|
|
609 {
|
|
610 /* This cannot GC. */
|
|
611 if (NILP (locale))
|
|
612 return Qglobal;
|
|
613 else if (!NILP (Fvalid_specifier_locale_p (locale)))
|
|
614 return locale;
|
|
615 else
|
|
616 signal_simple_error ("Invalid specifier locale", locale);
|
|
617
|
|
618 return Qnil;
|
|
619 }
|
|
620
|
|
621 static enum spec_locale_type
|
|
622 decode_locale_type (Lisp_Object locale_type)
|
|
623 {
|
|
624 /* This cannot GC. */
|
2
|
625 if (EQ (locale_type, Qglobal)) return LOCALE_GLOBAL;
|
|
626 if (EQ (locale_type, Qdevice)) return LOCALE_DEVICE;
|
|
627 if (EQ (locale_type, Qframe)) return LOCALE_FRAME;
|
|
628 if (EQ (locale_type, Qwindow)) return LOCALE_WINDOW;
|
|
629 if (EQ (locale_type, Qbuffer)) return LOCALE_BUFFER;
|
173
|
630
|
0
|
631 signal_simple_error ("Invalid specifier locale type", locale_type);
|
2
|
632 return LOCALE_GLOBAL; /* not reached */
|
0
|
633 }
|
|
634
|
|
635 Lisp_Object
|
|
636 decode_locale_list (Lisp_Object locale)
|
|
637 {
|
|
638 /* This cannot GC. */
|
|
639 /* The return value of this function must be GCPRO'd. */
|
|
640 if (NILP (locale))
|
380
|
641 {
|
|
642 return list1 (Qall);
|
|
643 }
|
|
644 else if (CONSP (locale))
|
|
645 {
|
|
646 Lisp_Object elt;
|
|
647 EXTERNAL_LIST_LOOP_2 (elt, locale)
|
|
648 check_valid_locale_or_locale_type (elt);
|
|
649 return locale;
|
|
650 }
|
0
|
651 else
|
|
652 {
|
380
|
653 check_valid_locale_or_locale_type (locale);
|
|
654 return list1 (locale);
|
0
|
655 }
|
|
656 }
|
|
657
|
|
658 static enum spec_locale_type
|
|
659 locale_type_from_locale (Lisp_Object locale)
|
|
660 {
|
|
661 return decode_locale_type (Fspecifier_locale_type_from_locale (locale));
|
|
662 }
|
|
663
|
|
664 static void
|
|
665 check_valid_domain (Lisp_Object domain)
|
|
666 {
|
|
667 if (NILP (Fvalid_specifier_domain_p (domain)))
|
|
668 signal_simple_error ("Invalid specifier domain", domain);
|
|
669 }
|
|
670
|
412
|
671 static Lisp_Object
|
0
|
672 decode_domain (Lisp_Object domain)
|
|
673 {
|
|
674 if (NILP (domain))
|
|
675 return Fselected_window (Qnil);
|
|
676 check_valid_domain (domain);
|
|
677 return domain;
|
|
678 }
|
|
679
|
|
680
|
|
681 /************************************************************************/
|
|
682 /* Tags */
|
|
683 /************************************************************************/
|
|
684
|
20
|
685 DEFUN ("valid-specifier-tag-p", Fvalid_specifier_tag_p, 1, 1, 0, /*
|
0
|
686 Return non-nil if TAG is a valid specifier tag.
|
|
687 See also `valid-specifier-tag-set-p'.
|
20
|
688 */
|
|
689 (tag))
|
0
|
690 {
|
272
|
691 return (valid_console_type_p (tag) ||
|
|
692 valid_device_class_p (tag) ||
|
|
693 !NILP (assq_no_quit (tag, Vuser_defined_tags))) ? Qt : Qnil;
|
0
|
694 }
|
|
695
|
20
|
696 DEFUN ("valid-specifier-tag-set-p", Fvalid_specifier_tag_set_p, 1, 1, 0, /*
|
0
|
697 Return non-nil if TAG-SET is a valid specifier tag set.
|
|
698
|
|
699 A specifier tag set is an entity that is attached to an instantiator
|
|
700 and can be used to restrict the scope of that instantiator to a
|
|
701 particular device class or device type and/or to mark instantiators
|
|
702 added by a particular package so that they can be later removed.
|
|
703
|
|
704 A specifier tag set consists of a list of zero of more specifier tags,
|
|
705 each of which is a symbol that is recognized by XEmacs as a tag.
|
272
|
706 \(The valid device types and device classes are always tags, as are
|
185
|
707 any tags defined by `define-specifier-tag'.) It is called a "tag set"
|
272
|
708 \(as opposed to a list) because the order of the tags or the number of
|
0
|
709 times a particular tag occurs does not matter.
|
|
710
|
|
711 Each tag has a predicate associated with it, which specifies whether
|
|
712 that tag applies to a particular device. The tags which are device types
|
|
713 and classes match devices of that type or class. User-defined tags can
|
|
714 have any predicate, or none (meaning that all devices match). When
|
|
715 attempting to instance a specifier, a particular instantiator is only
|
|
716 considered if the device of the domain being instanced over matches
|
|
717 all tags in the tag set attached to that instantiator.
|
|
718
|
|
719 Most of the time, a tag set is not specified, and the instantiator
|
|
720 gets a null tag set, which matches all devices.
|
20
|
721 */
|
70
|
722 (tag_set))
|
0
|
723 {
|
|
724 Lisp_Object rest;
|
|
725
|
|
726 for (rest = tag_set; !NILP (rest); rest = XCDR (rest))
|
|
727 {
|
|
728 if (!CONSP (rest))
|
|
729 return Qnil;
|
|
730 if (NILP (Fvalid_specifier_tag_p (XCAR (rest))))
|
|
731 return Qnil;
|
|
732 QUIT;
|
|
733 }
|
|
734 return Qt;
|
|
735 }
|
|
736
|
|
737 Lisp_Object
|
|
738 decode_specifier_tag_set (Lisp_Object tag_set)
|
|
739 {
|
|
740 /* The return value of this function must be GCPRO'd. */
|
|
741 if (!NILP (Fvalid_specifier_tag_p (tag_set)))
|
|
742 return list1 (tag_set);
|
|
743 if (NILP (Fvalid_specifier_tag_set_p (tag_set)))
|
|
744 signal_simple_error ("Invalid specifier tag-set", tag_set);
|
|
745 return tag_set;
|
|
746 }
|
|
747
|
|
748 static Lisp_Object
|
|
749 canonicalize_tag_set (Lisp_Object tag_set)
|
|
750 {
|
|
751 int len = XINT (Flength (tag_set));
|
|
752 Lisp_Object *tags, rest;
|
|
753 int i, j;
|
|
754
|
|
755 /* We assume in this function that the tag_set has already been
|
|
756 validated, so there are no surprises. */
|
|
757
|
|
758 if (len == 0 || len == 1)
|
|
759 /* most common case */
|
|
760 return tag_set;
|
|
761
|
185
|
762 tags = alloca_array (Lisp_Object, len);
|
0
|
763
|
|
764 i = 0;
|
|
765 LIST_LOOP (rest, tag_set)
|
|
766 tags[i++] = XCAR (rest);
|
173
|
767
|
0
|
768 /* Sort the list of tags. We use a bubble sort here (copied from
|
|
769 extent_fragment_update()) -- reduces the function call overhead,
|
|
770 and is the fastest sort for small numbers of items. */
|
|
771
|
|
772 for (i = 1; i < len; i++)
|
|
773 {
|
|
774 j = i - 1;
|
|
775 while (j >= 0 &&
|
|
776 strcmp ((char *) string_data (XSYMBOL (tags[j])->name),
|
|
777 (char *) string_data (XSYMBOL (tags[j+1])->name)) > 0)
|
|
778 {
|
|
779 Lisp_Object tmp = tags[j];
|
|
780 tags[j] = tags[j+1];
|
|
781 tags[j+1] = tmp;
|
|
782 j--;
|
|
783 }
|
|
784 }
|
|
785
|
|
786 /* Now eliminate duplicates. */
|
|
787
|
|
788 for (i = 1, j = 1; i < len; i++)
|
|
789 {
|
|
790 /* j holds the destination, i the source. */
|
|
791 if (!EQ (tags[i], tags[i-1]))
|
|
792 tags[j++] = tags[i];
|
|
793 }
|
|
794
|
|
795 return Flist (j, tags);
|
|
796 }
|
|
797
|
20
|
798 DEFUN ("canonicalize-tag-set", Fcanonicalize_tag_set, 1, 1, 0, /*
|
0
|
799 Canonicalize the given tag set.
|
|
800 Two canonicalized tag sets can be compared with `equal' to see if they
|
|
801 represent the same tag set. (Specifically, canonicalizing involves
|
|
802 sorting by symbol name and removing duplicates.)
|
20
|
803 */
|
|
804 (tag_set))
|
0
|
805 {
|
|
806 if (NILP (Fvalid_specifier_tag_set_p (tag_set)))
|
|
807 signal_simple_error ("Invalid tag set", tag_set);
|
|
808 return canonicalize_tag_set (tag_set);
|
|
809 }
|
|
810
|
|
811 static int
|
|
812 device_matches_specifier_tag_set_p (Lisp_Object device, Lisp_Object tag_set)
|
|
813 {
|
|
814 Lisp_Object devtype, devclass, rest;
|
|
815 struct device *d = XDEVICE (device);
|
|
816
|
|
817 devtype = DEVICE_TYPE (d);
|
|
818 devclass = DEVICE_CLASS (d);
|
|
819
|
|
820 LIST_LOOP (rest, tag_set)
|
|
821 {
|
|
822 Lisp_Object tag = XCAR (rest);
|
|
823 Lisp_Object assoc;
|
|
824
|
|
825 if (EQ (tag, devtype) || EQ (tag, devclass))
|
|
826 continue;
|
|
827 assoc = assq_no_quit (tag, DEVICE_USER_DEFINED_TAGS (d));
|
|
828 /* other built-in tags (device types/classes) are not in
|
|
829 the user-defined-tags list. */
|
|
830 if (NILP (assoc) || NILP (XCDR (assoc)))
|
|
831 return 0;
|
|
832 }
|
|
833
|
|
834 return 1;
|
|
835 }
|
|
836
|
20
|
837 DEFUN ("device-matches-specifier-tag-set-p", Fdevice_matches_specifier_tag_set_p, 2, 2, 0, /*
|
0
|
838 Return non-nil if DEVICE matches specifier tag set TAG-SET.
|
|
839 This means that DEVICE matches each tag in the tag set. (Every
|
|
840 tag recognized by XEmacs has a predicate associated with it that
|
|
841 specifies which devices match it.)
|
20
|
842 */
|
|
843 (device, tag_set))
|
0
|
844 {
|
|
845 CHECK_LIVE_DEVICE (device);
|
|
846
|
|
847 if (NILP (Fvalid_specifier_tag_set_p (tag_set)))
|
|
848 signal_simple_error ("Invalid tag set", tag_set);
|
|
849
|
|
850 return device_matches_specifier_tag_set_p (device, tag_set) ? Qt : Qnil;
|
|
851 }
|
|
852
|
20
|
853 DEFUN ("define-specifier-tag", Fdefine_specifier_tag, 1, 2, 0, /*
|
0
|
854 Define a new specifier tag.
|
|
855 If PREDICATE is specified, it should be a function of one argument
|
272
|
856 \(a device) that specifies whether the tag matches that particular
|
0
|
857 device. If PREDICATE is omitted, the tag matches all devices.
|
|
858
|
|
859 You can redefine an existing user-defined specifier tag. However,
|
|
860 you cannot redefine the built-in specifier tags (the device types
|
|
861 and classes) or the symbols nil, t, 'all, or 'global.
|
20
|
862 */
|
|
863 (tag, predicate))
|
0
|
864 {
|
|
865 Lisp_Object assoc, devcons, concons;
|
|
866 int recompute = 0;
|
|
867
|
|
868 CHECK_SYMBOL (tag);
|
|
869 if (valid_device_class_p (tag) ||
|
|
870 valid_console_type_p (tag))
|
|
871 signal_simple_error ("Cannot redefine built-in specifier tags", tag);
|
|
872 /* Try to prevent common instantiators and locales from being
|
|
873 redefined, to reduce ambiguity */
|
|
874 if (NILP (tag) || EQ (tag, Qt) || EQ (tag, Qall) || EQ (tag, Qglobal))
|
|
875 signal_simple_error ("Cannot define nil, t, 'all, or 'global",
|
|
876 tag);
|
|
877 assoc = assq_no_quit (tag, Vuser_defined_tags);
|
|
878 if (NILP (assoc))
|
|
879 {
|
|
880 recompute = 1;
|
|
881 Vuser_defined_tags = Fcons (Fcons (tag, predicate), Vuser_defined_tags);
|
|
882 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
883 {
|
|
884 struct device *d = XDEVICE (XCAR (devcons));
|
|
885 /* Initially set the value to t in case of error
|
|
886 in predicate */
|
|
887 DEVICE_USER_DEFINED_TAGS (d) =
|
|
888 Fcons (Fcons (tag, Qt), DEVICE_USER_DEFINED_TAGS (d));
|
|
889 }
|
|
890 }
|
|
891 else if (!NILP (predicate) && !NILP (XCDR (assoc)))
|
|
892 {
|
|
893 recompute = 1;
|
|
894 XCDR (assoc) = predicate;
|
|
895 }
|
|
896
|
|
897 /* recompute the tag values for all devices. However, in the special
|
|
898 case where both the old and new predicates are nil, we know that
|
|
899 we don't have to do this. (It's probably common for people to
|
|
900 call (define-specifier-tag) more than once on the same tag,
|
|
901 and the most common case is where PREDICATE is not specified.) */
|
|
902
|
|
903 if (recompute)
|
|
904 {
|
|
905 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
906 {
|
|
907 Lisp_Object device = XCAR (devcons);
|
|
908 assoc = assq_no_quit (tag,
|
|
909 DEVICE_USER_DEFINED_TAGS (XDEVICE (device)));
|
|
910 assert (CONSP (assoc));
|
|
911 if (NILP (predicate))
|
|
912 XCDR (assoc) = Qt;
|
|
913 else
|
|
914 XCDR (assoc) = !NILP (call1 (predicate, device)) ? Qt : Qnil;
|
|
915 }
|
|
916 }
|
|
917
|
|
918 return Qnil;
|
|
919 }
|
|
920
|
|
921 /* Called at device-creation time to initialize the user-defined
|
|
922 tag values for the newly-created device. */
|
|
923
|
|
924 void
|
|
925 setup_device_initial_specifier_tags (struct device *d)
|
|
926 {
|
|
927 Lisp_Object rest, rest2;
|
272
|
928 Lisp_Object device;
|
0
|
929
|
|
930 XSETDEVICE (device, d);
|
173
|
931
|
0
|
932 DEVICE_USER_DEFINED_TAGS (d) = Fcopy_alist (Vuser_defined_tags);
|
|
933
|
|
934 /* Now set up the initial values */
|
|
935 LIST_LOOP (rest, DEVICE_USER_DEFINED_TAGS (d))
|
|
936 XCDR (XCAR (rest)) = Qt;
|
|
937
|
|
938 for (rest = Vuser_defined_tags, rest2 = DEVICE_USER_DEFINED_TAGS (d);
|
|
939 !NILP (rest); rest = XCDR (rest), rest2 = XCDR (rest2))
|
|
940 {
|
|
941 Lisp_Object predicate = XCDR (XCAR (rest));
|
|
942 if (NILP (predicate))
|
|
943 XCDR (XCAR (rest2)) = Qt;
|
|
944 else
|
|
945 XCDR (XCAR (rest2)) = !NILP (call1 (predicate, device)) ? Qt : Qnil;
|
|
946 }
|
|
947 }
|
|
948
|
280
|
949 DEFUN ("device-matching-specifier-tag-list", Fdevice_matching_specifier_tag_list,
|
|
950 0, 1, 0, /*
|
0
|
951 Return a list of all specifier tags matching DEVICE.
|
|
952 DEVICE defaults to the selected device if omitted.
|
20
|
953 */
|
|
954 (device))
|
0
|
955 {
|
|
956 struct device *d = decode_device (device);
|
|
957 Lisp_Object rest, list = Qnil;
|
|
958 struct gcpro gcpro1;
|
173
|
959
|
0
|
960 GCPRO1 (list);
|
|
961
|
|
962 LIST_LOOP (rest, DEVICE_USER_DEFINED_TAGS (d))
|
|
963 {
|
|
964 if (!NILP (XCDR (XCAR (rest))))
|
|
965 list = Fcons (XCAR (XCAR (rest)), list);
|
|
966 }
|
|
967
|
|
968 list = Fnreverse (list);
|
|
969 list = Fcons (DEVICE_CLASS (d), list);
|
272
|
970 list = Fcons (DEVICE_TYPE (d), list);
|
0
|
971
|
|
972 RETURN_UNGCPRO (list);
|
|
973 }
|
|
974
|
20
|
975 DEFUN ("specifier-tag-list", Fspecifier_tag_list, 0, 0, 0, /*
|
0
|
976 Return a list of all currently-defined specifier tags.
|
|
977 This includes the built-in ones (the device types and classes).
|
20
|
978 */
|
|
979 ())
|
0
|
980 {
|
|
981 Lisp_Object list = Qnil, rest;
|
|
982 struct gcpro gcpro1;
|
|
983
|
|
984 GCPRO1 (list);
|
|
985
|
|
986 LIST_LOOP (rest, Vuser_defined_tags)
|
|
987 list = Fcons (XCAR (XCAR (rest)), list);
|
|
988
|
|
989 list = Fnreverse (list);
|
|
990 list = nconc2 (Fcopy_sequence (Vdevice_class_list), list);
|
|
991 list = nconc2 (Fcopy_sequence (Vconsole_type_list), list);
|
|
992
|
|
993 RETURN_UNGCPRO (list);
|
|
994 }
|
|
995
|
20
|
996 DEFUN ("specifier-tag-predicate", Fspecifier_tag_predicate, 1, 1, 0, /*
|
0
|
997 Return the predicate for the given specifier tag.
|
20
|
998 */
|
|
999 (tag))
|
0
|
1000 {
|
|
1001 /* The return value of this function must be GCPRO'd. */
|
|
1002 CHECK_SYMBOL (tag);
|
|
1003
|
|
1004 if (NILP (Fvalid_specifier_tag_p (tag)))
|
|
1005 signal_simple_error ("Invalid specifier tag", tag);
|
|
1006
|
|
1007 /* Make up some predicates for the built-in types */
|
|
1008
|
|
1009 if (valid_console_type_p (tag))
|
|
1010 return list3 (Qlambda, list1 (Qdevice),
|
|
1011 list3 (Qeq, list2 (Qquote, tag),
|
|
1012 list2 (Qconsole_type, Qdevice)));
|
173
|
1013
|
0
|
1014 if (valid_device_class_p (tag))
|
|
1015 return list3 (Qlambda, list1 (Qdevice),
|
|
1016 list3 (Qeq, list2 (Qquote, tag),
|
|
1017 list2 (Qdevice_class, Qdevice)));
|
|
1018
|
|
1019 return XCDR (assq_no_quit (tag, Vuser_defined_tags));
|
|
1020 }
|
|
1021
|
|
1022 /* Return true if A "matches" B. If EXACT_P is 0, A must be a subset of B.
|
|
1023 Otherwise, A must be `equal' to B. The sets must be canonicalized. */
|
|
1024 static int
|
|
1025 tag_sets_match_p (Lisp_Object a, Lisp_Object b, int exact_p)
|
|
1026 {
|
|
1027 if (!exact_p)
|
|
1028 {
|
|
1029 while (!NILP (a) && !NILP (b))
|
|
1030 {
|
|
1031 if (EQ (XCAR (a), XCAR (b)))
|
|
1032 a = XCDR (a);
|
|
1033 b = XCDR (b);
|
|
1034 }
|
173
|
1035
|
0
|
1036 return NILP (a);
|
|
1037 }
|
|
1038 else
|
|
1039 {
|
|
1040 while (!NILP (a) && !NILP (b))
|
|
1041 {
|
|
1042 if (!EQ (XCAR (a), XCAR (b)))
|
|
1043 return 0;
|
|
1044 a = XCDR (a);
|
|
1045 b = XCDR (b);
|
|
1046 }
|
|
1047
|
|
1048 return NILP (a) && NILP (b);
|
|
1049 }
|
|
1050 }
|
|
1051
|
|
1052
|
|
1053 /************************************************************************/
|
|
1054 /* Spec-lists and inst-lists */
|
|
1055 /************************************************************************/
|
|
1056
|
|
1057 static Lisp_Object
|
|
1058 call_validate_method (Lisp_Object boxed_method, Lisp_Object instantiator)
|
|
1059 {
|
|
1060 ((void (*)(Lisp_Object)) get_opaque_ptr (boxed_method)) (instantiator);
|
|
1061 return Qt;
|
|
1062 }
|
|
1063
|
|
1064 static Lisp_Object
|
|
1065 check_valid_instantiator (Lisp_Object instantiator,
|
|
1066 struct specifier_methods *meths,
|
|
1067 Error_behavior errb)
|
|
1068 {
|
|
1069 if (meths->validate_method)
|
|
1070 {
|
|
1071 Lisp_Object retval;
|
|
1072
|
|
1073 if (ERRB_EQ (errb, ERROR_ME))
|
|
1074 {
|
|
1075 (meths->validate_method) (instantiator);
|
|
1076 retval = Qt;
|
|
1077 }
|
|
1078 else
|
|
1079 {
|
|
1080 Lisp_Object opaque = make_opaque_ptr ((void *)
|
|
1081 meths->validate_method);
|
|
1082 struct gcpro gcpro1;
|
|
1083
|
|
1084 GCPRO1 (opaque);
|
74
|
1085 retval = call_with_suspended_errors
|
|
1086 ((lisp_fn_t) call_validate_method,
|
|
1087 Qnil, Qspecifier, errb, 2, opaque, instantiator);
|
173
|
1088
|
0
|
1089 free_opaque_ptr (opaque);
|
|
1090 UNGCPRO;
|
|
1091 }
|
|
1092
|
|
1093 return retval;
|
|
1094 }
|
|
1095 return Qt;
|
|
1096 }
|
|
1097
|
20
|
1098 DEFUN ("check-valid-instantiator", Fcheck_valid_instantiator, 2, 2, 0, /*
|
0
|
1099 Signal an error if INSTANTIATOR is invalid for SPECIFIER-TYPE.
|
20
|
1100 */
|
|
1101 (instantiator, specifier_type))
|
0
|
1102 {
|
|
1103 struct specifier_methods *meths = decode_specifier_type (specifier_type,
|
|
1104 ERROR_ME);
|
|
1105
|
|
1106 return check_valid_instantiator (instantiator, meths, ERROR_ME);
|
|
1107 }
|
|
1108
|
20
|
1109 DEFUN ("valid-instantiator-p", Fvalid_instantiator_p, 2, 2, 0, /*
|
0
|
1110 Return non-nil if INSTANTIATOR is valid for SPECIFIER-TYPE.
|
20
|
1111 */
|
|
1112 (instantiator, specifier_type))
|
0
|
1113 {
|
|
1114 struct specifier_methods *meths = decode_specifier_type (specifier_type,
|
|
1115 ERROR_ME);
|
|
1116
|
|
1117 return check_valid_instantiator (instantiator, meths, ERROR_ME_NOT);
|
|
1118 }
|
|
1119
|
|
1120 static Lisp_Object
|
|
1121 check_valid_inst_list (Lisp_Object inst_list, struct specifier_methods *meths,
|
|
1122 Error_behavior errb)
|
|
1123 {
|
|
1124 Lisp_Object rest;
|
|
1125
|
|
1126 LIST_LOOP (rest, inst_list)
|
|
1127 {
|
272
|
1128 Lisp_Object inst_pair, tag_set;
|
|
1129
|
|
1130 if (!CONSP (rest))
|
0
|
1131 {
|
|
1132 maybe_signal_simple_error ("Invalid instantiator list", inst_list,
|
|
1133 Qspecifier, errb);
|
|
1134 return Qnil;
|
|
1135 }
|
272
|
1136 if (!CONSP (inst_pair = XCAR (rest)))
|
0
|
1137 {
|
272
|
1138 maybe_signal_simple_error ("Invalid instantiator pair", inst_pair,
|
|
1139 Qspecifier, errb);
|
0
|
1140 return Qnil;
|
|
1141 }
|
272
|
1142 if (NILP (Fvalid_specifier_tag_set_p (tag_set = XCAR (inst_pair))))
|
|
1143 {
|
|
1144 maybe_signal_simple_error ("Invalid specifier tag", tag_set,
|
|
1145 Qspecifier, errb);
|
|
1146 return Qnil;
|
|
1147 }
|
|
1148
|
|
1149 if (NILP (check_valid_instantiator (XCDR (inst_pair), meths, errb)))
|
0
|
1150 return Qnil;
|
|
1151 }
|
|
1152
|
|
1153 return Qt;
|
|
1154 }
|
|
1155
|
20
|
1156 DEFUN ("check-valid-inst-list", Fcheck_valid_inst_list, 2, 2, 0, /*
|
0
|
1157 Signal an error if INST-LIST is invalid for specifier type TYPE.
|
20
|
1158 */
|
|
1159 (inst_list, type))
|
0
|
1160 {
|
|
1161 struct specifier_methods *meths = decode_specifier_type (type, ERROR_ME);
|
|
1162
|
|
1163 return check_valid_inst_list (inst_list, meths, ERROR_ME);
|
|
1164 }
|
|
1165
|
20
|
1166 DEFUN ("valid-inst-list-p", Fvalid_inst_list_p, 2, 2, 0, /*
|
0
|
1167 Return non-nil if INST-LIST is valid for specifier type TYPE.
|
20
|
1168 */
|
|
1169 (inst_list, type))
|
0
|
1170 {
|
|
1171 struct specifier_methods *meths = decode_specifier_type (type, ERROR_ME);
|
|
1172
|
|
1173 return check_valid_inst_list (inst_list, meths, ERROR_ME_NOT);
|
|
1174 }
|
|
1175
|
|
1176 static Lisp_Object
|
|
1177 check_valid_spec_list (Lisp_Object spec_list, struct specifier_methods *meths,
|
|
1178 Error_behavior errb)
|
|
1179 {
|
|
1180 Lisp_Object rest;
|
|
1181
|
|
1182 LIST_LOOP (rest, spec_list)
|
|
1183 {
|
272
|
1184 Lisp_Object spec, locale;
|
|
1185 if (!CONSP (rest) || !CONSP (spec = XCAR (rest)))
|
0
|
1186 {
|
|
1187 maybe_signal_simple_error ("Invalid specification list", spec_list,
|
|
1188 Qspecifier, errb);
|
|
1189 return Qnil;
|
|
1190 }
|
272
|
1191 if (NILP (Fvalid_specifier_locale_p (locale = XCAR (spec))))
|
0
|
1192 {
|
272
|
1193 maybe_signal_simple_error ("Invalid specifier locale", locale,
|
0
|
1194 Qspecifier, errb);
|
|
1195 return Qnil;
|
|
1196 }
|
|
1197
|
272
|
1198 if (NILP (check_valid_inst_list (XCDR (spec), meths, errb)))
|
0
|
1199 return Qnil;
|
|
1200 }
|
|
1201
|
|
1202 return Qt;
|
|
1203 }
|
|
1204
|
20
|
1205 DEFUN ("check-valid-spec-list", Fcheck_valid_spec_list, 2, 2, 0, /*
|
0
|
1206 Signal an error if SPEC-LIST is invalid for specifier type TYPE.
|
20
|
1207 */
|
|
1208 (spec_list, type))
|
0
|
1209 {
|
|
1210 struct specifier_methods *meths = decode_specifier_type (type, ERROR_ME);
|
|
1211
|
|
1212 return check_valid_spec_list (spec_list, meths, ERROR_ME);
|
|
1213 }
|
|
1214
|
20
|
1215 DEFUN ("valid-spec-list-p", Fvalid_spec_list_p, 2, 2, 0, /*
|
0
|
1216 Return non-nil if SPEC-LIST is valid for specifier type TYPE.
|
20
|
1217 */
|
|
1218 (spec_list, type))
|
0
|
1219 {
|
|
1220 struct specifier_methods *meths = decode_specifier_type (type, ERROR_ME);
|
|
1221
|
|
1222 return check_valid_spec_list (spec_list, meths, ERROR_ME_NOT);
|
|
1223 }
|
|
1224
|
|
1225 enum spec_add_meth
|
|
1226 decode_how_to_add_specification (Lisp_Object how_to_add)
|
|
1227 {
|
|
1228 if (NILP (how_to_add) || EQ (Qremove_tag_set_prepend, how_to_add))
|
185
|
1229 return SPEC_REMOVE_TAG_SET_PREPEND;
|
|
1230 if (EQ (Qremove_tag_set_append, how_to_add))
|
|
1231 return SPEC_REMOVE_TAG_SET_APPEND;
|
|
1232 if (EQ (Qappend, how_to_add))
|
|
1233 return SPEC_APPEND;
|
|
1234 if (EQ (Qprepend, how_to_add))
|
|
1235 return SPEC_PREPEND;
|
|
1236 if (EQ (Qremove_locale, how_to_add))
|
|
1237 return SPEC_REMOVE_LOCALE;
|
|
1238 if (EQ (Qremove_locale_type, how_to_add))
|
|
1239 return SPEC_REMOVE_LOCALE_TYPE;
|
|
1240 if (EQ (Qremove_all, how_to_add))
|
|
1241 return SPEC_REMOVE_ALL;
|
|
1242
|
|
1243 signal_simple_error ("Invalid `how-to-add' flag", how_to_add);
|
|
1244
|
|
1245 return SPEC_PREPEND; /* not reached */
|
0
|
1246 }
|
|
1247
|
280
|
1248 /* Given a specifier object SPEC, return bodily specifier if SPEC is a
|
276
|
1249 ghost specifier, otherwise return the object itself
|
|
1250 */
|
|
1251 static Lisp_Object
|
|
1252 bodily_specifier (Lisp_Object spec)
|
|
1253 {
|
|
1254 return (GHOST_SPECIFIER_P (XSPECIFIER (spec))
|
|
1255 ? XSPECIFIER(spec)->magic_parent : spec);
|
|
1256 }
|
|
1257
|
280
|
1258 /* Signal error if (specifier SPEC is read-only.
|
|
1259 Read only are ghost specifiers unless Vunlock_ghost_specifiers is
|
|
1260 non-nil. All other specifiers are read-write.
|
276
|
1261 */
|
280
|
1262 static void
|
|
1263 check_modifiable_specifier (Lisp_Object spec)
|
276
|
1264 {
|
280
|
1265 if (NILP (Vunlock_ghost_specifiers)
|
|
1266 && GHOST_SPECIFIER_P (XSPECIFIER (spec)))
|
|
1267 signal_simple_error ("Attempt to modify read-only specifier",
|
|
1268 list1 (spec));
|
276
|
1269 }
|
|
1270
|
|
1271 /* Helper function which unwind protects the value of
|
280
|
1272 Vunlock_ghost_specifiers, then sets it to non-nil value */
|
276
|
1273 static Lisp_Object
|
280
|
1274 restore_unlock_value (Lisp_Object val)
|
276
|
1275 {
|
280
|
1276 Vunlock_ghost_specifiers = val;
|
276
|
1277 return val;
|
|
1278 }
|
|
1279
|
|
1280 int
|
280
|
1281 unlock_ghost_specifiers_protected (void)
|
276
|
1282 {
|
|
1283 int depth = specpdl_depth ();
|
280
|
1284 record_unwind_protect (restore_unlock_value,
|
|
1285 Vunlock_ghost_specifiers);
|
|
1286 Vunlock_ghost_specifiers = Qt;
|
276
|
1287 return depth;
|
|
1288 }
|
|
1289
|
0
|
1290 /* This gets hit so much that the function call overhead had a
|
|
1291 measurable impact (according to Quantify). #### We should figure
|
|
1292 out the frequency with which this is called with the various types
|
|
1293 and reorder the check accordingly. */
|
185
|
1294 #define SPECIFIER_GET_SPEC_LIST(specifier, type) \
|
|
1295 (type == LOCALE_GLOBAL ? &(XSPECIFIER (specifier)->global_specs) : \
|
|
1296 type == LOCALE_DEVICE ? &(XSPECIFIER (specifier)->device_specs) : \
|
|
1297 type == LOCALE_FRAME ? &(XSPECIFIER (specifier)->frame_specs) : \
|
|
1298 type == LOCALE_WINDOW ? &(XWEAK_LIST_LIST \
|
|
1299 (XSPECIFIER (specifier)->window_specs)) : \
|
|
1300 type == LOCALE_BUFFER ? &(XSPECIFIER (specifier)->buffer_specs) : \
|
|
1301 0)
|
173
|
1302
|
0
|
1303 static Lisp_Object *
|
|
1304 specifier_get_inst_list (Lisp_Object specifier, Lisp_Object locale,
|
|
1305 enum spec_locale_type type)
|
|
1306 {
|
|
1307 Lisp_Object *spec_list = SPECIFIER_GET_SPEC_LIST (specifier, type);
|
|
1308 Lisp_Object specification;
|
|
1309
|
|
1310 if (type == LOCALE_GLOBAL)
|
|
1311 return spec_list;
|
|
1312 /* Calling assq_no_quit when it is just going to return nil anyhow
|
|
1313 is extremely expensive. So sayeth Quantify. */
|
|
1314 if (!CONSP (*spec_list))
|
|
1315 return 0;
|
|
1316 specification = assq_no_quit (locale, *spec_list);
|
|
1317 if (NILP (specification))
|
|
1318 return 0;
|
|
1319 return &XCDR (specification);
|
|
1320 }
|
|
1321
|
|
1322 /* For the given INST_LIST, return a new INST_LIST containing all elements
|
|
1323 where TAG-SET matches the element's tag set. EXACT_P indicates whether
|
|
1324 the match must be exact (as opposed to a subset). SHORT_P indicates
|
|
1325 that the short form (for `specifier-specs') should be returned if
|
|
1326 possible. If COPY_TREE_P, `copy-tree' is used to ensure that no
|
|
1327 elements of the new list are shared with the initial list.
|
|
1328 */
|
|
1329
|
|
1330 static Lisp_Object
|
|
1331 specifier_process_inst_list (Lisp_Object inst_list,
|
|
1332 Lisp_Object tag_set, int exact_p,
|
|
1333 int short_p, int copy_tree_p)
|
|
1334 {
|
|
1335 Lisp_Object retval = Qnil;
|
|
1336 Lisp_Object rest;
|
|
1337 struct gcpro gcpro1;
|
|
1338
|
|
1339 GCPRO1 (retval);
|
|
1340 LIST_LOOP (rest, inst_list)
|
|
1341 {
|
|
1342 Lisp_Object tagged_inst = XCAR (rest);
|
|
1343 Lisp_Object tagged_inst_tag = XCAR (tagged_inst);
|
|
1344 if (tag_sets_match_p (tag_set, tagged_inst_tag, exact_p))
|
|
1345 {
|
|
1346 if (short_p && NILP (tagged_inst_tag))
|
|
1347 retval = Fcons (copy_tree_p ?
|
|
1348 Fcopy_tree (XCDR (tagged_inst), Qt) :
|
|
1349 XCDR (tagged_inst),
|
|
1350 retval);
|
|
1351 else
|
|
1352 retval = Fcons (copy_tree_p ? Fcopy_tree (tagged_inst, Qt) :
|
|
1353 tagged_inst, retval);
|
|
1354 }
|
|
1355 }
|
|
1356 retval = Fnreverse (retval);
|
|
1357 UNGCPRO;
|
|
1358 /* If there is a single instantiator and the short form is
|
|
1359 requested, return just the instantiator (rather than a one-element
|
|
1360 list of it) unless it is nil (so that it can be distinguished from
|
|
1361 no instantiators at all). */
|
|
1362 if (short_p && CONSP (retval) && !NILP (XCAR (retval)) &&
|
|
1363 NILP (XCDR (retval)))
|
|
1364 return XCAR (retval);
|
|
1365 else
|
|
1366 return retval;
|
|
1367 }
|
|
1368
|
|
1369 static Lisp_Object
|
|
1370 specifier_get_external_inst_list (Lisp_Object specifier, Lisp_Object locale,
|
|
1371 enum spec_locale_type type,
|
|
1372 Lisp_Object tag_set, int exact_p,
|
|
1373 int short_p, int copy_tree_p)
|
|
1374 {
|
|
1375 Lisp_Object *inst_list = specifier_get_inst_list (specifier, locale,
|
|
1376 type);
|
|
1377 if (!inst_list || NILP (*inst_list))
|
|
1378 {
|
|
1379 /* nil for *inst_list should only occur in 'global */
|
|
1380 assert (!inst_list || EQ (locale, Qglobal));
|
|
1381 return Qnil;
|
|
1382 }
|
|
1383
|
|
1384 return specifier_process_inst_list (*inst_list, tag_set, exact_p,
|
|
1385 short_p, copy_tree_p);
|
|
1386 }
|
|
1387
|
|
1388 static Lisp_Object
|
|
1389 specifier_get_external_spec_list (Lisp_Object specifier,
|
|
1390 enum spec_locale_type type,
|
|
1391 Lisp_Object tag_set, int exact_p)
|
|
1392 {
|
|
1393 Lisp_Object *spec_list = SPECIFIER_GET_SPEC_LIST (specifier, type);
|
|
1394 Lisp_Object retval = Qnil;
|
|
1395 Lisp_Object rest;
|
|
1396 struct gcpro gcpro1;
|
|
1397
|
|
1398 assert (type != LOCALE_GLOBAL);
|
|
1399 /* We're about to let stuff go external; make sure there aren't
|
|
1400 any dead objects */
|
|
1401 *spec_list = cleanup_assoc_list (*spec_list);
|
|
1402
|
|
1403 GCPRO1 (retval);
|
|
1404 LIST_LOOP (rest, *spec_list)
|
|
1405 {
|
|
1406 Lisp_Object spec = XCAR (rest);
|
|
1407 Lisp_Object inst_list =
|
|
1408 specifier_process_inst_list (XCDR (spec), tag_set, exact_p, 0, 1);
|
|
1409 if (!NILP (inst_list))
|
|
1410 retval = Fcons (Fcons (XCAR (spec), inst_list), retval);
|
|
1411 }
|
|
1412 RETURN_UNGCPRO (Fnreverse (retval));
|
|
1413 }
|
|
1414
|
|
1415 static Lisp_Object *
|
|
1416 specifier_new_spec (Lisp_Object specifier, Lisp_Object locale,
|
|
1417 enum spec_locale_type type)
|
|
1418 {
|
|
1419 Lisp_Object *spec_list = SPECIFIER_GET_SPEC_LIST (specifier, type);
|
|
1420 Lisp_Object new_spec = Fcons (locale, Qnil);
|
|
1421 assert (type != LOCALE_GLOBAL);
|
|
1422 *spec_list = Fcons (new_spec, *spec_list);
|
|
1423 return &XCDR (new_spec);
|
|
1424 }
|
|
1425
|
|
1426 /* For the given INST_LIST, return a new list comprised of elements
|
|
1427 where TAG_SET does not match the element's tag set. This operation
|
|
1428 is destructive. */
|
|
1429
|
|
1430 static Lisp_Object
|
|
1431 specifier_process_remove_inst_list (Lisp_Object inst_list,
|
|
1432 Lisp_Object tag_set, int exact_p,
|
|
1433 int *was_removed)
|
|
1434 {
|
|
1435 Lisp_Object prev = Qnil, rest;
|
|
1436
|
|
1437 *was_removed = 0;
|
|
1438
|
|
1439 LIST_LOOP (rest, inst_list)
|
|
1440 {
|
|
1441 if (tag_sets_match_p (tag_set, XCAR (XCAR (rest)), exact_p))
|
|
1442 {
|
|
1443 /* time to remove. */
|
|
1444 *was_removed = 1;
|
|
1445 if (NILP (prev))
|
|
1446 inst_list = XCDR (rest);
|
|
1447 else
|
|
1448 XCDR (prev) = XCDR (rest);
|
|
1449 }
|
|
1450 else
|
|
1451 prev = rest;
|
|
1452 }
|
|
1453
|
|
1454 return inst_list;
|
|
1455 }
|
|
1456
|
|
1457 static void
|
|
1458 specifier_remove_spec (Lisp_Object specifier, Lisp_Object locale,
|
|
1459 enum spec_locale_type type,
|
|
1460 Lisp_Object tag_set, int exact_p)
|
|
1461 {
|
|
1462 Lisp_Object *spec_list = SPECIFIER_GET_SPEC_LIST (specifier, type);
|
|
1463 Lisp_Object assoc;
|
|
1464 int was_removed;
|
|
1465
|
|
1466 if (type == LOCALE_GLOBAL)
|
|
1467 *spec_list = specifier_process_remove_inst_list (*spec_list, tag_set,
|
|
1468 exact_p, &was_removed);
|
|
1469 else
|
|
1470 {
|
|
1471 assoc = assq_no_quit (locale, *spec_list);
|
|
1472 if (NILP (assoc))
|
|
1473 /* this locale is not found. */
|
|
1474 return;
|
|
1475 XCDR (assoc) = specifier_process_remove_inst_list (XCDR (assoc),
|
|
1476 tag_set, exact_p,
|
|
1477 &was_removed);
|
|
1478 if (NILP (XCDR (assoc)))
|
|
1479 /* no inst-pairs left; remove this locale entirely. */
|
|
1480 *spec_list = remassq_no_quit (locale, *spec_list);
|
|
1481 }
|
173
|
1482
|
0
|
1483 if (was_removed)
|
276
|
1484 MAYBE_SPECMETH (XSPECIFIER (specifier), after_change,
|
|
1485 (bodily_specifier (specifier), locale));
|
0
|
1486 }
|
|
1487
|
|
1488 static void
|
|
1489 specifier_remove_locale_type (Lisp_Object specifier,
|
|
1490 enum spec_locale_type type,
|
|
1491 Lisp_Object tag_set, int exact_p)
|
|
1492 {
|
|
1493 Lisp_Object *spec_list = SPECIFIER_GET_SPEC_LIST (specifier, type);
|
|
1494 Lisp_Object prev = Qnil, rest;
|
|
1495
|
|
1496 assert (type != LOCALE_GLOBAL);
|
|
1497 LIST_LOOP (rest, *spec_list)
|
|
1498 {
|
|
1499 int was_removed;
|
|
1500 int remove_spec = 0;
|
|
1501 Lisp_Object spec = XCAR (rest);
|
173
|
1502
|
0
|
1503 /* There may be dead objects floating around */
|
|
1504 /* remember, dead windows can become alive again. */
|
|
1505 if (!WINDOWP (XCAR (spec)) && object_dead_p (XCAR (spec)))
|
|
1506 {
|
|
1507 remove_spec = 1;
|
|
1508 was_removed = 0;
|
|
1509 }
|
|
1510 else
|
|
1511 {
|
|
1512 XCDR (spec) = specifier_process_remove_inst_list (XCDR (spec),
|
|
1513 tag_set, exact_p,
|
|
1514 &was_removed);
|
|
1515 if (NILP (XCDR (spec)))
|
|
1516 remove_spec = 1;
|
|
1517 }
|
|
1518
|
|
1519 if (remove_spec)
|
|
1520 {
|
|
1521 if (NILP (prev))
|
|
1522 *spec_list = XCDR (rest);
|
|
1523 else
|
|
1524 XCDR (prev) = XCDR (rest);
|
|
1525 }
|
|
1526 else
|
|
1527 prev = rest;
|
|
1528
|
|
1529 if (was_removed)
|
|
1530 MAYBE_SPECMETH (XSPECIFIER (specifier), after_change,
|
276
|
1531 (bodily_specifier (specifier), XCAR (spec)));
|
0
|
1532 }
|
|
1533 }
|
|
1534
|
|
1535 /* NEW_LIST is going to be added to INST_LIST, with add method ADD_METH.
|
|
1536 Frob INST_LIST according to ADD_METH. No need to call an after-change
|
|
1537 function; the calling function will do this. Return either SPEC_PREPEND
|
|
1538 or SPEC_APPEND, indicating whether to prepend or append the NEW_LIST. */
|
|
1539
|
|
1540 static enum spec_add_meth
|
|
1541 handle_multiple_add_insts (Lisp_Object *inst_list,
|
|
1542 Lisp_Object new_list,
|
|
1543 enum spec_add_meth add_meth)
|
|
1544 {
|
272
|
1545 switch (add_meth)
|
0
|
1546 {
|
272
|
1547 case SPEC_REMOVE_TAG_SET_APPEND:
|
|
1548 add_meth = SPEC_APPEND;
|
|
1549 goto remove_tag_set;
|
|
1550 case SPEC_REMOVE_TAG_SET_PREPEND:
|
|
1551 add_meth = SPEC_PREPEND;
|
|
1552 remove_tag_set:
|
|
1553 {
|
|
1554 Lisp_Object rest;
|
|
1555
|
|
1556 LIST_LOOP (rest, new_list)
|
|
1557 {
|
|
1558 Lisp_Object canontag = canonicalize_tag_set (XCAR (XCAR (rest)));
|
|
1559 struct gcpro gcpro1;
|
|
1560
|
|
1561 GCPRO1 (canontag);
|
|
1562 /* pull out all elements from the existing list with the
|
|
1563 same tag as any tags in NEW_LIST. */
|
|
1564 *inst_list = remassoc_no_quit (canontag, *inst_list);
|
|
1565 UNGCPRO;
|
|
1566 }
|
|
1567 }
|
|
1568 return add_meth;
|
|
1569 case SPEC_REMOVE_LOCALE:
|
0
|
1570 *inst_list = Qnil;
|
|
1571 return SPEC_PREPEND;
|
272
|
1572 case SPEC_APPEND:
|
|
1573 return add_meth;
|
|
1574 default:
|
|
1575 return SPEC_PREPEND;
|
0
|
1576 }
|
|
1577 }
|
|
1578
|
|
1579 /* Given a LOCALE and INST_LIST that is going to be added to SPECIFIER,
|
|
1580 copy, canonicalize, and call the going_to_add methods as necessary
|
|
1581 to produce a new list that is the one that really will be added
|
|
1582 to the specifier. */
|
|
1583
|
|
1584 static Lisp_Object
|
|
1585 build_up_processed_list (Lisp_Object specifier, Lisp_Object locale,
|
|
1586 Lisp_Object inst_list)
|
|
1587 {
|
|
1588 /* The return value of this function must be GCPRO'd. */
|
|
1589 Lisp_Object rest, list_to_build_up = Qnil;
|
412
|
1590 struct Lisp_Specifier *sp = XSPECIFIER (specifier);
|
0
|
1591 struct gcpro gcpro1;
|
|
1592
|
|
1593 GCPRO1 (list_to_build_up);
|
|
1594 LIST_LOOP (rest, inst_list)
|
|
1595 {
|
|
1596 Lisp_Object tag_set = XCAR (XCAR (rest));
|
412
|
1597 Lisp_Object instantiator = Fcopy_tree (XCDR (XCAR (rest)), Qt);
|
0
|
1598 Lisp_Object sub_inst_list = Qnil;
|
|
1599 struct gcpro ngcpro1, ngcpro2;
|
|
1600
|
|
1601 NGCPRO2 (instantiator, sub_inst_list);
|
|
1602 /* call the will-add method; it may GC */
|
272
|
1603 sub_inst_list = HAS_SPECMETH_P (sp, going_to_add) ?
|
|
1604 SPECMETH (sp, going_to_add,
|
276
|
1605 (bodily_specifier (specifier), locale,
|
|
1606 tag_set, instantiator)) :
|
272
|
1607 Qt;
|
0
|
1608 if (EQ (sub_inst_list, Qt))
|
|
1609 /* no change here. */
|
|
1610 sub_inst_list = list1 (Fcons (canonicalize_tag_set (tag_set),
|
|
1611 instantiator));
|
|
1612 else
|
|
1613 {
|
|
1614 /* now canonicalize all the tag sets in the new objects */
|
|
1615 Lisp_Object rest2;
|
|
1616 LIST_LOOP (rest2, sub_inst_list)
|
|
1617 XCAR (XCAR (rest2)) = canonicalize_tag_set (XCAR (XCAR (rest2)));
|
|
1618 }
|
|
1619
|
|
1620 list_to_build_up = nconc2 (sub_inst_list, list_to_build_up);
|
|
1621 NUNGCPRO;
|
|
1622 }
|
|
1623
|
|
1624 RETURN_UNGCPRO (Fnreverse (list_to_build_up));
|
|
1625 }
|
|
1626
|
|
1627 /* Add a specification (locale and instantiator list) to a specifier.
|
|
1628 ADD_METH specifies what to do with existing specifications in the
|
|
1629 specifier, and is an enum that corresponds to the values in
|
|
1630 `add-spec-to-specifier'. The calling routine is responsible for
|
|
1631 validating LOCALE and INST-LIST, but the tag-sets in INST-LIST
|
|
1632 do not need to be canonicalized. */
|
|
1633
|
|
1634 /* #### I really need to rethink the after-change
|
|
1635 functions to make them easier to use and more efficient. */
|
|
1636
|
|
1637 static void
|
|
1638 specifier_add_spec (Lisp_Object specifier, Lisp_Object locale,
|
|
1639 Lisp_Object inst_list, enum spec_add_meth add_meth)
|
|
1640 {
|
412
|
1641 struct Lisp_Specifier *sp = XSPECIFIER (specifier);
|
272
|
1642 enum spec_locale_type type = locale_type_from_locale (locale);
|
|
1643 Lisp_Object *orig_inst_list, tem;
|
0
|
1644 Lisp_Object list_to_build_up = Qnil;
|
|
1645 struct gcpro gcpro1;
|
|
1646
|
|
1647 GCPRO1 (list_to_build_up);
|
|
1648 list_to_build_up = build_up_processed_list (specifier, locale, inst_list);
|
|
1649 /* Now handle REMOVE_LOCALE_TYPE and REMOVE_ALL. These are the
|
|
1650 add-meth types that affect locales other than this one. */
|
|
1651 if (add_meth == SPEC_REMOVE_LOCALE_TYPE)
|
|
1652 specifier_remove_locale_type (specifier, type, Qnil, 0);
|
|
1653 else if (add_meth == SPEC_REMOVE_ALL)
|
|
1654 {
|
|
1655 specifier_remove_locale_type (specifier, LOCALE_BUFFER, Qnil, 0);
|
|
1656 specifier_remove_locale_type (specifier, LOCALE_WINDOW, Qnil, 0);
|
272
|
1657 specifier_remove_locale_type (specifier, LOCALE_FRAME, Qnil, 0);
|
0
|
1658 specifier_remove_locale_type (specifier, LOCALE_DEVICE, Qnil, 0);
|
|
1659 specifier_remove_spec (specifier, Qglobal, LOCALE_GLOBAL, Qnil, 0);
|
|
1660 }
|
|
1661
|
|
1662 orig_inst_list = specifier_get_inst_list (specifier, locale, type);
|
|
1663 if (!orig_inst_list)
|
|
1664 orig_inst_list = specifier_new_spec (specifier, locale, type);
|
|
1665 add_meth = handle_multiple_add_insts (orig_inst_list, list_to_build_up,
|
|
1666 add_meth);
|
|
1667
|
|
1668 if (add_meth == SPEC_PREPEND)
|
272
|
1669 tem = nconc2 (list_to_build_up, *orig_inst_list);
|
0
|
1670 else if (add_meth == SPEC_APPEND)
|
272
|
1671 tem = nconc2 (*orig_inst_list, list_to_build_up);
|
0
|
1672 else
|
|
1673 abort ();
|
173
|
1674
|
272
|
1675 *orig_inst_list = tem;
|
|
1676
|
0
|
1677 UNGCPRO;
|
|
1678
|
|
1679 /* call the after-change method */
|
276
|
1680 MAYBE_SPECMETH (sp, after_change,
|
|
1681 (bodily_specifier (specifier), locale));
|
0
|
1682 }
|
|
1683
|
|
1684 static void
|
|
1685 specifier_copy_spec (Lisp_Object specifier, Lisp_Object dest,
|
|
1686 Lisp_Object locale, enum spec_locale_type type,
|
|
1687 Lisp_Object tag_set, int exact_p,
|
|
1688 enum spec_add_meth add_meth)
|
|
1689 {
|
|
1690 Lisp_Object inst_list =
|
|
1691 specifier_get_external_inst_list (specifier, locale, type, tag_set,
|
|
1692 exact_p, 0, 0);
|
|
1693 specifier_add_spec (dest, locale, inst_list, add_meth);
|
|
1694 }
|
|
1695
|
|
1696 static void
|
|
1697 specifier_copy_locale_type (Lisp_Object specifier, Lisp_Object dest,
|
|
1698 enum spec_locale_type type,
|
|
1699 Lisp_Object tag_set, int exact_p,
|
|
1700 enum spec_add_meth add_meth)
|
|
1701 {
|
|
1702 Lisp_Object *src_list = SPECIFIER_GET_SPEC_LIST (specifier, type);
|
|
1703 Lisp_Object rest;
|
|
1704
|
|
1705 /* This algorithm is O(n^2) in running time.
|
|
1706 It's certainly possible to implement an O(n log n) algorithm,
|
|
1707 but I doubt there's any need to. */
|
173
|
1708
|
0
|
1709 LIST_LOOP (rest, *src_list)
|
|
1710 {
|
|
1711 Lisp_Object spec = XCAR (rest);
|
|
1712 /* There may be dead objects floating around */
|
|
1713 /* remember, dead windows can become alive again. */
|
|
1714 if (WINDOWP (XCAR (spec)) || !object_dead_p (XCAR (spec)))
|
|
1715 specifier_add_spec
|
|
1716 (dest, XCAR (spec),
|
|
1717 specifier_process_inst_list (XCDR (spec), tag_set, exact_p, 0, 0),
|
|
1718 add_meth);
|
|
1719 }
|
173
|
1720 }
|
0
|
1721
|
|
1722 /* map MAPFUN over the locales in SPECIFIER that are given in LOCALE.
|
|
1723 CLOSURE is passed unchanged to MAPFUN. LOCALE can be one of
|
|
1724
|
|
1725 -- nil (same as 'all)
|
|
1726 -- a single locale, locale type, or 'all
|
|
1727 -- a list of locales, locale types, and/or 'all
|
|
1728
|
|
1729 MAPFUN is called for each locale and locale type given; for 'all,
|
|
1730 it is called for the locale 'global and for the four possible
|
|
1731 locale types. In each invocation, either LOCALE will be a locale
|
|
1732 and LOCALE_TYPE will be the locale type of this locale,
|
|
1733 or LOCALE will be nil and LOCALE_TYPE will be a locale type.
|
|
1734 If MAPFUN ever returns non-zero, the mapping is halted and the
|
|
1735 value returned is returned from map_specifier(). Otherwise, the
|
|
1736 mapping proceeds to the end and map_specifier() returns 0.
|
|
1737 */
|
|
1738
|
|
1739 static int
|
|
1740 map_specifier (Lisp_Object specifier, Lisp_Object locale,
|
|
1741 int (*mapfun) (Lisp_Object specifier,
|
|
1742 Lisp_Object locale,
|
|
1743 enum spec_locale_type locale_type,
|
|
1744 Lisp_Object tag_set,
|
|
1745 int exact_p,
|
|
1746 void *closure),
|
|
1747 Lisp_Object tag_set, Lisp_Object exact_p,
|
|
1748 void *closure)
|
|
1749 {
|
|
1750 int retval = 0;
|
|
1751 Lisp_Object rest;
|
|
1752 struct gcpro gcpro1, gcpro2;
|
|
1753
|
|
1754 GCPRO2 (tag_set, locale);
|
|
1755 locale = decode_locale_list (locale);
|
|
1756 tag_set = decode_specifier_tag_set (tag_set);
|
|
1757 tag_set = canonicalize_tag_set (tag_set);
|
|
1758
|
|
1759 LIST_LOOP (rest, locale)
|
|
1760 {
|
|
1761 Lisp_Object theloc = XCAR (rest);
|
|
1762 if (!NILP (Fvalid_specifier_locale_p (theloc)))
|
|
1763 {
|
|
1764 retval = (*mapfun) (specifier, theloc,
|
|
1765 locale_type_from_locale (theloc),
|
|
1766 tag_set, !NILP (exact_p), closure);
|
|
1767 if (retval)
|
|
1768 break;
|
|
1769 }
|
|
1770 else if (!NILP (Fvalid_specifier_locale_type_p (theloc)))
|
|
1771 {
|
|
1772 retval = (*mapfun) (specifier, Qnil,
|
|
1773 decode_locale_type (theloc), tag_set,
|
|
1774 !NILP (exact_p), closure);
|
|
1775 if (retval)
|
|
1776 break;
|
|
1777 }
|
|
1778 else
|
|
1779 {
|
|
1780 assert (EQ (theloc, Qall));
|
|
1781 retval = (*mapfun) (specifier, Qnil, LOCALE_BUFFER, tag_set,
|
|
1782 !NILP (exact_p), closure);
|
|
1783 if (retval)
|
|
1784 break;
|
|
1785 retval = (*mapfun) (specifier, Qnil, LOCALE_WINDOW, tag_set,
|
|
1786 !NILP (exact_p), closure);
|
|
1787 if (retval)
|
|
1788 break;
|
|
1789 retval = (*mapfun) (specifier, Qnil, LOCALE_FRAME, tag_set,
|
|
1790 !NILP (exact_p), closure);
|
|
1791 if (retval)
|
|
1792 break;
|
|
1793 retval = (*mapfun) (specifier, Qnil, LOCALE_DEVICE, tag_set,
|
|
1794 !NILP (exact_p), closure);
|
|
1795 if (retval)
|
|
1796 break;
|
|
1797 retval = (*mapfun) (specifier, Qglobal, LOCALE_GLOBAL, tag_set,
|
|
1798 !NILP (exact_p), closure);
|
|
1799 if (retval)
|
|
1800 break;
|
|
1801 }
|
|
1802 }
|
|
1803
|
|
1804 UNGCPRO;
|
|
1805 return retval;
|
|
1806 }
|
|
1807
|
20
|
1808 DEFUN ("add-spec-to-specifier", Fadd_spec_to_specifier, 2, 5, 0, /*
|
0
|
1809 Add a specification to SPECIFIER.
|
284
|
1810 The specification maps from LOCALE (which should be a window, buffer,
|
0
|
1811 frame, device, or 'global, and defaults to 'global) to INSTANTIATOR,
|
|
1812 whose allowed values depend on the type of the specifier. Optional
|
|
1813 argument TAG-SET limits the instantiator to apply only to the specified
|
|
1814 tag set, which should be a list of tags all of which must match the
|
|
1815 device being instantiated over (tags are a device type, a device class,
|
|
1816 or tags defined with `define-specifier-tag'). Specifying a single
|
|
1817 symbol for TAG-SET is equivalent to specifying a one-element list
|
|
1818 containing that symbol. Optional argument HOW-TO-ADD specifies what to
|
|
1819 do if there are already specifications in the specifier.
|
|
1820 It should be one of
|
|
1821
|
|
1822 'prepend Put at the beginning of the current list of
|
|
1823 instantiators for LOCALE.
|
|
1824 'append Add to the end of the current list of
|
|
1825 instantiators for LOCALE.
|
|
1826 'remove-tag-set-prepend (this is the default)
|
|
1827 Remove any existing instantiators whose tag set is
|
|
1828 the same as TAG-SET; then put the new instantiator
|
185
|
1829 at the beginning of the current list. ("Same tag
|
|
1830 set" means that they contain the same elements.
|
0
|
1831 The order may be different.)
|
|
1832 'remove-tag-set-append
|
|
1833 Remove any existing instantiators whose tag set is
|
|
1834 the same as TAG-SET; then put the new instantiator
|
|
1835 at the end of the current list.
|
|
1836 'remove-locale Remove all previous instantiators for this locale
|
|
1837 before adding the new spec.
|
|
1838 'remove-locale-type Remove all specifications for all locales of the
|
|
1839 same type as LOCALE (this includes LOCALE itself)
|
|
1840 before adding the new spec.
|
|
1841 'remove-all Remove all specifications from the specifier
|
|
1842 before adding the new spec.
|
|
1843
|
|
1844 You can retrieve the specifications for a particular locale or locale type
|
|
1845 with the function `specifier-spec-list' or `specifier-specs'.
|
20
|
1846 */
|
|
1847 (specifier, instantiator, locale, tag_set, how_to_add))
|
0
|
1848 {
|
|
1849 enum spec_add_meth add_meth;
|
|
1850 Lisp_Object inst_list;
|
|
1851 struct gcpro gcpro1;
|
|
1852
|
|
1853 CHECK_SPECIFIER (specifier);
|
280
|
1854 check_modifiable_specifier (specifier);
|
380
|
1855
|
0
|
1856 locale = decode_locale (locale);
|
|
1857 check_valid_instantiator (instantiator,
|
|
1858 decode_specifier_type
|
|
1859 (Fspecifier_type (specifier), ERROR_ME),
|
|
1860 ERROR_ME);
|
|
1861 /* tag_set might be newly-created material, but it's part of inst_list
|
|
1862 so is properly GC-protected. */
|
|
1863 tag_set = decode_specifier_tag_set (tag_set);
|
|
1864 add_meth = decode_how_to_add_specification (how_to_add);
|
|
1865
|
|
1866 inst_list = list1 (Fcons (tag_set, instantiator));
|
|
1867 GCPRO1 (inst_list);
|
280
|
1868 specifier_add_spec (specifier, locale, inst_list, add_meth);
|
0
|
1869 recompute_cached_specifier_everywhere (specifier);
|
|
1870 RETURN_UNGCPRO (Qnil);
|
|
1871 }
|
|
1872
|
20
|
1873 DEFUN ("add-spec-list-to-specifier", Fadd_spec_list_to_specifier, 2, 3, 0, /*
|
0
|
1874 Add a spec-list (a list of specifications) to SPECIFIER.
|
|
1875 The format of a spec-list is
|
|
1876
|
|
1877 ((LOCALE (TAG-SET . INSTANTIATOR) ...) ...)
|
|
1878
|
|
1879 where
|
284
|
1880 LOCALE := a window, a buffer, a frame, a device, or 'global
|
0
|
1881 TAG-SET := an unordered list of zero or more TAGS, each of which
|
|
1882 is a symbol
|
|
1883 TAG := a device class (see `valid-device-class-p'), a device type
|
|
1884 (see `valid-console-type-p'), or a tag defined with
|
|
1885 `define-specifier-tag'
|
|
1886 INSTANTIATOR := format determined by the type of specifier
|
|
1887
|
|
1888 The pair (TAG-SET . INSTANTIATOR) is called an `inst-pair'.
|
|
1889 A list of inst-pairs is called an `inst-list'.
|
|
1890 The pair (LOCALE . INST-LIST) is called a `specification' or `spec'.
|
|
1891 A spec-list, then, can be viewed as a list of specifications.
|
|
1892
|
|
1893 HOW-TO-ADD specifies how to combine the new specifications with
|
|
1894 the existing ones, and has the same semantics as for
|
|
1895 `add-spec-to-specifier'.
|
|
1896
|
|
1897 In many circumstances, the higher-level function `set-specifier' is
|
|
1898 more convenient and should be used instead.
|
20
|
1899 */
|
|
1900 (specifier, spec_list, how_to_add))
|
0
|
1901 {
|
|
1902 enum spec_add_meth add_meth;
|
|
1903 Lisp_Object rest;
|
|
1904
|
|
1905 CHECK_SPECIFIER (specifier);
|
280
|
1906 check_modifiable_specifier (specifier);
|
|
1907
|
0
|
1908 check_valid_spec_list (spec_list,
|
|
1909 decode_specifier_type
|
|
1910 (Fspecifier_type (specifier), ERROR_ME),
|
|
1911 ERROR_ME);
|
|
1912 add_meth = decode_how_to_add_specification (how_to_add);
|
|
1913
|
|
1914 LIST_LOOP (rest, spec_list)
|
|
1915 {
|
|
1916 /* Placating the GCC god. */
|
272
|
1917 Lisp_Object specification = XCAR (rest);
|
|
1918 Lisp_Object locale = XCAR (specification);
|
|
1919 Lisp_Object inst_list = XCDR (specification);
|
|
1920
|
280
|
1921 specifier_add_spec (specifier, locale, inst_list, add_meth);
|
173
|
1922 }
|
0
|
1923 recompute_cached_specifier_everywhere (specifier);
|
|
1924 return Qnil;
|
|
1925 }
|
|
1926
|
276
|
1927 void
|
|
1928 add_spec_to_ghost_specifier (Lisp_Object specifier, Lisp_Object instantiator,
|
|
1929 Lisp_Object locale, Lisp_Object tag_set,
|
|
1930 Lisp_Object how_to_add)
|
|
1931 {
|
280
|
1932 int depth = unlock_ghost_specifiers_protected ();
|
|
1933 Fadd_spec_to_specifier (XSPECIFIER(specifier)->fallback,
|
|
1934 instantiator, locale, tag_set, how_to_add);
|
276
|
1935 unbind_to (depth, Qnil);
|
|
1936 }
|
|
1937
|
0
|
1938 struct specifier_spec_list_closure
|
|
1939 {
|
|
1940 Lisp_Object head, tail;
|
|
1941 };
|
|
1942
|
|
1943 static int
|
|
1944 specifier_spec_list_mapfun (Lisp_Object specifier,
|
|
1945 Lisp_Object locale,
|
|
1946 enum spec_locale_type locale_type,
|
|
1947 Lisp_Object tag_set,
|
|
1948 int exact_p,
|
|
1949 void *closure)
|
|
1950 {
|
|
1951 struct specifier_spec_list_closure *cl =
|
|
1952 (struct specifier_spec_list_closure *) closure;
|
|
1953 Lisp_Object partial;
|
|
1954
|
|
1955 if (NILP (locale))
|
|
1956 partial = specifier_get_external_spec_list (specifier,
|
|
1957 locale_type,
|
|
1958 tag_set, exact_p);
|
|
1959 else
|
|
1960 {
|
|
1961 partial = specifier_get_external_inst_list (specifier, locale,
|
|
1962 locale_type, tag_set,
|
|
1963 exact_p, 0, 1);
|
|
1964 if (!NILP (partial))
|
|
1965 partial = list1 (Fcons (locale, partial));
|
|
1966 }
|
|
1967 if (NILP (partial))
|
|
1968 return 0;
|
|
1969
|
|
1970 /* tack on the new list */
|
|
1971 if (NILP (cl->tail))
|
|
1972 cl->head = cl->tail = partial;
|
|
1973 else
|
|
1974 XCDR (cl->tail) = partial;
|
|
1975 /* find the new tail */
|
|
1976 while (CONSP (XCDR (cl->tail)))
|
|
1977 cl->tail = XCDR (cl->tail);
|
|
1978 return 0;
|
|
1979 }
|
|
1980
|
|
1981 /* For the given SPECIFIER create and return a list of all specs
|
|
1982 contained within it, subject to LOCALE. If LOCALE is a locale, only
|
|
1983 specs in that locale will be returned. If LOCALE is a locale type,
|
|
1984 all specs in all locales of that type will be returned. If LOCALE is
|
|
1985 nil, all specs will be returned. This always copies lists and never
|
|
1986 returns the actual lists, because we do not want someone manipulating
|
|
1987 the actual objects. This may cause a slight loss of potential
|
|
1988 functionality but if we were to allow it then a user could manage to
|
|
1989 violate our assertion that the specs contained in the actual
|
|
1990 specifier lists are all valid. */
|
|
1991
|
20
|
1992 DEFUN ("specifier-spec-list", Fspecifier_spec_list, 1, 4, 0, /*
|
0
|
1993 Return the spec-list of specifications for SPECIFIER in LOCALE.
|
|
1994
|
|
1995 If LOCALE is a particular locale (a buffer, window, frame, device,
|
|
1996 or 'global), a spec-list consisting of the specification for that
|
|
1997 locale will be returned.
|
|
1998
|
|
1999 If LOCALE is a locale type (i.e. 'buffer, 'window, 'frame, or 'device),
|
|
2000 a spec-list of the specifications for all locales of that type will be
|
|
2001 returned.
|
|
2002
|
|
2003 If LOCALE is nil or 'all, a spec-list of all specifications in SPECIFIER
|
|
2004 will be returned.
|
|
2005
|
|
2006 LOCALE can also be a list of locales, locale types, and/or 'all; the
|
|
2007 result is as if `specifier-spec-list' were called on each element of the
|
|
2008 list and the results concatenated together.
|
|
2009
|
|
2010 Only instantiators where TAG-SET (a list of zero or more tags) is a
|
|
2011 subset of (or possibly equal to) the instantiator's tag set are returned.
|
272
|
2012 \(The default value of nil is a subset of all tag sets, so in this case
|
0
|
2013 no instantiators will be screened out.) If EXACT-P is non-nil, however,
|
|
2014 TAG-SET must be equal to an instantiator's tag set for the instantiator
|
|
2015 to be returned.
|
20
|
2016 */
|
70
|
2017 (specifier, locale, tag_set, exact_p))
|
0
|
2018 {
|
|
2019 struct specifier_spec_list_closure cl;
|
|
2020 struct gcpro gcpro1, gcpro2;
|
|
2021
|
|
2022 CHECK_SPECIFIER (specifier);
|
|
2023 cl.head = cl.tail = Qnil;
|
|
2024 GCPRO2 (cl.head, cl.tail);
|
280
|
2025 map_specifier (specifier, locale, specifier_spec_list_mapfun,
|
0
|
2026 tag_set, exact_p, &cl);
|
|
2027 UNGCPRO;
|
|
2028 return cl.head;
|
|
2029 }
|
|
2030
|
|
2031
|
20
|
2032 DEFUN ("specifier-specs", Fspecifier_specs, 1, 4, 0, /*
|
0
|
2033 Return the specification(s) for SPECIFIER in LOCALE.
|
|
2034
|
|
2035 If LOCALE is a single locale or is a list of one element containing a
|
185
|
2036 single locale, then a "short form" of the instantiators for that locale
|
0
|
2037 will be returned. Otherwise, this function is identical to
|
|
2038 `specifier-spec-list'.
|
|
2039
|
185
|
2040 The "short form" is designed for readability and not for ease of use
|
0
|
2041 in Lisp programs, and is as follows:
|
|
2042
|
|
2043 1. If there is only one instantiator, then an inst-pair (i.e. cons of
|
|
2044 tag and instantiator) will be returned; otherwise a list of
|
|
2045 inst-pairs will be returned.
|
|
2046 2. For each inst-pair returned, if the instantiator's tag is 'any,
|
|
2047 the tag will be removed and the instantiator itself will be returned
|
|
2048 instead of the inst-pair.
|
|
2049 3. If there is only one instantiator, its value is nil, and its tag is
|
|
2050 'any, a one-element list containing nil will be returned rather
|
|
2051 than just nil, to distinguish this case from there being no
|
|
2052 instantiators at all.
|
20
|
2053 */
|
|
2054 (specifier, locale, tag_set, exact_p))
|
0
|
2055 {
|
|
2056 if (!NILP (Fvalid_specifier_locale_p (locale)) ||
|
|
2057 (CONSP (locale) && !NILP (Fvalid_specifier_locale_p (XCAR (locale))) &&
|
|
2058 NILP (XCDR (locale))))
|
|
2059 {
|
|
2060 struct gcpro gcpro1;
|
|
2061
|
|
2062 CHECK_SPECIFIER (specifier);
|
|
2063 if (CONSP (locale))
|
|
2064 locale = XCAR (locale);
|
|
2065 GCPRO1 (tag_set);
|
|
2066 tag_set = decode_specifier_tag_set (tag_set);
|
|
2067 tag_set = canonicalize_tag_set (tag_set);
|
|
2068 RETURN_UNGCPRO
|
280
|
2069 (specifier_get_external_inst_list (specifier, locale,
|
0
|
2070 locale_type_from_locale (locale),
|
280
|
2071 tag_set, !NILP (exact_p), 1, 1));
|
0
|
2072 }
|
|
2073 else
|
|
2074 return Fspecifier_spec_list (specifier, locale, tag_set, exact_p);
|
|
2075 }
|
|
2076
|
|
2077 static int
|
|
2078 remove_specifier_mapfun (Lisp_Object specifier,
|
|
2079 Lisp_Object locale,
|
|
2080 enum spec_locale_type locale_type,
|
|
2081 Lisp_Object tag_set,
|
|
2082 int exact_p,
|
|
2083 void *ignored_closure)
|
|
2084 {
|
|
2085 if (NILP (locale))
|
|
2086 specifier_remove_locale_type (specifier, locale_type, tag_set, exact_p);
|
|
2087 else
|
|
2088 specifier_remove_spec (specifier, locale, locale_type, tag_set, exact_p);
|
|
2089 return 0;
|
|
2090 }
|
|
2091
|
20
|
2092 DEFUN ("remove-specifier", Fremove_specifier, 1, 4, 0, /*
|
0
|
2093 Remove specification(s) for SPECIFIER.
|
|
2094
|
284
|
2095 If LOCALE is a particular locale (a window, buffer, frame, device,
|
0
|
2096 or 'global), the specification for that locale will be removed.
|
|
2097
|
284
|
2098 If instead, LOCALE is a locale type (i.e. 'window, 'buffer, 'frame,
|
0
|
2099 or 'device), the specifications for all locales of that type will be
|
|
2100 removed.
|
|
2101
|
|
2102 If LOCALE is nil or 'all, all specifications will be removed.
|
|
2103
|
|
2104 LOCALE can also be a list of locales, locale types, and/or 'all; this
|
|
2105 is equivalent to calling `remove-specifier' for each of the elements
|
|
2106 in the list.
|
|
2107
|
|
2108 Only instantiators where TAG-SET (a list of zero or more tags) is a
|
|
2109 subset of (or possibly equal to) the instantiator's tag set are removed.
|
16
|
2110 The default value of nil is a subset of all tag sets, so in this case
|
|
2111 no instantiators will be screened out. If EXACT-P is non-nil, however,
|
0
|
2112 TAG-SET must be equal to an instantiator's tag set for the instantiator
|
|
2113 to be removed.
|
20
|
2114 */
|
|
2115 (specifier, locale, tag_set, exact_p))
|
0
|
2116 {
|
|
2117 CHECK_SPECIFIER (specifier);
|
280
|
2118 check_modifiable_specifier (specifier);
|
|
2119
|
|
2120 map_specifier (specifier, locale, remove_specifier_mapfun,
|
|
2121 tag_set, exact_p, 0);
|
0
|
2122 recompute_cached_specifier_everywhere (specifier);
|
|
2123 return Qnil;
|
|
2124 }
|
|
2125
|
276
|
2126 void
|
|
2127 remove_ghost_specifier (Lisp_Object specifier, Lisp_Object locale,
|
|
2128 Lisp_Object tag_set, Lisp_Object exact_p)
|
|
2129 {
|
280
|
2130 int depth = unlock_ghost_specifiers_protected ();
|
|
2131 Fremove_specifier (XSPECIFIER(specifier)->fallback,
|
|
2132 locale, tag_set, exact_p);
|
276
|
2133 unbind_to (depth, Qnil);
|
|
2134 }
|
|
2135
|
0
|
2136 struct copy_specifier_closure
|
|
2137 {
|
|
2138 Lisp_Object dest;
|
|
2139 enum spec_add_meth add_meth;
|
|
2140 int add_meth_is_nil;
|
|
2141 };
|
|
2142
|
|
2143 static int
|
|
2144 copy_specifier_mapfun (Lisp_Object specifier,
|
|
2145 Lisp_Object locale,
|
173
|
2146 enum spec_locale_type locale_type,
|
0
|
2147 Lisp_Object tag_set,
|
|
2148 int exact_p,
|
|
2149 void *closure)
|
|
2150 {
|
|
2151 struct copy_specifier_closure *cl =
|
|
2152 (struct copy_specifier_closure *) closure;
|
|
2153
|
|
2154 if (NILP (locale))
|
|
2155 specifier_copy_locale_type (specifier, cl->dest, locale_type,
|
|
2156 tag_set, exact_p,
|
|
2157 cl->add_meth_is_nil ?
|
|
2158 SPEC_REMOVE_LOCALE_TYPE :
|
|
2159 cl->add_meth);
|
|
2160 else
|
|
2161 specifier_copy_spec (specifier, cl->dest, locale, locale_type,
|
|
2162 tag_set, exact_p,
|
|
2163 cl->add_meth_is_nil ? SPEC_REMOVE_LOCALE :
|
|
2164 cl->add_meth);
|
|
2165 return 0;
|
|
2166 }
|
|
2167
|
20
|
2168 DEFUN ("copy-specifier", Fcopy_specifier, 1, 6, 0, /*
|
0
|
2169 Copy SPECIFIER to DEST, or create a new one if DEST is nil.
|
|
2170
|
|
2171 If DEST is nil or omitted, a new specifier will be created and the
|
|
2172 specifications copied into it. Otherwise, the specifications will be
|
|
2173 copied into the existing specifier in DEST.
|
|
2174
|
|
2175 If LOCALE is nil or 'all, all specifications will be copied. If LOCALE
|
|
2176 is a particular locale, the specification for that particular locale will
|
|
2177 be copied. If LOCALE is a locale type, the specifications for all locales
|
|
2178 of that type will be copied. LOCALE can also be a list of locales,
|
|
2179 locale types, and/or 'all; this is equivalent to calling `copy-specifier'
|
|
2180 for each of the elements of the list. See `specifier-spec-list' for more
|
|
2181 information about LOCALE.
|
|
2182
|
|
2183 Only instantiators where TAG-SET (a list of zero or more tags) is a
|
|
2184 subset of (or possibly equal to) the instantiator's tag set are copied.
|
16
|
2185 The default value of nil is a subset of all tag sets, so in this case
|
|
2186 no instantiators will be screened out. If EXACT-P is non-nil, however,
|
0
|
2187 TAG-SET must be equal to an instantiator's tag set for the instantiator
|
|
2188 to be copied.
|
|
2189
|
|
2190 Optional argument HOW-TO-ADD specifies what to do with existing
|
|
2191 specifications in DEST. If nil, then whichever locales or locale types
|
|
2192 are copied will first be completely erased in DEST. Otherwise, it is
|
|
2193 the same as in `add-spec-to-specifier'.
|
20
|
2194 */
|
|
2195 (specifier, dest, locale, tag_set, exact_p, how_to_add))
|
0
|
2196 {
|
|
2197 struct gcpro gcpro1;
|
|
2198 struct copy_specifier_closure cl;
|
|
2199
|
|
2200 CHECK_SPECIFIER (specifier);
|
|
2201 if (NILP (how_to_add))
|
|
2202 cl.add_meth_is_nil = 1;
|
|
2203 else
|
|
2204 cl.add_meth_is_nil = 0;
|
|
2205 cl.add_meth = decode_how_to_add_specification (how_to_add);
|
|
2206 if (NILP (dest))
|
|
2207 {
|
|
2208 /* #### What about copying the extra data? */
|
|
2209 dest = make_specifier (XSPECIFIER (specifier)->methods);
|
|
2210 }
|
|
2211 else
|
|
2212 {
|
|
2213 CHECK_SPECIFIER (dest);
|
280
|
2214 check_modifiable_specifier (dest);
|
0
|
2215 if (XSPECIFIER (dest)->methods != XSPECIFIER (specifier)->methods)
|
|
2216 error ("Specifiers not of same type");
|
|
2217 }
|
|
2218
|
|
2219 cl.dest = dest;
|
|
2220 GCPRO1 (dest);
|
280
|
2221 map_specifier (specifier, locale, copy_specifier_mapfun,
|
|
2222 tag_set, exact_p, &cl);
|
0
|
2223 UNGCPRO;
|
276
|
2224 recompute_cached_specifier_everywhere (dest);
|
0
|
2225 return dest;
|
|
2226 }
|
|
2227
|
|
2228
|
|
2229 /************************************************************************/
|
|
2230 /* Instancing */
|
|
2231 /************************************************************************/
|
|
2232
|
|
2233 static Lisp_Object
|
|
2234 call_validate_matchspec_method (Lisp_Object boxed_method,
|
|
2235 Lisp_Object matchspec)
|
|
2236 {
|
|
2237 ((void (*)(Lisp_Object)) get_opaque_ptr (boxed_method)) (matchspec);
|
|
2238 return Qt;
|
|
2239 }
|
|
2240
|
|
2241 static Lisp_Object
|
|
2242 check_valid_specifier_matchspec (Lisp_Object matchspec,
|
|
2243 struct specifier_methods *meths,
|
|
2244 Error_behavior errb)
|
|
2245 {
|
|
2246 if (meths->validate_matchspec_method)
|
|
2247 {
|
|
2248 Lisp_Object retval;
|
|
2249
|
|
2250 if (ERRB_EQ (errb, ERROR_ME))
|
|
2251 {
|
|
2252 (meths->validate_matchspec_method) (matchspec);
|
|
2253 retval = Qt;
|
|
2254 }
|
|
2255 else
|
|
2256 {
|
|
2257 Lisp_Object opaque =
|
|
2258 make_opaque_ptr ((void *) meths->validate_matchspec_method);
|
|
2259 struct gcpro gcpro1;
|
|
2260
|
|
2261 GCPRO1 (opaque);
|
74
|
2262 retval = call_with_suspended_errors
|
82
|
2263 ((lisp_fn_t) call_validate_matchspec_method,
|
|
2264 Qnil, Qspecifier, errb, 2, opaque, matchspec);
|
173
|
2265
|
0
|
2266 free_opaque_ptr (opaque);
|
|
2267 UNGCPRO;
|
|
2268 }
|
|
2269
|
|
2270 return retval;
|
|
2271 }
|
|
2272 else
|
|
2273 {
|
|
2274 maybe_signal_simple_error
|
|
2275 ("Matchspecs not allowed for this specifier type",
|
|
2276 intern (meths->name), Qspecifier, errb);
|
|
2277 return Qnil;
|
|
2278 }
|
|
2279 }
|
|
2280
|
20
|
2281 DEFUN ("check-valid-specifier-matchspec", Fcheck_valid_specifier_matchspec, 2, 2, 0, /*
|
0
|
2282 Signal an error if MATCHSPEC is invalid for SPECIFIER-TYPE.
|
|
2283 See `specifier-matching-instance' for a description of matchspecs.
|
20
|
2284 */
|
|
2285 (matchspec, specifier_type))
|
0
|
2286 {
|
|
2287 struct specifier_methods *meths = decode_specifier_type (specifier_type,
|
|
2288 ERROR_ME);
|
|
2289
|
|
2290 return check_valid_specifier_matchspec (matchspec, meths, ERROR_ME);
|
|
2291 }
|
|
2292
|
20
|
2293 DEFUN ("valid-specifier-matchspec-p", Fvalid_specifier_matchspec_p, 2, 2, 0, /*
|
0
|
2294 Return non-nil if MATCHSPEC is valid for SPECIFIER-TYPE.
|
|
2295 See `specifier-matching-instance' for a description of matchspecs.
|
20
|
2296 */
|
|
2297 (matchspec, specifier_type))
|
0
|
2298 {
|
|
2299 struct specifier_methods *meths = decode_specifier_type (specifier_type,
|
|
2300 ERROR_ME);
|
|
2301
|
|
2302 return check_valid_specifier_matchspec (matchspec, meths, ERROR_ME_NOT);
|
|
2303 }
|
|
2304
|
|
2305 /* This function is purposely not callable from Lisp. If a Lisp
|
|
2306 caller wants to set a fallback, they should just set the
|
|
2307 global value. */
|
173
|
2308
|
0
|
2309 void
|
|
2310 set_specifier_fallback (Lisp_Object specifier, Lisp_Object fallback)
|
|
2311 {
|
412
|
2312 struct Lisp_Specifier *sp = XSPECIFIER (specifier);
|
0
|
2313 assert (SPECIFIERP (fallback) ||
|
|
2314 !NILP (Fvalid_inst_list_p (fallback, Fspecifier_type (specifier))));
|
|
2315 if (SPECIFIERP (fallback))
|
|
2316 assert (EQ (Fspecifier_type (specifier), Fspecifier_type (fallback)));
|
276
|
2317 if (BODILY_SPECIFIER_P (sp))
|
|
2318 GHOST_SPECIFIER(sp)->fallback = fallback;
|
|
2319 else
|
|
2320 sp->fallback = fallback;
|
0
|
2321 /* call the after-change method */
|
276
|
2322 MAYBE_SPECMETH (sp, after_change,
|
|
2323 (bodily_specifier (specifier), Qfallback));
|
0
|
2324 recompute_cached_specifier_everywhere (specifier);
|
|
2325 }
|
|
2326
|
20
|
2327 DEFUN ("specifier-fallback", Fspecifier_fallback, 1, 1, 0, /*
|
0
|
2328 Return the fallback value for SPECIFIER.
|
|
2329 Fallback values are provided by the C code for certain built-in
|
|
2330 specifiers to make sure that instancing won't fail even if all
|
|
2331 specs are removed from the specifier, or to implement simple
|
|
2332 inheritance behavior (e.g. this method is used to ensure that
|
|
2333 faces other than 'default inherit their attributes from 'default).
|
|
2334 By design, you cannot change the fallback value, and specifiers
|
|
2335 created with `make-specifier' will never have a fallback (although
|
|
2336 a similar, Lisp-accessible capability may be provided in the future
|
|
2337 to allow for inheritance).
|
|
2338
|
|
2339 The fallback value will be an inst-list that is instanced like
|
|
2340 any other inst-list, a specifier of the same type as SPECIFIER
|
|
2341 \(results in inheritance), or nil for no fallback.
|
|
2342
|
|
2343 When you instance a specifier, you can explicitly request that the
|
|
2344 fallback not be consulted. (The C code does this, for example, when
|
|
2345 merging faces.) See `specifier-instance'.
|
20
|
2346 */
|
|
2347 (specifier))
|
0
|
2348 {
|
|
2349 CHECK_SPECIFIER (specifier);
|
|
2350 return Fcopy_tree (XSPECIFIER (specifier)->fallback, Qt);
|
|
2351 }
|
|
2352
|
|
2353 static Lisp_Object
|
|
2354 specifier_instance_from_inst_list (Lisp_Object specifier,
|
|
2355 Lisp_Object matchspec,
|
|
2356 Lisp_Object domain,
|
|
2357 Lisp_Object inst_list,
|
|
2358 Error_behavior errb, int no_quit,
|
|
2359 Lisp_Object depth)
|
|
2360 {
|
|
2361 /* This function can GC */
|
412
|
2362 struct Lisp_Specifier *sp;
|
0
|
2363 Lisp_Object device;
|
|
2364 Lisp_Object rest;
|
|
2365 int count = specpdl_depth ();
|
|
2366 struct gcpro gcpro1, gcpro2;
|
|
2367
|
|
2368 GCPRO2 (specifier, inst_list);
|
|
2369
|
|
2370 sp = XSPECIFIER (specifier);
|
412
|
2371 device = DFW_DEVICE (domain);
|
0
|
2372
|
|
2373 if (no_quit)
|
|
2374 /* The instantiate method is allowed to call eval. Since it
|
|
2375 is quite common for this function to get called from somewhere in
|
|
2376 redisplay we need to make sure that quits are ignored. Otherwise
|
|
2377 Fsignal will abort. */
|
|
2378 specbind (Qinhibit_quit, Qt);
|
|
2379
|
|
2380 LIST_LOOP (rest, inst_list)
|
|
2381 {
|
|
2382 Lisp_Object tagged_inst = XCAR (rest);
|
|
2383 Lisp_Object tag_set = XCAR (tagged_inst);
|
|
2384
|
|
2385 if (device_matches_specifier_tag_set_p (device, tag_set))
|
|
2386 {
|
|
2387 Lisp_Object val = XCDR (tagged_inst);
|
|
2388
|
|
2389 if (HAS_SPECMETH_P (sp, instantiate))
|
74
|
2390 val = call_with_suspended_errors
|
82
|
2391 ((lisp_fn_t) RAW_SPECMETH (sp, instantiate),
|
|
2392 Qunbound, Qspecifier, errb, 5, specifier,
|
272
|
2393 matchspec, domain, val, depth);
|
0
|
2394
|
|
2395 if (!UNBOUNDP (val))
|
|
2396 {
|
|
2397 unbind_to (count, Qnil);
|
|
2398 UNGCPRO;
|
|
2399 return val;
|
|
2400 }
|
|
2401 }
|
|
2402 }
|
|
2403
|
|
2404 unbind_to (count, Qnil);
|
|
2405 UNGCPRO;
|
|
2406 return Qunbound;
|
|
2407 }
|
|
2408
|
|
2409 /* Given a SPECIFIER and a DOMAIN, return a specific instance for that
|
|
2410 specifier. Try to find one by checking the specifier types from most
|
|
2411 specific (buffer) to most general (global). If we find an instance,
|
|
2412 return it. Otherwise return Qunbound. */
|
|
2413
|
380
|
2414 #define CHECK_INSTANCE_ENTRY(key, matchspec, type) do { \
|
|
2415 Lisp_Object *CIE_inst_list = \
|
0
|
2416 specifier_get_inst_list (specifier, key, type); \
|
380
|
2417 if (CIE_inst_list) \
|
0
|
2418 { \
|
380
|
2419 Lisp_Object CIE_val = \
|
0
|
2420 specifier_instance_from_inst_list (specifier, matchspec, \
|
380
|
2421 domain, *CIE_inst_list, \
|
0
|
2422 errb, no_quit, depth); \
|
380
|
2423 if (!UNBOUNDP (CIE_val)) \
|
|
2424 return CIE_val; \
|
0
|
2425 } \
|
|
2426 } while (0)
|
|
2427
|
|
2428 /* We accept any window, frame or device domain and do our checking
|
|
2429 starting from as specific a locale type as we can determine from the
|
|
2430 domain we are passed and going on up through as many other locale types
|
|
2431 as we can determine. In practice, when called from redisplay the
|
|
2432 arg will usually be a window and occasionally a frame. If
|
|
2433 triggered by a user call, who knows what it will usually be. */
|
|
2434 Lisp_Object
|
|
2435 specifier_instance (Lisp_Object specifier, Lisp_Object matchspec,
|
|
2436 Lisp_Object domain, Error_behavior errb, int no_quit,
|
|
2437 int no_fallback, Lisp_Object depth)
|
|
2438 {
|
|
2439 Lisp_Object buffer = Qnil;
|
|
2440 Lisp_Object window = Qnil;
|
|
2441 Lisp_Object frame = Qnil;
|
|
2442 Lisp_Object device = Qnil;
|
|
2443 Lisp_Object tag = Qnil;
|
|
2444 struct device *d;
|
412
|
2445 struct Lisp_Specifier *sp;
|
0
|
2446
|
|
2447 sp = XSPECIFIER (specifier);
|
|
2448
|
|
2449 /* Attempt to determine buffer, window, frame, and device from the
|
|
2450 domain. */
|
412
|
2451 if (WINDOWP (domain))
|
0
|
2452 window = domain;
|
|
2453 else if (FRAMEP (domain))
|
|
2454 frame = domain;
|
|
2455 else if (DEVICEP (domain))
|
|
2456 device = domain;
|
|
2457 else
|
412
|
2458 /* #### dmoore - dammit, this should just signal an error or something
|
|
2459 shouldn't it?
|
|
2460 #### No. Errors are handled in Lisp primitives implementation.
|
280
|
2461 Invalid domain is a design error here - kkm. */
|
0
|
2462 abort ();
|
|
2463
|
|
2464 if (NILP (buffer) && !NILP (window))
|
|
2465 buffer = XWINDOW (window)->buffer;
|
|
2466 if (NILP (frame) && !NILP (window))
|
|
2467 frame = XWINDOW (window)->frame;
|
|
2468 if (NILP (device))
|
|
2469 /* frame had better exist; if device is undeterminable, something
|
|
2470 really went wrong. */
|
|
2471 device = XFRAME (frame)->device;
|
|
2472
|
|
2473 /* device had better be determined by now; abort if not. */
|
|
2474 d = XDEVICE (device);
|
|
2475 tag = DEVICE_CLASS (d);
|
|
2476
|
|
2477 depth = make_int (1 + XINT (depth));
|
|
2478 if (XINT (depth) > 20)
|
|
2479 {
|
|
2480 maybe_error (Qspecifier, errb, "Apparent loop in specifier inheritance");
|
|
2481 /* The specification is fucked; at least try the fallback
|
|
2482 (which better not be fucked, because it's not changeable
|
|
2483 from Lisp). */
|
|
2484 depth = Qzero;
|
|
2485 goto do_fallback;
|
|
2486 }
|
|
2487
|
412
|
2488 retry:
|
284
|
2489 /* First see if we can generate one from the window specifiers. */
|
|
2490 if (!NILP (window))
|
|
2491 CHECK_INSTANCE_ENTRY (window, matchspec, LOCALE_WINDOW);
|
|
2492
|
|
2493 /* Next see if we can generate one from the buffer specifiers. */
|
0
|
2494 if (!NILP (buffer))
|
|
2495 CHECK_INSTANCE_ENTRY (buffer, matchspec, LOCALE_BUFFER);
|
|
2496
|
|
2497 /* Next see if we can generate one from the frame specifiers. */
|
|
2498 if (!NILP (frame))
|
|
2499 CHECK_INSTANCE_ENTRY (frame, matchspec, LOCALE_FRAME);
|
|
2500
|
|
2501 /* If we still haven't succeeded try with the device specifiers. */
|
|
2502 CHECK_INSTANCE_ENTRY (device, matchspec, LOCALE_DEVICE);
|
|
2503
|
|
2504 /* Last and least try the global specifiers. */
|
|
2505 CHECK_INSTANCE_ENTRY (Qglobal, matchspec, LOCALE_GLOBAL);
|
|
2506
|
412
|
2507 do_fallback:
|
0
|
2508 /* We're out of specifiers and we still haven't generated an
|
|
2509 instance. At least try the fallback ... If this fails,
|
|
2510 then we just return Qunbound. */
|
|
2511
|
|
2512 if (no_fallback || NILP (sp->fallback))
|
|
2513 /* I said, I don't want the fallbacks. */
|
|
2514 return Qunbound;
|
|
2515
|
|
2516 if (SPECIFIERP (sp->fallback))
|
|
2517 {
|
|
2518 /* If you introduced loops in the default specifier chain,
|
|
2519 then you're fucked, so you better not do this. */
|
|
2520 specifier = sp->fallback;
|
|
2521 sp = XSPECIFIER (specifier);
|
380
|
2522 goto retry;
|
0
|
2523 }
|
|
2524
|
|
2525 assert (CONSP (sp->fallback));
|
|
2526 return specifier_instance_from_inst_list (specifier, matchspec, domain,
|
|
2527 sp->fallback, errb, no_quit,
|
|
2528 depth);
|
|
2529 }
|
|
2530 #undef CHECK_INSTANCE_ENTRY
|
|
2531
|
|
2532 Lisp_Object
|
|
2533 specifier_instance_no_quit (Lisp_Object specifier, Lisp_Object matchspec,
|
|
2534 Lisp_Object domain, Error_behavior errb,
|
|
2535 int no_fallback, Lisp_Object depth)
|
|
2536 {
|
|
2537 return specifier_instance (specifier, matchspec, domain, errb,
|
|
2538 1, no_fallback, depth);
|
|
2539 }
|
|
2540
|
20
|
2541 DEFUN ("specifier-instance", Fspecifier_instance, 1, 4, 0, /*
|
0
|
2542 Instantiate SPECIFIER (return its value) in DOMAIN.
|
|
2543 If no instance can be generated for this domain, return DEFAULT.
|
|
2544
|
|
2545 DOMAIN should be a window, frame, or device. Other values that are legal
|
|
2546 as a locale (e.g. a buffer) are not valid as a domain because they do not
|
|
2547 provide enough information to identify a particular device (see
|
|
2548 `valid-specifier-domain-p'). DOMAIN defaults to the selected window
|
|
2549 if omitted.
|
|
2550
|
185
|
2551 "Instantiating" a specifier in a particular domain means determining
|
|
2552 the specifier's "value" in that domain. This is accomplished by
|
0
|
2553 searching through the specifications in the specifier that correspond
|
|
2554 to all locales that can be derived from the given domain, from specific
|
|
2555 to general. In most cases, the domain is an Emacs window. In that case
|
|
2556 specifications are searched for as follows:
|
|
2557
|
284
|
2558 1. A specification whose locale is the window itself;
|
|
2559 2. A specification whose locale is the window's buffer;
|
0
|
2560 3. A specification whose locale is the window's frame;
|
|
2561 4. A specification whose locale is the window's frame's device;
|
|
2562 5. A specification whose locale is 'global.
|
|
2563
|
|
2564 If all of those fail, then the C-code-provided fallback value for
|
|
2565 this specifier is consulted (see `specifier-fallback'). If it is
|
|
2566 an inst-list, then this function attempts to instantiate that list
|
|
2567 just as when a specification is located in the first five steps above.
|
|
2568 If the fallback is a specifier, `specifier-instance' is called
|
|
2569 recursively on this specifier and the return value used. Note,
|
|
2570 however, that if the optional argument NO-FALLBACK is non-nil,
|
|
2571 the fallback value will not be consulted.
|
|
2572
|
|
2573 Note that there may be more than one specification matching a particular
|
|
2574 locale; all such specifications are considered before looking for any
|
|
2575 specifications for more general locales. Any particular specification
|
|
2576 that is found may be rejected because its tag set does not match the
|
|
2577 device being instantiated over, or because the specification is not
|
|
2578 valid for the device of the given domain (e.g. the font or color name
|
|
2579 does not exist for this particular X server).
|
|
2580
|
|
2581 The returned value is dependent on the type of specifier. For example,
|
|
2582 for a font specifier (as returned by the `face-font' function), the returned
|
|
2583 value will be a font-instance object. For glyphs, the returned value
|
|
2584 will be a string, pixmap, or subwindow.
|
|
2585
|
|
2586 See also `specifier-matching-instance'.
|
20
|
2587 */
|
173
|
2588 (specifier, domain, default_, no_fallback))
|
0
|
2589 {
|
|
2590 Lisp_Object instance;
|
|
2591
|
|
2592 CHECK_SPECIFIER (specifier);
|
|
2593 domain = decode_domain (domain);
|
|
2594
|
280
|
2595 instance = specifier_instance (specifier, Qunbound, domain, ERROR_ME, 0,
|
0
|
2596 !NILP (no_fallback), Qzero);
|
173
|
2597 return UNBOUNDP (instance) ? default_ : instance;
|
0
|
2598 }
|
|
2599
|
20
|
2600 DEFUN ("specifier-matching-instance", Fspecifier_matching_instance, 2, 5, 0, /*
|
0
|
2601 Return an instance for SPECIFIER in DOMAIN that matches MATCHSPEC.
|
|
2602 If no instance can be generated for this domain, return DEFAULT.
|
|
2603
|
|
2604 This function is identical to `specifier-instance' except that a
|
|
2605 specification will only be considered if it matches MATCHSPEC.
|
185
|
2606 The definition of "match", and allowed values for MATCHSPEC, are
|
0
|
2607 dependent on the particular type of specifier. Here are some examples:
|
|
2608
|
|
2609 -- For chartable (e.g. display table) specifiers, MATCHSPEC should be a
|
|
2610 character, and the specification (a chartable) must give a value for
|
|
2611 that character in order to be considered. This allows you to specify,
|
|
2612 e.g., a buffer-local display table that only gives values for particular
|
|
2613 characters. All other characters are handled as if the buffer-local
|
|
2614 display table is not there. (Chartable specifiers are not yet
|
|
2615 implemented.)
|
|
2616
|
|
2617 -- For font specifiers, MATCHSPEC should be a charset, and the specification
|
|
2618 (a font string) must have a registry that matches the charset's registry.
|
|
2619 (This only makes sense with Mule support.) This makes it easy to choose a
|
|
2620 font that can display a particular character. (This is what redisplay
|
|
2621 does, in fact.)
|
20
|
2622 */
|
173
|
2623 (specifier, matchspec, domain, default_, no_fallback))
|
0
|
2624 {
|
|
2625 Lisp_Object instance;
|
|
2626
|
|
2627 CHECK_SPECIFIER (specifier);
|
|
2628 check_valid_specifier_matchspec (matchspec, XSPECIFIER (specifier)->methods,
|
|
2629 ERROR_ME);
|
|
2630 domain = decode_domain (domain);
|
|
2631
|
280
|
2632 instance = specifier_instance (specifier, matchspec, domain, ERROR_ME,
|
276
|
2633 0, !NILP (no_fallback), Qzero);
|
173
|
2634 return UNBOUNDP (instance) ? default_ : instance;
|
0
|
2635 }
|
|
2636
|
280
|
2637 DEFUN ("specifier-instance-from-inst-list", Fspecifier_instance_from_inst_list,
|
|
2638 3, 4, 0, /*
|
0
|
2639 Attempt to convert a particular inst-list into an instance.
|
|
2640 This attempts to instantiate INST-LIST in the given DOMAIN,
|
|
2641 as if INST-LIST existed in a specification in SPECIFIER. If
|
|
2642 the instantiation fails, DEFAULT is returned. In most circumstances,
|
|
2643 you should not use this function; use `specifier-instance' instead.
|
20
|
2644 */
|
173
|
2645 (specifier, domain, inst_list, default_))
|
0
|
2646 {
|
|
2647 Lisp_Object val = Qunbound;
|
412
|
2648 struct Lisp_Specifier *sp = XSPECIFIER (specifier);
|
0
|
2649 struct gcpro gcpro1;
|
|
2650 Lisp_Object built_up_list = Qnil;
|
|
2651
|
|
2652 CHECK_SPECIFIER (specifier);
|
|
2653 check_valid_domain (domain);
|
|
2654 check_valid_inst_list (inst_list, sp->methods, ERROR_ME);
|
|
2655 GCPRO1 (built_up_list);
|
280
|
2656 built_up_list = build_up_processed_list (specifier, domain, inst_list);
|
0
|
2657 if (!NILP (built_up_list))
|
280
|
2658 val = specifier_instance_from_inst_list (specifier, Qunbound, domain,
|
|
2659 built_up_list, ERROR_ME,
|
|
2660 0, Qzero);
|
0
|
2661 UNGCPRO;
|
173
|
2662 return UNBOUNDP (val) ? default_ : val;
|
0
|
2663 }
|
|
2664
|
280
|
2665 DEFUN ("specifier-matching-instance-from-inst-list", Fspecifier_matching_instance_from_inst_list,
|
|
2666 4, 5, 0, /*
|
0
|
2667 Attempt to convert a particular inst-list into an instance.
|
|
2668 This attempts to instantiate INST-LIST in the given DOMAIN
|
272
|
2669 \(as if INST-LIST existed in a specification in SPECIFIER),
|
0
|
2670 matching the specifications against MATCHSPEC.
|
|
2671
|
|
2672 This function is analogous to `specifier-instance-from-inst-list'
|
|
2673 but allows for specification-matching as in `specifier-matching-instance'.
|
|
2674 See that function for a description of exactly how the matching process
|
|
2675 works.
|
20
|
2676 */
|
173
|
2677 (specifier, matchspec, domain, inst_list, default_))
|
0
|
2678 {
|
|
2679 Lisp_Object val = Qunbound;
|
412
|
2680 struct Lisp_Specifier *sp = XSPECIFIER (specifier);
|
0
|
2681 struct gcpro gcpro1;
|
|
2682 Lisp_Object built_up_list = Qnil;
|
|
2683
|
|
2684 CHECK_SPECIFIER (specifier);
|
|
2685 check_valid_specifier_matchspec (matchspec, XSPECIFIER (specifier)->methods,
|
|
2686 ERROR_ME);
|
|
2687 check_valid_domain (domain);
|
|
2688 check_valid_inst_list (inst_list, sp->methods, ERROR_ME);
|
|
2689 GCPRO1 (built_up_list);
|
280
|
2690 built_up_list = build_up_processed_list (specifier, domain, inst_list);
|
0
|
2691 if (!NILP (built_up_list))
|
280
|
2692 val = specifier_instance_from_inst_list (specifier, matchspec, domain,
|
|
2693 built_up_list, ERROR_ME,
|
|
2694 0, Qzero);
|
0
|
2695 UNGCPRO;
|
173
|
2696 return UNBOUNDP (val) ? default_ : val;
|
0
|
2697 }
|
|
2698
|
|
2699
|
|
2700 /************************************************************************/
|
|
2701 /* Caching in the struct window or frame */
|
|
2702 /************************************************************************/
|
|
2703
|
|
2704 /* Either STRUCT_WINDOW_OFFSET or STRUCT_FRAME_OFFSET can be 0 to indicate
|
|
2705 no caching in that sort of object. */
|
|
2706
|
|
2707 /* #### It would be nice if the specifier caching automatically knew
|
|
2708 about specifier fallbacks, so we didn't have to do it ourselves. */
|
|
2709
|
|
2710 void
|
|
2711 set_specifier_caching (Lisp_Object specifier, int struct_window_offset,
|
|
2712 void (*value_changed_in_window)
|
|
2713 (Lisp_Object specifier, struct window *w,
|
|
2714 Lisp_Object oldval),
|
|
2715 int struct_frame_offset,
|
|
2716 void (*value_changed_in_frame)
|
|
2717 (Lisp_Object specifier, struct frame *f,
|
|
2718 Lisp_Object oldval))
|
|
2719 {
|
412
|
2720 struct Lisp_Specifier *sp = XSPECIFIER (specifier);
|
276
|
2721 assert (!GHOST_SPECIFIER_P (sp));
|
0
|
2722
|
|
2723 if (!sp->caching)
|
185
|
2724 sp->caching = xnew_and_zero (struct specifier_caching);
|
0
|
2725 sp->caching->offset_into_struct_window = struct_window_offset;
|
|
2726 sp->caching->value_changed_in_window = value_changed_in_window;
|
|
2727 sp->caching->offset_into_struct_frame = struct_frame_offset;
|
|
2728 sp->caching->value_changed_in_frame = value_changed_in_frame;
|
|
2729 Vcached_specifiers = Fcons (specifier, Vcached_specifiers);
|
276
|
2730 if (BODILY_SPECIFIER_P (sp))
|
|
2731 GHOST_SPECIFIER(sp)->caching = sp->caching;
|
0
|
2732 recompute_cached_specifier_everywhere (specifier);
|
|
2733 }
|
|
2734
|
|
2735 static void
|
|
2736 recompute_one_cached_specifier_in_window (Lisp_Object specifier,
|
|
2737 struct window *w)
|
|
2738 {
|
272
|
2739 Lisp_Object window;
|
0
|
2740 Lisp_Object newval, *location;
|
|
2741
|
276
|
2742 assert (!GHOST_SPECIFIER_P (XSPECIFIER (specifier)));
|
|
2743
|
0
|
2744 XSETWINDOW (window, w);
|
|
2745
|
|
2746 newval = specifier_instance (specifier, Qunbound, window, ERROR_ME_WARN,
|
|
2747 0, 0, Qzero);
|
|
2748 /* If newval ended up Qunbound, then the calling functions
|
|
2749 better be able to deal. If not, set a default so this
|
|
2750 never happens or correct it in the value_changed_in_window
|
|
2751 method. */
|
|
2752 location = (Lisp_Object *)
|
|
2753 ((char *) w + XSPECIFIER (specifier)->caching->offset_into_struct_window);
|
|
2754 if (!EQ (newval, *location))
|
|
2755 {
|
|
2756 Lisp_Object oldval = *location;
|
|
2757 *location = newval;
|
|
2758 (XSPECIFIER (specifier)->caching->value_changed_in_window)
|
|
2759 (specifier, w, oldval);
|
|
2760 }
|
|
2761 }
|
|
2762
|
|
2763 static void
|
|
2764 recompute_one_cached_specifier_in_frame (Lisp_Object specifier,
|
|
2765 struct frame *f)
|
|
2766 {
|
272
|
2767 Lisp_Object frame;
|
0
|
2768 Lisp_Object newval, *location;
|
|
2769
|
276
|
2770 assert (!GHOST_SPECIFIER_P (XSPECIFIER (specifier)));
|
|
2771
|
0
|
2772 XSETFRAME (frame, f);
|
|
2773
|
|
2774 newval = specifier_instance (specifier, Qunbound, frame, ERROR_ME_WARN,
|
|
2775 0, 0, Qzero);
|
|
2776 /* If newval ended up Qunbound, then the calling functions
|
|
2777 better be able to deal. If not, set a default so this
|
|
2778 never happens or correct it in the value_changed_in_frame
|
|
2779 method. */
|
|
2780 location = (Lisp_Object *)
|
|
2781 ((char *) f + XSPECIFIER (specifier)->caching->offset_into_struct_frame);
|
|
2782 if (!EQ (newval, *location))
|
|
2783 {
|
|
2784 Lisp_Object oldval = *location;
|
|
2785 *location = newval;
|
|
2786 (XSPECIFIER (specifier)->caching->value_changed_in_frame)
|
|
2787 (specifier, f, oldval);
|
|
2788 }
|
|
2789 }
|
|
2790
|
|
2791 void
|
|
2792 recompute_all_cached_specifiers_in_window (struct window *w)
|
|
2793 {
|
|
2794 Lisp_Object rest;
|
|
2795
|
|
2796 LIST_LOOP (rest, Vcached_specifiers)
|
|
2797 {
|
|
2798 Lisp_Object specifier = XCAR (rest);
|
|
2799 if (XSPECIFIER (specifier)->caching->offset_into_struct_window)
|
|
2800 recompute_one_cached_specifier_in_window (specifier, w);
|
|
2801 }
|
|
2802 }
|
|
2803
|
|
2804 void
|
|
2805 recompute_all_cached_specifiers_in_frame (struct frame *f)
|
|
2806 {
|
|
2807 Lisp_Object rest;
|
|
2808
|
|
2809 LIST_LOOP (rest, Vcached_specifiers)
|
|
2810 {
|
|
2811 Lisp_Object specifier = XCAR (rest);
|
|
2812 if (XSPECIFIER (specifier)->caching->offset_into_struct_frame)
|
|
2813 recompute_one_cached_specifier_in_frame (specifier, f);
|
|
2814 }
|
|
2815 }
|
|
2816
|
|
2817 static int
|
|
2818 recompute_cached_specifier_everywhere_mapfun (struct window *w,
|
|
2819 void *closure)
|
|
2820 {
|
|
2821 Lisp_Object specifier = Qnil;
|
|
2822
|
|
2823 VOID_TO_LISP (specifier, closure);
|
|
2824 recompute_one_cached_specifier_in_window (specifier, w);
|
|
2825 return 0;
|
|
2826 }
|
|
2827
|
|
2828 static void
|
|
2829 recompute_cached_specifier_everywhere (Lisp_Object specifier)
|
|
2830 {
|
|
2831 Lisp_Object frmcons, devcons, concons;
|
|
2832
|
276
|
2833 specifier = bodily_specifier (specifier);
|
|
2834
|
0
|
2835 if (!XSPECIFIER (specifier)->caching)
|
|
2836 return;
|
|
2837
|
|
2838 if (XSPECIFIER (specifier)->caching->offset_into_struct_window)
|
|
2839 {
|
|
2840 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
|
|
2841 map_windows (XFRAME (XCAR (frmcons)),
|
|
2842 recompute_cached_specifier_everywhere_mapfun,
|
|
2843 LISP_TO_VOID (specifier));
|
|
2844 }
|
|
2845
|
|
2846 if (XSPECIFIER (specifier)->caching->offset_into_struct_frame)
|
|
2847 {
|
|
2848 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
|
|
2849 recompute_one_cached_specifier_in_frame (specifier,
|
|
2850 XFRAME (XCAR (frmcons)));
|
|
2851 }
|
|
2852 }
|
|
2853
|
20
|
2854 DEFUN ("set-specifier-dirty-flag", Fset_specifier_dirty_flag, 1, 1, 0, /*
|
0
|
2855 Force recomputation of any caches associated with SPECIFIER.
|
|
2856 Note that this automatically happens whenever you change a specification
|
|
2857 in SPECIFIER; you do not have to call this function then.
|
|
2858 One example of where this function is useful is when you have a
|
|
2859 toolbar button whose `active-p' field is an expression to be
|
|
2860 evaluated. Calling `set-specifier-dirty-flag' on the
|
|
2861 toolbar specifier will force the `active-p' fields to be
|
|
2862 recomputed.
|
20
|
2863 */
|
|
2864 (specifier))
|
0
|
2865 {
|
|
2866 CHECK_SPECIFIER (specifier);
|
|
2867 recompute_cached_specifier_everywhere (specifier);
|
|
2868 return Qnil;
|
|
2869 }
|
|
2870
|
|
2871
|
|
2872 /************************************************************************/
|
|
2873 /* Generic specifier type */
|
|
2874 /************************************************************************/
|
|
2875
|
|
2876 DEFINE_SPECIFIER_TYPE (generic);
|
|
2877
|
|
2878 #if 0
|
|
2879
|
|
2880 /* This is the string that used to be in `generic-specifier-p'.
|
|
2881 The idea is good, but it doesn't quite work in the form it's
|
|
2882 in. (One major problem is that validating an instantiator
|
|
2883 is supposed to require only that the specifier type is passed,
|
|
2884 while with this approach the actual specifier is needed.)
|
|
2885
|
|
2886 What really needs to be done is to write a function
|
|
2887 `make-specifier-type' that creates new specifier types.
|
412
|
2888 #### I'll look into this for 19.14.
|
|
2889 */
|
0
|
2890
|
|
2891 "A generic specifier is a generalized kind of specifier with user-defined\n"
|
|
2892 "semantics. The instantiator can be any kind of Lisp object, and the\n"
|
|
2893 "instance computed from it is likewise any kind of Lisp object. The\n"
|
|
2894 "SPECIFIER-DATA should be an alist of methods governing how the specifier\n"
|
|
2895 "works. All methods are optional, and reasonable default methods will be\n"
|
|
2896 "provided. Currently there are two defined methods: 'instantiate and\n"
|
|
2897 "'validate.\n"
|
|
2898 "\n"
|
|
2899 "'instantiate specifies how to do the instantiation; if omitted, the\n"
|
|
2900 "instantiator itself is simply returned as the instance. The method\n"
|
|
2901 "should be a function that accepts three parameters (a specifier, the\n"
|
|
2902 "instantiator that matched the domain being instantiated over, and that\n"
|
|
2903 "domain), and should return a one-element list containing the instance,\n"
|
|
2904 "or nil if no instance exists. Note that the domain passed to this function\n"
|
|
2905 "is the domain being instantiated over, which may not be the same as the\n"
|
|
2906 "locale contained in the specification corresponding to the instantiator\n"
|
|
2907 "(for example, the domain being instantiated over could be a window, but\n"
|
|
2908 "the locale corresponding to the passed instantiator could be the window's\n"
|
|
2909 "buffer or frame).\n"
|
|
2910 "\n"
|
|
2911 "'validate specifies whether a given instantiator is valid; if omitted,\n"
|
|
2912 "all instantiators are considered valid. It should be a function of\n"
|
|
2913 "two arguments: an instantiator and a flag CAN-SIGNAL-ERROR. If this\n"
|
|
2914 "flag is false, the function must simply return t or nil indicating\n"
|
|
2915 "whether the instantiator is valid. If this flag is true, the function\n"
|
|
2916 "is free to signal an error if it encounters an invalid instantiator\n"
|
|
2917 "(this can be useful for issuing a specific error about exactly why the\n"
|
|
2918 "instantiator is valid). It can also return nil to indicate an invalid\n"
|
|
2919 "instantiator; in this case, a general error will be signalled."
|
|
2920
|
|
2921 #endif /* 0 */
|
|
2922
|
20
|
2923 DEFUN ("generic-specifier-p", Fgeneric_specifier_p, 1, 1, 0, /*
|
0
|
2924 Return non-nil if OBJECT is a generic specifier.
|
|
2925
|
412
|
2926 A generic specifier allows any kind of Lisp object as an instantiator,
|
|
2927 and returns back the Lisp object unchanged when it is instantiated.
|
20
|
2928 */
|
|
2929 (object))
|
0
|
2930 {
|
173
|
2931 return GENERIC_SPECIFIERP (object) ? Qt : Qnil;
|
0
|
2932 }
|
|
2933
|
|
2934
|
|
2935 /************************************************************************/
|
|
2936 /* Integer specifier type */
|
|
2937 /************************************************************************/
|
|
2938
|
|
2939 DEFINE_SPECIFIER_TYPE (integer);
|
|
2940
|
|
2941 static void
|
|
2942 integer_validate (Lisp_Object instantiator)
|
|
2943 {
|
|
2944 CHECK_INT (instantiator);
|
|
2945 }
|
|
2946
|
20
|
2947 DEFUN ("integer-specifier-p", Finteger_specifier_p, 1, 1, 0, /*
|
0
|
2948 Return non-nil if OBJECT is an integer specifier.
|
20
|
2949 */
|
|
2950 (object))
|
0
|
2951 {
|
173
|
2952 return INTEGER_SPECIFIERP (object) ? Qt : Qnil;
|
0
|
2953 }
|
|
2954
|
|
2955 /************************************************************************/
|
|
2956 /* Non-negative-integer specifier type */
|
|
2957 /************************************************************************/
|
|
2958
|
|
2959 DEFINE_SPECIFIER_TYPE (natnum);
|
|
2960
|
|
2961 static void
|
|
2962 natnum_validate (Lisp_Object instantiator)
|
|
2963 {
|
|
2964 CHECK_NATNUM (instantiator);
|
|
2965 }
|
|
2966
|
20
|
2967 DEFUN ("natnum-specifier-p", Fnatnum_specifier_p, 1, 1, 0, /*
|
0
|
2968 Return non-nil if OBJECT is a natnum (non-negative-integer) specifier.
|
20
|
2969 */
|
|
2970 (object))
|
0
|
2971 {
|
173
|
2972 return NATNUM_SPECIFIERP (object) ? Qt : Qnil;
|
0
|
2973 }
|
|
2974
|
|
2975 /************************************************************************/
|
|
2976 /* Boolean specifier type */
|
|
2977 /************************************************************************/
|
|
2978
|
|
2979 DEFINE_SPECIFIER_TYPE (boolean);
|
|
2980
|
|
2981 static void
|
|
2982 boolean_validate (Lisp_Object instantiator)
|
|
2983 {
|
|
2984 if (!EQ (instantiator, Qt) && !EQ (instantiator, Qnil))
|
|
2985 signal_simple_error ("Must be t or nil", instantiator);
|
|
2986 }
|
|
2987
|
20
|
2988 DEFUN ("boolean-specifier-p", Fboolean_specifier_p, 1, 1, 0, /*
|
155
|
2989 Return non-nil if OBJECT is a boolean specifier.
|
20
|
2990 */
|
|
2991 (object))
|
0
|
2992 {
|
173
|
2993 return BOOLEAN_SPECIFIERP (object) ? Qt : Qnil;
|
0
|
2994 }
|
|
2995
|
116
|
2996 /************************************************************************/
|
|
2997 /* Display table specifier type */
|
|
2998 /************************************************************************/
|
|
2999
|
|
3000 DEFINE_SPECIFIER_TYPE (display_table);
|
|
3001
|
412
|
3002 #define VALID_SINGLE_DISPTABLE_INSTANTIATOR_P(instantiator) \
|
|
3003 (VECTORP (instantiator) \
|
|
3004 || (CHAR_TABLEP (instantiator) \
|
|
3005 && (XCHAR_TABLE_TYPE (instantiator) == CHAR_TABLE_TYPE_CHAR \
|
|
3006 || XCHAR_TABLE_TYPE (instantiator) == CHAR_TABLE_TYPE_GENERIC)) \
|
384
|
3007 || RANGE_TABLEP (instantiator))
|
|
3008
|
169
|
3009 static void
|
|
3010 display_table_validate (Lisp_Object instantiator)
|
116
|
3011 {
|
384
|
3012 if (NILP (instantiator))
|
|
3013 /* OK */
|
|
3014 ;
|
|
3015 else if (CONSP (instantiator))
|
|
3016 {
|
|
3017 Lisp_Object tail;
|
|
3018 EXTERNAL_LIST_LOOP (tail, instantiator)
|
|
3019 {
|
|
3020 Lisp_Object car = XCAR (tail);
|
|
3021 if (!VALID_SINGLE_DISPTABLE_INSTANTIATOR_P (car))
|
|
3022 goto lose;
|
|
3023 }
|
|
3024 }
|
|
3025 else
|
|
3026 {
|
|
3027 if (!VALID_SINGLE_DISPTABLE_INSTANTIATOR_P (instantiator))
|
|
3028 {
|
|
3029 lose:
|
|
3030 dead_wrong_type_argument (display_table_specifier_methods->predicate_symbol,
|
|
3031 instantiator);
|
|
3032 }
|
|
3033 }
|
116
|
3034 }
|
169
|
3035
|
116
|
3036 DEFUN ("display-table-specifier-p", Fdisplay_table_specifier_p, 1, 1, 0, /*
|
175
|
3037 Return non-nil if OBJECT is a display-table specifier.
|
116
|
3038 */
|
|
3039 (object))
|
|
3040 {
|
173
|
3041 return DISPLAYTABLE_SPECIFIERP (object) ? Qt : Qnil;
|
116
|
3042 }
|
|
3043
|
0
|
3044
|
|
3045 /************************************************************************/
|
|
3046 /* Initialization */
|
|
3047 /************************************************************************/
|
|
3048
|
|
3049 void
|
|
3050 syms_of_specifier (void)
|
|
3051 {
|
|
3052 defsymbol (&Qspecifierp, "specifierp");
|
|
3053
|
|
3054 defsymbol (&Qconsole_type, "console-type");
|
|
3055 defsymbol (&Qdevice_class, "device-class");
|
|
3056
|
|
3057 /* Qinteger, Qboolean, Qgeneric defined in general.c */
|
|
3058 defsymbol (&Qnatnum, "natnum");
|
|
3059
|
20
|
3060 DEFSUBR (Fvalid_specifier_type_p);
|
|
3061 DEFSUBR (Fspecifier_type_list);
|
|
3062 DEFSUBR (Fmake_specifier);
|
|
3063 DEFSUBR (Fspecifierp);
|
|
3064 DEFSUBR (Fspecifier_type);
|
|
3065
|
|
3066 DEFSUBR (Fvalid_specifier_locale_p);
|
|
3067 DEFSUBR (Fvalid_specifier_domain_p);
|
|
3068 DEFSUBR (Fvalid_specifier_locale_type_p);
|
|
3069 DEFSUBR (Fspecifier_locale_type_from_locale);
|
|
3070
|
|
3071 DEFSUBR (Fvalid_specifier_tag_p);
|
|
3072 DEFSUBR (Fvalid_specifier_tag_set_p);
|
|
3073 DEFSUBR (Fcanonicalize_tag_set);
|
|
3074 DEFSUBR (Fdevice_matches_specifier_tag_set_p);
|
|
3075 DEFSUBR (Fdefine_specifier_tag);
|
|
3076 DEFSUBR (Fdevice_matching_specifier_tag_list);
|
|
3077 DEFSUBR (Fspecifier_tag_list);
|
|
3078 DEFSUBR (Fspecifier_tag_predicate);
|
|
3079
|
|
3080 DEFSUBR (Fcheck_valid_instantiator);
|
|
3081 DEFSUBR (Fvalid_instantiator_p);
|
|
3082 DEFSUBR (Fcheck_valid_inst_list);
|
|
3083 DEFSUBR (Fvalid_inst_list_p);
|
|
3084 DEFSUBR (Fcheck_valid_spec_list);
|
|
3085 DEFSUBR (Fvalid_spec_list_p);
|
|
3086 DEFSUBR (Fadd_spec_to_specifier);
|
|
3087 DEFSUBR (Fadd_spec_list_to_specifier);
|
|
3088 DEFSUBR (Fspecifier_spec_list);
|
|
3089 DEFSUBR (Fspecifier_specs);
|
|
3090 DEFSUBR (Fremove_specifier);
|
|
3091 DEFSUBR (Fcopy_specifier);
|
|
3092
|
|
3093 DEFSUBR (Fcheck_valid_specifier_matchspec);
|
|
3094 DEFSUBR (Fvalid_specifier_matchspec_p);
|
|
3095 DEFSUBR (Fspecifier_fallback);
|
|
3096 DEFSUBR (Fspecifier_instance);
|
|
3097 DEFSUBR (Fspecifier_matching_instance);
|
|
3098 DEFSUBR (Fspecifier_instance_from_inst_list);
|
|
3099 DEFSUBR (Fspecifier_matching_instance_from_inst_list);
|
|
3100 DEFSUBR (Fset_specifier_dirty_flag);
|
|
3101
|
|
3102 DEFSUBR (Fgeneric_specifier_p);
|
|
3103 DEFSUBR (Finteger_specifier_p);
|
|
3104 DEFSUBR (Fnatnum_specifier_p);
|
|
3105 DEFSUBR (Fboolean_specifier_p);
|
175
|
3106 DEFSUBR (Fdisplay_table_specifier_p);
|
0
|
3107
|
|
3108 /* Symbols pertaining to specifier creation. Specifiers are created
|
|
3109 in the syms_of() functions. */
|
|
3110
|
|
3111 /* locales are defined in general.c. */
|
|
3112
|
|
3113 defsymbol (&Qprepend, "prepend");
|
412
|
3114 defsymbol (&Qappend, "append");
|
0
|
3115 defsymbol (&Qremove_tag_set_prepend, "remove-tag-set-prepend");
|
|
3116 defsymbol (&Qremove_tag_set_append, "remove-tag-set-append");
|
|
3117 defsymbol (&Qremove_locale, "remove-locale");
|
|
3118 defsymbol (&Qremove_locale_type, "remove-locale-type");
|
|
3119 defsymbol (&Qremove_all, "remove-all");
|
|
3120
|
|
3121 defsymbol (&Qfallback, "fallback");
|
|
3122 }
|
|
3123
|
|
3124 void
|
|
3125 specifier_type_create (void)
|
|
3126 {
|
185
|
3127 the_specifier_type_entry_dynarr = Dynarr_new (specifier_type_entry);
|
0
|
3128
|
|
3129 Vspecifier_type_list = Qnil;
|
|
3130 staticpro (&Vspecifier_type_list);
|
|
3131
|
|
3132 INITIALIZE_SPECIFIER_TYPE (generic, "generic", "generic-specifier-p");
|
|
3133
|
|
3134 INITIALIZE_SPECIFIER_TYPE (integer, "integer", "integer-specifier-p");
|
|
3135
|
|
3136 SPECIFIER_HAS_METHOD (integer, validate);
|
|
3137
|
|
3138 INITIALIZE_SPECIFIER_TYPE (natnum, "natnum", "natnum-specifier-p");
|
|
3139
|
|
3140 SPECIFIER_HAS_METHOD (natnum, validate);
|
|
3141
|
|
3142 INITIALIZE_SPECIFIER_TYPE (boolean, "boolean", "boolean-specifier-p");
|
|
3143
|
|
3144 SPECIFIER_HAS_METHOD (boolean, validate);
|
116
|
3145
|
175
|
3146 INITIALIZE_SPECIFIER_TYPE (display_table, "display-table", "display-table-p");
|
116
|
3147
|
|
3148 SPECIFIER_HAS_METHOD (display_table, validate);
|
0
|
3149 }
|
|
3150
|
|
3151 void
|
|
3152 vars_of_specifier (void)
|
|
3153 {
|
|
3154 Vcached_specifiers = Qnil;
|
|
3155 staticpro (&Vcached_specifiers);
|
|
3156
|
|
3157 /* Do NOT mark through this, or specifiers will never be GC'd.
|
380
|
3158 This is the same deal as for weak hash tables. */
|
0
|
3159 Vall_specifiers = Qnil;
|
|
3160
|
|
3161 Vuser_defined_tags = Qnil;
|
|
3162 staticpro (&Vuser_defined_tags);
|
276
|
3163
|
280
|
3164 Vunlock_ghost_specifiers = Qnil;
|
|
3165 staticpro (&Vunlock_ghost_specifiers);
|
0
|
3166 }
|