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