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