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