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