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