]> code.delx.au - gnu-emacs/blob - src/fontset.c
Fix crash in fontset-info
[gnu-emacs] / src / fontset.c
1 /* Fontset handler.
2
3 Copyright (C) 2001-2015 Free Software Foundation, Inc.
4 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 2005, 2006, 2007, 2008, 2009, 2010, 2011
6 National Institute of Advanced Industrial Science and Technology (AIST)
7 Registration Number H14PRO021
8 Copyright (C) 2003, 2006
9 National Institute of Advanced Industrial Science and Technology (AIST)
10 Registration Number H13PRO009
11
12 This file is part of GNU Emacs.
13
14 GNU Emacs is free software: you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 GNU Emacs is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
26
27 #include <config.h>
28 #include <stdio.h>
29
30 #include "lisp.h"
31 #include "blockinput.h"
32 #include "character.h"
33 #include "buffer.h"
34 #include "charset.h"
35 #include "ccl.h"
36 #include "keyboard.h"
37 #include "frame.h"
38 #include "dispextern.h"
39 #include "intervals.h"
40 #include "fontset.h"
41 #include "window.h"
42 #ifdef HAVE_WINDOW_SYSTEM
43 #include TERM_HEADER
44 #endif /* HAVE_WINDOW_SYSTEM */
45 #include "termhooks.h"
46 #include "font.h"
47
48 /* FONTSET
49
50 A fontset is a collection of font related information to give
51 similar appearance (style, etc) of characters. A fontset has two
52 roles. One is to use for the frame parameter `font' as if it is an
53 ASCII font. In that case, Emacs uses the font specified for
54 `ascii' script for the frame's default font.
55
56 Another role, the more important one, is to provide information
57 about which font to use for each non-ASCII character.
58
59 There are two kinds of fontsets; base and realized. A base fontset
60 is created by `new-fontset' from Emacs Lisp explicitly. A realized
61 fontset is created implicitly when a face is realized for ASCII
62 characters. A face is also realized for non-ASCII characters based
63 on an ASCII face. All of non-ASCII faces based on the same ASCII
64 face share the same realized fontset.
65
66 A fontset object is implemented by a char-table whose default value
67 and parent are always nil.
68
69 An element of a base fontset is a vector of FONT-DEFs which itself
70 is a vector [ FONT-SPEC ENCODING REPERTORY ].
71
72 An element of a realized fontset is nil, t, 0, or a vector of this
73 form:
74
75 [ CHARSET-ORDERED-LIST-TICK PREFERRED-RFONT-DEF
76 RFONT-DEF0 RFONT-DEF1 ... ]
77
78 RFONT-DEFn (i.e. Realized FONT-DEF) has this form:
79
80 [ FACE-ID FONT-DEF FONT-OBJECT SORTING-SCORE ]
81
82 RFONT-DEFn are automatically reordered by the current charset
83 priority list.
84
85 The value nil means that we have not yet generated the above vector
86 from the base of the fontset.
87
88 The value t means that no font is available for the corresponding
89 range of characters.
90
91 The value 0 means that no font is available for the corresponding
92 range of characters in this fontset, but may be available in the
93 default fontset.
94
95 A fontset has 8 extra slots.
96
97 The 1st slot:
98 base: the ID number of the fontset
99 realized: Likewise
100
101 The 2nd slot:
102 base: the name of the fontset
103 realized: nil
104
105 The 3rd slot:
106 base: the font name for ASCII characters
107 realized: nil
108
109 The 4th slot:
110 base: nil
111 realized: the base fontset
112
113 The 5th slot:
114 base: nil
115 realized: the frame that the fontset belongs to
116
117 The 6th slot:
118 base: nil
119 realized: the ID number of a face to use for characters that
120 has no font in a realized fontset.
121
122 The 7th slot:
123 base: nil
124 realized: If the base is not the default fontset, a fontset
125 realized from the default fontset, else nil.
126
127 The 8th slot:
128 base: Same as element value (but for fallback fonts).
129 realized: Likewise.
130
131 All fontsets are recorded in the vector Vfontset_table.
132
133
134 DEFAULT FONTSET
135
136 There's a special base fontset named `default fontset' which
137 defines the default font specifications. When a base fontset
138 doesn't specify a font for a specific character, the corresponding
139 value in the default fontset is used.
140
141 The parent of a realized fontset created for such a face that has
142 no fontset is the default fontset.
143
144
145 These structures are hidden from the other codes than this file.
146 The other codes handle fontsets only by their ID numbers. They
147 usually use the variable name `fontset' for IDs. But, in this
148 file, we always use variable name `id' for IDs, and name `fontset'
149 for an actual fontset object, i.e., char-table.
150
151 */
152
153 /********** VARIABLES and FUNCTION PROTOTYPES **********/
154
155 /* Vector containing all fontsets. */
156 static Lisp_Object Vfontset_table;
157
158 /* Next possibly free fontset ID. Usually this keeps the minimum
159 fontset ID not yet used. */
160 static int next_fontset_id;
161
162 /* The default fontset. This gives default FAMILY and REGISTRY of
163 font for each character. */
164 static Lisp_Object Vdefault_fontset;
165
166 /* Prototype declarations for static functions. */
167 static Lisp_Object make_fontset (Lisp_Object, Lisp_Object, Lisp_Object);
168
169 /* Return true if ID is a valid fontset id.
170 Optimized away if ENABLE_CHECKING is not defined. */
171
172 static bool
173 fontset_id_valid_p (int id)
174 {
175 return (id >= 0 && id < ASIZE (Vfontset_table) - 1);
176 }
177
178
179 \f
180 /********** MACROS AND FUNCTIONS TO HANDLE FONTSET **********/
181
182 /* Return the fontset with ID. No check of ID's validness. */
183 #define FONTSET_FROM_ID(id) AREF (Vfontset_table, id)
184
185 /* Access special values of FONTSET. */
186
187 #define FONTSET_ID(fontset) XCHAR_TABLE (fontset)->extras[0]
188 static void
189 set_fontset_id (Lisp_Object fontset, Lisp_Object id)
190 {
191 set_char_table_extras (fontset, 0, id);
192 }
193
194 /* Access special values of (base) FONTSET. */
195
196 #define FONTSET_NAME(fontset) XCHAR_TABLE (fontset)->extras[1]
197 static void
198 set_fontset_name (Lisp_Object fontset, Lisp_Object name)
199 {
200 set_char_table_extras (fontset, 1, name);
201 }
202
203 #define FONTSET_ASCII(fontset) XCHAR_TABLE (fontset)->extras[2]
204 static void
205 set_fontset_ascii (Lisp_Object fontset, Lisp_Object ascii)
206 {
207 set_char_table_extras (fontset, 2, ascii);
208 }
209
210 /* Access special values of (realized) FONTSET. */
211
212 #define FONTSET_BASE(fontset) XCHAR_TABLE (fontset)->extras[3]
213 static void
214 set_fontset_base (Lisp_Object fontset, Lisp_Object base)
215 {
216 set_char_table_extras (fontset, 3, base);
217 }
218
219 #define FONTSET_FRAME(fontset) XCHAR_TABLE (fontset)->extras[4]
220 static void
221 set_fontset_frame (Lisp_Object fontset, Lisp_Object frame)
222 {
223 set_char_table_extras (fontset, 4, frame);
224 }
225
226 #define FONTSET_NOFONT_FACE(fontset) XCHAR_TABLE (fontset)->extras[5]
227 static void
228 set_fontset_nofont_face (Lisp_Object fontset, Lisp_Object face)
229 {
230 set_char_table_extras (fontset, 5, face);
231 }
232
233 #define FONTSET_DEFAULT(fontset) XCHAR_TABLE (fontset)->extras[6]
234 static void
235 set_fontset_default (Lisp_Object fontset, Lisp_Object def)
236 {
237 set_char_table_extras (fontset, 6, def);
238 }
239
240 /* For both base and realized fontset. */
241
242 #define FONTSET_FALLBACK(fontset) XCHAR_TABLE (fontset)->extras[7]
243 static void
244 set_fontset_fallback (Lisp_Object fontset, Lisp_Object fallback)
245 {
246 set_char_table_extras (fontset, 7, fallback);
247 }
248
249 #define BASE_FONTSET_P(fontset) (NILP (FONTSET_BASE (fontset)))
250
251 /* Macros for FONT-DEF and RFONT-DEF of fontset. */
252 #define FONT_DEF_NEW(font_def, font_spec, encoding, repertory) \
253 do { \
254 (font_def) = make_uninit_vector (3); \
255 ASET ((font_def), 0, font_spec); \
256 ASET ((font_def), 1, encoding); \
257 ASET ((font_def), 2, repertory); \
258 } while (0)
259
260 #define FONT_DEF_SPEC(font_def) AREF (font_def, 0)
261 #define FONT_DEF_ENCODING(font_def) AREF (font_def, 1)
262 #define FONT_DEF_REPERTORY(font_def) AREF (font_def, 2)
263
264 #define RFONT_DEF_FACE(rfont_def) AREF (rfont_def, 0)
265 #define RFONT_DEF_SET_FACE(rfont_def, face_id) \
266 ASET ((rfont_def), 0, make_number (face_id))
267 #define RFONT_DEF_FONT_DEF(rfont_def) AREF (rfont_def, 1)
268 #define RFONT_DEF_SPEC(rfont_def) FONT_DEF_SPEC (AREF (rfont_def, 1))
269 #define RFONT_DEF_OBJECT(rfont_def) AREF (rfont_def, 2)
270 #define RFONT_DEF_SET_OBJECT(rfont_def, object) \
271 ASET ((rfont_def), 2, (object))
272 /* Score of RFONT_DEF is an integer value; the lowest 8 bits represent
273 the order of listing by font backends, the higher bits represents
274 the order given by charset priority list. The smaller value is
275 preferable. */
276 #define RFONT_DEF_SCORE(rfont_def) XINT (AREF (rfont_def, 3))
277 #define RFONT_DEF_SET_SCORE(rfont_def, score) \
278 ASET ((rfont_def), 3, make_number (score))
279 #define RFONT_DEF_NEW(rfont_def, font_def) \
280 do { \
281 (rfont_def) = Fmake_vector (make_number (4), Qnil); \
282 ASET ((rfont_def), 1, (font_def)); \
283 RFONT_DEF_SET_SCORE ((rfont_def), 0); \
284 } while (0)
285
286
287 /* Return the element of FONTSET for the character C. If FONTSET is a
288 base fontset other then the default fontset and FONTSET doesn't
289 contain information for C, return the information in the default
290 fontset. */
291
292 #define FONTSET_REF(fontset, c) \
293 (EQ (fontset, Vdefault_fontset) \
294 ? CHAR_TABLE_REF (fontset, c) \
295 : fontset_ref ((fontset), (c)))
296
297 static Lisp_Object
298 fontset_ref (Lisp_Object fontset, int c)
299 {
300 Lisp_Object elt;
301
302 elt = CHAR_TABLE_REF (fontset, c);
303 if (NILP (elt) && ! EQ (fontset, Vdefault_fontset)
304 /* Don't check Vdefault_fontset for a realized fontset. */
305 && NILP (FONTSET_BASE (fontset)))
306 elt = CHAR_TABLE_REF (Vdefault_fontset, c);
307 return elt;
308 }
309
310 /* Set elements of FONTSET for characters in RANGE to the value ELT.
311 RANGE is a cons (FROM . TO), where FROM and TO are character codes
312 specifying a range. */
313
314 #define FONTSET_SET(fontset, range, elt) \
315 Fset_char_table_range ((fontset), (range), (elt))
316
317
318 /* Modify the elements of FONTSET for characters in RANGE by replacing
319 with ELT or adding ELT. RANGE is a cons (FROM . TO), where FROM
320 and TO are character codes specifying a range. If ADD is nil,
321 replace with ELT, if ADD is `prepend', prepend ELT, otherwise,
322 append ELT. */
323
324 #define FONTSET_ADD(fontset, range, elt, add) \
325 (NILP (add) \
326 ? (NILP (range) \
327 ? (set_fontset_fallback \
328 (fontset, Fmake_vector (make_number (1), (elt)))) \
329 : ((void) \
330 Fset_char_table_range (fontset, range, \
331 Fmake_vector (make_number (1), elt)))) \
332 : fontset_add ((fontset), (range), (elt), (add)))
333
334 static void
335 fontset_add (Lisp_Object fontset, Lisp_Object range, Lisp_Object elt, Lisp_Object add)
336 {
337 Lisp_Object args[2];
338 int idx = (EQ (add, Qappend) ? 0 : 1);
339
340 args[1 - idx] = Fmake_vector (make_number (1), elt);
341
342 if (CONSP (range))
343 {
344 int from = XINT (XCAR (range));
345 int to = XINT (XCDR (range));
346 int from1, to1;
347
348 do {
349 from1 = from, to1 = to;
350 args[idx] = char_table_ref_and_range (fontset, from, &from1, &to1);
351 char_table_set_range (fontset, from, to1,
352 (NILP (args[idx]) ? args[1 - idx]
353 : CALLMANY (Fvconcat, args)));
354 from = to1 + 1;
355 } while (from < to);
356 }
357 else
358 {
359 args[idx] = FONTSET_FALLBACK (fontset);
360 set_fontset_fallback (fontset,
361 (NILP (args[idx]) ? args[1 - idx]
362 : CALLMANY (Fvconcat, args)));
363 }
364 }
365
366 static int
367 fontset_compare_rfontdef (const void *val1, const void *val2)
368 {
369 return (RFONT_DEF_SCORE (*(Lisp_Object *) val1)
370 - RFONT_DEF_SCORE (*(Lisp_Object *) val2));
371 }
372
373 /* Update FONT-GROUP which has this form:
374 [ CHARSET-ORDERED-LIST-TICK PREFERRED-RFONT-DEF
375 RFONT-DEF0 RFONT-DEF1 ... ]
376 Reorder RFONT-DEFs according to the current language, and update
377 CHARSET-ORDERED-LIST-TICK.
378
379 If PREFERRED_FAMILY is not nil, that family has the higher priority
380 if the encoding charsets or languages in font-specs are the same. */
381
382 static void
383 reorder_font_vector (Lisp_Object font_group, struct font *font)
384 {
385 Lisp_Object vec, font_object;
386 int size;
387 int i;
388 bool score_changed = false;
389
390 if (font)
391 XSETFONT (font_object, font);
392 else
393 font_object = Qnil;
394
395 vec = XCDR (font_group);
396 size = ASIZE (vec);
397 /* Exclude the tailing nil element from the reordering. */
398 if (NILP (AREF (vec, size - 1)))
399 size--;
400
401 for (i = 0; i < size; i++)
402 {
403 Lisp_Object rfont_def = AREF (vec, i);
404 Lisp_Object font_def = RFONT_DEF_FONT_DEF (rfont_def);
405 Lisp_Object font_spec = FONT_DEF_SPEC (font_def);
406 int score = RFONT_DEF_SCORE (rfont_def) & 0xFF;
407 Lisp_Object otf_spec = Ffont_get (font_spec, QCotf);
408
409 if (! NILP (otf_spec))
410 /* A font-spec with :otf is preferable regardless of encoding
411 and language.. */
412 ;
413 else if (! font_match_p (font_spec, font_object))
414 {
415 Lisp_Object encoding = FONT_DEF_ENCODING (font_def);
416
417 if (! NILP (encoding))
418 {
419 Lisp_Object tail;
420
421 for (tail = Vcharset_ordered_list;
422 ! EQ (tail, Vcharset_non_preferred_head) && CONSP (tail);
423 tail = XCDR (tail))
424 if (EQ (encoding, XCAR (tail)))
425 break;
426 else if (score <= min (INT_MAX, MOST_POSITIVE_FIXNUM) - 0x100)
427 score += 0x100;
428 }
429 else
430 {
431 Lisp_Object lang = Ffont_get (font_spec, QClang);
432
433 if (! NILP (lang)
434 && ! EQ (lang, Vcurrent_iso639_language)
435 && (! CONSP (Vcurrent_iso639_language)
436 || NILP (Fmemq (lang, Vcurrent_iso639_language))))
437 score |= 0x100;
438 }
439 }
440 if (RFONT_DEF_SCORE (rfont_def) != score)
441 {
442 RFONT_DEF_SET_SCORE (rfont_def, score);
443 score_changed = true;
444 }
445 }
446
447 if (score_changed)
448 qsort (XVECTOR (vec)->contents, size, word_size,
449 fontset_compare_rfontdef);
450 EMACS_INT low_tick_bits = charset_ordered_list_tick & MOST_POSITIVE_FIXNUM;
451 XSETCAR (font_group, make_number (low_tick_bits));
452 }
453
454 /* Return a font-group (actually a cons (-1 . FONT-GROUP-VECTOR)) for
455 character C in FONTSET. If C is -1, return a fallback font-group.
456 If C is not -1, the value may be Qt (FONTSET doesn't have a font
457 for C even in the fallback group), or 0 (a font for C may be found
458 only in the fallback group). */
459
460 static Lisp_Object
461 fontset_get_font_group (Lisp_Object fontset, int c)
462 {
463 Lisp_Object font_group;
464 Lisp_Object base_fontset;
465 int from = 0, to = MAX_CHAR, i;
466
467 eassert (! BASE_FONTSET_P (fontset));
468 if (c >= 0)
469 font_group = CHAR_TABLE_REF (fontset, c);
470 else
471 font_group = FONTSET_FALLBACK (fontset);
472 if (! NILP (font_group))
473 return font_group;
474 base_fontset = FONTSET_BASE (fontset);
475 if (NILP (base_fontset))
476 font_group = Qnil;
477 else if (c >= 0)
478 font_group = char_table_ref_and_range (base_fontset, c, &from, &to);
479 else
480 font_group = FONTSET_FALLBACK (base_fontset);
481 if (NILP (font_group))
482 {
483 font_group = make_number (0);
484 if (c >= 0)
485 char_table_set_range (fontset, from, to, font_group);
486 return font_group;
487 }
488 if (!VECTORP (font_group))
489 return font_group;
490 font_group = Fcopy_sequence (font_group);
491 for (i = 0; i < ASIZE (font_group); i++)
492 if (! NILP (AREF (font_group, i)))
493 {
494 Lisp_Object rfont_def;
495
496 RFONT_DEF_NEW (rfont_def, AREF (font_group, i));
497 /* Remember the original order. */
498 RFONT_DEF_SET_SCORE (rfont_def, i);
499 ASET (font_group, i, rfont_def);
500 }
501 font_group = Fcons (make_number (-1), font_group);
502 if (c >= 0)
503 char_table_set_range (fontset, from, to, font_group);
504 else
505 set_fontset_fallback (fontset, font_group);
506 return font_group;
507 }
508
509 /* Return RFONT-DEF (vector) in the realized fontset FONTSET for the
510 character C. If no font is found, return Qnil if there's a
511 possibility that the default fontset or the fallback font groups
512 have a proper font, and return Qt if not.
513
514 If a font is found but is not yet opened, open it (if FACE is not
515 NULL) or return Qnil (if FACE is NULL).
516
517 ID is a charset-id that must be preferred, or -1 meaning no
518 preference.
519
520 If FALLBACK, search only fallback fonts. */
521
522 static Lisp_Object
523 fontset_find_font (Lisp_Object fontset, int c, struct face *face, int id,
524 bool fallback)
525 {
526 Lisp_Object vec, font_group;
527 int i, charset_matched = 0, found_index;
528 struct frame *f = (FRAMEP (FONTSET_FRAME (fontset))
529 ? XFRAME (FONTSET_FRAME (fontset))
530 : XFRAME (selected_frame));
531 Lisp_Object rfont_def;
532
533 font_group = fontset_get_font_group (fontset, fallback ? -1 : c);
534 if (! CONSP (font_group))
535 return font_group;
536 vec = XCDR (font_group);
537 if (ASIZE (vec) == 0)
538 return Qnil;
539
540 if (ASIZE (vec) > 1)
541 {
542 if (XINT (XCAR (font_group)) != charset_ordered_list_tick)
543 /* We have just created the font-group,
544 or the charset priorities were changed. */
545 reorder_font_vector (font_group, face->ascii_face->font);
546 if (id >= 0)
547 /* Find a spec matching with the charset ID to try at
548 first. */
549 for (i = 0; i < ASIZE (vec); i++)
550 {
551 Lisp_Object repertory;
552
553 rfont_def = AREF (vec, i);
554 if (NILP (rfont_def))
555 break;
556 repertory = FONT_DEF_REPERTORY (RFONT_DEF_FONT_DEF (rfont_def));
557
558 if (XINT (repertory) == id)
559 {
560 charset_matched = i;
561 break;
562 }
563 }
564 }
565
566 /* Find the first available font in the vector of RFONT-DEF. */
567 for (i = 0; i < ASIZE (vec); i++)
568 {
569 Lisp_Object font_def;
570 Lisp_Object font_entity, font_object;
571
572 found_index = i;
573 if (i == 0)
574 {
575 if (charset_matched > 0)
576 {
577 /* Try the element matching with the charset ID at first. */
578 found_index = charset_matched;
579 /* Make this negative so that we don't come here in the
580 next loop. */
581 charset_matched = - charset_matched;
582 /* We must try the first element in the next loop. */
583 i--;
584 }
585 }
586 else if (i == - charset_matched)
587 {
588 /* We have already tried this element and the followings
589 that have the same font specifications in the first
590 iteration. So, skip them all. */
591 rfont_def = AREF (vec, i);
592 font_def = RFONT_DEF_FONT_DEF (rfont_def);
593 for (; i + 1 < ASIZE (vec); i++)
594 {
595 rfont_def = AREF (vec, i + 1);
596 if (NILP (rfont_def))
597 break;
598 if (! EQ (RFONT_DEF_FONT_DEF (rfont_def), font_def))
599 break;
600 }
601 continue;
602 }
603
604 rfont_def = AREF (vec, found_index);
605 if (NILP (rfont_def))
606 {
607 if (i < 0)
608 continue;
609 /* This is a sign of not to try the other fonts. */
610 return Qt;
611 }
612 if (INTEGERP (RFONT_DEF_FACE (rfont_def))
613 && XINT (RFONT_DEF_FACE (rfont_def)) < 0)
614 /* We couldn't open this font last time. */
615 continue;
616
617 font_object = RFONT_DEF_OBJECT (rfont_def);
618 if (NILP (font_object))
619 {
620 font_def = RFONT_DEF_FONT_DEF (rfont_def);
621
622 if (! face)
623 /* We have not yet opened the font. */
624 return Qnil;
625 /* Find a font best-matching with the spec without checking
626 the support of the character C. That checking is costly,
627 and even without the checking, the found font supports C
628 in high possibility. */
629 font_entity = font_find_for_lface (f, face->lface,
630 FONT_DEF_SPEC (font_def), -1);
631 if (NILP (font_entity))
632 {
633 /* Record that no font matches the spec. */
634 RFONT_DEF_SET_FACE (rfont_def, -1);
635 continue;
636 }
637 font_object = font_open_for_lface (f, font_entity, face->lface,
638 FONT_DEF_SPEC (font_def));
639 if (NILP (font_object))
640 {
641 /* Something strange happened, perhaps because of a
642 Font-backend problem. Too avoid crashing, record
643 that this spec is unusable. It may be better to find
644 another font of the same spec, but currently we don't
645 have such an API. */
646 RFONT_DEF_SET_FACE (rfont_def, -1);
647 continue;
648 }
649 RFONT_DEF_SET_OBJECT (rfont_def, font_object);
650 }
651
652 if (font_has_char (f, font_object, c))
653 goto found;
654
655 /* Find a font already opened, matching with the current spec,
656 and supporting C. */
657 font_def = RFONT_DEF_FONT_DEF (rfont_def);
658 for (; found_index + 1 < ASIZE (vec); found_index++)
659 {
660 rfont_def = AREF (vec, found_index + 1);
661 if (NILP (rfont_def))
662 break;
663 if (! EQ (RFONT_DEF_FONT_DEF (rfont_def), font_def))
664 break;
665 font_object = RFONT_DEF_OBJECT (rfont_def);
666 if (! NILP (font_object) && font_has_char (f, font_object, c))
667 {
668 found_index++;
669 goto found;
670 }
671 }
672
673 /* Find a font-entity with the current spec and supporting C. */
674 font_entity = font_find_for_lface (f, face->lface,
675 FONT_DEF_SPEC (font_def), c);
676 if (! NILP (font_entity))
677 {
678 /* We found a font. Open it and insert a new element for
679 that font in VEC. */
680 Lisp_Object new_vec;
681 int j;
682
683 font_object = font_open_for_lface (f, font_entity, face->lface,
684 Qnil);
685 if (NILP (font_object))
686 continue;
687 RFONT_DEF_NEW (rfont_def, font_def);
688 RFONT_DEF_SET_OBJECT (rfont_def, font_object);
689 RFONT_DEF_SET_SCORE (rfont_def, RFONT_DEF_SCORE (rfont_def));
690 new_vec = Fmake_vector (make_number (ASIZE (vec) + 1), Qnil);
691 found_index++;
692 for (j = 0; j < found_index; j++)
693 ASET (new_vec, j, AREF (vec, j));
694 ASET (new_vec, j, rfont_def);
695 for (j++; j < ASIZE (new_vec); j++)
696 ASET (new_vec, j, AREF (vec, j - 1));
697 XSETCDR (font_group, new_vec);
698 vec = new_vec;
699 goto found;
700 }
701 if (i >= 0)
702 i = found_index;
703 }
704
705 FONTSET_SET (fontset, make_number (c), make_number (0));
706 return Qnil;
707
708 found:
709 if (fallback && found_index > 0)
710 {
711 /* The order of fonts in the fallback font-group is not that
712 important, and it is better to move the found font to the
713 first of the group so that the next try will find it
714 quickly. */
715 for (i = found_index; i > 0; i--)
716 ASET (vec, i, AREF (vec, i - 1));
717 ASET (vec, 0, rfont_def);
718 }
719 return rfont_def;
720 }
721
722
723 static Lisp_Object
724 fontset_font (Lisp_Object fontset, int c, struct face *face, int id)
725 {
726 Lisp_Object rfont_def, default_rfont_def IF_LINT (= Qnil);
727 Lisp_Object base_fontset;
728
729 /* Try a font-group of FONTSET. */
730 FONT_DEFERRED_LOG ("current fontset: font for", make_number (c), Qnil);
731 rfont_def = fontset_find_font (fontset, c, face, id, 0);
732 if (VECTORP (rfont_def))
733 return rfont_def;
734 if (NILP (rfont_def))
735 FONTSET_SET (fontset, make_number (c), make_number (0));
736
737 /* Try a font-group of the default fontset. */
738 base_fontset = FONTSET_BASE (fontset);
739 if (! EQ (base_fontset, Vdefault_fontset))
740 {
741 if (NILP (FONTSET_DEFAULT (fontset)))
742 set_fontset_default
743 (fontset,
744 make_fontset (FONTSET_FRAME (fontset), Qnil, Vdefault_fontset));
745 FONT_DEFERRED_LOG ("default fontset: font for", make_number (c), Qnil);
746 default_rfont_def
747 = fontset_find_font (FONTSET_DEFAULT (fontset), c, face, id, 0);
748 if (VECTORP (default_rfont_def))
749 return default_rfont_def;
750 if (NILP (default_rfont_def))
751 FONTSET_SET (FONTSET_DEFAULT (fontset), make_number (c),
752 make_number (0));
753 }
754
755 /* Try a fallback font-group of FONTSET. */
756 if (! EQ (rfont_def, Qt))
757 {
758 FONT_DEFERRED_LOG ("current fallback: font for", make_number (c), Qnil);
759 rfont_def = fontset_find_font (fontset, c, face, id, 1);
760 if (VECTORP (rfont_def))
761 return rfont_def;
762 /* Remember that FONTSET has no font for C. */
763 FONTSET_SET (fontset, make_number (c), Qt);
764 }
765
766 /* Try a fallback font-group of the default fontset. */
767 if (! EQ (base_fontset, Vdefault_fontset)
768 && ! EQ (default_rfont_def, Qt))
769 {
770 FONT_DEFERRED_LOG ("default fallback: font for", make_number (c), Qnil);
771 rfont_def = fontset_find_font (FONTSET_DEFAULT (fontset), c, face, id, 1);
772 if (VECTORP (rfont_def))
773 return rfont_def;
774 /* Remember that the default fontset has no font for C. */
775 FONTSET_SET (FONTSET_DEFAULT (fontset), make_number (c), Qt);
776 }
777
778 return Qnil;
779 }
780
781 /* Return a newly created fontset with NAME. If BASE is nil, make a
782 base fontset. Otherwise make a realized fontset whose base is
783 BASE. */
784
785 static Lisp_Object
786 make_fontset (Lisp_Object frame, Lisp_Object name, Lisp_Object base)
787 {
788 Lisp_Object fontset;
789 int size = ASIZE (Vfontset_table);
790 int id = next_fontset_id;
791
792 /* Find a free slot in Vfontset_table. Usually, next_fontset_id is
793 the next available fontset ID. So it is expected that this loop
794 terminates quickly. In addition, as the last element of
795 Vfontset_table is always nil, we don't have to check the range of
796 id. */
797 while (!NILP (AREF (Vfontset_table, id))) id++;
798
799 if (id + 1 == size)
800 Vfontset_table = larger_vector (Vfontset_table, 1, -1);
801
802 fontset = Fmake_char_table (Qfontset, Qnil);
803
804 set_fontset_id (fontset, make_number (id));
805 if (NILP (base))
806 set_fontset_name (fontset, name);
807 else
808 {
809 set_fontset_name (fontset, Qnil);
810 set_fontset_frame (fontset, frame);
811 set_fontset_base (fontset, base);
812 }
813
814 ASET (Vfontset_table, id, fontset);
815 next_fontset_id = id + 1;
816 return fontset;
817 }
818
819 \f
820 /********** INTERFACES TO xfaces.c, xfns.c, and dispextern.h **********/
821
822 /* Return the name of the fontset who has ID. */
823
824 Lisp_Object
825 fontset_name (int id)
826 {
827 Lisp_Object fontset;
828
829 fontset = FONTSET_FROM_ID (id);
830 return FONTSET_NAME (fontset);
831 }
832
833
834 /* Return the ASCII font name of the fontset who has ID. */
835
836 Lisp_Object
837 fontset_ascii (int id)
838 {
839 Lisp_Object fontset, elt;
840
841 fontset= FONTSET_FROM_ID (id);
842 elt = FONTSET_ASCII (fontset);
843 if (CONSP (elt))
844 elt = XCAR (elt);
845 return elt;
846 }
847
848 /* Free fontset of FACE defined on frame F. Called from
849 free_realized_face. */
850
851 void
852 free_face_fontset (struct frame *f, struct face *face)
853 {
854 Lisp_Object fontset;
855
856 fontset = FONTSET_FROM_ID (face->fontset);
857 if (NILP (fontset))
858 return;
859 eassert (! BASE_FONTSET_P (fontset));
860 eassert (f == XFRAME (FONTSET_FRAME (fontset)));
861 ASET (Vfontset_table, face->fontset, Qnil);
862 if (face->fontset < next_fontset_id)
863 next_fontset_id = face->fontset;
864 if (! NILP (FONTSET_DEFAULT (fontset)))
865 {
866 int id = XINT (FONTSET_ID (FONTSET_DEFAULT (fontset)));
867
868 fontset = AREF (Vfontset_table, id);
869 eassert (!NILP (fontset) && ! BASE_FONTSET_P (fontset));
870 eassert (f == XFRAME (FONTSET_FRAME (fontset)));
871 ASET (Vfontset_table, id, Qnil);
872 if (id < next_fontset_id)
873 next_fontset_id = face->fontset;
874 }
875 face->fontset = -1;
876 }
877
878 /* Return ID of face suitable for displaying character C at buffer position
879 POS on frame F. FACE must be realized for ASCII characters in advance.
880 Called from the macro FACE_FOR_CHAR. */
881
882 int
883 face_for_char (struct frame *f, struct face *face, int c,
884 ptrdiff_t pos, Lisp_Object object)
885 {
886 Lisp_Object fontset, rfont_def, charset;
887 int face_id;
888 int id;
889
890 eassert (fontset_id_valid_p (face->fontset));
891
892 if (ASCII_CHAR_P (c) || CHAR_BYTE8_P (c))
893 return face->ascii_face->id;
894
895 if (c > 0 && EQ (CHAR_TABLE_REF (Vchar_script_table, c), Qsymbol))
896 {
897 /* Fonts often have characters for punctuation and other
898 symbols, even if they don't match the 'symbol' script. So
899 check if the character is present in the current ASCII face
900 first, and if so, use the same font as used by that face.
901 This avoids unnecessarily switching to another font when the
902 frame's default font will do. We only do this for symbols so
903 that users could still setup fontsets to force Emacs to use
904 specific fonts for characters from other scripts, because
905 choice of fonts is frequently affected by cultural
906 preferences and font features, not by font coverage.
907 However, these considerations are unlikely to be relevant to
908 punctuation and other symbols, since the latter generally
909 aren't specific to any culture, and don't require
910 sophisticated OTF features. */
911 Lisp_Object font_object;
912
913 if (face->ascii_face->font)
914 {
915 XSETFONT (font_object, face->ascii_face->font);
916 if (font_has_char (f, font_object, c))
917 return face->ascii_face->id;
918 }
919
920 #if 0
921 /* Try the current face. Disabled because it can cause
922 counter-intuitive results, whereby the font used for some
923 character depends on the characters that precede it on
924 display. See the discussion of bug #15138. Note that the
925 original bug reported in #15138 was in a situation where face
926 == face->ascii_face, so the above code solves that situation
927 without risking the undesirable consequences. */
928 if (face->font)
929 {
930 XSETFONT (font_object, face->font);
931 if (font_has_char (f, font_object, c)) return face->id;
932 }
933 #endif
934 }
935
936 fontset = FONTSET_FROM_ID (face->fontset);
937 eassert (!BASE_FONTSET_P (fontset));
938
939 if (pos < 0)
940 {
941 id = -1;
942 charset = Qnil;
943 }
944 else
945 {
946 charset = Fget_char_property (make_number (pos), Qcharset, object);
947 if (CHARSETP (charset))
948 {
949 Lisp_Object val;
950
951 val = assq_no_quit (charset, Vfont_encoding_charset_alist);
952 if (CONSP (val) && CHARSETP (XCDR (val)))
953 charset = XCDR (val);
954 id = XINT (CHARSET_SYMBOL_ID (charset));
955 }
956 else
957 id = -1;
958 }
959
960 rfont_def = fontset_font (fontset, c, face, id);
961 if (VECTORP (rfont_def))
962 {
963 if (INTEGERP (RFONT_DEF_FACE (rfont_def)))
964 face_id = XINT (RFONT_DEF_FACE (rfont_def));
965 else
966 {
967 Lisp_Object font_object;
968
969 font_object = RFONT_DEF_OBJECT (rfont_def);
970 face_id = face_for_font (f, font_object, face);
971 RFONT_DEF_SET_FACE (rfont_def, face_id);
972 }
973 }
974 else
975 {
976 if (INTEGERP (FONTSET_NOFONT_FACE (fontset)))
977 face_id = XINT (FONTSET_NOFONT_FACE (fontset));
978 else
979 {
980 face_id = face_for_font (f, Qnil, face);
981 set_fontset_nofont_face (fontset, make_number (face_id));
982 }
983 }
984 eassert (face_id >= 0);
985 return face_id;
986 }
987
988
989 Lisp_Object
990 font_for_char (struct face *face, int c, ptrdiff_t pos, Lisp_Object object)
991 {
992 Lisp_Object fontset, rfont_def, charset;
993 int id;
994
995 if (ASCII_CHAR_P (c))
996 {
997 Lisp_Object font_object;
998
999 XSETFONT (font_object, face->ascii_face->font);
1000 return font_object;
1001 }
1002
1003 eassert (fontset_id_valid_p (face->fontset));
1004 fontset = FONTSET_FROM_ID (face->fontset);
1005 eassert (!BASE_FONTSET_P (fontset));
1006 if (pos < 0)
1007 {
1008 id = -1;
1009 charset = Qnil;
1010 }
1011 else
1012 {
1013 charset = Fget_char_property (make_number (pos), Qcharset, object);
1014 if (CHARSETP (charset))
1015 {
1016 Lisp_Object val;
1017
1018 val = assq_no_quit (charset, Vfont_encoding_charset_alist);
1019 if (CONSP (val) && CHARSETP (XCDR (val)))
1020 charset = XCDR (val);
1021 id = XINT (CHARSET_SYMBOL_ID (charset));
1022 }
1023 else
1024 id = -1;
1025 }
1026
1027 rfont_def = fontset_font (fontset, c, face, id);
1028 return (VECTORP (rfont_def)
1029 ? RFONT_DEF_OBJECT (rfont_def)
1030 : Qnil);
1031 }
1032
1033
1034 /* Make a realized fontset for ASCII face FACE on frame F from the
1035 base fontset BASE_FONTSET_ID. If BASE_FONTSET_ID is -1, use the
1036 default fontset as the base. Value is the id of the new fontset.
1037 Called from realize_x_face. */
1038
1039 int
1040 make_fontset_for_ascii_face (struct frame *f, int base_fontset_id, struct face *face)
1041 {
1042 Lisp_Object base_fontset, fontset, frame;
1043
1044 XSETFRAME (frame, f);
1045 if (base_fontset_id >= 0)
1046 {
1047 base_fontset = FONTSET_FROM_ID (base_fontset_id);
1048 if (!BASE_FONTSET_P (base_fontset))
1049 base_fontset = FONTSET_BASE (base_fontset);
1050 eassert (BASE_FONTSET_P (base_fontset));
1051 }
1052 else
1053 base_fontset = Vdefault_fontset;
1054
1055 fontset = make_fontset (frame, Qnil, base_fontset);
1056 return XINT (FONTSET_ID (fontset));
1057 }
1058
1059 \f
1060
1061 /* Cache data used by fontset_pattern_regexp. The car part is a
1062 pattern string containing at least one wild card, the cdr part is
1063 the corresponding regular expression. */
1064 static Lisp_Object Vcached_fontset_data;
1065
1066 #define CACHED_FONTSET_NAME SSDATA (XCAR (Vcached_fontset_data))
1067 #define CACHED_FONTSET_REGEX (XCDR (Vcached_fontset_data))
1068
1069 /* If fontset name PATTERN contains any wild card, return regular
1070 expression corresponding to PATTERN. */
1071
1072 static Lisp_Object
1073 fontset_pattern_regexp (Lisp_Object pattern)
1074 {
1075 if (!strchr (SSDATA (pattern), '*')
1076 && !strchr (SSDATA (pattern), '?'))
1077 /* PATTERN does not contain any wild cards. */
1078 return Qnil;
1079
1080 if (!CONSP (Vcached_fontset_data)
1081 || strcmp (SSDATA (pattern), CACHED_FONTSET_NAME))
1082 {
1083 /* We must at first update the cached data. */
1084 unsigned char *regex, *p0, *p1;
1085 int ndashes = 0, nstars = 0, nescs = 0;
1086
1087 for (p0 = SDATA (pattern); *p0; p0++)
1088 {
1089 if (*p0 == '-')
1090 ndashes++;
1091 else if (*p0 == '*')
1092 nstars++;
1093 else if (*p0 == '['
1094 || *p0 == '.' || *p0 == '\\'
1095 || *p0 == '+' || *p0 == '^'
1096 || *p0 == '$')
1097 nescs++;
1098 }
1099
1100 /* If PATTERN is not full XLFD we convert "*" to ".*". Otherwise
1101 we convert "*" to "[^-]*" which is much faster in regular
1102 expression matching. */
1103 ptrdiff_t regexsize = (SBYTES (pattern)
1104 + (ndashes < 14 ? 2 : 5) * nstars
1105 + 2 * nescs + 3);
1106 USE_SAFE_ALLOCA;
1107 p1 = regex = SAFE_ALLOCA (regexsize);
1108
1109 *p1++ = '^';
1110 for (p0 = SDATA (pattern); *p0; p0++)
1111 {
1112 if (*p0 == '*')
1113 {
1114 if (ndashes < 14)
1115 *p1++ = '.';
1116 else
1117 *p1++ = '[', *p1++ = '^', *p1++ = '-', *p1++ = ']';
1118 *p1++ = '*';
1119 }
1120 else if (*p0 == '?')
1121 *p1++ = '.';
1122 else if (*p0 == '['
1123 || *p0 == '.' || *p0 == '\\'
1124 || *p0 == '+' || *p0 == '^'
1125 || *p0 == '$')
1126 *p1++ = '\\', *p1++ = *p0;
1127 else
1128 *p1++ = *p0;
1129 }
1130 *p1++ = '$';
1131 *p1++ = 0;
1132
1133 Vcached_fontset_data = Fcons (build_string (SSDATA (pattern)),
1134 build_string ((char *) regex));
1135 SAFE_FREE ();
1136 }
1137
1138 return CACHED_FONTSET_REGEX;
1139 }
1140
1141 /* Return ID of the base fontset named NAME. If there's no such
1142 fontset, return -1. NAME_PATTERN specifies how to treat NAME as this:
1143 0: pattern containing '*' and '?' as wildcards
1144 1: regular expression
1145 2: literal fontset name
1146 */
1147
1148 int
1149 fs_query_fontset (Lisp_Object name, int name_pattern)
1150 {
1151 Lisp_Object tem;
1152 int i;
1153
1154 name = Fdowncase (name);
1155 if (name_pattern != 1)
1156 {
1157 tem = Frassoc (name, Vfontset_alias_alist);
1158 if (NILP (tem))
1159 tem = Fassoc (name, Vfontset_alias_alist);
1160 if (CONSP (tem) && STRINGP (XCAR (tem)))
1161 name = XCAR (tem);
1162 else if (name_pattern == 0)
1163 {
1164 tem = fontset_pattern_regexp (name);
1165 if (STRINGP (tem))
1166 {
1167 name = tem;
1168 name_pattern = 1;
1169 }
1170 }
1171 }
1172
1173 for (i = 0; i < ASIZE (Vfontset_table); i++)
1174 {
1175 Lisp_Object fontset, this_name;
1176
1177 fontset = FONTSET_FROM_ID (i);
1178 if (NILP (fontset)
1179 || !BASE_FONTSET_P (fontset))
1180 continue;
1181
1182 this_name = FONTSET_NAME (fontset);
1183 if (name_pattern == 1
1184 ? fast_string_match_ignore_case (name, this_name) >= 0
1185 : !xstrcasecmp (SSDATA (name), SSDATA (this_name)))
1186 return i;
1187 }
1188 return -1;
1189 }
1190
1191
1192 DEFUN ("query-fontset", Fquery_fontset, Squery_fontset, 1, 2, 0,
1193 doc: /* Return the name of a fontset that matches PATTERN.
1194 The value is nil if there is no matching fontset.
1195 PATTERN can contain `*' or `?' as a wildcard
1196 just as X font name matching algorithm allows.
1197 If REGEXPP is non-nil, PATTERN is a regular expression. */)
1198 (Lisp_Object pattern, Lisp_Object regexpp)
1199 {
1200 Lisp_Object fontset;
1201 int id;
1202
1203 check_window_system (NULL);
1204
1205 CHECK_STRING (pattern);
1206
1207 if (SCHARS (pattern) == 0)
1208 return Qnil;
1209
1210 id = fs_query_fontset (pattern, !NILP (regexpp));
1211 if (id < 0)
1212 return Qnil;
1213
1214 fontset = FONTSET_FROM_ID (id);
1215 return FONTSET_NAME (fontset);
1216 }
1217
1218 /* Return a list of base fontset names matching PATTERN on frame F. */
1219
1220 Lisp_Object
1221 list_fontsets (struct frame *f, Lisp_Object pattern, int size)
1222 {
1223 Lisp_Object frame, regexp, val;
1224 int id;
1225
1226 XSETFRAME (frame, f);
1227
1228 regexp = fontset_pattern_regexp (pattern);
1229 val = Qnil;
1230
1231 for (id = 0; id < ASIZE (Vfontset_table); id++)
1232 {
1233 Lisp_Object fontset, name;
1234
1235 fontset = FONTSET_FROM_ID (id);
1236 if (NILP (fontset)
1237 || !BASE_FONTSET_P (fontset)
1238 || !EQ (frame, FONTSET_FRAME (fontset)))
1239 continue;
1240 name = FONTSET_NAME (fontset);
1241
1242 if (STRINGP (regexp)
1243 ? (fast_string_match (regexp, name) < 0)
1244 : strcmp (SSDATA (pattern), SSDATA (name)))
1245 continue;
1246
1247 val = Fcons (Fcopy_sequence (FONTSET_NAME (fontset)), val);
1248 }
1249
1250 return val;
1251 }
1252
1253
1254 /* Free all realized fontsets whose base fontset is BASE. */
1255
1256 static void
1257 free_realized_fontsets (Lisp_Object base)
1258 {
1259 int id;
1260
1261 #if 0
1262 /* For the moment, this doesn't work because free_realized_face
1263 doesn't remove FACE from a cache. Until we find a solution, we
1264 suppress this code, and simply use Fclear_face_cache even though
1265 that is not efficient. */
1266 block_input ();
1267 for (id = 0; id < ASIZE (Vfontset_table); id++)
1268 {
1269 Lisp_Object this = AREF (Vfontset_table, id);
1270
1271 if (EQ (FONTSET_BASE (this), base))
1272 {
1273 Lisp_Object tail;
1274
1275 for (tail = FONTSET_FACE_ALIST (this); CONSP (tail);
1276 tail = XCDR (tail))
1277 {
1278 struct frame *f = XFRAME (FONTSET_FRAME (this));
1279 int face_id = XINT (XCDR (XCAR (tail)));
1280 struct face *face = FACE_FROM_ID (f, face_id);
1281
1282 /* Face THIS itself is also freed by the following call. */
1283 free_realized_face (f, face);
1284 }
1285 }
1286 }
1287 unblock_input ();
1288 #else /* not 0 */
1289 /* But, we don't have to call Fclear_face_cache if no fontset has
1290 been realized from BASE. */
1291 for (id = 0; id < ASIZE (Vfontset_table); id++)
1292 {
1293 Lisp_Object this = AREF (Vfontset_table, id);
1294
1295 if (CHAR_TABLE_P (this) && EQ (FONTSET_BASE (this), base))
1296 {
1297 Fclear_face_cache (Qt);
1298 break;
1299 }
1300 }
1301 #endif /* not 0 */
1302 }
1303
1304
1305 /* Check validity of NAME as a fontset name and return the
1306 corresponding fontset. If not valid, signal an error.
1307
1308 If NAME is t, return Vdefault_fontset. If NAME is nil, return the
1309 fontset of *FRAME.
1310
1311 Set *FRAME to the actual frame. */
1312
1313 static Lisp_Object
1314 check_fontset_name (Lisp_Object name, Lisp_Object *frame)
1315 {
1316 int id;
1317 struct frame *f = decode_live_frame (*frame);
1318
1319 XSETFRAME (*frame, f);
1320
1321 if (EQ (name, Qt))
1322 return Vdefault_fontset;
1323 if (NILP (name))
1324 id = FRAME_FONTSET (f);
1325 else
1326 {
1327 CHECK_STRING (name);
1328 /* First try NAME as literal. */
1329 id = fs_query_fontset (name, 2);
1330 if (id < 0)
1331 /* For backward compatibility, try again NAME as pattern. */
1332 id = fs_query_fontset (name, 0);
1333 if (id < 0)
1334 error ("Fontset `%s' does not exist", SDATA (name));
1335 }
1336 return FONTSET_FROM_ID (id);
1337 }
1338
1339 static void
1340 accumulate_script_ranges (Lisp_Object arg, Lisp_Object range, Lisp_Object val)
1341 {
1342 if (EQ (XCAR (arg), val))
1343 {
1344 if (CONSP (range))
1345 XSETCDR (arg, Fcons (Fcons (XCAR (range), XCDR (range)), XCDR (arg)));
1346 else
1347 XSETCDR (arg, Fcons (Fcons (range, range), XCDR (arg)));
1348 }
1349 }
1350
1351
1352 /* Callback function for map_charset_chars in Fset_fontset_font.
1353 ARG is a vector [ FONTSET FONT_DEF ADD ASCII SCRIPT_RANGE_LIST ].
1354
1355 In FONTSET, set FONT_DEF in a fashion specified by ADD for
1356 characters in RANGE and ranges in SCRIPT_RANGE_LIST before RANGE.
1357 The consumed ranges are popped up from SCRIPT_RANGE_LIST, and the
1358 new SCRIPT_RANGE_LIST is stored in ARG.
1359
1360 If ASCII is nil, don't set FONT_DEF for ASCII characters. It is
1361 assured that SCRIPT_RANGE_LIST doesn't contain ASCII in that
1362 case. */
1363
1364 static void
1365 set_fontset_font (Lisp_Object arg, Lisp_Object range)
1366 {
1367 Lisp_Object fontset, font_def, add, ascii, script_range_list;
1368 int from = XINT (XCAR (range)), to = XINT (XCDR (range));
1369
1370 fontset = AREF (arg, 0);
1371 font_def = AREF (arg, 1);
1372 add = AREF (arg, 2);
1373 ascii = AREF (arg, 3);
1374 script_range_list = AREF (arg, 4);
1375
1376 if (NILP (ascii) && from < 0x80)
1377 {
1378 if (to < 0x80)
1379 return;
1380 from = 0x80;
1381 range = Fcons (make_number (0x80), XCDR (range));
1382 }
1383
1384 #define SCRIPT_FROM XINT (XCAR (XCAR (script_range_list)))
1385 #define SCRIPT_TO XINT (XCDR (XCAR (script_range_list)))
1386 #define POP_SCRIPT_RANGE() script_range_list = XCDR (script_range_list)
1387
1388 for (; CONSP (script_range_list) && SCRIPT_TO < from; POP_SCRIPT_RANGE ())
1389 FONTSET_ADD (fontset, XCAR (script_range_list), font_def, add);
1390 if (CONSP (script_range_list))
1391 {
1392 if (SCRIPT_FROM < from)
1393 range = Fcons (make_number (SCRIPT_FROM), XCDR (range));
1394 while (CONSP (script_range_list) && SCRIPT_TO <= to)
1395 POP_SCRIPT_RANGE ();
1396 if (CONSP (script_range_list) && SCRIPT_FROM <= to)
1397 XSETCAR (XCAR (script_range_list), make_number (to + 1));
1398 }
1399
1400 FONTSET_ADD (fontset, range, font_def, add);
1401 ASET (arg, 4, script_range_list);
1402 }
1403
1404 static void update_auto_fontset_alist (Lisp_Object, Lisp_Object);
1405
1406
1407 DEFUN ("set-fontset-font", Fset_fontset_font, Sset_fontset_font, 3, 5, 0,
1408 doc: /*
1409 Modify fontset NAME to use FONT-SPEC for TARGET characters.
1410
1411 NAME is a fontset name string, nil for the fontset of FRAME, or t for
1412 the default fontset.
1413
1414 TARGET may be a cons; (FROM . TO), where FROM and TO are characters.
1415 In that case, use FONT-SPEC for all characters in the range FROM and
1416 TO (inclusive).
1417
1418 TARGET may be a script name symbol. In that case, use FONT-SPEC for
1419 all characters that belong to the script.
1420
1421 TARGET may be a charset. In that case, use FONT-SPEC for all
1422 characters in the charset.
1423
1424 TARGET may be nil. In that case, use FONT-SPEC for any characters for
1425 that no FONT-SPEC is specified.
1426
1427 FONT-SPEC may one of these:
1428 * A font-spec object made by the function `font-spec' (which see).
1429 * A cons (FAMILY . REGISTRY), where FAMILY is a font family name and
1430 REGISTRY is a font registry name. FAMILY may contain foundry
1431 name, and REGISTRY may contain encoding name.
1432 * A font name string.
1433 * nil, which explicitly specifies that there's no font for TARGET.
1434
1435 Optional 4th argument FRAME is a frame or nil for the selected frame
1436 that is concerned in the case that NAME is nil.
1437
1438 Optional 5th argument ADD, if non-nil, specifies how to add FONT-SPEC
1439 to the font specifications for TARGET previously set. If it is
1440 `prepend', FONT-SPEC is prepended. If it is `append', FONT-SPEC is
1441 appended. By default, FONT-SPEC overrides the previous settings. */)
1442 (Lisp_Object name, Lisp_Object target, Lisp_Object font_spec, Lisp_Object frame, Lisp_Object add)
1443 {
1444 Lisp_Object fontset;
1445 Lisp_Object font_def, registry, family;
1446 Lisp_Object range_list;
1447 struct charset *charset = NULL;
1448 Lisp_Object fontname;
1449 bool ascii_changed = 0;
1450
1451 fontset = check_fontset_name (name, &frame);
1452
1453 fontname = Qnil;
1454 if (CONSP (font_spec))
1455 {
1456 Lisp_Object spec = Ffont_spec (0, NULL);
1457
1458 font_parse_family_registry (XCAR (font_spec), XCDR (font_spec), spec);
1459 font_spec = spec;
1460 fontname = Ffont_xlfd_name (font_spec, Qnil);
1461 }
1462 else if (STRINGP (font_spec))
1463 {
1464 fontname = font_spec;
1465 font_spec = CALLN (Ffont_spec, QCname, fontname);
1466 }
1467 else if (FONT_SPEC_P (font_spec))
1468 fontname = Ffont_xlfd_name (font_spec, Qnil);
1469 else if (! NILP (font_spec))
1470 Fsignal (Qfont, list2 (build_string ("Invalid font-spec"), font_spec));
1471
1472 if (! NILP (font_spec))
1473 {
1474 Lisp_Object encoding, repertory;
1475
1476 family = AREF (font_spec, FONT_FAMILY_INDEX);
1477 if (! NILP (family) )
1478 family = SYMBOL_NAME (family);
1479 registry = AREF (font_spec, FONT_REGISTRY_INDEX);
1480 if (! NILP (registry))
1481 registry = Fdowncase (SYMBOL_NAME (registry));
1482 AUTO_STRING (dash, "-");
1483 encoding = find_font_encoding (concat3 (family, dash, registry));
1484 if (NILP (encoding))
1485 encoding = Qascii;
1486
1487 if (SYMBOLP (encoding))
1488 {
1489 CHECK_CHARSET (encoding);
1490 encoding = repertory = CHARSET_SYMBOL_ID (encoding);
1491 }
1492 else
1493 {
1494 repertory = XCDR (encoding);
1495 encoding = XCAR (encoding);
1496 CHECK_CHARSET (encoding);
1497 encoding = CHARSET_SYMBOL_ID (encoding);
1498 if (! NILP (repertory) && SYMBOLP (repertory))
1499 {
1500 CHECK_CHARSET (repertory);
1501 repertory = CHARSET_SYMBOL_ID (repertory);
1502 }
1503 }
1504 FONT_DEF_NEW (font_def, font_spec, encoding, repertory);
1505 }
1506 else
1507 font_def = Qnil;
1508
1509 if (CHARACTERP (target))
1510 {
1511 if (XFASTINT (target) < 0x80)
1512 error ("Can't set a font for partial ASCII range");
1513 range_list = list1 (Fcons (target, target));
1514 }
1515 else if (CONSP (target))
1516 {
1517 Lisp_Object from, to;
1518
1519 from = Fcar (target);
1520 to = Fcdr (target);
1521 CHECK_CHARACTER (from);
1522 CHECK_CHARACTER (to);
1523 if (XFASTINT (from) < 0x80)
1524 {
1525 if (XFASTINT (from) != 0 || XFASTINT (to) < 0x7F)
1526 error ("Can't set a font for partial ASCII range");
1527 ascii_changed = 1;
1528 }
1529 range_list = list1 (target);
1530 }
1531 else if (SYMBOLP (target) && !NILP (target))
1532 {
1533 Lisp_Object script_list;
1534 Lisp_Object val;
1535
1536 range_list = Qnil;
1537 script_list = XCHAR_TABLE (Vchar_script_table)->extras[0];
1538 if (! NILP (Fmemq (target, script_list)))
1539 {
1540 if (EQ (target, Qlatin))
1541 ascii_changed = 1;
1542 val = list1 (target);
1543 map_char_table (accumulate_script_ranges, Qnil, Vchar_script_table,
1544 val);
1545 range_list = Fnreverse (XCDR (val));
1546 }
1547 if (CHARSETP (target))
1548 {
1549 CHECK_CHARSET_GET_CHARSET (target, charset);
1550 if (charset->ascii_compatible_p)
1551 ascii_changed = 1;
1552 }
1553 else if (NILP (range_list))
1554 error ("Invalid script or charset name: %s",
1555 SDATA (SYMBOL_NAME (target)));
1556 }
1557 else if (NILP (target))
1558 range_list = list1 (Qnil);
1559 else
1560 error ("Invalid target for setting a font");
1561
1562 if (ascii_changed)
1563 {
1564 Lisp_Object val;
1565
1566 if (NILP (font_spec))
1567 error ("Can't set ASCII font to nil");
1568 val = CHAR_TABLE_REF (fontset, 0);
1569 if (! NILP (val) && EQ (add, Qappend))
1570 /* We are going to change just an additional font for ASCII. */
1571 ascii_changed = 0;
1572 }
1573
1574 if (charset)
1575 {
1576 Lisp_Object arg;
1577
1578 arg = make_uninit_vector (5);
1579 ASET (arg, 0, fontset);
1580 ASET (arg, 1, font_def);
1581 ASET (arg, 2, add);
1582 ASET (arg, 3, ascii_changed ? Qt : Qnil);
1583 ASET (arg, 4, range_list);
1584
1585 map_charset_chars (set_fontset_font, Qnil, arg, charset,
1586 CHARSET_MIN_CODE (charset),
1587 CHARSET_MAX_CODE (charset));
1588 range_list = AREF (arg, 4);
1589 }
1590 for (; CONSP (range_list); range_list = XCDR (range_list))
1591 FONTSET_ADD (fontset, XCAR (range_list), font_def, add);
1592
1593 if (ascii_changed)
1594 {
1595 Lisp_Object tail, fr;
1596 int fontset_id = XINT (FONTSET_ID (fontset));
1597
1598 set_fontset_ascii (fontset, fontname);
1599 name = FONTSET_NAME (fontset);
1600 FOR_EACH_FRAME (tail, fr)
1601 {
1602 struct frame *f = XFRAME (fr);
1603 Lisp_Object font_object;
1604 struct face *face;
1605
1606 if (FRAME_INITIAL_P (f) || FRAME_TERMCAP_P (f))
1607 continue;
1608 if (fontset_id != FRAME_FONTSET (f))
1609 continue;
1610 face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
1611 if (face)
1612 font_object = font_load_for_lface (f, face->lface, font_spec);
1613 else
1614 font_object = font_open_by_spec (f, font_spec);
1615 if (! NILP (font_object))
1616 {
1617 update_auto_fontset_alist (font_object, fontset);
1618 AUTO_FRAME_ARG (arg, Qfont, Fcons (name, font_object));
1619 Fmodify_frame_parameters (fr, arg);
1620 }
1621 }
1622 }
1623
1624 /* Free all realized fontsets whose base is FONTSET. This way, the
1625 specified character(s) are surely redisplayed by a correct
1626 font. */
1627 free_realized_fontsets (fontset);
1628
1629 return Qnil;
1630 }
1631
1632
1633 DEFUN ("new-fontset", Fnew_fontset, Snew_fontset, 2, 2, 0,
1634 doc: /* Create a new fontset NAME from font information in FONTLIST.
1635
1636 FONTLIST is an alist of scripts vs the corresponding font specification list.
1637 Each element of FONTLIST has the form (SCRIPT FONT-SPEC ...), where a
1638 character of SCRIPT is displayed by a font that matches one of
1639 FONT-SPEC.
1640
1641 SCRIPT is a symbol that appears in the first extra slot of the
1642 char-table `char-script-table'.
1643
1644 FONT-SPEC is a vector, a cons, or a string. See the documentation of
1645 `set-fontset-font' for the meaning. */)
1646 (Lisp_Object name, Lisp_Object fontlist)
1647 {
1648 Lisp_Object fontset;
1649 int id;
1650
1651 CHECK_STRING (name);
1652 CHECK_LIST (fontlist);
1653
1654 name = Fdowncase (name);
1655 id = fs_query_fontset (name, 0);
1656 if (id < 0)
1657 {
1658 Lisp_Object font_spec = Ffont_spec (0, NULL);
1659 Lisp_Object short_name;
1660 char xlfd[256];
1661 int len;
1662
1663 if (font_parse_xlfd (SSDATA (name), SBYTES (name), font_spec) < 0)
1664 error ("Fontset name must be in XLFD format");
1665 short_name = AREF (font_spec, FONT_REGISTRY_INDEX);
1666 if (strncmp (SSDATA (SYMBOL_NAME (short_name)), "fontset-", 8)
1667 || SBYTES (SYMBOL_NAME (short_name)) < 9)
1668 error ("Registry field of fontset name must be \"fontset-*\"");
1669 Vfontset_alias_alist = Fcons (Fcons (name, SYMBOL_NAME (short_name)),
1670 Vfontset_alias_alist);
1671 ASET (font_spec, FONT_REGISTRY_INDEX, Qiso8859_1);
1672 fontset = make_fontset (Qnil, name, Qnil);
1673 len = font_unparse_xlfd (font_spec, 0, xlfd, 256);
1674 if (len < 0)
1675 error ("Invalid fontset name (perhaps too long): %s", SDATA (name));
1676 set_fontset_ascii (fontset, make_unibyte_string (xlfd, len));
1677 }
1678 else
1679 {
1680 fontset = FONTSET_FROM_ID (id);
1681 free_realized_fontsets (fontset);
1682 Fset_char_table_range (fontset, Qt, Qnil);
1683 }
1684
1685 for (; CONSP (fontlist); fontlist = XCDR (fontlist))
1686 {
1687 Lisp_Object elt, script;
1688
1689 elt = XCAR (fontlist);
1690 script = Fcar (elt);
1691 elt = Fcdr (elt);
1692 if (CONSP (elt) && (NILP (XCDR (elt)) || CONSP (XCDR (elt))))
1693 for (; CONSP (elt); elt = XCDR (elt))
1694 Fset_fontset_font (name, script, XCAR (elt), Qnil, Qappend);
1695 else
1696 Fset_fontset_font (name, script, elt, Qnil, Qappend);
1697 }
1698 return name;
1699 }
1700
1701
1702 /* Alist of automatically created fontsets. Each element is a cons
1703 (FONT-SPEC . FONTSET-ID). */
1704 static Lisp_Object auto_fontset_alist;
1705
1706 /* Number of automatically created fontsets. */
1707 static ptrdiff_t num_auto_fontsets;
1708
1709 /* Return a fontset synthesized from FONT-OBJECT. This is called from
1710 x_new_font when FONT-OBJECT is used for the default ASCII font of a
1711 frame, and the returned fontset is used for the default fontset of
1712 that frame. The fontset specifies a font of the same registry as
1713 FONT-OBJECT for all characters in the repertory of the registry
1714 (see Vfont_encoding_alist). If the repertory is not known, the
1715 fontset specifies the font for all Latin characters assuming that a
1716 user intends to use FONT-OBJECT for Latin characters. */
1717
1718 int
1719 fontset_from_font (Lisp_Object font_object)
1720 {
1721 Lisp_Object font_name = font_get_name (font_object);
1722 Lisp_Object font_spec = copy_font_spec (font_object);
1723 Lisp_Object registry = AREF (font_spec, FONT_REGISTRY_INDEX);
1724 Lisp_Object fontset_spec, alias, name, fontset;
1725 Lisp_Object val;
1726
1727 val = assoc_no_quit (font_spec, auto_fontset_alist);
1728 if (CONSP (val))
1729 return XINT (FONTSET_ID (XCDR (val)));
1730 if (num_auto_fontsets++ == 0)
1731 alias = intern ("fontset-startup");
1732 else
1733 {
1734 char temp[sizeof "fontset-auto" + INT_STRLEN_BOUND (ptrdiff_t)];
1735
1736 sprintf (temp, "fontset-auto%"pD"d", num_auto_fontsets - 1);
1737 alias = intern (temp);
1738 }
1739 fontset_spec = copy_font_spec (font_spec);
1740 ASET (fontset_spec, FONT_REGISTRY_INDEX, alias);
1741 name = Ffont_xlfd_name (fontset_spec, Qnil);
1742 eassert (!NILP (name));
1743 fontset = make_fontset (Qnil, name, Qnil);
1744 Vfontset_alias_alist = Fcons (Fcons (name, SYMBOL_NAME (alias)),
1745 Vfontset_alias_alist);
1746 alias = Fdowncase (AREF (font_object, FONT_NAME_INDEX));
1747 Vfontset_alias_alist = Fcons (Fcons (name, alias), Vfontset_alias_alist);
1748 auto_fontset_alist = Fcons (Fcons (font_spec, fontset), auto_fontset_alist);
1749 font_spec = Ffont_spec (0, NULL);
1750 ASET (font_spec, FONT_REGISTRY_INDEX, registry);
1751 {
1752 Lisp_Object target = find_font_encoding (SYMBOL_NAME (registry));
1753
1754 if (CONSP (target))
1755 target = XCDR (target);
1756 if (! CHARSETP (target))
1757 target = Qlatin;
1758 Fset_fontset_font (name, target, font_spec, Qnil, Qnil);
1759 Fset_fontset_font (name, Qnil, font_spec, Qnil, Qnil);
1760 }
1761
1762 set_fontset_ascii (fontset, font_name);
1763
1764 return XINT (FONTSET_ID (fontset));
1765 }
1766
1767
1768 /* Update auto_fontset_alist for FONTSET. When an ASCII font of
1769 FONTSET is changed, we delete an entry of FONTSET if any from
1770 auto_fontset_alist so that FONTSET is not re-used by
1771 fontset_from_font. */
1772
1773 static void
1774 update_auto_fontset_alist (Lisp_Object font_object, Lisp_Object fontset)
1775 {
1776 Lisp_Object prev, tail;
1777
1778 for (prev = Qnil, tail = auto_fontset_alist; CONSP (tail);
1779 prev = tail, tail = XCDR (tail))
1780 if (EQ (fontset, XCDR (XCAR (tail))))
1781 {
1782 if (NILP (prev))
1783 auto_fontset_alist = XCDR (tail);
1784 else
1785 XSETCDR (prev, XCDR (tail));
1786 break;
1787 }
1788 }
1789
1790
1791 /* Return a cons (FONT-OBJECT . GLYPH-CODE).
1792 FONT-OBJECT is the font for the character at POSITION in the current
1793 buffer. This is computed from all the text properties and overlays
1794 that apply to POSITION. POSITION may be nil, in which case,
1795 FONT-SPEC is the font for displaying the character CH with the
1796 default face.
1797
1798 GLYPH-CODE is the glyph code in the font to use for the character.
1799
1800 If the 2nd optional arg CH is non-nil, it is a character to check
1801 the font instead of the character at POSITION.
1802
1803 It returns nil in the following cases:
1804
1805 (1) The window system doesn't have a font for the character (thus
1806 it is displayed by an empty box).
1807
1808 (2) The character code is invalid.
1809
1810 (3) If POSITION is not nil, and the current buffer is not displayed
1811 in any window.
1812
1813 In addition, the returned font name may not take into account of
1814 such redisplay engine hooks as what used in jit-lock-mode if
1815 POSITION is currently not visible. */
1816
1817
1818 DEFUN ("internal-char-font", Finternal_char_font, Sinternal_char_font, 1, 2, 0,
1819 doc: /* For internal use only. */)
1820 (Lisp_Object position, Lisp_Object ch)
1821 {
1822 ptrdiff_t pos, pos_byte, dummy;
1823 int face_id;
1824 int c;
1825 struct frame *f;
1826 struct face *face;
1827
1828 if (NILP (position))
1829 {
1830 CHECK_CHARACTER (ch);
1831 c = XINT (ch);
1832 f = XFRAME (selected_frame);
1833 face_id = lookup_basic_face (f, DEFAULT_FACE_ID);
1834 pos = -1;
1835 }
1836 else
1837 {
1838 Lisp_Object window;
1839 struct window *w;
1840
1841 CHECK_NUMBER_COERCE_MARKER (position);
1842 if (! (BEGV <= XINT (position) && XINT (position) < ZV))
1843 args_out_of_range_3 (position, make_number (BEGV), make_number (ZV));
1844 pos = XINT (position);
1845 pos_byte = CHAR_TO_BYTE (pos);
1846 if (NILP (ch))
1847 c = FETCH_CHAR (pos_byte);
1848 else
1849 {
1850 CHECK_NATNUM (ch);
1851 c = XINT (ch);
1852 }
1853 window = Fget_buffer_window (Fcurrent_buffer (), Qnil);
1854 if (NILP (window))
1855 return Qnil;
1856 w = XWINDOW (window);
1857 f = XFRAME (w->frame);
1858 face_id = face_at_buffer_position (w, pos, &dummy,
1859 pos + 100, false, -1);
1860 }
1861 if (! CHAR_VALID_P (c))
1862 return Qnil;
1863 if (!FRAME_WINDOW_P (f))
1864 return Qnil;
1865 /* We need the basic faces to be valid below, so recompute them if
1866 some code just happened to clear the face cache. */
1867 if (FRAME_FACE_CACHE (f)->used == 0)
1868 recompute_basic_faces (f);
1869 face_id = FACE_FOR_CHAR (f, FACE_FROM_ID (f, face_id), c, pos, Qnil);
1870 face = FACE_FROM_ID (f, face_id);
1871 if (face->font)
1872 {
1873 unsigned code = face->font->driver->encode_char (face->font, c);
1874 Lisp_Object font_object;
1875
1876 if (code == FONT_INVALID_CODE)
1877 return Qnil;
1878 XSETFONT (font_object, face->font);
1879 return Fcons (font_object, INTEGER_TO_CONS (code));
1880 }
1881 return Qnil;
1882 }
1883
1884
1885 DEFUN ("fontset-info", Ffontset_info, Sfontset_info, 1, 2, 0,
1886 doc: /* Return information about a fontset FONTSET on frame FRAME.
1887
1888 FONTSET is a fontset name string, nil for the fontset of FRAME, or t
1889 for the default fontset. FRAME nil means the selected frame.
1890
1891 The value is a char-table whose elements have this form:
1892
1893 ((FONT OPENED-FONT ...) ...)
1894
1895 FONT is a name of font specified for a range of characters.
1896
1897 OPENED-FONT is a name of a font actually opened.
1898
1899 The char-table has one extra slot. If FONTSET is not the default
1900 fontset, the value the extra slot is a char-table containing the
1901 information about the derived fonts from the default fontset. The
1902 format is the same as above. */)
1903 (Lisp_Object fontset, Lisp_Object frame)
1904 {
1905 Lisp_Object *realized[2], fontsets[2], tables[2];
1906 Lisp_Object val, elt;
1907 int c, i, j, k;
1908
1909 check_window_system (NULL);
1910 fontset = check_fontset_name (fontset, &frame);
1911
1912 /* Recode fontsets realized on FRAME from the base fontset FONTSET
1913 in the table `realized'. */
1914 USE_SAFE_ALLOCA;
1915 SAFE_ALLOCA_LISP (realized[0], 2 * ASIZE (Vfontset_table));
1916 realized[1] = realized[0] + ASIZE (Vfontset_table);
1917 for (i = j = 0; i < ASIZE (Vfontset_table); i++)
1918 {
1919 elt = FONTSET_FROM_ID (i);
1920 if (!NILP (elt)
1921 && EQ (FONTSET_BASE (elt), fontset)
1922 && EQ (FONTSET_FRAME (elt), frame))
1923 realized[0][j++] = elt;
1924 }
1925 realized[0][j] = Qnil;
1926
1927 for (i = j = 0; ! NILP (realized[0][i]); i++)
1928 {
1929 elt = FONTSET_DEFAULT (realized[0][i]);
1930 if (! NILP (elt))
1931 realized[1][j++] = elt;
1932 }
1933 realized[1][j] = Qnil;
1934
1935 tables[0] = Fmake_char_table (Qfontset_info, Qnil);
1936 fontsets[0] = fontset;
1937 if (!EQ (fontset, Vdefault_fontset))
1938 {
1939 tables[1] = Fmake_char_table (Qnil, Qnil);
1940 set_char_table_extras (tables[0], 0, tables[1]);
1941 fontsets[1] = Vdefault_fontset;
1942 }
1943
1944 /* Accumulate information of the fontset in TABLE. The format of
1945 each element is ((FONT-SPEC OPENED-FONT ...) ...). */
1946 for (k = 0; k <= 1; k++)
1947 {
1948 for (c = 0; c <= MAX_CHAR; )
1949 {
1950 int from = c, to = MAX_5_BYTE_CHAR;
1951
1952 if (c <= MAX_5_BYTE_CHAR)
1953 {
1954 val = char_table_ref_and_range (fontsets[k], c, &from, &to);
1955 }
1956 else
1957 {
1958 val = FONTSET_FALLBACK (fontsets[k]);
1959 to = MAX_CHAR;
1960 }
1961 if (VECTORP (val))
1962 {
1963 Lisp_Object alist;
1964
1965 /* At first, set ALIST to ((FONT-SPEC) ...). */
1966 for (alist = Qnil, i = 0; i < ASIZE (val); i++)
1967 if (! NILP (AREF (val, i)))
1968 alist = Fcons (Fcons (FONT_DEF_SPEC (AREF (val, i)), Qnil),
1969 alist);
1970 alist = Fnreverse (alist);
1971
1972 /* Then store opened font names to cdr of each elements. */
1973 for (i = 0; ! NILP (realized[k][i]); i++)
1974 {
1975 if (c <= MAX_5_BYTE_CHAR)
1976 val = FONTSET_REF (realized[k][i], c);
1977 else
1978 val = FONTSET_FALLBACK (realized[k][i]);
1979 if (! CONSP (val) || ! VECTORP (XCDR (val)))
1980 continue;
1981 /* VAL: (int . [[FACE-ID FONT-DEF FONT-OBJECT int] ... ]) */
1982 val = XCDR (val);
1983 for (j = 0; j < ASIZE (val); j++)
1984 {
1985 elt = AREF (val, j);
1986 if (!NILP (elt) && FONT_OBJECT_P (RFONT_DEF_OBJECT (elt)))
1987 {
1988 Lisp_Object font_object = RFONT_DEF_OBJECT (elt);
1989 Lisp_Object slot, name;
1990
1991 slot = Fassq (RFONT_DEF_SPEC (elt), alist);
1992 name = AREF (font_object, FONT_NAME_INDEX);
1993 if (NILP (Fmember (name, XCDR (slot))))
1994 nconc2 (slot, list1 (name));
1995 }
1996 }
1997 }
1998
1999 /* Store ALIST in TBL for characters C..TO. */
2000 if (c <= MAX_5_BYTE_CHAR)
2001 char_table_set_range (tables[k], c, to, alist);
2002 else
2003 set_char_table_defalt (tables[k], alist);
2004
2005 /* At last, change each elements to font names. */
2006 for (; CONSP (alist); alist = XCDR (alist))
2007 {
2008 elt = XCAR (alist);
2009 XSETCAR (elt, Ffont_xlfd_name (XCAR (elt), Qnil));
2010 }
2011 }
2012 c = to + 1;
2013 }
2014 if (EQ (fontset, Vdefault_fontset))
2015 break;
2016 }
2017
2018 SAFE_FREE ();
2019 return tables[0];
2020 }
2021
2022
2023 DEFUN ("fontset-font", Ffontset_font, Sfontset_font, 2, 3, 0,
2024 doc: /* Return a font name pattern for character CH in fontset NAME.
2025 If NAME is t, find a pattern in the default fontset.
2026 If NAME is nil, find a pattern in the fontset of the selected frame.
2027
2028 The value has the form (FAMILY . REGISTRY), where FAMILY is a font
2029 family name and REGISTRY is a font registry name. This is actually
2030 the first font name pattern for CH in the fontset or in the default
2031 fontset.
2032
2033 If the 2nd optional arg ALL is non-nil, return a list of all font name
2034 patterns. */)
2035 (Lisp_Object name, Lisp_Object ch, Lisp_Object all)
2036 {
2037 int c;
2038 Lisp_Object fontset, elt, list, repertory, val;
2039 int i, j;
2040 Lisp_Object frame;
2041
2042 frame = Qnil;
2043 fontset = check_fontset_name (name, &frame);
2044
2045 CHECK_CHARACTER (ch);
2046 c = XINT (ch);
2047 list = Qnil;
2048 while (1)
2049 {
2050 for (i = 0, elt = FONTSET_REF (fontset, c); i < 2;
2051 i++, elt = FONTSET_FALLBACK (fontset))
2052 if (VECTORP (elt))
2053 for (j = 0; j < ASIZE (elt); j++)
2054 {
2055 Lisp_Object family, registry;
2056
2057 val = AREF (elt, j);
2058 if (NILP (val))
2059 return Qnil;
2060 repertory = AREF (val, 1);
2061 if (INTEGERP (repertory))
2062 {
2063 struct charset *charset = CHARSET_FROM_ID (XINT (repertory));
2064
2065 if (! CHAR_CHARSET_P (c, charset))
2066 continue;
2067 }
2068 else if (CHAR_TABLE_P (repertory))
2069 {
2070 if (NILP (CHAR_TABLE_REF (repertory, c)))
2071 continue;
2072 }
2073 val = AREF (val, 0);
2074 /* VAL is a FONT-SPEC */
2075 family = AREF (val, FONT_FAMILY_INDEX);
2076 if (! NILP (family))
2077 family = SYMBOL_NAME (family);
2078 registry = AREF (val, FONT_REGISTRY_INDEX);
2079 if (! NILP (registry))
2080 registry = SYMBOL_NAME (registry);
2081 val = Fcons (family, registry);
2082 if (NILP (all))
2083 return val;
2084 list = Fcons (val, list);
2085 }
2086 if (EQ (fontset, Vdefault_fontset))
2087 break;
2088 fontset = Vdefault_fontset;
2089 }
2090 return (Fnreverse (list));
2091 }
2092
2093 DEFUN ("fontset-list", Ffontset_list, Sfontset_list, 0, 0, 0,
2094 doc: /* Return a list of all defined fontset names. */)
2095 (void)
2096 {
2097 Lisp_Object fontset, list;
2098 int i;
2099
2100 list = Qnil;
2101 for (i = 0; i < ASIZE (Vfontset_table); i++)
2102 {
2103 fontset = FONTSET_FROM_ID (i);
2104 if (!NILP (fontset)
2105 && BASE_FONTSET_P (fontset))
2106 list = Fcons (FONTSET_NAME (fontset), list);
2107 }
2108
2109 return list;
2110 }
2111
2112
2113 #ifdef ENABLE_CHECKING
2114
2115 Lisp_Object dump_fontset (Lisp_Object) EXTERNALLY_VISIBLE;
2116
2117 Lisp_Object
2118 dump_fontset (Lisp_Object fontset)
2119 {
2120 Lisp_Object vec;
2121
2122 vec = Fmake_vector (make_number (3), Qnil);
2123 ASET (vec, 0, FONTSET_ID (fontset));
2124
2125 if (BASE_FONTSET_P (fontset))
2126 {
2127 ASET (vec, 1, FONTSET_NAME (fontset));
2128 }
2129 else
2130 {
2131 Lisp_Object frame;
2132
2133 frame = FONTSET_FRAME (fontset);
2134 if (FRAMEP (frame))
2135 {
2136 struct frame *f = XFRAME (frame);
2137
2138 if (FRAME_LIVE_P (f))
2139 ASET (vec, 1,
2140 Fcons (FONTSET_NAME (FONTSET_BASE (fontset)),
2141 f->name));
2142 else
2143 ASET (vec, 1,
2144 Fcons (FONTSET_NAME (FONTSET_BASE (fontset)), Qnil));
2145 }
2146 if (!NILP (FONTSET_DEFAULT (fontset)))
2147 ASET (vec, 2, FONTSET_ID (FONTSET_DEFAULT (fontset)));
2148 }
2149 return vec;
2150 }
2151
2152 DEFUN ("fontset-list-all", Ffontset_list_all, Sfontset_list_all, 0, 0, 0,
2153 doc: /* Return a brief summary of all fontsets for debug use. */)
2154 (void)
2155 {
2156 Lisp_Object val;
2157 int i;
2158
2159 for (i = 0, val = Qnil; i < ASIZE (Vfontset_table); i++)
2160 if (! NILP (AREF (Vfontset_table, i)))
2161 val = Fcons (dump_fontset (AREF (Vfontset_table, i)), val);
2162 return (Fnreverse (val));
2163 }
2164 #endif /* ENABLE_CHECKING */
2165
2166 void
2167 syms_of_fontset (void)
2168 {
2169 DEFSYM (Qfontset, "fontset");
2170 Fput (Qfontset, Qchar_table_extra_slots, make_number (8));
2171 DEFSYM (Qfontset_info, "fontset-info");
2172 Fput (Qfontset_info, Qchar_table_extra_slots, make_number (1));
2173
2174 DEFSYM (Qappend, "append");
2175 DEFSYM (Qlatin, "latin");
2176
2177 Vcached_fontset_data = Qnil;
2178 staticpro (&Vcached_fontset_data);
2179
2180 Vfontset_table = Fmake_vector (make_number (32), Qnil);
2181 staticpro (&Vfontset_table);
2182
2183 Vdefault_fontset = Fmake_char_table (Qfontset, Qnil);
2184 staticpro (&Vdefault_fontset);
2185 set_fontset_id (Vdefault_fontset, make_number (0));
2186 set_fontset_name
2187 (Vdefault_fontset,
2188 build_pure_c_string ("-*-*-*-*-*-*-*-*-*-*-*-*-fontset-default"));
2189 ASET (Vfontset_table, 0, Vdefault_fontset);
2190 next_fontset_id = 1;
2191
2192 auto_fontset_alist = Qnil;
2193 staticpro (&auto_fontset_alist);
2194
2195 DEFVAR_LISP ("font-encoding-charset-alist", Vfont_encoding_charset_alist,
2196 doc: /*
2197 Alist of charsets vs the charsets to determine the preferred font encoding.
2198 Each element looks like (CHARSET . ENCODING-CHARSET),
2199 where ENCODING-CHARSET is a charset registered in the variable
2200 `font-encoding-alist' as ENCODING.
2201
2202 When a text has a property `charset' and the value is CHARSET, a font
2203 whose encoding corresponds to ENCODING-CHARSET is preferred. */);
2204 Vfont_encoding_charset_alist = Qnil;
2205
2206 DEFVAR_LISP ("use-default-ascent", Vuse_default_ascent,
2207 doc: /*
2208 Char table of characters whose ascent values should be ignored.
2209 If an entry for a character is non-nil, the ascent value of the glyph
2210 is assumed to be specified by _MULE_DEFAULT_ASCENT property of a font.
2211
2212 This affects how a composite character which contains
2213 such a character is displayed on screen. */);
2214 Vuse_default_ascent = Qnil;
2215
2216 DEFVAR_LISP ("ignore-relative-composition", Vignore_relative_composition,
2217 doc: /*
2218 Char table of characters which are not composed relatively.
2219 If an entry for a character is non-nil, a composition sequence
2220 which contains that character is displayed so that
2221 the glyph of that character is put without considering
2222 an ascent and descent value of a previous character. */);
2223 Vignore_relative_composition = Qnil;
2224
2225 DEFVAR_LISP ("alternate-fontname-alist", Valternate_fontname_alist,
2226 doc: /* Alist of fontname vs list of the alternate fontnames.
2227 When a specified font name is not found, the corresponding
2228 alternate fontnames (if any) are tried instead. */);
2229 Valternate_fontname_alist = Qnil;
2230
2231 DEFVAR_LISP ("fontset-alias-alist", Vfontset_alias_alist,
2232 doc: /* Alist of fontset names vs the aliases. */);
2233 Vfontset_alias_alist
2234 = list1 (Fcons (FONTSET_NAME (Vdefault_fontset),
2235 build_pure_c_string ("fontset-default")));
2236
2237 DEFVAR_LISP ("vertical-centering-font-regexp",
2238 Vvertical_centering_font_regexp,
2239 doc: /* Regexp matching font names that require vertical centering on display.
2240 When a character is displayed with such fonts, the character is displayed
2241 at the vertical center of lines. */);
2242 Vvertical_centering_font_regexp = Qnil;
2243
2244 DEFVAR_LISP ("otf-script-alist", Votf_script_alist,
2245 doc: /* Alist of OpenType script tags vs the corresponding script names. */);
2246 Votf_script_alist = Qnil;
2247
2248 defsubr (&Squery_fontset);
2249 defsubr (&Snew_fontset);
2250 defsubr (&Sset_fontset_font);
2251 defsubr (&Sinternal_char_font);
2252 defsubr (&Sfontset_info);
2253 defsubr (&Sfontset_font);
2254 defsubr (&Sfontset_list);
2255 #ifdef ENABLE_CHECKING
2256 defsubr (&Sfontset_list_all);
2257 #endif
2258 }