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