* font.c (font_list_entities): Do not add empty vector to font cache.
[bpt/emacs.git] / src / font.c
1 /* font.c -- "Font" primitives.
2
3 Copyright (C) 2006-2014 Free Software Foundation, Inc.
4 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011
5 National Institute of Advanced Industrial Science and Technology (AIST)
6 Registration Number H13PRO009
7
8 This file is part of GNU Emacs.
9
10 GNU Emacs is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
14
15 GNU Emacs is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
22
23 #include <config.h>
24 #include <float.h>
25 #include <stdio.h>
26
27 #include <c-ctype.h>
28
29 #include "lisp.h"
30 #include "character.h"
31 #include "buffer.h"
32 #include "frame.h"
33 #include "window.h"
34 #include "dispextern.h"
35 #include "charset.h"
36 #include "composite.h"
37 #include "fontset.h"
38 #include "font.h"
39
40 #ifdef HAVE_WINDOW_SYSTEM
41 #include TERM_HEADER
42 #endif /* HAVE_WINDOW_SYSTEM */
43
44 Lisp_Object Qopentype;
45
46 /* Important character set strings. */
47 Lisp_Object Qascii_0, Qiso8859_1, Qiso10646_1, Qunicode_bmp, Qunicode_sip;
48
49 #define DEFAULT_ENCODING Qiso8859_1
50
51 /* Unicode category `Cf'. */
52 static Lisp_Object QCf;
53
54 /* Vector of Vfont_weight_table, Vfont_slant_table, and Vfont_width_table. */
55 static Lisp_Object font_style_table;
56
57 /* Structure used for tables mapping weight, slant, and width numeric
58 values and their names. */
59
60 struct table_entry
61 {
62 int numeric;
63 /* The first one is a valid name as a face attribute.
64 The second one (if any) is a typical name in XLFD field. */
65 const char *names[5];
66 };
67
68 /* Table of weight numeric values and their names. This table must be
69 sorted by numeric values in ascending order. */
70
71 static const struct table_entry weight_table[] =
72 {
73 { 0, { "thin" }},
74 { 20, { "ultra-light", "ultralight" }},
75 { 40, { "extra-light", "extralight" }},
76 { 50, { "light" }},
77 { 75, { "semi-light", "semilight", "demilight", "book" }},
78 { 100, { "normal", "medium", "regular", "unspecified" }},
79 { 180, { "semi-bold", "semibold", "demibold", "demi" }},
80 { 200, { "bold" }},
81 { 205, { "extra-bold", "extrabold" }},
82 { 210, { "ultra-bold", "ultrabold", "black" }}
83 };
84
85 /* Table of slant numeric values and their names. This table must be
86 sorted by numeric values in ascending order. */
87
88 static const struct table_entry slant_table[] =
89 {
90 { 0, { "reverse-oblique", "ro" }},
91 { 10, { "reverse-italic", "ri" }},
92 { 100, { "normal", "r", "unspecified" }},
93 { 200, { "italic" ,"i", "ot" }},
94 { 210, { "oblique", "o" }}
95 };
96
97 /* Table of width numeric values and their names. This table must be
98 sorted by numeric values in ascending order. */
99
100 static const struct table_entry width_table[] =
101 {
102 { 50, { "ultra-condensed", "ultracondensed" }},
103 { 63, { "extra-condensed", "extracondensed" }},
104 { 75, { "condensed", "compressed", "narrow" }},
105 { 87, { "semi-condensed", "semicondensed", "demicondensed" }},
106 { 100, { "normal", "medium", "regular", "unspecified" }},
107 { 113, { "semi-expanded", "semiexpanded", "demiexpanded" }},
108 { 125, { "expanded" }},
109 { 150, { "extra-expanded", "extraexpanded" }},
110 { 200, { "ultra-expanded", "ultraexpanded", "wide" }}
111 };
112
113 Lisp_Object QCfoundry;
114 static Lisp_Object QCadstyle, QCregistry;
115 /* Symbols representing keys of font extra info. */
116 Lisp_Object QCspacing, QCdpi, QCscalable, QCotf, QClang, QCscript, QCavgwidth;
117 Lisp_Object QCantialias, QCfont_entity;
118 static Lisp_Object QCfc_unknown_spec;
119 /* Symbols representing values of font spacing property. */
120 static Lisp_Object Qc, Qm, Qd;
121 Lisp_Object Qp;
122 /* Special ADSTYLE properties to avoid fonts used for Latin
123 characters; used in xfont.c and ftfont.c. */
124 Lisp_Object Qja, Qko;
125
126 static Lisp_Object QCuser_spec;
127
128 /* Alist of font registry symbols and the corresponding charset
129 information. The information is retrieved from
130 Vfont_encoding_alist on demand.
131
132 Eash element has the form:
133 (REGISTRY . (ENCODING-CHARSET-ID . REPERTORY-CHARSET-ID))
134 or
135 (REGISTRY . nil)
136
137 In the former form, ENCODING-CHARSET-ID is an ID of a charset that
138 encodes a character code to a glyph code of a font, and
139 REPERTORY-CHARSET-ID is an ID of a charset that tells if a
140 character is supported by a font.
141
142 The latter form means that the information for REGISTRY couldn't be
143 retrieved. */
144 static Lisp_Object font_charset_alist;
145
146 /* List of all font drivers. Each font-backend (XXXfont.c) calls
147 register_font_driver in syms_of_XXXfont to register its font-driver
148 here. */
149 static struct font_driver_list *font_driver_list;
150
151 #ifdef ENABLE_CHECKING
152
153 /* Used to catch bogus pointers in font objects. */
154
155 bool
156 valid_font_driver (struct font_driver *drv)
157 {
158 Lisp_Object tail, frame;
159 struct font_driver_list *fdl;
160
161 for (fdl = font_driver_list; fdl; fdl = fdl->next)
162 if (fdl->driver == drv)
163 return true;
164 FOR_EACH_FRAME (tail, frame)
165 for (fdl = XFRAME (frame)->font_driver_list; fdl; fdl = fdl->next)
166 if (fdl->driver == drv)
167 return true;
168 return false;
169 }
170
171 #endif /* ENABLE_CHECKING */
172
173 /* Creators of font-related Lisp object. */
174
175 static Lisp_Object
176 font_make_spec (void)
177 {
178 Lisp_Object font_spec;
179 struct font_spec *spec
180 = ((struct font_spec *)
181 allocate_pseudovector (VECSIZE (struct font_spec),
182 FONT_SPEC_MAX, PVEC_FONT));
183 XSETFONT (font_spec, spec);
184 return font_spec;
185 }
186
187 Lisp_Object
188 font_make_entity (void)
189 {
190 Lisp_Object font_entity;
191 struct font_entity *entity
192 = ((struct font_entity *)
193 allocate_pseudovector (VECSIZE (struct font_entity),
194 FONT_ENTITY_MAX, PVEC_FONT));
195 XSETFONT (font_entity, entity);
196 return font_entity;
197 }
198
199 /* Create a font-object whose structure size is SIZE. If ENTITY is
200 not nil, copy properties from ENTITY to the font-object. If
201 PIXELSIZE is positive, set the `size' property to PIXELSIZE. */
202 Lisp_Object
203 font_make_object (int size, Lisp_Object entity, int pixelsize)
204 {
205 Lisp_Object font_object;
206 struct font *font
207 = (struct font *) allocate_pseudovector (size, FONT_OBJECT_MAX, PVEC_FONT);
208 int i;
209
210 XSETFONT (font_object, font);
211
212 if (! NILP (entity))
213 {
214 for (i = 1; i < FONT_SPEC_MAX; i++)
215 font->props[i] = AREF (entity, i);
216 if (! NILP (AREF (entity, FONT_EXTRA_INDEX)))
217 font->props[FONT_EXTRA_INDEX]
218 = Fcopy_alist (AREF (entity, FONT_EXTRA_INDEX));
219 }
220 if (size > 0)
221 font->props[FONT_SIZE_INDEX] = make_number (pixelsize);
222 return font_object;
223 }
224
225 \f
226
227 static int font_pixel_size (struct frame *f, Lisp_Object);
228 static Lisp_Object font_open_entity (struct frame *, Lisp_Object, int);
229 static Lisp_Object font_matching_entity (struct frame *, Lisp_Object *,
230 Lisp_Object);
231 static unsigned font_encode_char (Lisp_Object, int);
232
233 /* Number of registered font drivers. */
234 static int num_font_drivers;
235
236
237 /* Return a Lispy value of a font property value at STR and LEN bytes.
238 If STR is "*", return nil. If FORCE_SYMBOL, or if STR does not
239 consist entirely of one or more digits, return a symbol interned
240 from STR. Otherwise, return an integer. */
241
242 Lisp_Object
243 font_intern_prop (const char *str, ptrdiff_t len, bool force_symbol)
244 {
245 ptrdiff_t i;
246 Lisp_Object tem;
247 Lisp_Object obarray;
248 ptrdiff_t nbytes, nchars;
249
250 if (len == 1 && *str == '*')
251 return Qnil;
252 if (!force_symbol && 0 < len && '0' <= *str && *str <= '9')
253 {
254 for (i = 1; i < len; i++)
255 if (! ('0' <= str[i] && str[i] <= '9'))
256 break;
257 if (i == len)
258 {
259 EMACS_INT n;
260
261 i = 0;
262 for (n = 0; (n += str[i++] - '0') <= MOST_POSITIVE_FIXNUM; n *= 10)
263 {
264 if (i == len)
265 return make_number (n);
266 if (MOST_POSITIVE_FIXNUM / 10 < n)
267 break;
268 }
269
270 xsignal1 (Qoverflow_error, make_string (str, len));
271 }
272 }
273
274 /* This code is similar to intern function from lread.c. */
275 obarray = check_obarray (Vobarray);
276 parse_str_as_multibyte ((unsigned char *) str, len, &nchars, &nbytes);
277 tem = oblookup (obarray, str,
278 (len == nchars || len != nbytes) ? len : nchars, len);
279
280 if (SYMBOLP (tem))
281 return tem;
282 if (len == nchars || len != nbytes)
283 tem = make_unibyte_string (str, len);
284 else
285 tem = make_multibyte_string (str, nchars, len);
286 return Fintern (tem, obarray);
287 }
288
289 /* Return a pixel size of font-spec SPEC on frame F. */
290
291 static int
292 font_pixel_size (struct frame *f, Lisp_Object spec)
293 {
294 #ifdef HAVE_WINDOW_SYSTEM
295 Lisp_Object size = AREF (spec, FONT_SIZE_INDEX);
296 double point_size;
297 int dpi, pixel_size;
298 Lisp_Object val;
299
300 if (INTEGERP (size))
301 return XINT (size);
302 if (NILP (size))
303 return 0;
304 eassert (FLOATP (size));
305 point_size = XFLOAT_DATA (size);
306 val = AREF (spec, FONT_DPI_INDEX);
307 if (INTEGERP (val))
308 dpi = XINT (val);
309 else
310 dpi = FRAME_RES_Y (f);
311 pixel_size = POINT_TO_PIXEL (point_size, dpi);
312 return pixel_size;
313 #else
314 return 1;
315 #endif
316 }
317
318
319 /* Return a value of PROP's VAL (symbol or integer) to be stored in a
320 font vector. If VAL is not valid (i.e. not registered in
321 font_style_table), return -1 if NOERROR is zero, and return a
322 proper index if NOERROR is nonzero. In that case, register VAL in
323 font_style_table if VAL is a symbol, and return the closest index if
324 VAL is an integer. */
325
326 int
327 font_style_to_value (enum font_property_index prop, Lisp_Object val,
328 bool noerror)
329 {
330 Lisp_Object table = AREF (font_style_table, prop - FONT_WEIGHT_INDEX);
331 int len;
332
333 CHECK_VECTOR (table);
334 len = ASIZE (table);
335
336 if (SYMBOLP (val))
337 {
338 int i, j;
339 char *s;
340 Lisp_Object args[2], elt;
341
342 /* At first try exact match. */
343 for (i = 0; i < len; i++)
344 {
345 CHECK_VECTOR (AREF (table, i));
346 for (j = 1; j < ASIZE (AREF (table, i)); j++)
347 if (EQ (val, AREF (AREF (table, i), j)))
348 {
349 CHECK_NUMBER (AREF (AREF (table, i), 0));
350 return ((XINT (AREF (AREF (table, i), 0)) << 8)
351 | (i << 4) | (j - 1));
352 }
353 }
354 /* Try also with case-folding match. */
355 s = SSDATA (SYMBOL_NAME (val));
356 for (i = 0; i < len; i++)
357 for (j = 1; j < ASIZE (AREF (table, i)); j++)
358 {
359 elt = AREF (AREF (table, i), j);
360 if (xstrcasecmp (s, SSDATA (SYMBOL_NAME (elt))) == 0)
361 {
362 CHECK_NUMBER (AREF (AREF (table, i), 0));
363 return ((XINT (AREF (AREF (table, i), 0)) << 8)
364 | (i << 4) | (j - 1));
365 }
366 }
367 if (! noerror)
368 return -1;
369 eassert (len < 255);
370 elt = Fmake_vector (make_number (2), make_number (100));
371 ASET (elt, 1, val);
372 args[0] = table;
373 args[1] = Fmake_vector (make_number (1), elt);
374 ASET (font_style_table, prop - FONT_WEIGHT_INDEX, Fvconcat (2, args));
375 return (100 << 8) | (i << 4);
376 }
377 else
378 {
379 int i, last_n;
380 EMACS_INT numeric = XINT (val);
381
382 for (i = 0, last_n = -1; i < len; i++)
383 {
384 int n;
385
386 CHECK_VECTOR (AREF (table, i));
387 CHECK_NUMBER (AREF (AREF (table, i), 0));
388 n = XINT (AREF (AREF (table, i), 0));
389 if (numeric == n)
390 return (n << 8) | (i << 4);
391 if (numeric < n)
392 {
393 if (! noerror)
394 return -1;
395 return ((i == 0 || n - numeric < numeric - last_n)
396 ? (n << 8) | (i << 4): (last_n << 8 | ((i - 1) << 4)));
397 }
398 last_n = n;
399 }
400 if (! noerror)
401 return -1;
402 return ((last_n << 8) | ((i - 1) << 4));
403 }
404 }
405
406 Lisp_Object
407 font_style_symbolic (Lisp_Object font, enum font_property_index prop,
408 bool for_face)
409 {
410 Lisp_Object val = AREF (font, prop);
411 Lisp_Object table, elt;
412 int i;
413
414 if (NILP (val))
415 return Qnil;
416 table = AREF (font_style_table, prop - FONT_WEIGHT_INDEX);
417 CHECK_VECTOR (table);
418 i = XINT (val) & 0xFF;
419 eassert (((i >> 4) & 0xF) < ASIZE (table));
420 elt = AREF (table, ((i >> 4) & 0xF));
421 CHECK_VECTOR (elt);
422 eassert ((i & 0xF) + 1 < ASIZE (elt));
423 elt = (for_face ? AREF (elt, 1) : AREF (elt, (i & 0xF) + 1));
424 CHECK_SYMBOL (elt);
425 return elt;
426 }
427
428 /* Return ENCODING or a cons of ENCODING and REPERTORY of the font
429 FONTNAME. ENCODING is a charset symbol that specifies the encoding
430 of the font. REPERTORY is a charset symbol or nil. */
431
432 Lisp_Object
433 find_font_encoding (Lisp_Object fontname)
434 {
435 Lisp_Object tail, elt;
436
437 for (tail = Vfont_encoding_alist; CONSP (tail); tail = XCDR (tail))
438 {
439 elt = XCAR (tail);
440 if (CONSP (elt)
441 && STRINGP (XCAR (elt))
442 && fast_string_match_ignore_case (XCAR (elt), fontname) >= 0
443 && (SYMBOLP (XCDR (elt))
444 ? CHARSETP (XCDR (elt))
445 : CONSP (XCDR (elt)) && CHARSETP (XCAR (XCDR (elt)))))
446 return (XCDR (elt));
447 }
448 return Qnil;
449 }
450
451 /* Return encoding charset and repertory charset for REGISTRY in
452 ENCODING and REPERTORY correspondingly. If correct information for
453 REGISTRY is available, return 0. Otherwise return -1. */
454
455 int
456 font_registry_charsets (Lisp_Object registry, struct charset **encoding, struct charset **repertory)
457 {
458 Lisp_Object val;
459 int encoding_id, repertory_id;
460
461 val = Fassoc_string (registry, font_charset_alist, Qt);
462 if (! NILP (val))
463 {
464 val = XCDR (val);
465 if (NILP (val))
466 return -1;
467 encoding_id = XINT (XCAR (val));
468 repertory_id = XINT (XCDR (val));
469 }
470 else
471 {
472 val = find_font_encoding (SYMBOL_NAME (registry));
473 if (SYMBOLP (val) && CHARSETP (val))
474 {
475 encoding_id = repertory_id = XINT (CHARSET_SYMBOL_ID (val));
476 }
477 else if (CONSP (val))
478 {
479 if (! CHARSETP (XCAR (val)))
480 goto invalid_entry;
481 encoding_id = XINT (CHARSET_SYMBOL_ID (XCAR (val)));
482 if (NILP (XCDR (val)))
483 repertory_id = -1;
484 else
485 {
486 if (! CHARSETP (XCDR (val)))
487 goto invalid_entry;
488 repertory_id = XINT (CHARSET_SYMBOL_ID (XCDR (val)));
489 }
490 }
491 else
492 goto invalid_entry;
493 val = Fcons (make_number (encoding_id), make_number (repertory_id));
494 font_charset_alist
495 = nconc2 (font_charset_alist, list1 (Fcons (registry, val)));
496 }
497
498 if (encoding)
499 *encoding = CHARSET_FROM_ID (encoding_id);
500 if (repertory)
501 *repertory = repertory_id >= 0 ? CHARSET_FROM_ID (repertory_id) : NULL;
502 return 0;
503
504 invalid_entry:
505 font_charset_alist
506 = nconc2 (font_charset_alist, list1 (Fcons (registry, Qnil)));
507 return -1;
508 }
509
510 \f
511 /* Font property value validators. See the comment of
512 font_property_table for the meaning of the arguments. */
513
514 static Lisp_Object font_prop_validate (int, Lisp_Object, Lisp_Object);
515 static Lisp_Object font_prop_validate_symbol (Lisp_Object, Lisp_Object);
516 static Lisp_Object font_prop_validate_style (Lisp_Object, Lisp_Object);
517 static Lisp_Object font_prop_validate_non_neg (Lisp_Object, Lisp_Object);
518 static Lisp_Object font_prop_validate_spacing (Lisp_Object, Lisp_Object);
519 static int get_font_prop_index (Lisp_Object);
520
521 static Lisp_Object
522 font_prop_validate_symbol (Lisp_Object prop, Lisp_Object val)
523 {
524 if (STRINGP (val))
525 val = Fintern (val, Qnil);
526 if (! SYMBOLP (val))
527 val = Qerror;
528 else if (EQ (prop, QCregistry))
529 val = Fintern (Fdowncase (SYMBOL_NAME (val)), Qnil);
530 return val;
531 }
532
533
534 static Lisp_Object
535 font_prop_validate_style (Lisp_Object style, Lisp_Object val)
536 {
537 enum font_property_index prop = (EQ (style, QCweight) ? FONT_WEIGHT_INDEX
538 : EQ (style, QCslant) ? FONT_SLANT_INDEX
539 : FONT_WIDTH_INDEX);
540 if (INTEGERP (val))
541 {
542 EMACS_INT n = XINT (val);
543 CHECK_VECTOR (AREF (font_style_table, prop - FONT_WEIGHT_INDEX));
544 if (((n >> 4) & 0xF)
545 >= ASIZE (AREF (font_style_table, prop - FONT_WEIGHT_INDEX)))
546 val = Qerror;
547 else
548 {
549 Lisp_Object elt = AREF (AREF (font_style_table, prop - FONT_WEIGHT_INDEX), (n >> 4) & 0xF);
550
551 CHECK_VECTOR (elt);
552 if ((n & 0xF) + 1 >= ASIZE (elt))
553 val = Qerror;
554 else
555 {
556 CHECK_NUMBER (AREF (elt, 0));
557 if (XINT (AREF (elt, 0)) != (n >> 8))
558 val = Qerror;
559 }
560 }
561 }
562 else if (SYMBOLP (val))
563 {
564 int n = font_style_to_value (prop, val, 0);
565
566 val = n >= 0 ? make_number (n) : Qerror;
567 }
568 else
569 val = Qerror;
570 return val;
571 }
572
573 static Lisp_Object
574 font_prop_validate_non_neg (Lisp_Object prop, Lisp_Object val)
575 {
576 return (NATNUMP (val) || (FLOATP (val) && XFLOAT_DATA (val) >= 0)
577 ? val : Qerror);
578 }
579
580 static Lisp_Object
581 font_prop_validate_spacing (Lisp_Object prop, Lisp_Object val)
582 {
583 if (NILP (val) || (NATNUMP (val) && XINT (val) <= FONT_SPACING_CHARCELL))
584 return val;
585 if (SYMBOLP (val) && SBYTES (SYMBOL_NAME (val)) == 1)
586 {
587 char spacing = SDATA (SYMBOL_NAME (val))[0];
588
589 if (spacing == 'c' || spacing == 'C')
590 return make_number (FONT_SPACING_CHARCELL);
591 if (spacing == 'm' || spacing == 'M')
592 return make_number (FONT_SPACING_MONO);
593 if (spacing == 'p' || spacing == 'P')
594 return make_number (FONT_SPACING_PROPORTIONAL);
595 if (spacing == 'd' || spacing == 'D')
596 return make_number (FONT_SPACING_DUAL);
597 }
598 return Qerror;
599 }
600
601 static Lisp_Object
602 font_prop_validate_otf (Lisp_Object prop, Lisp_Object val)
603 {
604 Lisp_Object tail, tmp;
605 int i;
606
607 /* VAL = (SCRIPT [ LANGSYS [ GSUB-FEATURES [ GPOS-FEATURES ]]])
608 GSUB-FEATURES = (FEATURE ... [ nil FEATURE ... ]) | nil
609 GPOS-FEATURES = (FEATURE ... [ nil FEATURE ... ]) | nil */
610 if (! CONSP (val))
611 return Qerror;
612 if (! SYMBOLP (XCAR (val)))
613 return Qerror;
614 tail = XCDR (val);
615 if (NILP (tail))
616 return val;
617 if (! CONSP (tail) || ! SYMBOLP (XCAR (val)))
618 return Qerror;
619 for (i = 0; i < 2; i++)
620 {
621 tail = XCDR (tail);
622 if (NILP (tail))
623 return val;
624 if (! CONSP (tail))
625 return Qerror;
626 for (tmp = XCAR (tail); CONSP (tmp); tmp = XCDR (tmp))
627 if (! SYMBOLP (XCAR (tmp)))
628 return Qerror;
629 if (! NILP (tmp))
630 return Qerror;
631 }
632 return val;
633 }
634
635 /* Structure of known font property keys and validator of the
636 values. */
637 static const struct
638 {
639 /* Pointer to the key symbol. */
640 Lisp_Object *key;
641 /* Function to validate PROP's value VAL, or NULL if any value is
642 ok. The value is VAL or its regularized value if VAL is valid,
643 and Qerror if not. */
644 Lisp_Object (*validator) (Lisp_Object prop, Lisp_Object val);
645 } font_property_table[] =
646 { { &QCtype, font_prop_validate_symbol },
647 { &QCfoundry, font_prop_validate_symbol },
648 { &QCfamily, font_prop_validate_symbol },
649 { &QCadstyle, font_prop_validate_symbol },
650 { &QCregistry, font_prop_validate_symbol },
651 { &QCweight, font_prop_validate_style },
652 { &QCslant, font_prop_validate_style },
653 { &QCwidth, font_prop_validate_style },
654 { &QCsize, font_prop_validate_non_neg },
655 { &QCdpi, font_prop_validate_non_neg },
656 { &QCspacing, font_prop_validate_spacing },
657 { &QCavgwidth, font_prop_validate_non_neg },
658 /* The order of the above entries must match with enum
659 font_property_index. */
660 { &QClang, font_prop_validate_symbol },
661 { &QCscript, font_prop_validate_symbol },
662 { &QCotf, font_prop_validate_otf }
663 };
664
665 /* Size (number of elements) of the above table. */
666 #define FONT_PROPERTY_TABLE_SIZE \
667 ((sizeof font_property_table) / (sizeof *font_property_table))
668
669 /* Return an index number of font property KEY or -1 if KEY is not an
670 already known property. */
671
672 static int
673 get_font_prop_index (Lisp_Object key)
674 {
675 int i;
676
677 for (i = 0; i < FONT_PROPERTY_TABLE_SIZE; i++)
678 if (EQ (key, *font_property_table[i].key))
679 return i;
680 return -1;
681 }
682
683 /* Validate the font property. The property key is specified by the
684 symbol PROP, or the index IDX (if PROP is nil). If VAL is invalid,
685 signal an error. The value is VAL or the regularized one. */
686
687 static Lisp_Object
688 font_prop_validate (int idx, Lisp_Object prop, Lisp_Object val)
689 {
690 Lisp_Object validated;
691
692 if (NILP (val))
693 return val;
694 if (NILP (prop))
695 prop = *font_property_table[idx].key;
696 else
697 {
698 idx = get_font_prop_index (prop);
699 if (idx < 0)
700 return val;
701 }
702 validated = (font_property_table[idx].validator) (prop, val);
703 if (EQ (validated, Qerror))
704 signal_error ("invalid font property", Fcons (prop, val));
705 return validated;
706 }
707
708
709 /* Store VAL as a value of extra font property PROP in FONT while
710 keeping the sorting order. Don't check the validity of VAL. */
711
712 Lisp_Object
713 font_put_extra (Lisp_Object font, Lisp_Object prop, Lisp_Object val)
714 {
715 Lisp_Object extra = AREF (font, FONT_EXTRA_INDEX);
716 Lisp_Object slot = (NILP (extra) ? Qnil : assq_no_quit (prop, extra));
717
718 if (NILP (slot))
719 {
720 Lisp_Object prev = Qnil;
721
722 while (CONSP (extra)
723 && NILP (Fstring_lessp (prop, XCAR (XCAR (extra)))))
724 prev = extra, extra = XCDR (extra);
725
726 if (NILP (prev))
727 ASET (font, FONT_EXTRA_INDEX, Fcons (Fcons (prop, val), extra));
728 else
729 XSETCDR (prev, Fcons (Fcons (prop, val), extra));
730
731 return val;
732 }
733 XSETCDR (slot, val);
734 if (NILP (val))
735 ASET (font, FONT_EXTRA_INDEX, Fdelq (slot, extra));
736 return val;
737 }
738
739 \f
740 /* Font name parser and unparser. */
741
742 static int parse_matrix (const char *);
743 static int font_expand_wildcards (Lisp_Object *, int);
744 static int font_parse_name (char *, ptrdiff_t, Lisp_Object);
745
746 /* An enumerator for each field of an XLFD font name. */
747 enum xlfd_field_index
748 {
749 XLFD_FOUNDRY_INDEX,
750 XLFD_FAMILY_INDEX,
751 XLFD_WEIGHT_INDEX,
752 XLFD_SLANT_INDEX,
753 XLFD_SWIDTH_INDEX,
754 XLFD_ADSTYLE_INDEX,
755 XLFD_PIXEL_INDEX,
756 XLFD_POINT_INDEX,
757 XLFD_RESX_INDEX,
758 XLFD_RESY_INDEX,
759 XLFD_SPACING_INDEX,
760 XLFD_AVGWIDTH_INDEX,
761 XLFD_REGISTRY_INDEX,
762 XLFD_ENCODING_INDEX,
763 XLFD_LAST_INDEX
764 };
765
766 /* An enumerator for mask bit corresponding to each XLFD field. */
767 enum xlfd_field_mask
768 {
769 XLFD_FOUNDRY_MASK = 0x0001,
770 XLFD_FAMILY_MASK = 0x0002,
771 XLFD_WEIGHT_MASK = 0x0004,
772 XLFD_SLANT_MASK = 0x0008,
773 XLFD_SWIDTH_MASK = 0x0010,
774 XLFD_ADSTYLE_MASK = 0x0020,
775 XLFD_PIXEL_MASK = 0x0040,
776 XLFD_POINT_MASK = 0x0080,
777 XLFD_RESX_MASK = 0x0100,
778 XLFD_RESY_MASK = 0x0200,
779 XLFD_SPACING_MASK = 0x0400,
780 XLFD_AVGWIDTH_MASK = 0x0800,
781 XLFD_REGISTRY_MASK = 0x1000,
782 XLFD_ENCODING_MASK = 0x2000
783 };
784
785
786 /* Parse P pointing to the pixel/point size field of the form
787 `[A B C D]' which specifies a transformation matrix:
788
789 A B 0
790 C D 0
791 0 0 1
792
793 by which all glyphs of the font are transformed. The spec says
794 that scalar value N for the pixel/point size is equivalent to:
795 A = N * resx/resy, B = C = 0, D = N.
796
797 Return the scalar value N if the form is valid. Otherwise return
798 -1. */
799
800 static int
801 parse_matrix (const char *p)
802 {
803 double matrix[4];
804 char *end;
805 int i;
806
807 for (i = 0, p++; i < 4 && *p && *p != ']'; i++)
808 {
809 if (*p == '~')
810 matrix[i] = - strtod (p + 1, &end);
811 else
812 matrix[i] = strtod (p, &end);
813 p = end;
814 }
815 return (i == 4 ? (int) matrix[3] : -1);
816 }
817
818 /* Expand a wildcard field in FIELD (the first N fields are filled) to
819 multiple fields to fill in all 14 XLFD fields while restricting a
820 field position by its contents. */
821
822 static int
823 font_expand_wildcards (Lisp_Object *field, int n)
824 {
825 /* Copy of FIELD. */
826 Lisp_Object tmp[XLFD_LAST_INDEX];
827 /* Array of information about where this element can go. Nth
828 element is for Nth element of FIELD. */
829 struct {
830 /* Minimum possible field. */
831 int from;
832 /* Maximum possible field. */
833 int to;
834 /* Bit mask of possible field. Nth bit corresponds to Nth field. */
835 int mask;
836 } range[XLFD_LAST_INDEX];
837 int i, j;
838 int range_from, range_to;
839 unsigned range_mask;
840
841 #define XLFD_SYMBOL_MASK (XLFD_FOUNDRY_MASK | XLFD_FAMILY_MASK \
842 | XLFD_ADSTYLE_MASK | XLFD_REGISTRY_MASK)
843 #define XLFD_NULL_MASK (XLFD_FOUNDRY_MASK | XLFD_ADSTYLE_MASK)
844 #define XLFD_LARGENUM_MASK (XLFD_POINT_MASK | XLFD_RESX_MASK | XLFD_RESY_MASK \
845 | XLFD_AVGWIDTH_MASK)
846 #define XLFD_REGENC_MASK (XLFD_REGISTRY_MASK | XLFD_ENCODING_MASK)
847
848 /* Initialize RANGE_MASK for FIELD[0] which can be 0th to (14 - N)th
849 field. The value is shifted to left one bit by one in the
850 following loop. */
851 for (i = 0, range_mask = 0; i <= 14 - n; i++)
852 range_mask = (range_mask << 1) | 1;
853
854 /* The triplet RANGE_FROM, RANGE_TO, and RANGE_MASK is a
855 position-based restriction for FIELD[I]. */
856 for (i = 0, range_from = 0, range_to = 14 - n; i < n;
857 i++, range_from++, range_to++, range_mask <<= 1)
858 {
859 Lisp_Object val = field[i];
860
861 tmp[i] = val;
862 if (NILP (val))
863 {
864 /* Wildcard. */
865 range[i].from = range_from;
866 range[i].to = range_to;
867 range[i].mask = range_mask;
868 }
869 else
870 {
871 /* The triplet FROM, TO, and MASK is a value-based
872 restriction for FIELD[I]. */
873 int from, to;
874 unsigned mask;
875
876 if (INTEGERP (val))
877 {
878 EMACS_INT numeric = XINT (val);
879
880 if (i + 1 == n)
881 from = to = XLFD_ENCODING_INDEX,
882 mask = XLFD_ENCODING_MASK;
883 else if (numeric == 0)
884 from = XLFD_PIXEL_INDEX, to = XLFD_AVGWIDTH_INDEX,
885 mask = XLFD_PIXEL_MASK | XLFD_LARGENUM_MASK;
886 else if (numeric <= 48)
887 from = to = XLFD_PIXEL_INDEX,
888 mask = XLFD_PIXEL_MASK;
889 else
890 from = XLFD_POINT_INDEX, to = XLFD_AVGWIDTH_INDEX,
891 mask = XLFD_LARGENUM_MASK;
892 }
893 else if (SBYTES (SYMBOL_NAME (val)) == 0)
894 from = XLFD_FOUNDRY_INDEX, to = XLFD_ADSTYLE_INDEX,
895 mask = XLFD_NULL_MASK;
896 else if (i == 0)
897 from = to = XLFD_FOUNDRY_INDEX, mask = XLFD_FOUNDRY_MASK;
898 else if (i + 1 == n)
899 {
900 Lisp_Object name = SYMBOL_NAME (val);
901
902 if (SDATA (name)[SBYTES (name) - 1] == '*')
903 from = XLFD_REGISTRY_INDEX, to = XLFD_ENCODING_INDEX,
904 mask = XLFD_REGENC_MASK;
905 else
906 from = to = XLFD_ENCODING_INDEX,
907 mask = XLFD_ENCODING_MASK;
908 }
909 else if (range_from <= XLFD_WEIGHT_INDEX
910 && range_to >= XLFD_WEIGHT_INDEX
911 && FONT_WEIGHT_NAME_NUMERIC (val) >= 0)
912 from = to = XLFD_WEIGHT_INDEX, mask = XLFD_WEIGHT_MASK;
913 else if (range_from <= XLFD_SLANT_INDEX
914 && range_to >= XLFD_SLANT_INDEX
915 && FONT_SLANT_NAME_NUMERIC (val) >= 0)
916 from = to = XLFD_SLANT_INDEX, mask = XLFD_SLANT_MASK;
917 else if (range_from <= XLFD_SWIDTH_INDEX
918 && range_to >= XLFD_SWIDTH_INDEX
919 && FONT_WIDTH_NAME_NUMERIC (val) >= 0)
920 from = to = XLFD_SWIDTH_INDEX, mask = XLFD_SWIDTH_MASK;
921 else
922 {
923 if (EQ (val, Qc) || EQ (val, Qm) || EQ (val, Qp) || EQ (val, Qd))
924 from = to = XLFD_SPACING_INDEX, mask = XLFD_SPACING_MASK;
925 else
926 from = XLFD_FOUNDRY_INDEX, to = XLFD_ENCODING_INDEX,
927 mask = XLFD_SYMBOL_MASK;
928 }
929
930 /* Merge position-based and value-based restrictions. */
931 mask &= range_mask;
932 while (from < range_from)
933 mask &= ~(1 << from++);
934 while (from < 14 && ! (mask & (1 << from)))
935 from++;
936 while (to > range_to)
937 mask &= ~(1 << to--);
938 while (to >= 0 && ! (mask & (1 << to)))
939 to--;
940 if (from > to)
941 return -1;
942 range[i].from = from;
943 range[i].to = to;
944 range[i].mask = mask;
945
946 if (from > range_from || to < range_to)
947 {
948 /* The range is narrowed by value-based restrictions.
949 Reflect it to the other fields. */
950
951 /* Following fields should be after FROM. */
952 range_from = from;
953 /* Preceding fields should be before TO. */
954 for (j = i - 1, from--, to--; j >= 0; j--, from--, to--)
955 {
956 /* Check FROM for non-wildcard field. */
957 if (! NILP (tmp[j]) && range[j].from < from)
958 {
959 while (range[j].from < from)
960 range[j].mask &= ~(1 << range[j].from++);
961 while (from < 14 && ! (range[j].mask & (1 << from)))
962 from++;
963 range[j].from = from;
964 }
965 else
966 from = range[j].from;
967 if (range[j].to > to)
968 {
969 while (range[j].to > to)
970 range[j].mask &= ~(1 << range[j].to--);
971 while (to >= 0 && ! (range[j].mask & (1 << to)))
972 to--;
973 range[j].to = to;
974 }
975 else
976 to = range[j].to;
977 if (from > to)
978 return -1;
979 }
980 }
981 }
982 }
983
984 /* Decide all fields from restrictions in RANGE. */
985 for (i = j = 0; i < n ; i++)
986 {
987 if (j < range[i].from)
988 {
989 if (i == 0 || ! NILP (tmp[i - 1]))
990 /* None of TMP[X] corresponds to Jth field. */
991 return -1;
992 for (; j < range[i].from; j++)
993 field[j] = Qnil;
994 }
995 field[j++] = tmp[i];
996 }
997 if (! NILP (tmp[n - 1]) && j < XLFD_REGISTRY_INDEX)
998 return -1;
999 for (; j < XLFD_LAST_INDEX; j++)
1000 field[j] = Qnil;
1001 if (INTEGERP (field[XLFD_ENCODING_INDEX]))
1002 field[XLFD_ENCODING_INDEX]
1003 = Fintern (Fnumber_to_string (field[XLFD_ENCODING_INDEX]), Qnil);
1004 return 0;
1005 }
1006
1007
1008 /* Parse NAME (null terminated) as XLFD and store information in FONT
1009 (font-spec or font-entity). Size property of FONT is set as
1010 follows:
1011 specified XLFD fields FONT property
1012 --------------------- -------------
1013 PIXEL_SIZE PIXEL_SIZE (Lisp integer)
1014 POINT_SIZE and RESY calculated pixel size (Lisp integer)
1015 POINT_SIZE POINT_SIZE/10 (Lisp float)
1016
1017 If NAME is successfully parsed, return 0. Otherwise return -1.
1018
1019 FONT is usually a font-spec, but when this function is called from
1020 X font backend driver, it is a font-entity. In that case, NAME is
1021 a fully specified XLFD. */
1022
1023 int
1024 font_parse_xlfd (char *name, ptrdiff_t len, Lisp_Object font)
1025 {
1026 int i, j, n;
1027 char *f[XLFD_LAST_INDEX + 1];
1028 Lisp_Object val;
1029 char *p;
1030
1031 if (len > 255 || !len)
1032 /* Maximum XLFD name length is 255. */
1033 return -1;
1034 /* Accept "*-.." as a fully specified XLFD. */
1035 if (name[0] == '*' && (len == 1 || name[1] == '-'))
1036 i = 1, f[XLFD_FOUNDRY_INDEX] = name;
1037 else
1038 i = 0;
1039 for (p = name + i; *p; p++)
1040 if (*p == '-')
1041 {
1042 f[i++] = p + 1;
1043 if (i == XLFD_LAST_INDEX)
1044 break;
1045 }
1046 f[i] = name + len;
1047
1048 #define INTERN_FIELD(N) font_intern_prop (f[N], f[(N) + 1] - 1 - f[N], 0)
1049 #define INTERN_FIELD_SYM(N) font_intern_prop (f[N], f[(N) + 1] - 1 - f[N], 1)
1050
1051 if (i == XLFD_LAST_INDEX)
1052 {
1053 /* Fully specified XLFD. */
1054 int pixel_size;
1055
1056 ASET (font, FONT_FOUNDRY_INDEX, INTERN_FIELD_SYM (XLFD_FOUNDRY_INDEX));
1057 ASET (font, FONT_FAMILY_INDEX, INTERN_FIELD_SYM (XLFD_FAMILY_INDEX));
1058 for (i = XLFD_WEIGHT_INDEX, j = FONT_WEIGHT_INDEX;
1059 i <= XLFD_SWIDTH_INDEX; i++, j++)
1060 {
1061 val = INTERN_FIELD_SYM (i);
1062 if (! NILP (val))
1063 {
1064 if ((n = font_style_to_value (j, INTERN_FIELD_SYM (i), 0)) < 0)
1065 return -1;
1066 ASET (font, j, make_number (n));
1067 }
1068 }
1069 ASET (font, FONT_ADSTYLE_INDEX, INTERN_FIELD_SYM (XLFD_ADSTYLE_INDEX));
1070 if (strcmp (f[XLFD_REGISTRY_INDEX], "*-*") == 0)
1071 ASET (font, FONT_REGISTRY_INDEX, Qnil);
1072 else
1073 ASET (font, FONT_REGISTRY_INDEX,
1074 font_intern_prop (f[XLFD_REGISTRY_INDEX],
1075 f[XLFD_LAST_INDEX] - f[XLFD_REGISTRY_INDEX],
1076 1));
1077 p = f[XLFD_PIXEL_INDEX];
1078 if (*p == '[' && (pixel_size = parse_matrix (p)) >= 0)
1079 ASET (font, FONT_SIZE_INDEX, make_number (pixel_size));
1080 else
1081 {
1082 val = INTERN_FIELD (XLFD_PIXEL_INDEX);
1083 if (INTEGERP (val))
1084 ASET (font, FONT_SIZE_INDEX, val);
1085 else if (FONT_ENTITY_P (font))
1086 return -1;
1087 else
1088 {
1089 double point_size = -1;
1090
1091 eassert (FONT_SPEC_P (font));
1092 p = f[XLFD_POINT_INDEX];
1093 if (*p == '[')
1094 point_size = parse_matrix (p);
1095 else if (c_isdigit (*p))
1096 point_size = atoi (p), point_size /= 10;
1097 if (point_size >= 0)
1098 ASET (font, FONT_SIZE_INDEX, make_float (point_size));
1099 }
1100 }
1101
1102 val = INTERN_FIELD (XLFD_RESY_INDEX);
1103 if (! NILP (val) && ! INTEGERP (val))
1104 return -1;
1105 ASET (font, FONT_DPI_INDEX, val);
1106 val = INTERN_FIELD (XLFD_SPACING_INDEX);
1107 if (! NILP (val))
1108 {
1109 val = font_prop_validate_spacing (QCspacing, val);
1110 if (! INTEGERP (val))
1111 return -1;
1112 ASET (font, FONT_SPACING_INDEX, val);
1113 }
1114 p = f[XLFD_AVGWIDTH_INDEX];
1115 if (*p == '~')
1116 p++;
1117 val = font_intern_prop (p, f[XLFD_REGISTRY_INDEX] - 1 - p, 0);
1118 if (! NILP (val) && ! INTEGERP (val))
1119 return -1;
1120 ASET (font, FONT_AVGWIDTH_INDEX, val);
1121 }
1122 else
1123 {
1124 bool wild_card_found = 0;
1125 Lisp_Object prop[XLFD_LAST_INDEX];
1126
1127 if (FONT_ENTITY_P (font))
1128 return -1;
1129 for (j = 0; j < i; j++)
1130 {
1131 if (*f[j] == '*')
1132 {
1133 if (f[j][1] && f[j][1] != '-')
1134 return -1;
1135 prop[j] = Qnil;
1136 wild_card_found = 1;
1137 }
1138 else if (j + 1 < i)
1139 prop[j] = INTERN_FIELD (j);
1140 else
1141 prop[j] = font_intern_prop (f[j], f[i] - f[j], 0);
1142 }
1143 if (! wild_card_found)
1144 return -1;
1145 if (font_expand_wildcards (prop, i) < 0)
1146 return -1;
1147
1148 ASET (font, FONT_FOUNDRY_INDEX, prop[XLFD_FOUNDRY_INDEX]);
1149 ASET (font, FONT_FAMILY_INDEX, prop[XLFD_FAMILY_INDEX]);
1150 for (i = XLFD_WEIGHT_INDEX, j = FONT_WEIGHT_INDEX;
1151 i <= XLFD_SWIDTH_INDEX; i++, j++)
1152 if (! NILP (prop[i]))
1153 {
1154 if ((n = font_style_to_value (j, prop[i], 1)) < 0)
1155 return -1;
1156 ASET (font, j, make_number (n));
1157 }
1158 ASET (font, FONT_ADSTYLE_INDEX, prop[XLFD_ADSTYLE_INDEX]);
1159 val = prop[XLFD_REGISTRY_INDEX];
1160 if (NILP (val))
1161 {
1162 val = prop[XLFD_ENCODING_INDEX];
1163 if (! NILP (val))
1164 val = concat2 (build_string ("*-"), SYMBOL_NAME (val));
1165 }
1166 else if (NILP (prop[XLFD_ENCODING_INDEX]))
1167 val = concat2 (SYMBOL_NAME (val), build_string ("-*"));
1168 else
1169 val = concat3 (SYMBOL_NAME (val), build_string ("-"),
1170 SYMBOL_NAME (prop[XLFD_ENCODING_INDEX]));
1171 if (! NILP (val))
1172 ASET (font, FONT_REGISTRY_INDEX, Fintern (val, Qnil));
1173
1174 if (INTEGERP (prop[XLFD_PIXEL_INDEX]))
1175 ASET (font, FONT_SIZE_INDEX, prop[XLFD_PIXEL_INDEX]);
1176 else if (INTEGERP (prop[XLFD_POINT_INDEX]))
1177 {
1178 double point_size = XINT (prop[XLFD_POINT_INDEX]);
1179
1180 ASET (font, FONT_SIZE_INDEX, make_float (point_size / 10));
1181 }
1182
1183 if (INTEGERP (prop[XLFD_RESX_INDEX]))
1184 ASET (font, FONT_DPI_INDEX, prop[XLFD_RESY_INDEX]);
1185 if (! NILP (prop[XLFD_SPACING_INDEX]))
1186 {
1187 val = font_prop_validate_spacing (QCspacing,
1188 prop[XLFD_SPACING_INDEX]);
1189 if (! INTEGERP (val))
1190 return -1;
1191 ASET (font, FONT_SPACING_INDEX, val);
1192 }
1193 if (INTEGERP (prop[XLFD_AVGWIDTH_INDEX]))
1194 ASET (font, FONT_AVGWIDTH_INDEX, prop[XLFD_AVGWIDTH_INDEX]);
1195 }
1196
1197 return 0;
1198 }
1199
1200 /* Store XLFD name of FONT (font-spec or font-entity) in NAME (NBYTES
1201 length), and return the name length. If FONT_SIZE_INDEX of FONT is
1202 0, use PIXEL_SIZE instead. */
1203
1204 ptrdiff_t
1205 font_unparse_xlfd (Lisp_Object font, int pixel_size, char *name, int nbytes)
1206 {
1207 char *p;
1208 const char *f[XLFD_REGISTRY_INDEX + 1];
1209 Lisp_Object val;
1210 int i, j, len;
1211
1212 eassert (FONTP (font));
1213
1214 for (i = FONT_FOUNDRY_INDEX, j = XLFD_FOUNDRY_INDEX; i <= FONT_REGISTRY_INDEX;
1215 i++, j++)
1216 {
1217 if (i == FONT_ADSTYLE_INDEX)
1218 j = XLFD_ADSTYLE_INDEX;
1219 else if (i == FONT_REGISTRY_INDEX)
1220 j = XLFD_REGISTRY_INDEX;
1221 val = AREF (font, i);
1222 if (NILP (val))
1223 {
1224 if (j == XLFD_REGISTRY_INDEX)
1225 f[j] = "*-*";
1226 else
1227 f[j] = "*";
1228 }
1229 else
1230 {
1231 if (SYMBOLP (val))
1232 val = SYMBOL_NAME (val);
1233 if (j == XLFD_REGISTRY_INDEX
1234 && ! strchr (SSDATA (val), '-'))
1235 {
1236 /* Change "jisx0208*" and "jisx0208" to "jisx0208*-*". */
1237 ptrdiff_t alloc = SBYTES (val) + 4;
1238 if (nbytes <= alloc)
1239 return -1;
1240 f[j] = p = alloca (alloc);
1241 sprintf (p, "%s%s-*", SDATA (val),
1242 &"*"[SDATA (val)[SBYTES (val) - 1] == '*']);
1243 }
1244 else
1245 f[j] = SSDATA (val);
1246 }
1247 }
1248
1249 for (i = FONT_WEIGHT_INDEX, j = XLFD_WEIGHT_INDEX; i <= FONT_WIDTH_INDEX;
1250 i++, j++)
1251 {
1252 val = font_style_symbolic (font, i, 0);
1253 if (NILP (val))
1254 f[j] = "*";
1255 else
1256 {
1257 int c, k, l;
1258 ptrdiff_t alloc;
1259
1260 val = SYMBOL_NAME (val);
1261 alloc = SBYTES (val) + 1;
1262 if (nbytes <= alloc)
1263 return -1;
1264 f[j] = p = alloca (alloc);
1265 /* Copy the name while excluding '-', '?', ',', and '"'. */
1266 for (k = l = 0; k < alloc; k++)
1267 {
1268 c = SREF (val, k);
1269 if (c != '-' && c != '?' && c != ',' && c != '"')
1270 p[l++] = c;
1271 }
1272 }
1273 }
1274
1275 val = AREF (font, FONT_SIZE_INDEX);
1276 eassert (NUMBERP (val) || NILP (val));
1277 if (INTEGERP (val))
1278 {
1279 EMACS_INT v = XINT (val);
1280 if (v <= 0)
1281 v = pixel_size;
1282 if (v > 0)
1283 {
1284 f[XLFD_PIXEL_INDEX] = p =
1285 alloca (sizeof "-*" + INT_STRLEN_BOUND (EMACS_INT));
1286 sprintf (p, "%"pI"d-*", v);
1287 }
1288 else
1289 f[XLFD_PIXEL_INDEX] = "*-*";
1290 }
1291 else if (FLOATP (val))
1292 {
1293 double v = XFLOAT_DATA (val) * 10;
1294 f[XLFD_PIXEL_INDEX] = p = alloca (sizeof "*-" + 1 + DBL_MAX_10_EXP + 1);
1295 sprintf (p, "*-%.0f", v);
1296 }
1297 else
1298 f[XLFD_PIXEL_INDEX] = "*-*";
1299
1300 if (INTEGERP (AREF (font, FONT_DPI_INDEX)))
1301 {
1302 EMACS_INT v = XINT (AREF (font, FONT_DPI_INDEX));
1303 f[XLFD_RESX_INDEX] = p =
1304 alloca (sizeof "-" + 2 * INT_STRLEN_BOUND (EMACS_INT));
1305 sprintf (p, "%"pI"d-%"pI"d", v, v);
1306 }
1307 else
1308 f[XLFD_RESX_INDEX] = "*-*";
1309 if (INTEGERP (AREF (font, FONT_SPACING_INDEX)))
1310 {
1311 EMACS_INT spacing = XINT (AREF (font, FONT_SPACING_INDEX));
1312
1313 f[XLFD_SPACING_INDEX] = (spacing <= FONT_SPACING_PROPORTIONAL ? "p"
1314 : spacing <= FONT_SPACING_DUAL ? "d"
1315 : spacing <= FONT_SPACING_MONO ? "m"
1316 : "c");
1317 }
1318 else
1319 f[XLFD_SPACING_INDEX] = "*";
1320 if (INTEGERP (AREF (font, FONT_AVGWIDTH_INDEX)))
1321 {
1322 f[XLFD_AVGWIDTH_INDEX] = p = alloca (INT_BUFSIZE_BOUND (EMACS_INT));
1323 sprintf (p, "%"pI"d", XINT (AREF (font, FONT_AVGWIDTH_INDEX)));
1324 }
1325 else
1326 f[XLFD_AVGWIDTH_INDEX] = "*";
1327 len = snprintf (name, nbytes, "-%s-%s-%s-%s-%s-%s-%s-%s-%s-%s-%s",
1328 f[XLFD_FOUNDRY_INDEX], f[XLFD_FAMILY_INDEX],
1329 f[XLFD_WEIGHT_INDEX], f[XLFD_SLANT_INDEX],
1330 f[XLFD_SWIDTH_INDEX], f[XLFD_ADSTYLE_INDEX],
1331 f[XLFD_PIXEL_INDEX], f[XLFD_RESX_INDEX],
1332 f[XLFD_SPACING_INDEX], f[XLFD_AVGWIDTH_INDEX],
1333 f[XLFD_REGISTRY_INDEX]);
1334 return len < nbytes ? len : -1;
1335 }
1336
1337 /* Parse NAME (null terminated) and store information in FONT
1338 (font-spec or font-entity). NAME is supplied in either the
1339 Fontconfig or GTK font name format. If NAME is successfully
1340 parsed, return 0. Otherwise return -1.
1341
1342 The fontconfig format is
1343
1344 FAMILY[-SIZE][:PROP1[=VAL1][:PROP2[=VAL2]...]]
1345
1346 The GTK format is
1347
1348 FAMILY [PROPS...] [SIZE]
1349
1350 This function tries to guess which format it is. */
1351
1352 static int
1353 font_parse_fcname (char *name, ptrdiff_t len, Lisp_Object font)
1354 {
1355 char *p, *q;
1356 char *size_beg = NULL, *size_end = NULL;
1357 char *props_beg = NULL, *family_end = NULL;
1358
1359 if (len == 0)
1360 return -1;
1361
1362 for (p = name; *p; p++)
1363 {
1364 if (*p == '\\' && p[1])
1365 p++;
1366 else if (*p == ':')
1367 {
1368 props_beg = family_end = p;
1369 break;
1370 }
1371 else if (*p == '-')
1372 {
1373 bool decimal = 0, size_found = 1;
1374 for (q = p + 1; *q && *q != ':'; q++)
1375 if (! c_isdigit (*q))
1376 {
1377 if (*q != '.' || decimal)
1378 {
1379 size_found = 0;
1380 break;
1381 }
1382 decimal = 1;
1383 }
1384 if (size_found)
1385 {
1386 family_end = p;
1387 size_beg = p + 1;
1388 size_end = q;
1389 break;
1390 }
1391 }
1392 }
1393
1394 if (family_end)
1395 {
1396 Lisp_Object extra_props = Qnil;
1397
1398 /* A fontconfig name with size and/or property data. */
1399 if (family_end > name)
1400 {
1401 Lisp_Object family;
1402 family = font_intern_prop (name, family_end - name, 1);
1403 ASET (font, FONT_FAMILY_INDEX, family);
1404 }
1405 if (size_beg)
1406 {
1407 double point_size = strtod (size_beg, &size_end);
1408 ASET (font, FONT_SIZE_INDEX, make_float (point_size));
1409 if (*size_end == ':' && size_end[1])
1410 props_beg = size_end;
1411 }
1412 if (props_beg)
1413 {
1414 /* Now parse ":KEY=VAL" patterns. */
1415 Lisp_Object val;
1416
1417 for (p = props_beg; *p; p = q)
1418 {
1419 for (q = p + 1; *q && *q != '=' && *q != ':'; q++);
1420 if (*q != '=')
1421 {
1422 /* Must be an enumerated value. */
1423 ptrdiff_t word_len;
1424 p = p + 1;
1425 word_len = q - p;
1426 val = font_intern_prop (p, q - p, 1);
1427
1428 #define PROP_MATCH(STR) (word_len == strlen (STR) \
1429 && memcmp (p, STR, strlen (STR)) == 0)
1430
1431 if (PROP_MATCH ("light")
1432 || PROP_MATCH ("medium")
1433 || PROP_MATCH ("demibold")
1434 || PROP_MATCH ("bold")
1435 || PROP_MATCH ("black"))
1436 FONT_SET_STYLE (font, FONT_WEIGHT_INDEX, val);
1437 else if (PROP_MATCH ("roman")
1438 || PROP_MATCH ("italic")
1439 || PROP_MATCH ("oblique"))
1440 FONT_SET_STYLE (font, FONT_SLANT_INDEX, val);
1441 else if (PROP_MATCH ("charcell"))
1442 ASET (font, FONT_SPACING_INDEX,
1443 make_number (FONT_SPACING_CHARCELL));
1444 else if (PROP_MATCH ("mono"))
1445 ASET (font, FONT_SPACING_INDEX,
1446 make_number (FONT_SPACING_MONO));
1447 else if (PROP_MATCH ("proportional"))
1448 ASET (font, FONT_SPACING_INDEX,
1449 make_number (FONT_SPACING_PROPORTIONAL));
1450 #undef PROP_MATCH
1451 }
1452 else
1453 {
1454 /* KEY=VAL pairs */
1455 Lisp_Object key;
1456 int prop;
1457
1458 if (q - p == 10 && memcmp (p + 1, "pixelsize", 9) == 0)
1459 prop = FONT_SIZE_INDEX;
1460 else
1461 {
1462 key = font_intern_prop (p, q - p, 1);
1463 prop = get_font_prop_index (key);
1464 }
1465
1466 p = q + 1;
1467 for (q = p; *q && *q != ':'; q++);
1468 val = font_intern_prop (p, q - p, 0);
1469
1470 if (prop >= FONT_FOUNDRY_INDEX
1471 && prop < FONT_EXTRA_INDEX)
1472 ASET (font, prop, font_prop_validate (prop, Qnil, val));
1473 else
1474 {
1475 extra_props = nconc2 (extra_props,
1476 list1 (Fcons (key, val)));
1477 }
1478 }
1479 p = q;
1480 }
1481 }
1482
1483 if (! NILP (extra_props))
1484 {
1485 struct font_driver_list *driver_list = font_driver_list;
1486 for ( ; driver_list; driver_list = driver_list->next)
1487 if (driver_list->driver->filter_properties)
1488 (*driver_list->driver->filter_properties) (font, extra_props);
1489 }
1490
1491 }
1492 else
1493 {
1494 /* Either a fontconfig-style name with no size and property
1495 data, or a GTK-style name. */
1496 Lisp_Object weight = Qnil, slant = Qnil;
1497 Lisp_Object width = Qnil, size = Qnil;
1498 char *word_start;
1499 ptrdiff_t word_len;
1500
1501 /* Scan backwards from the end, looking for a size. */
1502 for (p = name + len - 1; p >= name; p--)
1503 if (!c_isdigit (*p))
1504 break;
1505
1506 if ((p < name + len - 1) && ((p + 1 == name) || *p == ' '))
1507 /* Found a font size. */
1508 size = make_float (strtod (p + 1, NULL));
1509 else
1510 p = name + len;
1511
1512 /* Now P points to the termination of the string, sans size.
1513 Scan backwards, looking for font properties. */
1514 for (; p > name; p = q)
1515 {
1516 for (q = p - 1; q >= name; q--)
1517 {
1518 if (q > name && *(q-1) == '\\')
1519 --q; /* Skip quoting backslashes. */
1520 else if (*q == ' ')
1521 break;
1522 }
1523
1524 word_start = q + 1;
1525 word_len = p - word_start;
1526
1527 #define PROP_MATCH(STR) \
1528 (word_len == strlen (STR) \
1529 && memcmp (word_start, STR, strlen (STR)) == 0)
1530 #define PROP_SAVE(VAR, STR) \
1531 (VAR = NILP (VAR) ? font_intern_prop (STR, strlen (STR), 1) : VAR)
1532
1533 if (PROP_MATCH ("Ultra-Light"))
1534 PROP_SAVE (weight, "ultra-light");
1535 else if (PROP_MATCH ("Light"))
1536 PROP_SAVE (weight, "light");
1537 else if (PROP_MATCH ("Book"))
1538 PROP_SAVE (weight, "book");
1539 else if (PROP_MATCH ("Medium"))
1540 PROP_SAVE (weight, "medium");
1541 else if (PROP_MATCH ("Semi-Bold"))
1542 PROP_SAVE (weight, "semi-bold");
1543 else if (PROP_MATCH ("Bold"))
1544 PROP_SAVE (weight, "bold");
1545 else if (PROP_MATCH ("Italic"))
1546 PROP_SAVE (slant, "italic");
1547 else if (PROP_MATCH ("Oblique"))
1548 PROP_SAVE (slant, "oblique");
1549 else if (PROP_MATCH ("Semi-Condensed"))
1550 PROP_SAVE (width, "semi-condensed");
1551 else if (PROP_MATCH ("Condensed"))
1552 PROP_SAVE (width, "condensed");
1553 /* An unknown word must be part of the font name. */
1554 else
1555 {
1556 family_end = p;
1557 break;
1558 }
1559 }
1560 #undef PROP_MATCH
1561 #undef PROP_SAVE
1562
1563 if (family_end)
1564 ASET (font, FONT_FAMILY_INDEX,
1565 font_intern_prop (name, family_end - name, 1));
1566 if (!NILP (size))
1567 ASET (font, FONT_SIZE_INDEX, size);
1568 if (!NILP (weight))
1569 FONT_SET_STYLE (font, FONT_WEIGHT_INDEX, weight);
1570 if (!NILP (slant))
1571 FONT_SET_STYLE (font, FONT_SLANT_INDEX, slant);
1572 if (!NILP (width))
1573 FONT_SET_STYLE (font, FONT_WIDTH_INDEX, width);
1574 }
1575
1576 return 0;
1577 }
1578
1579 /* Store fontconfig's font name of FONT (font-spec or font-entity) in
1580 NAME (NBYTES length), and return the name length. If
1581 FONT_SIZE_INDEX of FONT is 0, use PIXEL_SIZE instead. */
1582
1583 int
1584 font_unparse_fcname (Lisp_Object font, int pixel_size, char *name, int nbytes)
1585 {
1586 Lisp_Object family, foundry;
1587 Lisp_Object val;
1588 int point_size;
1589 int i;
1590 char *p;
1591 char *lim;
1592 Lisp_Object styles[3];
1593 const char *style_names[3] = { "weight", "slant", "width" };
1594
1595 family = AREF (font, FONT_FAMILY_INDEX);
1596 if (! NILP (family))
1597 {
1598 if (SYMBOLP (family))
1599 family = SYMBOL_NAME (family);
1600 else
1601 family = Qnil;
1602 }
1603
1604 val = AREF (font, FONT_SIZE_INDEX);
1605 if (INTEGERP (val))
1606 {
1607 if (XINT (val) != 0)
1608 pixel_size = XINT (val);
1609 point_size = -1;
1610 }
1611 else
1612 {
1613 eassert (FLOATP (val));
1614 pixel_size = -1;
1615 point_size = (int) XFLOAT_DATA (val);
1616 }
1617
1618 foundry = AREF (font, FONT_FOUNDRY_INDEX);
1619 if (! NILP (foundry))
1620 {
1621 if (SYMBOLP (foundry))
1622 foundry = SYMBOL_NAME (foundry);
1623 else
1624 foundry = Qnil;
1625 }
1626
1627 for (i = 0; i < 3; i++)
1628 styles[i] = font_style_symbolic (font, FONT_WEIGHT_INDEX + i, 0);
1629
1630 p = name;
1631 lim = name + nbytes;
1632 if (! NILP (family))
1633 {
1634 int len = snprintf (p, lim - p, "%s", SSDATA (family));
1635 if (! (0 <= len && len < lim - p))
1636 return -1;
1637 p += len;
1638 }
1639 if (point_size > 0)
1640 {
1641 int len = snprintf (p, lim - p, &"-%d"[p == name], point_size);
1642 if (! (0 <= len && len < lim - p))
1643 return -1;
1644 p += len;
1645 }
1646 else if (pixel_size > 0)
1647 {
1648 int len = snprintf (p, lim - p, ":pixelsize=%d", pixel_size);
1649 if (! (0 <= len && len < lim - p))
1650 return -1;
1651 p += len;
1652 }
1653 if (! NILP (AREF (font, FONT_FOUNDRY_INDEX)))
1654 {
1655 int len = snprintf (p, lim - p, ":foundry=%s",
1656 SSDATA (SYMBOL_NAME (AREF (font,
1657 FONT_FOUNDRY_INDEX))));
1658 if (! (0 <= len && len < lim - p))
1659 return -1;
1660 p += len;
1661 }
1662 for (i = 0; i < 3; i++)
1663 if (! NILP (styles[i]))
1664 {
1665 int len = snprintf (p, lim - p, ":%s=%s", style_names[i],
1666 SSDATA (SYMBOL_NAME (styles[i])));
1667 if (! (0 <= len && len < lim - p))
1668 return -1;
1669 p += len;
1670 }
1671
1672 if (INTEGERP (AREF (font, FONT_DPI_INDEX)))
1673 {
1674 int len = snprintf (p, lim - p, ":dpi=%"pI"d",
1675 XINT (AREF (font, FONT_DPI_INDEX)));
1676 if (! (0 <= len && len < lim - p))
1677 return -1;
1678 p += len;
1679 }
1680
1681 if (INTEGERP (AREF (font, FONT_SPACING_INDEX)))
1682 {
1683 int len = snprintf (p, lim - p, ":spacing=%"pI"d",
1684 XINT (AREF (font, FONT_SPACING_INDEX)));
1685 if (! (0 <= len && len < lim - p))
1686 return -1;
1687 p += len;
1688 }
1689
1690 if (INTEGERP (AREF (font, FONT_AVGWIDTH_INDEX)))
1691 {
1692 int len = snprintf (p, lim - p,
1693 (XINT (AREF (font, FONT_AVGWIDTH_INDEX)) == 0
1694 ? ":scalable=true"
1695 : ":scalable=false"));
1696 if (! (0 <= len && len < lim - p))
1697 return -1;
1698 p += len;
1699 }
1700
1701 return (p - name);
1702 }
1703
1704 /* Parse NAME (null terminated) and store information in FONT
1705 (font-spec or font-entity). If NAME is successfully parsed, return
1706 0. Otherwise return -1. */
1707
1708 static int
1709 font_parse_name (char *name, ptrdiff_t namelen, Lisp_Object font)
1710 {
1711 if (name[0] == '-' || strchr (name, '*') || strchr (name, '?'))
1712 return font_parse_xlfd (name, namelen, font);
1713 return font_parse_fcname (name, namelen, font);
1714 }
1715
1716
1717 /* Merge FAMILY and REGISTRY into FONT_SPEC. FAMILY may have the form
1718 "FAMILY-FOUNDRY". REGISTRY may not contain charset-encoding
1719 part. */
1720
1721 void
1722 font_parse_family_registry (Lisp_Object family, Lisp_Object registry, Lisp_Object font_spec)
1723 {
1724 int len;
1725 char *p0, *p1;
1726
1727 if (! NILP (family)
1728 && NILP (AREF (font_spec, FONT_FAMILY_INDEX)))
1729 {
1730 CHECK_STRING (family);
1731 len = SBYTES (family);
1732 p0 = SSDATA (family);
1733 p1 = strchr (p0, '-');
1734 if (p1)
1735 {
1736 if ((*p0 != '*' && p1 - p0 > 0)
1737 && NILP (AREF (font_spec, FONT_FOUNDRY_INDEX)))
1738 Ffont_put (font_spec, QCfoundry, font_intern_prop (p0, p1 - p0, 1));
1739 p1++;
1740 len -= p1 - p0;
1741 Ffont_put (font_spec, QCfamily, font_intern_prop (p1, len, 1));
1742 }
1743 else
1744 ASET (font_spec, FONT_FAMILY_INDEX, Fintern (family, Qnil));
1745 }
1746 if (! NILP (registry))
1747 {
1748 /* Convert "XXX" and "XXX*" to "XXX*-*". */
1749 CHECK_STRING (registry);
1750 len = SBYTES (registry);
1751 p0 = SSDATA (registry);
1752 p1 = strchr (p0, '-');
1753 if (! p1)
1754 {
1755 if (SDATA (registry)[len - 1] == '*')
1756 registry = concat2 (registry, build_string ("-*"));
1757 else
1758 registry = concat2 (registry, build_string ("*-*"));
1759 }
1760 registry = Fdowncase (registry);
1761 ASET (font_spec, FONT_REGISTRY_INDEX, Fintern (registry, Qnil));
1762 }
1763 }
1764
1765 \f
1766 /* This part (through the next ^L) is still experimental and not
1767 tested much. We may drastically change codes. */
1768
1769 /* OTF handler. */
1770
1771 #if 0
1772
1773 #define LGSTRING_HEADER_SIZE 6
1774 #define LGSTRING_GLYPH_SIZE 8
1775
1776 static int
1777 check_gstring (Lisp_Object gstring)
1778 {
1779 Lisp_Object val;
1780 ptrdiff_t i;
1781 int j;
1782
1783 CHECK_VECTOR (gstring);
1784 val = AREF (gstring, 0);
1785 CHECK_VECTOR (val);
1786 if (ASIZE (val) < LGSTRING_HEADER_SIZE)
1787 goto err;
1788 CHECK_FONT_OBJECT (LGSTRING_FONT (gstring));
1789 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_LBEARING)))
1790 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_LBEARING));
1791 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_RBEARING)))
1792 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_RBEARING));
1793 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_WIDTH)))
1794 CHECK_NATNUM (LGSTRING_SLOT (gstring, LGSTRING_IX_WIDTH));
1795 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT)))
1796 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT));
1797 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT)))
1798 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT));
1799
1800 for (i = 0; i < LGSTRING_GLYPH_LEN (gstring); i++)
1801 {
1802 val = LGSTRING_GLYPH (gstring, i);
1803 CHECK_VECTOR (val);
1804 if (ASIZE (val) < LGSTRING_GLYPH_SIZE)
1805 goto err;
1806 if (NILP (AREF (val, LGLYPH_IX_CHAR)))
1807 break;
1808 CHECK_NATNUM (AREF (val, LGLYPH_IX_FROM));
1809 CHECK_NATNUM (AREF (val, LGLYPH_IX_TO));
1810 CHECK_CHARACTER (AREF (val, LGLYPH_IX_CHAR));
1811 if (!NILP (AREF (val, LGLYPH_IX_CODE)))
1812 CHECK_NATNUM (AREF (val, LGLYPH_IX_CODE));
1813 if (!NILP (AREF (val, LGLYPH_IX_WIDTH)))
1814 CHECK_NATNUM (AREF (val, LGLYPH_IX_WIDTH));
1815 if (!NILP (AREF (val, LGLYPH_IX_ADJUSTMENT)))
1816 {
1817 val = AREF (val, LGLYPH_IX_ADJUSTMENT);
1818 CHECK_VECTOR (val);
1819 if (ASIZE (val) < 3)
1820 goto err;
1821 for (j = 0; j < 3; j++)
1822 CHECK_NUMBER (AREF (val, j));
1823 }
1824 }
1825 return i;
1826 err:
1827 error ("Invalid glyph-string format");
1828 return -1;
1829 }
1830
1831 static void
1832 check_otf_features (Lisp_Object otf_features)
1833 {
1834 Lisp_Object val;
1835
1836 CHECK_CONS (otf_features);
1837 CHECK_SYMBOL (XCAR (otf_features));
1838 otf_features = XCDR (otf_features);
1839 CHECK_CONS (otf_features);
1840 CHECK_SYMBOL (XCAR (otf_features));
1841 otf_features = XCDR (otf_features);
1842 for (val = Fcar (otf_features); CONSP (val); val = XCDR (val))
1843 {
1844 CHECK_SYMBOL (XCAR (val));
1845 if (SBYTES (SYMBOL_NAME (XCAR (val))) > 4)
1846 error ("Invalid OTF GSUB feature: %s",
1847 SDATA (SYMBOL_NAME (XCAR (val))));
1848 }
1849 otf_features = XCDR (otf_features);
1850 for (val = Fcar (otf_features); CONSP (val); val = XCDR (val))
1851 {
1852 CHECK_SYMBOL (XCAR (val));
1853 if (SBYTES (SYMBOL_NAME (XCAR (val))) > 4)
1854 error ("Invalid OTF GPOS feature: %s",
1855 SDATA (SYMBOL_NAME (XCAR (val))));
1856 }
1857 }
1858
1859 #ifdef HAVE_LIBOTF
1860 #include <otf.h>
1861
1862 Lisp_Object otf_list;
1863
1864 static Lisp_Object
1865 otf_tag_symbol (OTF_Tag tag)
1866 {
1867 char name[5];
1868
1869 OTF_tag_name (tag, name);
1870 return Fintern (make_unibyte_string (name, 4), Qnil);
1871 }
1872
1873 static OTF *
1874 otf_open (Lisp_Object file)
1875 {
1876 Lisp_Object val = Fassoc (file, otf_list);
1877 OTF *otf;
1878
1879 if (! NILP (val))
1880 otf = XSAVE_POINTER (XCDR (val), 0);
1881 else
1882 {
1883 otf = STRINGP (file) ? OTF_open (SSDATA (file)) : NULL;
1884 val = make_save_ptr (otf);
1885 otf_list = Fcons (Fcons (file, val), otf_list);
1886 }
1887 return otf;
1888 }
1889
1890
1891 /* Return a list describing which scripts/languages FONT supports by
1892 which GSUB/GPOS features of OpenType tables. See the comment of
1893 (struct font_driver).otf_capability. */
1894
1895 Lisp_Object
1896 font_otf_capability (struct font *font)
1897 {
1898 OTF *otf;
1899 Lisp_Object capability = Fcons (Qnil, Qnil);
1900 int i;
1901
1902 otf = otf_open (font->props[FONT_FILE_INDEX]);
1903 if (! otf)
1904 return Qnil;
1905 for (i = 0; i < 2; i++)
1906 {
1907 OTF_GSUB_GPOS *gsub_gpos;
1908 Lisp_Object script_list = Qnil;
1909 int j;
1910
1911 if (OTF_get_features (otf, i == 0) < 0)
1912 continue;
1913 gsub_gpos = i == 0 ? otf->gsub : otf->gpos;
1914 for (j = gsub_gpos->ScriptList.ScriptCount - 1; j >= 0; j--)
1915 {
1916 OTF_Script *script = gsub_gpos->ScriptList.Script + j;
1917 Lisp_Object langsys_list = Qnil;
1918 Lisp_Object script_tag = otf_tag_symbol (script->ScriptTag);
1919 int k;
1920
1921 for (k = script->LangSysCount; k >= 0; k--)
1922 {
1923 OTF_LangSys *langsys;
1924 Lisp_Object feature_list = Qnil;
1925 Lisp_Object langsys_tag;
1926 int l;
1927
1928 if (k == script->LangSysCount)
1929 {
1930 langsys = &script->DefaultLangSys;
1931 langsys_tag = Qnil;
1932 }
1933 else
1934 {
1935 langsys = script->LangSys + k;
1936 langsys_tag
1937 = otf_tag_symbol (script->LangSysRecord[k].LangSysTag);
1938 }
1939 for (l = langsys->FeatureCount - 1; l >= 0; l--)
1940 {
1941 OTF_Feature *feature
1942 = gsub_gpos->FeatureList.Feature + langsys->FeatureIndex[l];
1943 Lisp_Object feature_tag
1944 = otf_tag_symbol (feature->FeatureTag);
1945
1946 feature_list = Fcons (feature_tag, feature_list);
1947 }
1948 langsys_list = Fcons (Fcons (langsys_tag, feature_list),
1949 langsys_list);
1950 }
1951 script_list = Fcons (Fcons (script_tag, langsys_list),
1952 script_list);
1953 }
1954
1955 if (i == 0)
1956 XSETCAR (capability, script_list);
1957 else
1958 XSETCDR (capability, script_list);
1959 }
1960
1961 return capability;
1962 }
1963
1964 /* Parse OTF features in SPEC and write a proper features spec string
1965 in FEATURES for the call of OTF_drive_gsub/gpos (of libotf). It is
1966 assured that the sufficient memory has already allocated for
1967 FEATURES. */
1968
1969 static void
1970 generate_otf_features (Lisp_Object spec, char *features)
1971 {
1972 Lisp_Object val;
1973 char *p;
1974 bool asterisk;
1975
1976 p = features;
1977 *p = '\0';
1978 for (asterisk = 0; CONSP (spec); spec = XCDR (spec))
1979 {
1980 val = XCAR (spec);
1981 CHECK_SYMBOL (val);
1982 if (p > features)
1983 *p++ = ',';
1984 if (SREF (SYMBOL_NAME (val), 0) == '*')
1985 {
1986 asterisk = 1;
1987 *p++ = '*';
1988 }
1989 else if (! asterisk)
1990 {
1991 val = SYMBOL_NAME (val);
1992 p += esprintf (p, "%s", SDATA (val));
1993 }
1994 else
1995 {
1996 val = SYMBOL_NAME (val);
1997 p += esprintf (p, "~%s", SDATA (val));
1998 }
1999 }
2000 if (CONSP (spec))
2001 error ("OTF spec too long");
2002 }
2003
2004 Lisp_Object
2005 font_otf_DeviceTable (OTF_DeviceTable *device_table)
2006 {
2007 int len = device_table->StartSize - device_table->EndSize + 1;
2008
2009 return Fcons (make_number (len),
2010 make_unibyte_string (device_table->DeltaValue, len));
2011 }
2012
2013 Lisp_Object
2014 font_otf_ValueRecord (int value_format, OTF_ValueRecord *value_record)
2015 {
2016 Lisp_Object val = Fmake_vector (make_number (8), Qnil);
2017
2018 if (value_format & OTF_XPlacement)
2019 ASET (val, 0, make_number (value_record->XPlacement));
2020 if (value_format & OTF_YPlacement)
2021 ASET (val, 1, make_number (value_record->YPlacement));
2022 if (value_format & OTF_XAdvance)
2023 ASET (val, 2, make_number (value_record->XAdvance));
2024 if (value_format & OTF_YAdvance)
2025 ASET (val, 3, make_number (value_record->YAdvance));
2026 if (value_format & OTF_XPlaDevice)
2027 ASET (val, 4, font_otf_DeviceTable (&value_record->XPlaDevice));
2028 if (value_format & OTF_YPlaDevice)
2029 ASET (val, 4, font_otf_DeviceTable (&value_record->YPlaDevice));
2030 if (value_format & OTF_XAdvDevice)
2031 ASET (val, 4, font_otf_DeviceTable (&value_record->XAdvDevice));
2032 if (value_format & OTF_YAdvDevice)
2033 ASET (val, 4, font_otf_DeviceTable (&value_record->YAdvDevice));
2034 return val;
2035 }
2036
2037 Lisp_Object
2038 font_otf_Anchor (OTF_Anchor *anchor)
2039 {
2040 Lisp_Object val;
2041
2042 val = Fmake_vector (make_number (anchor->AnchorFormat + 1), Qnil);
2043 ASET (val, 0, make_number (anchor->XCoordinate));
2044 ASET (val, 1, make_number (anchor->YCoordinate));
2045 if (anchor->AnchorFormat == 2)
2046 ASET (val, 2, make_number (anchor->f.f1.AnchorPoint));
2047 else
2048 {
2049 ASET (val, 3, font_otf_DeviceTable (&anchor->f.f2.XDeviceTable));
2050 ASET (val, 4, font_otf_DeviceTable (&anchor->f.f2.YDeviceTable));
2051 }
2052 return val;
2053 }
2054 #endif /* HAVE_LIBOTF */
2055 #endif /* 0 */
2056
2057 \f
2058 /* Font sorting. */
2059
2060 static double
2061 font_rescale_ratio (Lisp_Object font_entity)
2062 {
2063 Lisp_Object tail, elt;
2064 Lisp_Object name = Qnil;
2065
2066 for (tail = Vface_font_rescale_alist; CONSP (tail); tail = XCDR (tail))
2067 {
2068 elt = XCAR (tail);
2069 if (FLOATP (XCDR (elt)))
2070 {
2071 if (STRINGP (XCAR (elt)))
2072 {
2073 if (NILP (name))
2074 name = Ffont_xlfd_name (font_entity, Qnil);
2075 if (fast_string_match_ignore_case (XCAR (elt), name) >= 0)
2076 return XFLOAT_DATA (XCDR (elt));
2077 }
2078 else if (FONT_SPEC_P (XCAR (elt)))
2079 {
2080 if (font_match_p (XCAR (elt), font_entity))
2081 return XFLOAT_DATA (XCDR (elt));
2082 }
2083 }
2084 }
2085 return 1.0;
2086 }
2087
2088 /* We sort fonts by scoring each of them against a specified
2089 font-spec. The score value is 32 bit (`unsigned'), and the smaller
2090 the value is, the closer the font is to the font-spec.
2091
2092 The lowest 2 bits of the score are used for driver type. The font
2093 available by the most preferred font driver is 0.
2094
2095 The 4 7-bit fields in the higher 28 bits are used for numeric properties
2096 WEIGHT, SLANT, WIDTH, and SIZE. */
2097
2098 /* How many bits to shift to store the difference value of each font
2099 property in a score. Note that floats for FONT_TYPE_INDEX and
2100 FONT_REGISTRY_INDEX are not used. */
2101 static int sort_shift_bits[FONT_SIZE_INDEX + 1];
2102
2103 /* Score font-entity ENTITY against properties of font-spec SPEC_PROP.
2104 The return value indicates how different ENTITY is compared with
2105 SPEC_PROP. */
2106
2107 static unsigned
2108 font_score (Lisp_Object entity, Lisp_Object *spec_prop)
2109 {
2110 unsigned score = 0;
2111 int i;
2112
2113 /* Score three style numeric fields. Maximum difference is 127. */
2114 for (i = FONT_WEIGHT_INDEX; i <= FONT_WIDTH_INDEX; i++)
2115 if (! NILP (spec_prop[i]) && ! EQ (AREF (entity, i), spec_prop[i]))
2116 {
2117 EMACS_INT diff = ((XINT (AREF (entity, i)) >> 8)
2118 - (XINT (spec_prop[i]) >> 8));
2119 score |= min (eabs (diff), 127) << sort_shift_bits[i];
2120 }
2121
2122 /* Score the size. Maximum difference is 127. */
2123 i = FONT_SIZE_INDEX;
2124 if (! NILP (spec_prop[FONT_SIZE_INDEX])
2125 && XINT (AREF (entity, FONT_SIZE_INDEX)) > 0)
2126 {
2127 /* We use the higher 6-bit for the actual size difference. The
2128 lowest bit is set if the DPI is different. */
2129 EMACS_INT diff;
2130 EMACS_INT pixel_size = XINT (spec_prop[FONT_SIZE_INDEX]);
2131
2132 if (CONSP (Vface_font_rescale_alist))
2133 pixel_size *= font_rescale_ratio (entity);
2134 diff = eabs (pixel_size - XINT (AREF (entity, FONT_SIZE_INDEX))) << 1;
2135 if (! NILP (spec_prop[FONT_DPI_INDEX])
2136 && ! EQ (spec_prop[FONT_DPI_INDEX], AREF (entity, FONT_DPI_INDEX)))
2137 diff |= 1;
2138 if (! NILP (spec_prop[FONT_AVGWIDTH_INDEX])
2139 && ! EQ (spec_prop[FONT_AVGWIDTH_INDEX], AREF (entity, FONT_AVGWIDTH_INDEX)))
2140 diff |= 1;
2141 score |= min (diff, 127) << sort_shift_bits[FONT_SIZE_INDEX];
2142 }
2143
2144 return score;
2145 }
2146
2147
2148 /* Concatenate all elements of LIST into one vector. LIST is a list
2149 of font-entity vectors. */
2150
2151 static Lisp_Object
2152 font_vconcat_entity_vectors (Lisp_Object list)
2153 {
2154 int nargs = XINT (Flength (list));
2155 Lisp_Object *args = alloca (word_size * nargs);
2156 int i;
2157
2158 for (i = 0; i < nargs; i++, list = XCDR (list))
2159 args[i] = XCAR (list);
2160 return Fvconcat (nargs, args);
2161 }
2162
2163
2164 /* The structure for elements being sorted by qsort. */
2165 struct font_sort_data
2166 {
2167 unsigned score;
2168 int font_driver_preference;
2169 Lisp_Object entity;
2170 };
2171
2172
2173 /* The comparison function for qsort. */
2174
2175 static int
2176 font_compare (const void *d1, const void *d2)
2177 {
2178 const struct font_sort_data *data1 = d1;
2179 const struct font_sort_data *data2 = d2;
2180
2181 if (data1->score < data2->score)
2182 return -1;
2183 else if (data1->score > data2->score)
2184 return 1;
2185 return (data1->font_driver_preference - data2->font_driver_preference);
2186 }
2187
2188
2189 /* Sort each font-entity vector in LIST by closeness to font-spec PREFER.
2190 If PREFER specifies a point-size, calculate the corresponding
2191 pixel-size from QCdpi property of PREFER or from the Y-resolution
2192 of FRAME before sorting.
2193
2194 If BEST-ONLY is nonzero, return the best matching entity (that
2195 supports the character BEST-ONLY if BEST-ONLY is positive, or any
2196 if BEST-ONLY is negative). Otherwise, return the sorted result as
2197 a single vector of font-entities.
2198
2199 This function does no optimization for the case that the total
2200 number of elements is 1. The caller should avoid calling this in
2201 such a case. */
2202
2203 static Lisp_Object
2204 font_sort_entities (Lisp_Object list, Lisp_Object prefer,
2205 struct frame *f, int best_only)
2206 {
2207 Lisp_Object prefer_prop[FONT_SPEC_MAX];
2208 int len, maxlen, i;
2209 struct font_sort_data *data;
2210 unsigned best_score;
2211 Lisp_Object best_entity;
2212 Lisp_Object tail, vec IF_LINT (= Qnil);
2213 USE_SAFE_ALLOCA;
2214
2215 for (i = FONT_WEIGHT_INDEX; i <= FONT_AVGWIDTH_INDEX; i++)
2216 prefer_prop[i] = AREF (prefer, i);
2217 if (FLOATP (prefer_prop[FONT_SIZE_INDEX]))
2218 prefer_prop[FONT_SIZE_INDEX]
2219 = make_number (font_pixel_size (f, prefer));
2220
2221 if (NILP (XCDR (list)))
2222 {
2223 /* What we have to take care of is this single vector. */
2224 vec = XCAR (list);
2225 maxlen = ASIZE (vec);
2226 }
2227 else if (best_only)
2228 {
2229 /* We don't have to perform sort, so there's no need of creating
2230 a single vector. But, we must find the length of the longest
2231 vector. */
2232 maxlen = 0;
2233 for (tail = list; CONSP (tail); tail = XCDR (tail))
2234 if (maxlen < ASIZE (XCAR (tail)))
2235 maxlen = ASIZE (XCAR (tail));
2236 }
2237 else
2238 {
2239 /* We have to create a single vector to sort it. */
2240 vec = font_vconcat_entity_vectors (list);
2241 maxlen = ASIZE (vec);
2242 }
2243
2244 data = SAFE_ALLOCA (maxlen * sizeof *data);
2245 best_score = 0xFFFFFFFF;
2246 best_entity = Qnil;
2247
2248 for (tail = list; CONSP (tail); tail = XCDR (tail))
2249 {
2250 int font_driver_preference = 0;
2251 Lisp_Object current_font_driver;
2252
2253 if (best_only)
2254 vec = XCAR (tail);
2255 len = ASIZE (vec);
2256
2257 /* We are sure that the length of VEC > 0. */
2258 current_font_driver = AREF (AREF (vec, 0), FONT_TYPE_INDEX);
2259 /* Score the elements. */
2260 for (i = 0; i < len; i++)
2261 {
2262 data[i].entity = AREF (vec, i);
2263 data[i].score
2264 = ((best_only <= 0 || font_has_char (f, data[i].entity, best_only)
2265 > 0)
2266 ? font_score (data[i].entity, prefer_prop)
2267 : 0xFFFFFFFF);
2268 if (best_only && best_score > data[i].score)
2269 {
2270 best_score = data[i].score;
2271 best_entity = data[i].entity;
2272 if (best_score == 0)
2273 break;
2274 }
2275 if (! EQ (current_font_driver, AREF (AREF (vec, i), FONT_TYPE_INDEX)))
2276 {
2277 current_font_driver = AREF (AREF (vec, i), FONT_TYPE_INDEX);
2278 font_driver_preference++;
2279 }
2280 data[i].font_driver_preference = font_driver_preference;
2281 }
2282
2283 /* Sort if necessary. */
2284 if (! best_only)
2285 {
2286 qsort (data, len, sizeof *data, font_compare);
2287 for (i = 0; i < len; i++)
2288 ASET (vec, i, data[i].entity);
2289 break;
2290 }
2291 else
2292 vec = best_entity;
2293 }
2294
2295 SAFE_FREE ();
2296
2297 FONT_ADD_LOG ("sort-by", prefer, vec);
2298 return vec;
2299 }
2300
2301 \f
2302 /* API of Font Service Layer. */
2303
2304 /* Reflect ORDER (see the variable font_sort_order in xfaces.c) to
2305 sort_shift_bits. Finternal_set_font_selection_order calls this
2306 function with font_sort_order after setting up it. */
2307
2308 void
2309 font_update_sort_order (int *order)
2310 {
2311 int i, shift_bits;
2312
2313 for (i = 0, shift_bits = 23; i < 4; i++, shift_bits -= 7)
2314 {
2315 int xlfd_idx = order[i];
2316
2317 if (xlfd_idx == XLFD_WEIGHT_INDEX)
2318 sort_shift_bits[FONT_WEIGHT_INDEX] = shift_bits;
2319 else if (xlfd_idx == XLFD_SLANT_INDEX)
2320 sort_shift_bits[FONT_SLANT_INDEX] = shift_bits;
2321 else if (xlfd_idx == XLFD_SWIDTH_INDEX)
2322 sort_shift_bits[FONT_WIDTH_INDEX] = shift_bits;
2323 else
2324 sort_shift_bits[FONT_SIZE_INDEX] = shift_bits;
2325 }
2326 }
2327
2328 static bool
2329 font_check_otf_features (Lisp_Object script, Lisp_Object langsys,
2330 Lisp_Object features, Lisp_Object table)
2331 {
2332 Lisp_Object val;
2333 bool negative;
2334
2335 table = assq_no_quit (script, table);
2336 if (NILP (table))
2337 return 0;
2338 table = XCDR (table);
2339 if (! NILP (langsys))
2340 {
2341 table = assq_no_quit (langsys, table);
2342 if (NILP (table))
2343 return 0;
2344 }
2345 else
2346 {
2347 val = assq_no_quit (Qnil, table);
2348 if (NILP (val))
2349 table = XCAR (table);
2350 else
2351 table = val;
2352 }
2353 table = XCDR (table);
2354 for (negative = 0; CONSP (features); features = XCDR (features))
2355 {
2356 if (NILP (XCAR (features)))
2357 {
2358 negative = 1;
2359 continue;
2360 }
2361 if (NILP (Fmemq (XCAR (features), table)) != negative)
2362 return 0;
2363 }
2364 return 1;
2365 }
2366
2367 /* Check if OTF_CAPABILITY satisfies SPEC (otf-spec). */
2368
2369 static bool
2370 font_check_otf (Lisp_Object spec, Lisp_Object otf_capability)
2371 {
2372 Lisp_Object script, langsys = Qnil, gsub = Qnil, gpos = Qnil;
2373
2374 script = XCAR (spec);
2375 spec = XCDR (spec);
2376 if (! NILP (spec))
2377 {
2378 langsys = XCAR (spec);
2379 spec = XCDR (spec);
2380 if (! NILP (spec))
2381 {
2382 gsub = XCAR (spec);
2383 spec = XCDR (spec);
2384 if (! NILP (spec))
2385 gpos = XCAR (spec);
2386 }
2387 }
2388
2389 if (! NILP (gsub) && ! font_check_otf_features (script, langsys, gsub,
2390 XCAR (otf_capability)))
2391 return 0;
2392 if (! NILP (gpos) && ! font_check_otf_features (script, langsys, gpos,
2393 XCDR (otf_capability)))
2394 return 0;
2395 return 1;
2396 }
2397
2398
2399
2400 /* Check if FONT (font-entity or font-object) matches with the font
2401 specification SPEC. */
2402
2403 bool
2404 font_match_p (Lisp_Object spec, Lisp_Object font)
2405 {
2406 Lisp_Object prop[FONT_SPEC_MAX], *props;
2407 Lisp_Object extra, font_extra;
2408 int i;
2409
2410 for (i = FONT_FOUNDRY_INDEX; i <= FONT_REGISTRY_INDEX; i++)
2411 if (! NILP (AREF (spec, i))
2412 && ! NILP (AREF (font, i))
2413 && ! EQ (AREF (spec, i), AREF (font, i)))
2414 return 0;
2415 props = XFONT_SPEC (spec)->props;
2416 if (FLOATP (props[FONT_SIZE_INDEX]))
2417 {
2418 for (i = FONT_FOUNDRY_INDEX; i < FONT_SIZE_INDEX; i++)
2419 prop[i] = AREF (spec, i);
2420 prop[FONT_SIZE_INDEX]
2421 = make_number (font_pixel_size (XFRAME (selected_frame), spec));
2422 props = prop;
2423 }
2424
2425 if (font_score (font, props) > 0)
2426 return 0;
2427 extra = AREF (spec, FONT_EXTRA_INDEX);
2428 font_extra = AREF (font, FONT_EXTRA_INDEX);
2429 for (; CONSP (extra); extra = XCDR (extra))
2430 {
2431 Lisp_Object key = XCAR (XCAR (extra));
2432 Lisp_Object val = XCDR (XCAR (extra)), val2;
2433
2434 if (EQ (key, QClang))
2435 {
2436 val2 = assq_no_quit (key, font_extra);
2437 if (NILP (val2))
2438 return 0;
2439 val2 = XCDR (val2);
2440 if (CONSP (val))
2441 {
2442 if (! CONSP (val2))
2443 return 0;
2444 while (CONSP (val))
2445 if (NILP (Fmemq (val, val2)))
2446 return 0;
2447 }
2448 else
2449 if (CONSP (val2)
2450 ? NILP (Fmemq (val, XCDR (val2)))
2451 : ! EQ (val, val2))
2452 return 0;
2453 }
2454 else if (EQ (key, QCscript))
2455 {
2456 val2 = assq_no_quit (val, Vscript_representative_chars);
2457 if (CONSP (val2))
2458 {
2459 val2 = XCDR (val2);
2460 if (CONSP (val2))
2461 {
2462 /* All characters in the list must be supported. */
2463 for (; CONSP (val2); val2 = XCDR (val2))
2464 {
2465 if (! CHARACTERP (XCAR (val2)))
2466 continue;
2467 if (font_encode_char (font, XFASTINT (XCAR (val2)))
2468 == FONT_INVALID_CODE)
2469 return 0;
2470 }
2471 }
2472 else if (VECTORP (val2))
2473 {
2474 /* At most one character in the vector must be supported. */
2475 for (i = 0; i < ASIZE (val2); i++)
2476 {
2477 if (! CHARACTERP (AREF (val2, i)))
2478 continue;
2479 if (font_encode_char (font, XFASTINT (AREF (val2, i)))
2480 != FONT_INVALID_CODE)
2481 break;
2482 }
2483 if (i == ASIZE (val2))
2484 return 0;
2485 }
2486 }
2487 }
2488 else if (EQ (key, QCotf))
2489 {
2490 struct font *fontp;
2491
2492 if (! FONT_OBJECT_P (font))
2493 return 0;
2494 fontp = XFONT_OBJECT (font);
2495 if (! fontp->driver->otf_capability)
2496 return 0;
2497 val2 = fontp->driver->otf_capability (fontp);
2498 if (NILP (val2) || ! font_check_otf (val, val2))
2499 return 0;
2500 }
2501 }
2502
2503 return 1;
2504 }
2505 \f
2506
2507 /* Font cache
2508
2509 Each font backend has the callback function get_cache, and it
2510 returns a cons cell of which cdr part can be freely used for
2511 caching fonts. The cons cell may be shared by multiple frames
2512 and/or multiple font drivers. So, we arrange the cdr part as this:
2513
2514 ((DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) ...)
2515
2516 where DRIVER-TYPE is a symbol such as `x', `xft', etc., NUM-FRAMES
2517 is a number frames sharing this cache, and FONT-CACHE-DATA is a
2518 cons (FONT-SPEC . [FONT-ENTITY ...]). */
2519
2520 static void font_prepare_cache (struct frame *, struct font_driver *);
2521 static void font_finish_cache (struct frame *, struct font_driver *);
2522 static Lisp_Object font_get_cache (struct frame *, struct font_driver *);
2523 static void font_clear_cache (struct frame *, Lisp_Object,
2524 struct font_driver *);
2525
2526 static void
2527 font_prepare_cache (struct frame *f, struct font_driver *driver)
2528 {
2529 Lisp_Object cache, val;
2530
2531 cache = driver->get_cache (f);
2532 val = XCDR (cache);
2533 while (CONSP (val) && ! EQ (XCAR (XCAR (val)), driver->type))
2534 val = XCDR (val);
2535 if (NILP (val))
2536 {
2537 val = list2 (driver->type, make_number (1));
2538 XSETCDR (cache, Fcons (val, XCDR (cache)));
2539 }
2540 else
2541 {
2542 val = XCDR (XCAR (val));
2543 XSETCAR (val, make_number (XINT (XCAR (val)) + 1));
2544 }
2545 }
2546
2547
2548 static void
2549 font_finish_cache (struct frame *f, struct font_driver *driver)
2550 {
2551 Lisp_Object cache, val, tmp;
2552
2553
2554 cache = driver->get_cache (f);
2555 val = XCDR (cache);
2556 while (CONSP (val) && ! EQ (XCAR (XCAR (val)), driver->type))
2557 cache = val, val = XCDR (val);
2558 eassert (! NILP (val));
2559 tmp = XCDR (XCAR (val));
2560 XSETCAR (tmp, make_number (XINT (XCAR (tmp)) - 1));
2561 if (XINT (XCAR (tmp)) == 0)
2562 {
2563 font_clear_cache (f, XCAR (val), driver);
2564 XSETCDR (cache, XCDR (val));
2565 }
2566 }
2567
2568
2569 static Lisp_Object
2570 font_get_cache (struct frame *f, struct font_driver *driver)
2571 {
2572 Lisp_Object val = driver->get_cache (f);
2573 Lisp_Object type = driver->type;
2574
2575 eassert (CONSP (val));
2576 for (val = XCDR (val); ! EQ (XCAR (XCAR (val)), type); val = XCDR (val));
2577 eassert (CONSP (val));
2578 /* VAL = ((DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) ...) */
2579 val = XCDR (XCAR (val));
2580 return val;
2581 }
2582
2583
2584 static void
2585 font_clear_cache (struct frame *f, Lisp_Object cache, struct font_driver *driver)
2586 {
2587 Lisp_Object tail, elt;
2588 Lisp_Object entity;
2589 ptrdiff_t i;
2590
2591 /* CACHE = (DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) */
2592 for (tail = XCDR (XCDR (cache)); CONSP (tail); tail = XCDR (tail))
2593 {
2594 elt = XCAR (tail);
2595 /* elt should have the form (FONT-SPEC . [FONT-ENTITY ...]) */
2596 if (CONSP (elt) && FONT_SPEC_P (XCAR (elt)))
2597 {
2598 elt = XCDR (elt);
2599 eassert (VECTORP (elt));
2600 for (i = 0; i < ASIZE (elt); i++)
2601 {
2602 entity = AREF (elt, i);
2603
2604 if (FONT_ENTITY_P (entity)
2605 && EQ (driver->type, AREF (entity, FONT_TYPE_INDEX)))
2606 {
2607 Lisp_Object objlist = AREF (entity, FONT_OBJLIST_INDEX);
2608
2609 for (; CONSP (objlist); objlist = XCDR (objlist))
2610 {
2611 Lisp_Object val = XCAR (objlist);
2612 struct font *font = XFONT_OBJECT (val);
2613
2614 if (! NILP (AREF (val, FONT_TYPE_INDEX)))
2615 {
2616 eassert (font && driver == font->driver);
2617 driver->close (font);
2618 }
2619 }
2620 if (driver->free_entity)
2621 driver->free_entity (entity);
2622 }
2623 }
2624 }
2625 }
2626 XSETCDR (cache, Qnil);
2627 }
2628 \f
2629
2630 static Lisp_Object scratch_font_spec, scratch_font_prefer;
2631
2632 /* Check each font-entity in VEC, and return a list of font-entities
2633 that satisfy these conditions:
2634 (1) matches with SPEC and SIZE if SPEC is not nil, and
2635 (2) doesn't match with any regexps in Vface_ignored_fonts (if non-nil).
2636 */
2637
2638 static Lisp_Object
2639 font_delete_unmatched (Lisp_Object vec, Lisp_Object spec, int size)
2640 {
2641 Lisp_Object entity, val;
2642 enum font_property_index prop;
2643 int i;
2644
2645 for (val = Qnil, i = ASIZE (vec) - 1; i >= 0; i--)
2646 {
2647 entity = AREF (vec, i);
2648 if (! NILP (Vface_ignored_fonts))
2649 {
2650 char name[256];
2651 ptrdiff_t namelen;
2652 Lisp_Object tail, regexp;
2653
2654 namelen = font_unparse_xlfd (entity, 0, name, 256);
2655 if (namelen >= 0)
2656 {
2657 for (tail = Vface_ignored_fonts; CONSP (tail); tail = XCDR (tail))
2658 {
2659 regexp = XCAR (tail);
2660 if (STRINGP (regexp)
2661 && fast_c_string_match_ignore_case (regexp, name,
2662 namelen) >= 0)
2663 break;
2664 }
2665 if (CONSP (tail))
2666 continue;
2667 }
2668 }
2669 if (NILP (spec))
2670 {
2671 val = Fcons (entity, val);
2672 continue;
2673 }
2674 for (prop = FONT_WEIGHT_INDEX; prop < FONT_SIZE_INDEX; prop++)
2675 if (INTEGERP (AREF (spec, prop))
2676 && ((XINT (AREF (spec, prop)) >> 8)
2677 != (XINT (AREF (entity, prop)) >> 8)))
2678 prop = FONT_SPEC_MAX;
2679 if (prop < FONT_SPEC_MAX
2680 && size
2681 && XINT (AREF (entity, FONT_SIZE_INDEX)) > 0)
2682 {
2683 int diff = XINT (AREF (entity, FONT_SIZE_INDEX)) - size;
2684
2685 if (eabs (diff) > FONT_PIXEL_SIZE_QUANTUM)
2686 prop = FONT_SPEC_MAX;
2687 }
2688 if (prop < FONT_SPEC_MAX
2689 && INTEGERP (AREF (spec, FONT_DPI_INDEX))
2690 && INTEGERP (AREF (entity, FONT_DPI_INDEX))
2691 && XINT (AREF (entity, FONT_DPI_INDEX)) != 0
2692 && ! EQ (AREF (spec, FONT_DPI_INDEX), AREF (entity, FONT_DPI_INDEX)))
2693 prop = FONT_SPEC_MAX;
2694 if (prop < FONT_SPEC_MAX
2695 && INTEGERP (AREF (spec, FONT_AVGWIDTH_INDEX))
2696 && INTEGERP (AREF (entity, FONT_AVGWIDTH_INDEX))
2697 && XINT (AREF (entity, FONT_AVGWIDTH_INDEX)) != 0
2698 && ! EQ (AREF (spec, FONT_AVGWIDTH_INDEX),
2699 AREF (entity, FONT_AVGWIDTH_INDEX)))
2700 prop = FONT_SPEC_MAX;
2701 if (prop < FONT_SPEC_MAX)
2702 val = Fcons (entity, val);
2703 }
2704 return (Fvconcat (1, &val));
2705 }
2706
2707
2708 /* Return a list of vectors of font-entities matching with SPEC on
2709 FRAME. Each elements in the list is a vector of entities from the
2710 same font-driver. */
2711
2712 Lisp_Object
2713 font_list_entities (struct frame *f, Lisp_Object spec)
2714 {
2715 struct font_driver_list *driver_list = f->font_driver_list;
2716 Lisp_Object ftype, val;
2717 Lisp_Object list = Qnil;
2718 int size;
2719 bool need_filtering = 0;
2720 int i;
2721
2722 eassert (FONT_SPEC_P (spec));
2723
2724 if (INTEGERP (AREF (spec, FONT_SIZE_INDEX)))
2725 size = XINT (AREF (spec, FONT_SIZE_INDEX));
2726 else if (FLOATP (AREF (spec, FONT_SIZE_INDEX)))
2727 size = font_pixel_size (f, spec);
2728 else
2729 size = 0;
2730
2731 ftype = AREF (spec, FONT_TYPE_INDEX);
2732 for (i = FONT_FOUNDRY_INDEX; i <= FONT_REGISTRY_INDEX; i++)
2733 ASET (scratch_font_spec, i, AREF (spec, i));
2734 for (i = FONT_WEIGHT_INDEX; i < FONT_EXTRA_INDEX; i++)
2735 if (i != FONT_SPACING_INDEX)
2736 {
2737 ASET (scratch_font_spec, i, Qnil);
2738 if (! NILP (AREF (spec, i)))
2739 need_filtering = 1;
2740 }
2741 ASET (scratch_font_spec, FONT_SPACING_INDEX, AREF (spec, FONT_SPACING_INDEX));
2742 ASET (scratch_font_spec, FONT_EXTRA_INDEX, AREF (spec, FONT_EXTRA_INDEX));
2743
2744 for (; driver_list; driver_list = driver_list->next)
2745 if (driver_list->on
2746 && (NILP (ftype) || EQ (driver_list->driver->type, ftype)))
2747 {
2748 Lisp_Object cache = font_get_cache (f, driver_list->driver);
2749
2750 ASET (scratch_font_spec, FONT_TYPE_INDEX, driver_list->driver->type);
2751 val = assoc_no_quit (scratch_font_spec, XCDR (cache));
2752 if (CONSP (val))
2753 val = XCDR (val);
2754 else
2755 {
2756 val = driver_list->driver->list (f, scratch_font_spec);
2757 if (!NILP (val))
2758 {
2759 Lisp_Object copy = copy_font_spec (scratch_font_spec);
2760
2761 val = Fvconcat (1, &val);
2762 ASET (copy, FONT_TYPE_INDEX, driver_list->driver->type);
2763 XSETCDR (cache, Fcons (Fcons (copy, val), XCDR (cache)));
2764 }
2765 }
2766 if (VECTORP (val) && ASIZE (val) > 0
2767 && (need_filtering
2768 || ! NILP (Vface_ignored_fonts)))
2769 val = font_delete_unmatched (val, need_filtering ? spec : Qnil, size);
2770 if (VECTORP (val) && ASIZE (val) > 0)
2771 list = Fcons (val, list);
2772 }
2773
2774 list = Fnreverse (list);
2775 FONT_ADD_LOG ("list", spec, list);
2776 return list;
2777 }
2778
2779
2780 /* Return a font entity matching with SPEC on FRAME. ATTRS, if non
2781 nil, is an array of face's attributes, which specifies preferred
2782 font-related attributes. */
2783
2784 static Lisp_Object
2785 font_matching_entity (struct frame *f, Lisp_Object *attrs, Lisp_Object spec)
2786 {
2787 struct font_driver_list *driver_list = f->font_driver_list;
2788 Lisp_Object ftype, size, entity;
2789 Lisp_Object work = copy_font_spec (spec);
2790
2791 ftype = AREF (spec, FONT_TYPE_INDEX);
2792 size = AREF (spec, FONT_SIZE_INDEX);
2793
2794 if (FLOATP (size))
2795 ASET (work, FONT_SIZE_INDEX, make_number (font_pixel_size (f, spec)));
2796 FONT_SET_STYLE (work, FONT_WEIGHT_INDEX, attrs[LFACE_WEIGHT_INDEX]);
2797 FONT_SET_STYLE (work, FONT_SLANT_INDEX, attrs[LFACE_SLANT_INDEX]);
2798 FONT_SET_STYLE (work, FONT_WIDTH_INDEX, attrs[LFACE_SWIDTH_INDEX]);
2799
2800 entity = Qnil;
2801 for (; driver_list; driver_list = driver_list->next)
2802 if (driver_list->on
2803 && (NILP (ftype) || EQ (driver_list->driver->type, ftype)))
2804 {
2805 Lisp_Object cache = font_get_cache (f, driver_list->driver);
2806
2807 ASET (work, FONT_TYPE_INDEX, driver_list->driver->type);
2808 entity = assoc_no_quit (work, XCDR (cache));
2809 if (CONSP (entity))
2810 entity = XCDR (entity);
2811 else
2812 {
2813 entity = driver_list->driver->match (f, work);
2814 if (!NILP (entity))
2815 {
2816 Lisp_Object copy = copy_font_spec (work);
2817 Lisp_Object match = Fvector (1, &entity);
2818
2819 ASET (copy, FONT_TYPE_INDEX, driver_list->driver->type);
2820 XSETCDR (cache, Fcons (Fcons (copy, match), XCDR (cache)));
2821 }
2822 }
2823 if (! NILP (entity))
2824 break;
2825 }
2826 FONT_ADD_LOG ("match", work, entity);
2827 return entity;
2828 }
2829
2830
2831 /* Open a font of ENTITY and PIXEL_SIZE on frame F, and return the
2832 opened font object. */
2833
2834 static Lisp_Object
2835 font_open_entity (struct frame *f, Lisp_Object entity, int pixel_size)
2836 {
2837 struct font_driver_list *driver_list;
2838 Lisp_Object objlist, size, val, font_object;
2839 struct font *font;
2840 int min_width, height, psize;
2841
2842 eassert (FONT_ENTITY_P (entity));
2843 size = AREF (entity, FONT_SIZE_INDEX);
2844 if (XINT (size) != 0)
2845 pixel_size = XINT (size);
2846
2847 val = AREF (entity, FONT_TYPE_INDEX);
2848 for (driver_list = f->font_driver_list;
2849 driver_list && ! EQ (driver_list->driver->type, val);
2850 driver_list = driver_list->next);
2851 if (! driver_list)
2852 return Qnil;
2853
2854 for (objlist = AREF (entity, FONT_OBJLIST_INDEX); CONSP (objlist);
2855 objlist = XCDR (objlist))
2856 {
2857 Lisp_Object fn = XCAR (objlist);
2858 if (! NILP (AREF (fn, FONT_TYPE_INDEX))
2859 && XFONT_OBJECT (fn)->pixel_size == pixel_size)
2860 {
2861 if (driver_list->driver->cached_font_ok == NULL
2862 || driver_list->driver->cached_font_ok (f, fn, entity))
2863 return fn;
2864 }
2865 }
2866
2867 /* We always open a font of manageable size; i.e non-zero average
2868 width and height. */
2869 for (psize = pixel_size; ; psize++)
2870 {
2871 font_object = driver_list->driver->open (f, entity, psize);
2872 if (NILP (font_object))
2873 return Qnil;
2874 font = XFONT_OBJECT (font_object);
2875 if (font->average_width > 0 && font->height > 0)
2876 break;
2877 }
2878 ASET (font_object, FONT_SIZE_INDEX, make_number (pixel_size));
2879 FONT_ADD_LOG ("open", entity, font_object);
2880 ASET (entity, FONT_OBJLIST_INDEX,
2881 Fcons (font_object, AREF (entity, FONT_OBJLIST_INDEX)));
2882
2883 font = XFONT_OBJECT (font_object);
2884 min_width = (font->min_width ? font->min_width
2885 : font->average_width ? font->average_width
2886 : font->space_width ? font->space_width
2887 : 1);
2888 height = (font->height ? font->height : 1);
2889 #ifdef HAVE_WINDOW_SYSTEM
2890 FRAME_DISPLAY_INFO (f)->n_fonts++;
2891 if (FRAME_DISPLAY_INFO (f)->n_fonts == 1)
2892 {
2893 FRAME_SMALLEST_CHAR_WIDTH (f) = min_width;
2894 FRAME_SMALLEST_FONT_HEIGHT (f) = height;
2895 f->fonts_changed = 1;
2896 }
2897 else
2898 {
2899 if (FRAME_SMALLEST_CHAR_WIDTH (f) > min_width)
2900 FRAME_SMALLEST_CHAR_WIDTH (f) = min_width, f->fonts_changed = 1;
2901 if (FRAME_SMALLEST_FONT_HEIGHT (f) > height)
2902 FRAME_SMALLEST_FONT_HEIGHT (f) = height, f->fonts_changed = 1;
2903 }
2904 #endif
2905
2906 return font_object;
2907 }
2908
2909
2910 /* Close FONT_OBJECT that is opened on frame F. */
2911
2912 static void
2913 font_close_object (struct frame *f, Lisp_Object font_object)
2914 {
2915 struct font *font = XFONT_OBJECT (font_object);
2916
2917 if (NILP (AREF (font_object, FONT_TYPE_INDEX)))
2918 /* Already closed. */
2919 return;
2920 FONT_ADD_LOG ("close", font_object, Qnil);
2921 font->driver->close (font);
2922 #ifdef HAVE_WINDOW_SYSTEM
2923 eassert (FRAME_DISPLAY_INFO (f)->n_fonts);
2924 FRAME_DISPLAY_INFO (f)->n_fonts--;
2925 #endif
2926 }
2927
2928
2929 /* Return 1 if FONT on F has a glyph for character C, 0 if not, -1 if
2930 FONT is a font-entity and it must be opened to check. */
2931
2932 int
2933 font_has_char (struct frame *f, Lisp_Object font, int c)
2934 {
2935 struct font *fontp;
2936
2937 if (FONT_ENTITY_P (font))
2938 {
2939 Lisp_Object type = AREF (font, FONT_TYPE_INDEX);
2940 struct font_driver_list *driver_list;
2941
2942 for (driver_list = f->font_driver_list;
2943 driver_list && ! EQ (driver_list->driver->type, type);
2944 driver_list = driver_list->next);
2945 if (! driver_list)
2946 return 0;
2947 if (! driver_list->driver->has_char)
2948 return -1;
2949 return driver_list->driver->has_char (font, c);
2950 }
2951
2952 eassert (FONT_OBJECT_P (font));
2953 fontp = XFONT_OBJECT (font);
2954 if (fontp->driver->has_char)
2955 {
2956 int result = fontp->driver->has_char (font, c);
2957
2958 if (result >= 0)
2959 return result;
2960 }
2961 return (fontp->driver->encode_char (fontp, c) != FONT_INVALID_CODE);
2962 }
2963
2964
2965 /* Return the glyph ID of FONT_OBJECT for character C. */
2966
2967 static unsigned
2968 font_encode_char (Lisp_Object font_object, int c)
2969 {
2970 struct font *font;
2971
2972 eassert (FONT_OBJECT_P (font_object));
2973 font = XFONT_OBJECT (font_object);
2974 return font->driver->encode_char (font, c);
2975 }
2976
2977
2978 /* Return the name of FONT_OBJECT. */
2979
2980 Lisp_Object
2981 font_get_name (Lisp_Object font_object)
2982 {
2983 eassert (FONT_OBJECT_P (font_object));
2984 return AREF (font_object, FONT_NAME_INDEX);
2985 }
2986
2987
2988 /* Create a new font spec from FONT_NAME, and return it. If FONT_NAME
2989 could not be parsed by font_parse_name, return Qnil. */
2990
2991 Lisp_Object
2992 font_spec_from_name (Lisp_Object font_name)
2993 {
2994 Lisp_Object spec = Ffont_spec (0, NULL);
2995
2996 CHECK_STRING (font_name);
2997 if (font_parse_name (SSDATA (font_name), SBYTES (font_name), spec) == -1)
2998 return Qnil;
2999 font_put_extra (spec, QCname, font_name);
3000 font_put_extra (spec, QCuser_spec, font_name);
3001 return spec;
3002 }
3003
3004
3005 void
3006 font_clear_prop (Lisp_Object *attrs, enum font_property_index prop)
3007 {
3008 Lisp_Object font = attrs[LFACE_FONT_INDEX];
3009
3010 if (! FONTP (font))
3011 return;
3012
3013 if (! NILP (Ffont_get (font, QCname)))
3014 {
3015 font = copy_font_spec (font);
3016 font_put_extra (font, QCname, Qnil);
3017 }
3018
3019 if (NILP (AREF (font, prop))
3020 && prop != FONT_FAMILY_INDEX
3021 && prop != FONT_FOUNDRY_INDEX
3022 && prop != FONT_WIDTH_INDEX
3023 && prop != FONT_SIZE_INDEX)
3024 return;
3025 if (EQ (font, attrs[LFACE_FONT_INDEX]))
3026 font = copy_font_spec (font);
3027 ASET (font, prop, Qnil);
3028 if (prop == FONT_FAMILY_INDEX || prop == FONT_FOUNDRY_INDEX)
3029 {
3030 if (prop == FONT_FAMILY_INDEX)
3031 {
3032 ASET (font, FONT_FOUNDRY_INDEX, Qnil);
3033 /* If we are setting the font family, we must also clear
3034 FONT_WIDTH_INDEX to avoid rejecting families that lack
3035 support for some widths. */
3036 ASET (font, FONT_WIDTH_INDEX, Qnil);
3037 }
3038 ASET (font, FONT_ADSTYLE_INDEX, Qnil);
3039 ASET (font, FONT_REGISTRY_INDEX, Qnil);
3040 ASET (font, FONT_SIZE_INDEX, Qnil);
3041 ASET (font, FONT_DPI_INDEX, Qnil);
3042 ASET (font, FONT_SPACING_INDEX, Qnil);
3043 ASET (font, FONT_AVGWIDTH_INDEX, Qnil);
3044 }
3045 else if (prop == FONT_SIZE_INDEX)
3046 {
3047 ASET (font, FONT_DPI_INDEX, Qnil);
3048 ASET (font, FONT_SPACING_INDEX, Qnil);
3049 ASET (font, FONT_AVGWIDTH_INDEX, Qnil);
3050 }
3051 else if (prop == FONT_WIDTH_INDEX)
3052 ASET (font, FONT_AVGWIDTH_INDEX, Qnil);
3053 attrs[LFACE_FONT_INDEX] = font;
3054 }
3055
3056 /* Select a font from ENTITIES (list of font-entity vectors) that
3057 supports C and is the best match for ATTRS and PIXEL_SIZE. */
3058
3059 static Lisp_Object
3060 font_select_entity (struct frame *f, Lisp_Object entities,
3061 Lisp_Object *attrs, int pixel_size, int c)
3062 {
3063 Lisp_Object font_entity;
3064 Lisp_Object prefer;
3065 int i;
3066
3067 if (NILP (XCDR (entities))
3068 && ASIZE (XCAR (entities)) == 1)
3069 {
3070 font_entity = AREF (XCAR (entities), 0);
3071 if (c < 0 || font_has_char (f, font_entity, c) > 0)
3072 return font_entity;
3073 return Qnil;
3074 }
3075
3076 /* Sort fonts by properties specified in ATTRS. */
3077 prefer = scratch_font_prefer;
3078
3079 for (i = FONT_WEIGHT_INDEX; i <= FONT_SIZE_INDEX; i++)
3080 ASET (prefer, i, Qnil);
3081 if (FONTP (attrs[LFACE_FONT_INDEX]))
3082 {
3083 Lisp_Object face_font = attrs[LFACE_FONT_INDEX];
3084
3085 for (i = FONT_WEIGHT_INDEX; i <= FONT_SIZE_INDEX; i++)
3086 ASET (prefer, i, AREF (face_font, i));
3087 }
3088 if (NILP (AREF (prefer, FONT_WEIGHT_INDEX)))
3089 FONT_SET_STYLE (prefer, FONT_WEIGHT_INDEX, attrs[LFACE_WEIGHT_INDEX]);
3090 if (NILP (AREF (prefer, FONT_SLANT_INDEX)))
3091 FONT_SET_STYLE (prefer, FONT_SLANT_INDEX, attrs[LFACE_SLANT_INDEX]);
3092 if (NILP (AREF (prefer, FONT_WIDTH_INDEX)))
3093 FONT_SET_STYLE (prefer, FONT_WIDTH_INDEX, attrs[LFACE_SWIDTH_INDEX]);
3094 ASET (prefer, FONT_SIZE_INDEX, make_number (pixel_size));
3095
3096 return font_sort_entities (entities, prefer, f, c);
3097 }
3098
3099 /* Return a font-entity that satisfies SPEC and is the best match for
3100 face's font related attributes in ATTRS. C, if not negative, is a
3101 character that the entity must support. */
3102
3103 Lisp_Object
3104 font_find_for_lface (struct frame *f, Lisp_Object *attrs, Lisp_Object spec, int c)
3105 {
3106 Lisp_Object work;
3107 Lisp_Object entities, val;
3108 Lisp_Object foundry[3], *family, registry[3], adstyle[3];
3109 int pixel_size;
3110 int i, j, k, l;
3111 USE_SAFE_ALLOCA;
3112
3113 registry[0] = AREF (spec, FONT_REGISTRY_INDEX);
3114 if (NILP (registry[0]))
3115 {
3116 registry[0] = DEFAULT_ENCODING;
3117 registry[1] = Qascii_0;
3118 registry[2] = zero_vector;
3119 }
3120 else
3121 registry[1] = zero_vector;
3122
3123 if (c >= 0 && ! NILP (AREF (spec, FONT_REGISTRY_INDEX)))
3124 {
3125 struct charset *encoding, *repertory;
3126
3127 if (font_registry_charsets (AREF (spec, FONT_REGISTRY_INDEX),
3128 &encoding, &repertory) < 0)
3129 return Qnil;
3130 if (repertory
3131 && ENCODE_CHAR (repertory, c) == CHARSET_INVALID_CODE (repertory))
3132 return Qnil;
3133 else if (c > encoding->max_char)
3134 return Qnil;
3135 }
3136
3137 work = copy_font_spec (spec);
3138 ASET (work, FONT_TYPE_INDEX, AREF (spec, FONT_TYPE_INDEX));
3139 pixel_size = font_pixel_size (f, spec);
3140 if (pixel_size == 0 && INTEGERP (attrs[LFACE_HEIGHT_INDEX]))
3141 {
3142 double pt = XINT (attrs[LFACE_HEIGHT_INDEX]);
3143
3144 pixel_size = POINT_TO_PIXEL (pt / 10, FRAME_RES_Y (f));
3145 if (pixel_size < 1)
3146 pixel_size = 1;
3147 }
3148 ASET (work, FONT_SIZE_INDEX, Qnil);
3149 foundry[0] = AREF (work, FONT_FOUNDRY_INDEX);
3150 if (! NILP (foundry[0]))
3151 foundry[1] = zero_vector;
3152 else if (STRINGP (attrs[LFACE_FOUNDRY_INDEX]))
3153 {
3154 val = attrs[LFACE_FOUNDRY_INDEX];
3155 foundry[0] = font_intern_prop (SSDATA (val), SBYTES (val), 1);
3156 foundry[1] = Qnil;
3157 foundry[2] = zero_vector;
3158 }
3159 else
3160 foundry[0] = Qnil, foundry[1] = zero_vector;
3161
3162 adstyle[0] = AREF (work, FONT_ADSTYLE_INDEX);
3163 if (! NILP (adstyle[0]))
3164 adstyle[1] = zero_vector;
3165 else if (FONTP (attrs[LFACE_FONT_INDEX]))
3166 {
3167 Lisp_Object face_font = attrs[LFACE_FONT_INDEX];
3168
3169 if (! NILP (AREF (face_font, FONT_ADSTYLE_INDEX)))
3170 {
3171 adstyle[0] = AREF (face_font, FONT_ADSTYLE_INDEX);
3172 adstyle[1] = Qnil;
3173 adstyle[2] = zero_vector;
3174 }
3175 else
3176 adstyle[0] = Qnil, adstyle[1] = zero_vector;
3177 }
3178 else
3179 adstyle[0] = Qnil, adstyle[1] = zero_vector;
3180
3181
3182 val = AREF (work, FONT_FAMILY_INDEX);
3183 if (NILP (val) && STRINGP (attrs[LFACE_FAMILY_INDEX]))
3184 {
3185 val = attrs[LFACE_FAMILY_INDEX];
3186 val = font_intern_prop (SSDATA (val), SBYTES (val), 1);
3187 }
3188 if (NILP (val))
3189 {
3190 family = alloca ((sizeof family[0]) * 2);
3191 family[0] = Qnil;
3192 family[1] = zero_vector; /* terminator. */
3193 }
3194 else
3195 {
3196 Lisp_Object alters
3197 = Fassoc_string (val, Vface_alternative_font_family_alist, Qt);
3198
3199 if (! NILP (alters))
3200 {
3201 EMACS_INT alterslen = XFASTINT (Flength (alters));
3202 SAFE_ALLOCA_LISP (family, alterslen + 2);
3203 for (i = 0; CONSP (alters); i++, alters = XCDR (alters))
3204 family[i] = XCAR (alters);
3205 if (NILP (AREF (spec, FONT_FAMILY_INDEX)))
3206 family[i++] = Qnil;
3207 family[i] = zero_vector;
3208 }
3209 else
3210 {
3211 family = alloca ((sizeof family[0]) * 3);
3212 i = 0;
3213 family[i++] = val;
3214 if (NILP (AREF (spec, FONT_FAMILY_INDEX)))
3215 family[i++] = Qnil;
3216 family[i] = zero_vector;
3217 }
3218 }
3219
3220 for (i = 0; SYMBOLP (family[i]); i++)
3221 {
3222 ASET (work, FONT_FAMILY_INDEX, family[i]);
3223 for (j = 0; SYMBOLP (foundry[j]); j++)
3224 {
3225 ASET (work, FONT_FOUNDRY_INDEX, foundry[j]);
3226 for (k = 0; SYMBOLP (registry[k]); k++)
3227 {
3228 ASET (work, FONT_REGISTRY_INDEX, registry[k]);
3229 for (l = 0; SYMBOLP (adstyle[l]); l++)
3230 {
3231 ASET (work, FONT_ADSTYLE_INDEX, adstyle[l]);
3232 entities = font_list_entities (f, work);
3233 if (! NILP (entities))
3234 {
3235 val = font_select_entity (f, entities,
3236 attrs, pixel_size, c);
3237 if (! NILP (val))
3238 {
3239 SAFE_FREE ();
3240 return val;
3241 }
3242 }
3243 }
3244 }
3245 }
3246 }
3247
3248 SAFE_FREE ();
3249 return Qnil;
3250 }
3251
3252
3253 Lisp_Object
3254 font_open_for_lface (struct frame *f, Lisp_Object entity, Lisp_Object *attrs, Lisp_Object spec)
3255 {
3256 int size;
3257
3258 if (INTEGERP (AREF (entity, FONT_SIZE_INDEX))
3259 && XINT (AREF (entity, FONT_SIZE_INDEX)) > 0)
3260 size = XINT (AREF (entity, FONT_SIZE_INDEX));
3261 else
3262 {
3263 if (FONT_SPEC_P (spec) && ! NILP (AREF (spec, FONT_SIZE_INDEX)))
3264 size = font_pixel_size (f, spec);
3265 else
3266 {
3267 double pt;
3268 if (INTEGERP (attrs[LFACE_HEIGHT_INDEX]))
3269 pt = XINT (attrs[LFACE_HEIGHT_INDEX]);
3270 else
3271 {
3272 struct face *def = FACE_FROM_ID (f, DEFAULT_FACE_ID);
3273 Lisp_Object height = def->lface[LFACE_HEIGHT_INDEX];
3274 eassert (INTEGERP (height));
3275 pt = XINT (height);
3276 }
3277
3278 pt /= 10;
3279 size = POINT_TO_PIXEL (pt, FRAME_RES_Y (f));
3280 #ifdef HAVE_NS
3281 if (size == 0)
3282 {
3283 Lisp_Object ffsize = get_frame_param (f, Qfontsize);
3284 size = (NUMBERP (ffsize)
3285 ? POINT_TO_PIXEL (XINT (ffsize), FRAME_RES_Y (f)) : 0);
3286 }
3287 #endif
3288 }
3289 size *= font_rescale_ratio (entity);
3290 }
3291
3292 return font_open_entity (f, entity, size);
3293 }
3294
3295
3296 /* Find a font that satisfies SPEC and is the best match for
3297 face's attributes in ATTRS on FRAME, and return the opened
3298 font-object. */
3299
3300 Lisp_Object
3301 font_load_for_lface (struct frame *f, Lisp_Object *attrs, Lisp_Object spec)
3302 {
3303 Lisp_Object entity, name;
3304
3305 entity = font_find_for_lface (f, attrs, spec, -1);
3306 if (NILP (entity))
3307 {
3308 /* No font is listed for SPEC, but each font-backend may have
3309 different criteria about "font matching". So, try it. */
3310 entity = font_matching_entity (f, attrs, spec);
3311 if (NILP (entity))
3312 return Qnil;
3313 }
3314 /* Don't lose the original name that was put in initially. We need
3315 it to re-apply the font when font parameters (like hinting or dpi) have
3316 changed. */
3317 entity = font_open_for_lface (f, entity, attrs, spec);
3318 if (!NILP (entity))
3319 {
3320 name = Ffont_get (spec, QCuser_spec);
3321 if (STRINGP (name)) font_put_extra (entity, QCuser_spec, name);
3322 }
3323 return entity;
3324 }
3325
3326
3327 /* Make FACE on frame F ready to use the font opened for FACE. */
3328
3329 void
3330 font_prepare_for_face (struct frame *f, struct face *face)
3331 {
3332 if (face->font->driver->prepare_face)
3333 face->font->driver->prepare_face (f, face);
3334 }
3335
3336
3337 /* Make FACE on frame F stop using the font opened for FACE. */
3338
3339 void
3340 font_done_for_face (struct frame *f, struct face *face)
3341 {
3342 if (face->font->driver->done_face)
3343 face->font->driver->done_face (f, face);
3344 face->extra = NULL;
3345 }
3346
3347
3348 /* Open a font that is a match for font-spec SPEC on frame F. If no proper
3349 font is found, return Qnil. */
3350
3351 Lisp_Object
3352 font_open_by_spec (struct frame *f, Lisp_Object spec)
3353 {
3354 Lisp_Object attrs[LFACE_VECTOR_SIZE];
3355
3356 /* We set up the default font-related attributes of a face to prefer
3357 a moderate font. */
3358 attrs[LFACE_FAMILY_INDEX] = attrs[LFACE_FOUNDRY_INDEX] = Qnil;
3359 attrs[LFACE_SWIDTH_INDEX] = attrs[LFACE_WEIGHT_INDEX]
3360 = attrs[LFACE_SLANT_INDEX] = Qnormal;
3361 #ifndef HAVE_NS
3362 attrs[LFACE_HEIGHT_INDEX] = make_number (120);
3363 #else
3364 attrs[LFACE_HEIGHT_INDEX] = make_number (0);
3365 #endif
3366 attrs[LFACE_FONT_INDEX] = Qnil;
3367
3368 return font_load_for_lface (f, attrs, spec);
3369 }
3370
3371
3372 /* Open a font that matches NAME on frame F. If no proper font is
3373 found, return Qnil. */
3374
3375 Lisp_Object
3376 font_open_by_name (struct frame *f, Lisp_Object name)
3377 {
3378 Lisp_Object args[2];
3379 Lisp_Object spec, ret;
3380
3381 args[0] = QCname;
3382 args[1] = name;
3383 spec = Ffont_spec (2, args);
3384 ret = font_open_by_spec (f, spec);
3385 /* Do not lose name originally put in. */
3386 if (!NILP (ret))
3387 font_put_extra (ret, QCuser_spec, args[1]);
3388
3389 return ret;
3390 }
3391
3392
3393 /* Register font-driver DRIVER. This function is used in two ways.
3394
3395 The first is with frame F non-NULL. In this case, make DRIVER
3396 available (but not yet activated) on F. All frame creators
3397 (e.g. Fx_create_frame) must call this function at least once with
3398 an available font-driver.
3399
3400 The second is with frame F NULL. In this case, DRIVER is globally
3401 registered in the variable `font_driver_list'. All font-driver
3402 implementations must call this function in its syms_of_XXXX
3403 (e.g. syms_of_xfont). */
3404
3405 void
3406 register_font_driver (struct font_driver *driver, struct frame *f)
3407 {
3408 struct font_driver_list *root = f ? f->font_driver_list : font_driver_list;
3409 struct font_driver_list *prev, *list;
3410
3411 #ifdef HAVE_WINDOW_SYSTEM
3412 if (f && ! driver->draw)
3413 error ("Unusable font driver for a frame: %s",
3414 SDATA (SYMBOL_NAME (driver->type)));
3415 #endif /* HAVE_WINDOW_SYSTEM */
3416
3417 for (prev = NULL, list = root; list; prev = list, list = list->next)
3418 if (EQ (list->driver->type, driver->type))
3419 error ("Duplicated font driver: %s", SDATA (SYMBOL_NAME (driver->type)));
3420
3421 list = xmalloc (sizeof *list);
3422 list->on = 0;
3423 list->driver = driver;
3424 list->next = NULL;
3425 if (prev)
3426 prev->next = list;
3427 else if (f)
3428 f->font_driver_list = list;
3429 else
3430 font_driver_list = list;
3431 if (! f)
3432 num_font_drivers++;
3433 }
3434
3435 void
3436 free_font_driver_list (struct frame *f)
3437 {
3438 struct font_driver_list *list, *next;
3439
3440 for (list = f->font_driver_list; list; list = next)
3441 {
3442 next = list->next;
3443 xfree (list);
3444 }
3445 f->font_driver_list = NULL;
3446 }
3447
3448
3449 /* Make the frame F use font backends listed in NEW_DRIVERS (list of
3450 symbols, e.g. xft, x). If NEW_DRIVERS is t, make F use all
3451 available font drivers. If NEW_DRIVERS is nil, finalize all drivers.
3452
3453 A caller must free all realized faces if any in advance. The
3454 return value is a list of font backends actually made used on
3455 F. */
3456
3457 Lisp_Object
3458 font_update_drivers (struct frame *f, Lisp_Object new_drivers)
3459 {
3460 Lisp_Object active_drivers = Qnil;
3461 struct font_driver_list *list;
3462
3463 /* At first, turn off non-requested drivers, and turn on requested
3464 drivers. */
3465 for (list = f->font_driver_list; list; list = list->next)
3466 {
3467 struct font_driver *driver = list->driver;
3468 if ((EQ (new_drivers, Qt) || ! NILP (Fmemq (driver->type, new_drivers)))
3469 != list->on)
3470 {
3471 if (list->on)
3472 {
3473 if (driver->end_for_frame)
3474 driver->end_for_frame (f);
3475 font_finish_cache (f, driver);
3476 list->on = 0;
3477 }
3478 else
3479 {
3480 if (! driver->start_for_frame
3481 || driver->start_for_frame (f) == 0)
3482 {
3483 font_prepare_cache (f, driver);
3484 list->on = 1;
3485 }
3486 }
3487 }
3488 }
3489
3490 if (NILP (new_drivers))
3491 return Qnil;
3492
3493 if (! EQ (new_drivers, Qt))
3494 {
3495 /* Re-order the driver list according to new_drivers. */
3496 struct font_driver_list **list_table, **next;
3497 Lisp_Object tail;
3498 int i;
3499
3500 list_table = alloca (sizeof list_table[0] * (num_font_drivers + 1));
3501 for (i = 0, tail = new_drivers; ! NILP (tail); tail = XCDR (tail))
3502 {
3503 for (list = f->font_driver_list; list; list = list->next)
3504 if (list->on && EQ (list->driver->type, XCAR (tail)))
3505 break;
3506 if (list)
3507 list_table[i++] = list;
3508 }
3509 for (list = f->font_driver_list; list; list = list->next)
3510 if (! list->on)
3511 list_table[i++] = list;
3512 list_table[i] = NULL;
3513
3514 next = &f->font_driver_list;
3515 for (i = 0; list_table[i]; i++)
3516 {
3517 *next = list_table[i];
3518 next = &(*next)->next;
3519 }
3520 *next = NULL;
3521
3522 if (! f->font_driver_list->on)
3523 { /* None of the drivers is enabled: enable them all.
3524 Happens if you set the list of drivers to (xft x) in your .emacs
3525 and then use it under w32 or ns. */
3526 for (list = f->font_driver_list; list; list = list->next)
3527 {
3528 struct font_driver *driver = list->driver;
3529 eassert (! list->on);
3530 if (! driver->start_for_frame
3531 || driver->start_for_frame (f) == 0)
3532 {
3533 font_prepare_cache (f, driver);
3534 list->on = 1;
3535 }
3536 }
3537 }
3538 }
3539
3540 for (list = f->font_driver_list; list; list = list->next)
3541 if (list->on)
3542 active_drivers = nconc2 (active_drivers, list1 (list->driver->type));
3543 return active_drivers;
3544 }
3545
3546 int
3547 font_put_frame_data (struct frame *f, struct font_driver *driver, void *data)
3548 {
3549 struct font_data_list *list, *prev;
3550
3551 for (prev = NULL, list = f->font_data_list; list;
3552 prev = list, list = list->next)
3553 if (list->driver == driver)
3554 break;
3555 if (! data)
3556 {
3557 if (list)
3558 {
3559 if (prev)
3560 prev->next = list->next;
3561 else
3562 f->font_data_list = list->next;
3563 xfree (list);
3564 }
3565 return 0;
3566 }
3567
3568 if (! list)
3569 {
3570 list = xmalloc (sizeof *list);
3571 list->driver = driver;
3572 list->next = f->font_data_list;
3573 f->font_data_list = list;
3574 }
3575 list->data = data;
3576 return 0;
3577 }
3578
3579
3580 void *
3581 font_get_frame_data (struct frame *f, struct font_driver *driver)
3582 {
3583 struct font_data_list *list;
3584
3585 for (list = f->font_data_list; list; list = list->next)
3586 if (list->driver == driver)
3587 break;
3588 if (! list)
3589 return NULL;
3590 return list->data;
3591 }
3592
3593
3594 /* Sets attributes on a font. Any properties that appear in ALIST and
3595 BOOLEAN_PROPERTIES or NON_BOOLEAN_PROPERTIES are set on the font.
3596 BOOLEAN_PROPERTIES and NON_BOOLEAN_PROPERTIES are NULL-terminated
3597 arrays of strings. This function is intended for use by the font
3598 drivers to implement their specific font_filter_properties. */
3599 void
3600 font_filter_properties (Lisp_Object font,
3601 Lisp_Object alist,
3602 const char *const boolean_properties[],
3603 const char *const non_boolean_properties[])
3604 {
3605 Lisp_Object it;
3606 int i;
3607
3608 /* Set boolean values to Qt or Qnil. */
3609 for (i = 0; boolean_properties[i] != NULL; ++i)
3610 for (it = alist; ! NILP (it); it = XCDR (it))
3611 {
3612 Lisp_Object key = XCAR (XCAR (it));
3613 Lisp_Object val = XCDR (XCAR (it));
3614 char *keystr = SSDATA (SYMBOL_NAME (key));
3615
3616 if (strcmp (boolean_properties[i], keystr) == 0)
3617 {
3618 const char *str = INTEGERP (val) ? (XINT (val) ? "true" : "false")
3619 : SYMBOLP (val) ? SSDATA (SYMBOL_NAME (val))
3620 : "true";
3621
3622 if (strcmp ("false", str) == 0 || strcmp ("False", str) == 0
3623 || strcmp ("FALSE", str) == 0 || strcmp ("FcFalse", str) == 0
3624 || strcmp ("off", str) == 0 || strcmp ("OFF", str) == 0
3625 || strcmp ("Off", str) == 0)
3626 val = Qnil;
3627 else
3628 val = Qt;
3629
3630 Ffont_put (font, key, val);
3631 }
3632 }
3633
3634 for (i = 0; non_boolean_properties[i] != NULL; ++i)
3635 for (it = alist; ! NILP (it); it = XCDR (it))
3636 {
3637 Lisp_Object key = XCAR (XCAR (it));
3638 Lisp_Object val = XCDR (XCAR (it));
3639 char *keystr = SSDATA (SYMBOL_NAME (key));
3640 if (strcmp (non_boolean_properties[i], keystr) == 0)
3641 Ffont_put (font, key, val);
3642 }
3643 }
3644
3645
3646 /* Return the font used to draw character C by FACE at buffer position
3647 POS in window W. If STRING is non-nil, it is a string containing C
3648 at index POS. If C is negative, get C from the current buffer or
3649 STRING. */
3650
3651 static Lisp_Object
3652 font_at (int c, ptrdiff_t pos, struct face *face, struct window *w,
3653 Lisp_Object string)
3654 {
3655 struct frame *f;
3656 bool multibyte;
3657 Lisp_Object font_object;
3658
3659 multibyte = (NILP (string)
3660 ? ! NILP (BVAR (current_buffer, enable_multibyte_characters))
3661 : STRING_MULTIBYTE (string));
3662 if (c < 0)
3663 {
3664 if (NILP (string))
3665 {
3666 if (multibyte)
3667 {
3668 ptrdiff_t pos_byte = CHAR_TO_BYTE (pos);
3669
3670 c = FETCH_CHAR (pos_byte);
3671 }
3672 else
3673 c = FETCH_BYTE (pos);
3674 }
3675 else
3676 {
3677 unsigned char *str;
3678
3679 multibyte = STRING_MULTIBYTE (string);
3680 if (multibyte)
3681 {
3682 ptrdiff_t pos_byte = string_char_to_byte (string, pos);
3683
3684 str = SDATA (string) + pos_byte;
3685 c = STRING_CHAR (str);
3686 }
3687 else
3688 c = SDATA (string)[pos];
3689 }
3690 }
3691
3692 f = XFRAME (w->frame);
3693 if (! FRAME_WINDOW_P (f))
3694 return Qnil;
3695 if (! face)
3696 {
3697 int face_id;
3698 ptrdiff_t endptr;
3699
3700 if (STRINGP (string))
3701 face_id = face_at_string_position (w, string, pos, 0, &endptr,
3702 DEFAULT_FACE_ID, 0);
3703 else
3704 face_id = face_at_buffer_position (w, pos, &endptr,
3705 pos + 100, 0, -1);
3706 face = FACE_FROM_ID (f, face_id);
3707 }
3708 if (multibyte)
3709 {
3710 int face_id = FACE_FOR_CHAR (f, face, c, pos, string);
3711 face = FACE_FROM_ID (f, face_id);
3712 }
3713 if (! face->font)
3714 return Qnil;
3715
3716 XSETFONT (font_object, face->font);
3717 return font_object;
3718 }
3719
3720
3721 #ifdef HAVE_WINDOW_SYSTEM
3722
3723 /* Check how many characters after character/byte position POS/POS_BYTE
3724 (at most to *LIMIT) can be displayed by the same font in the window W.
3725 FACE, if non-NULL, is the face selected for the character at POS.
3726 If STRING is not nil, it is the string to check instead of the current
3727 buffer. In that case, FACE must be not NULL.
3728
3729 The return value is the font-object for the character at POS.
3730 *LIMIT is set to the position where that font can't be used.
3731
3732 It is assured that the current buffer (or STRING) is multibyte. */
3733
3734 Lisp_Object
3735 font_range (ptrdiff_t pos, ptrdiff_t pos_byte, ptrdiff_t *limit,
3736 struct window *w, struct face *face, Lisp_Object string)
3737 {
3738 ptrdiff_t ignore;
3739 int c;
3740 Lisp_Object font_object = Qnil;
3741
3742 if (NILP (string))
3743 {
3744 if (! face)
3745 {
3746 int face_id;
3747
3748 face_id = face_at_buffer_position (w, pos, &ignore,
3749 *limit, 0, -1);
3750 face = FACE_FROM_ID (XFRAME (w->frame), face_id);
3751 }
3752 }
3753 else
3754 eassert (face);
3755
3756 while (pos < *limit)
3757 {
3758 Lisp_Object category;
3759
3760 if (NILP (string))
3761 FETCH_CHAR_ADVANCE_NO_CHECK (c, pos, pos_byte);
3762 else
3763 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, string, pos, pos_byte);
3764 category = CHAR_TABLE_REF (Vunicode_category_table, c);
3765 if (INTEGERP (category)
3766 && (XINT (category) == UNICODE_CATEGORY_Cf
3767 || CHAR_VARIATION_SELECTOR_P (c)))
3768 continue;
3769 if (NILP (font_object))
3770 {
3771 font_object = font_for_char (face, c, pos - 1, string);
3772 if (NILP (font_object))
3773 return Qnil;
3774 continue;
3775 }
3776 if (font_encode_char (font_object, c) == FONT_INVALID_CODE)
3777 *limit = pos - 1;
3778 }
3779 return font_object;
3780 }
3781 #endif
3782
3783 \f
3784 /* Lisp API. */
3785
3786 DEFUN ("fontp", Ffontp, Sfontp, 1, 2, 0,
3787 doc: /* Return t if OBJECT is a font-spec, font-entity, or font-object.
3788 Return nil otherwise.
3789 Optional 2nd argument EXTRA-TYPE, if non-nil, specifies to check
3790 which kind of font it is. It must be one of `font-spec', `font-entity',
3791 `font-object'. */)
3792 (Lisp_Object object, Lisp_Object extra_type)
3793 {
3794 if (NILP (extra_type))
3795 return (FONTP (object) ? Qt : Qnil);
3796 if (EQ (extra_type, Qfont_spec))
3797 return (FONT_SPEC_P (object) ? Qt : Qnil);
3798 if (EQ (extra_type, Qfont_entity))
3799 return (FONT_ENTITY_P (object) ? Qt : Qnil);
3800 if (EQ (extra_type, Qfont_object))
3801 return (FONT_OBJECT_P (object) ? Qt : Qnil);
3802 wrong_type_argument (intern ("font-extra-type"), extra_type);
3803 }
3804
3805 DEFUN ("font-spec", Ffont_spec, Sfont_spec, 0, MANY, 0,
3806 doc: /* Return a newly created font-spec with arguments as properties.
3807
3808 ARGS must come in pairs KEY VALUE of font properties. KEY must be a
3809 valid font property name listed below:
3810
3811 `:family', `:weight', `:slant', `:width'
3812
3813 They are the same as face attributes of the same name. See
3814 `set-face-attribute'.
3815
3816 `:foundry'
3817
3818 VALUE must be a string or a symbol specifying the font foundry, e.g. ``misc''.
3819
3820 `:adstyle'
3821
3822 VALUE must be a string or a symbol specifying the additional
3823 typographic style information of a font, e.g. ``sans''.
3824
3825 `:registry'
3826
3827 VALUE must be a string or a symbol specifying the charset registry and
3828 encoding of a font, e.g. ``iso8859-1''.
3829
3830 `:size'
3831
3832 VALUE must be a non-negative integer or a floating point number
3833 specifying the font size. It specifies the font size in pixels (if
3834 VALUE is an integer), or in points (if VALUE is a float).
3835
3836 `:name'
3837
3838 VALUE must be a string of XLFD-style or fontconfig-style font name.
3839
3840 `:script'
3841
3842 VALUE must be a symbol representing a script that the font must
3843 support. It may be a symbol representing a subgroup of a script
3844 listed in the variable `script-representative-chars'.
3845
3846 `:lang'
3847
3848 VALUE must be a symbol of two-letter ISO-639 language names,
3849 e.g. `ja'.
3850
3851 `:otf'
3852
3853 VALUE must be a list (SCRIPT-TAG LANGSYS-TAG GSUB [ GPOS ]) to specify
3854 required OpenType features.
3855
3856 SCRIPT-TAG: OpenType script tag symbol (e.g. `deva').
3857 LANGSYS-TAG: OpenType language system tag symbol,
3858 or nil for the default language system.
3859 GSUB: List of OpenType GSUB feature tag symbols, or nil if none required.
3860 GPOS: List of OpenType GPOS feature tag symbols, or nil if none required.
3861
3862 GSUB and GPOS may contain `nil' element. In such a case, the font
3863 must not have any of the remaining elements.
3864
3865 For instance, if the VALUE is `(thai nil nil (mark))', the font must
3866 be an OpenType font whose GPOS table of `thai' script's default
3867 language system must contain `mark' feature.
3868
3869 usage: (font-spec ARGS...) */)
3870 (ptrdiff_t nargs, Lisp_Object *args)
3871 {
3872 Lisp_Object spec = font_make_spec ();
3873 ptrdiff_t i;
3874
3875 for (i = 0; i < nargs; i += 2)
3876 {
3877 Lisp_Object key = args[i], val;
3878
3879 CHECK_SYMBOL (key);
3880 if (i + 1 >= nargs)
3881 error ("No value for key `%s'", SDATA (SYMBOL_NAME (key)));
3882 val = args[i + 1];
3883
3884 if (EQ (key, QCname))
3885 {
3886 CHECK_STRING (val);
3887 if (font_parse_name (SSDATA (val), SBYTES (val), spec) < 0)
3888 error ("Invalid font name: %s", SSDATA (val));
3889 font_put_extra (spec, key, val);
3890 }
3891 else
3892 {
3893 int idx = get_font_prop_index (key);
3894
3895 if (idx >= 0)
3896 {
3897 val = font_prop_validate (idx, Qnil, val);
3898 if (idx < FONT_EXTRA_INDEX)
3899 ASET (spec, idx, val);
3900 else
3901 font_put_extra (spec, key, val);
3902 }
3903 else
3904 font_put_extra (spec, key, font_prop_validate (0, key, val));
3905 }
3906 }
3907 return spec;
3908 }
3909
3910 /* Return a copy of FONT as a font-spec. */
3911 Lisp_Object
3912 copy_font_spec (Lisp_Object font)
3913 {
3914 Lisp_Object new_spec, tail, prev, extra;
3915 int i;
3916
3917 CHECK_FONT (font);
3918 new_spec = font_make_spec ();
3919 for (i = 1; i < FONT_EXTRA_INDEX; i++)
3920 ASET (new_spec, i, AREF (font, i));
3921 extra = Fcopy_alist (AREF (font, FONT_EXTRA_INDEX));
3922 /* We must remove :font-entity property. */
3923 for (prev = Qnil, tail = extra; CONSP (tail); prev = tail, tail = XCDR (tail))
3924 if (EQ (XCAR (XCAR (tail)), QCfont_entity))
3925 {
3926 if (NILP (prev))
3927 extra = XCDR (extra);
3928 else
3929 XSETCDR (prev, XCDR (tail));
3930 break;
3931 }
3932 ASET (new_spec, FONT_EXTRA_INDEX, extra);
3933 return new_spec;
3934 }
3935
3936 /* Merge font-specs FROM and TO, and return a new font-spec.
3937 Every specified property in FROM overrides the corresponding
3938 property in TO. */
3939 Lisp_Object
3940 merge_font_spec (Lisp_Object from, Lisp_Object to)
3941 {
3942 Lisp_Object extra, tail;
3943 int i;
3944
3945 CHECK_FONT (from);
3946 CHECK_FONT (to);
3947 to = copy_font_spec (to);
3948 for (i = 0; i < FONT_EXTRA_INDEX; i++)
3949 ASET (to, i, AREF (from, i));
3950 extra = AREF (to, FONT_EXTRA_INDEX);
3951 for (tail = AREF (from, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
3952 if (! EQ (XCAR (XCAR (tail)), Qfont_entity))
3953 {
3954 Lisp_Object slot = assq_no_quit (XCAR (XCAR (tail)), extra);
3955
3956 if (! NILP (slot))
3957 XSETCDR (slot, XCDR (XCAR (tail)));
3958 else
3959 extra = Fcons (Fcons (XCAR (XCAR (tail)), XCDR (XCAR (tail))), extra);
3960 }
3961 ASET (to, FONT_EXTRA_INDEX, extra);
3962 return to;
3963 }
3964
3965 DEFUN ("font-get", Ffont_get, Sfont_get, 2, 2, 0,
3966 doc: /* Return the value of FONT's property KEY.
3967 FONT is a font-spec, a font-entity, or a font-object.
3968 KEY is any symbol, but these are reserved for specific meanings:
3969 :family, :weight, :slant, :width, :foundry, :adstyle, :registry,
3970 :size, :name, :script, :otf
3971 See the documentation of `font-spec' for their meanings.
3972 In addition, if FONT is a font-entity or a font-object, values of
3973 :script and :otf are different from those of a font-spec as below:
3974
3975 The value of :script may be a list of scripts that are supported by the font.
3976
3977 The value of :otf is a cons (GSUB . GPOS) where GSUB and GPOS are lists
3978 representing the OpenType features supported by the font by this form:
3979 ((SCRIPT (LANGSYS FEATURE ...) ...) ...)
3980 SCRIPT, LANGSYS, and FEATURE are all symbols representing OpenType
3981 Layout tags. */)
3982 (Lisp_Object font, Lisp_Object key)
3983 {
3984 int idx;
3985 Lisp_Object val;
3986
3987 CHECK_FONT (font);
3988 CHECK_SYMBOL (key);
3989
3990 idx = get_font_prop_index (key);
3991 if (idx >= FONT_WEIGHT_INDEX && idx <= FONT_WIDTH_INDEX)
3992 return font_style_symbolic (font, idx, 0);
3993 if (idx >= 0 && idx < FONT_EXTRA_INDEX)
3994 return AREF (font, idx);
3995 val = Fassq (key, AREF (font, FONT_EXTRA_INDEX));
3996 if (NILP (val) && EQ (key, QCotf) && FONT_OBJECT_P (font))
3997 {
3998 struct font *fontp = XFONT_OBJECT (font);
3999
4000 if (fontp->driver->otf_capability)
4001 val = fontp->driver->otf_capability (fontp);
4002 else
4003 val = Fcons (Qnil, Qnil);
4004 }
4005 else
4006 val = Fcdr (val);
4007 return val;
4008 }
4009
4010 #ifdef HAVE_WINDOW_SYSTEM
4011
4012 DEFUN ("font-face-attributes", Ffont_face_attributes, Sfont_face_attributes, 1, 2, 0,
4013 doc: /* Return a plist of face attributes generated by FONT.
4014 FONT is a font name, a font-spec, a font-entity, or a font-object.
4015 The return value is a list of the form
4016
4017 \(:family FAMILY :height HEIGHT :weight WEIGHT :slant SLANT :width WIDTH)
4018
4019 where FAMILY, HEIGHT, WEIGHT, SLANT, and WIDTH are face attribute values
4020 compatible with `set-face-attribute'. Some of these key-attribute pairs
4021 may be omitted from the list if they are not specified by FONT.
4022
4023 The optional argument FRAME specifies the frame that the face attributes
4024 are to be displayed on. If omitted, the selected frame is used. */)
4025 (Lisp_Object font, Lisp_Object frame)
4026 {
4027 struct frame *f = decode_live_frame (frame);
4028 Lisp_Object plist[10];
4029 Lisp_Object val;
4030 int n = 0;
4031
4032 if (STRINGP (font))
4033 {
4034 int fontset = fs_query_fontset (font, 0);
4035 Lisp_Object name = font;
4036 if (fontset >= 0)
4037 font = fontset_ascii (fontset);
4038 font = font_spec_from_name (name);
4039 if (! FONTP (font))
4040 signal_error ("Invalid font name", name);
4041 }
4042 else if (! FONTP (font))
4043 signal_error ("Invalid font object", font);
4044
4045 val = AREF (font, FONT_FAMILY_INDEX);
4046 if (! NILP (val))
4047 {
4048 plist[n++] = QCfamily;
4049 plist[n++] = SYMBOL_NAME (val);
4050 }
4051
4052 val = AREF (font, FONT_SIZE_INDEX);
4053 if (INTEGERP (val))
4054 {
4055 Lisp_Object font_dpi = AREF (font, FONT_DPI_INDEX);
4056 int dpi = INTEGERP (font_dpi) ? XINT (font_dpi) : FRAME_RES_Y (f);
4057 plist[n++] = QCheight;
4058 plist[n++] = make_number (PIXEL_TO_POINT (XINT (val) * 10, dpi));
4059 }
4060 else if (FLOATP (val))
4061 {
4062 plist[n++] = QCheight;
4063 plist[n++] = make_number (10 * (int) XFLOAT_DATA (val));
4064 }
4065
4066 val = FONT_WEIGHT_FOR_FACE (font);
4067 if (! NILP (val))
4068 {
4069 plist[n++] = QCweight;
4070 plist[n++] = val;
4071 }
4072
4073 val = FONT_SLANT_FOR_FACE (font);
4074 if (! NILP (val))
4075 {
4076 plist[n++] = QCslant;
4077 plist[n++] = val;
4078 }
4079
4080 val = FONT_WIDTH_FOR_FACE (font);
4081 if (! NILP (val))
4082 {
4083 plist[n++] = QCwidth;
4084 plist[n++] = val;
4085 }
4086
4087 return Flist (n, plist);
4088 }
4089
4090 #endif
4091
4092 DEFUN ("font-put", Ffont_put, Sfont_put, 3, 3, 0,
4093 doc: /* Set one property of FONT: give property KEY value VAL.
4094 FONT is a font-spec, a font-entity, or a font-object.
4095
4096 If FONT is a font-spec, KEY can be any symbol. But if KEY is the one
4097 accepted by the function `font-spec' (which see), VAL must be what
4098 allowed in `font-spec'.
4099
4100 If FONT is a font-entity or a font-object, KEY must not be the one
4101 accepted by `font-spec'. */)
4102 (Lisp_Object font, Lisp_Object prop, Lisp_Object val)
4103 {
4104 int idx;
4105
4106 idx = get_font_prop_index (prop);
4107 if (idx >= 0 && idx < FONT_EXTRA_INDEX)
4108 {
4109 CHECK_FONT_SPEC (font);
4110 ASET (font, idx, font_prop_validate (idx, Qnil, val));
4111 }
4112 else
4113 {
4114 if (EQ (prop, QCname)
4115 || EQ (prop, QCscript)
4116 || EQ (prop, QClang)
4117 || EQ (prop, QCotf))
4118 CHECK_FONT_SPEC (font);
4119 else
4120 CHECK_FONT (font);
4121 font_put_extra (font, prop, font_prop_validate (0, prop, val));
4122 }
4123 return val;
4124 }
4125
4126 DEFUN ("list-fonts", Flist_fonts, Slist_fonts, 1, 4, 0,
4127 doc: /* List available fonts matching FONT-SPEC on the current frame.
4128 Optional 2nd argument FRAME specifies the target frame.
4129 Optional 3rd argument NUM, if non-nil, limits the number of returned fonts.
4130 Optional 4th argument PREFER, if non-nil, is a font-spec to
4131 control the order of the returned list. Fonts are sorted by
4132 how close they are to PREFER. */)
4133 (Lisp_Object font_spec, Lisp_Object frame, Lisp_Object num, Lisp_Object prefer)
4134 {
4135 struct frame *f = decode_live_frame (frame);
4136 Lisp_Object vec, list;
4137 EMACS_INT n = 0;
4138
4139 CHECK_FONT_SPEC (font_spec);
4140 if (! NILP (num))
4141 {
4142 CHECK_NUMBER (num);
4143 n = XINT (num);
4144 if (n <= 0)
4145 return Qnil;
4146 }
4147 if (! NILP (prefer))
4148 CHECK_FONT_SPEC (prefer);
4149
4150 list = font_list_entities (f, font_spec);
4151 if (NILP (list))
4152 return Qnil;
4153 if (NILP (XCDR (list))
4154 && ASIZE (XCAR (list)) == 1)
4155 return list1 (AREF (XCAR (list), 0));
4156
4157 if (! NILP (prefer))
4158 vec = font_sort_entities (list, prefer, f, 0);
4159 else
4160 vec = font_vconcat_entity_vectors (list);
4161 if (n == 0 || n >= ASIZE (vec))
4162 {
4163 Lisp_Object args[2];
4164
4165 args[0] = vec;
4166 args[1] = Qnil;
4167 list = Fappend (2, args);
4168 }
4169 else
4170 {
4171 for (list = Qnil, n--; n >= 0; n--)
4172 list = Fcons (AREF (vec, n), list);
4173 }
4174 return list;
4175 }
4176
4177 DEFUN ("font-family-list", Ffont_family_list, Sfont_family_list, 0, 1, 0,
4178 doc: /* List available font families on the current frame.
4179 If FRAME is omitted or nil, the selected frame is used. */)
4180 (Lisp_Object frame)
4181 {
4182 struct frame *f = decode_live_frame (frame);
4183 struct font_driver_list *driver_list;
4184 Lisp_Object list = Qnil;
4185
4186 for (driver_list = f->font_driver_list; driver_list;
4187 driver_list = driver_list->next)
4188 if (driver_list->driver->list_family)
4189 {
4190 Lisp_Object val = driver_list->driver->list_family (f);
4191 Lisp_Object tail = list;
4192
4193 for (; CONSP (val); val = XCDR (val))
4194 if (NILP (Fmemq (XCAR (val), tail))
4195 && SYMBOLP (XCAR (val)))
4196 list = Fcons (SYMBOL_NAME (XCAR (val)), list);
4197 }
4198 return list;
4199 }
4200
4201 DEFUN ("find-font", Ffind_font, Sfind_font, 1, 2, 0,
4202 doc: /* Return a font-entity matching with FONT-SPEC on the current frame.
4203 Optional 2nd argument FRAME, if non-nil, specifies the target frame. */)
4204 (Lisp_Object font_spec, Lisp_Object frame)
4205 {
4206 Lisp_Object val = Flist_fonts (font_spec, frame, make_number (1), Qnil);
4207
4208 if (CONSP (val))
4209 val = XCAR (val);
4210 return val;
4211 }
4212
4213 DEFUN ("font-xlfd-name", Ffont_xlfd_name, Sfont_xlfd_name, 1, 2, 0,
4214 doc: /* Return XLFD name of FONT.
4215 FONT is a font-spec, font-entity, or font-object.
4216 If the name is too long for XLFD (maximum 255 chars), return nil.
4217 If the 2nd optional arg FOLD-WILDCARDS is non-nil,
4218 the consecutive wildcards are folded into one. */)
4219 (Lisp_Object font, Lisp_Object fold_wildcards)
4220 {
4221 char name[256];
4222 int namelen, pixel_size = 0;
4223
4224 CHECK_FONT (font);
4225
4226 if (FONT_OBJECT_P (font))
4227 {
4228 Lisp_Object font_name = AREF (font, FONT_NAME_INDEX);
4229
4230 if (STRINGP (font_name)
4231 && SDATA (font_name)[0] == '-')
4232 {
4233 if (NILP (fold_wildcards))
4234 return font_name;
4235 strcpy (name, SSDATA (font_name));
4236 namelen = SBYTES (font_name);
4237 goto done;
4238 }
4239 pixel_size = XFONT_OBJECT (font)->pixel_size;
4240 }
4241 namelen = font_unparse_xlfd (font, pixel_size, name, 256);
4242 if (namelen < 0)
4243 return Qnil;
4244 done:
4245 if (! NILP (fold_wildcards))
4246 {
4247 char *p0 = name, *p1;
4248
4249 while ((p1 = strstr (p0, "-*-*")))
4250 {
4251 strcpy (p1, p1 + 2);
4252 namelen -= 2;
4253 p0 = p1;
4254 }
4255 }
4256
4257 return make_string (name, namelen);
4258 }
4259
4260 void
4261 clear_font_cache (struct frame *f)
4262 {
4263 struct font_driver_list *driver_list = f->font_driver_list;
4264
4265 for (; driver_list; driver_list = driver_list->next)
4266 if (driver_list->on)
4267 {
4268 Lisp_Object val, tmp, cache = driver_list->driver->get_cache (f);
4269
4270 val = XCDR (cache);
4271 while (! NILP (val)
4272 && ! EQ (XCAR (XCAR (val)), driver_list->driver->type))
4273 val = XCDR (val);
4274 eassert (! NILP (val));
4275 tmp = XCDR (XCAR (val));
4276 if (XINT (XCAR (tmp)) == 0)
4277 {
4278 font_clear_cache (f, XCAR (val), driver_list->driver);
4279 XSETCDR (cache, XCDR (val));
4280 }
4281 }
4282 }
4283
4284 DEFUN ("clear-font-cache", Fclear_font_cache, Sclear_font_cache, 0, 0, 0,
4285 doc: /* Clear font cache of each frame. */)
4286 (void)
4287 {
4288 Lisp_Object list, frame;
4289
4290 FOR_EACH_FRAME (list, frame)
4291 clear_font_cache (XFRAME (frame));
4292
4293 return Qnil;
4294 }
4295
4296 \f
4297 void
4298 font_fill_lglyph_metrics (Lisp_Object glyph, Lisp_Object font_object)
4299 {
4300 struct font *font = XFONT_OBJECT (font_object);
4301 unsigned code = font->driver->encode_char (font, LGLYPH_CHAR (glyph));
4302 struct font_metrics metrics;
4303
4304 LGLYPH_SET_CODE (glyph, code);
4305 font->driver->text_extents (font, &code, 1, &metrics);
4306 LGLYPH_SET_LBEARING (glyph, metrics.lbearing);
4307 LGLYPH_SET_RBEARING (glyph, metrics.rbearing);
4308 LGLYPH_SET_WIDTH (glyph, metrics.width);
4309 LGLYPH_SET_ASCENT (glyph, metrics.ascent);
4310 LGLYPH_SET_DESCENT (glyph, metrics.descent);
4311 }
4312
4313
4314 DEFUN ("font-shape-gstring", Ffont_shape_gstring, Sfont_shape_gstring, 1, 1, 0,
4315 doc: /* Shape the glyph-string GSTRING.
4316 Shaping means substituting glyphs and/or adjusting positions of glyphs
4317 to get the correct visual image of character sequences set in the
4318 header of the glyph-string.
4319
4320 If the shaping was successful, the value is GSTRING itself or a newly
4321 created glyph-string. Otherwise, the value is nil.
4322
4323 See the documentation of `composition-get-gstring' for the format of
4324 GSTRING. */)
4325 (Lisp_Object gstring)
4326 {
4327 struct font *font;
4328 Lisp_Object font_object, n, glyph;
4329 ptrdiff_t i, from, to;
4330
4331 if (! composition_gstring_p (gstring))
4332 signal_error ("Invalid glyph-string: ", gstring);
4333 if (! NILP (LGSTRING_ID (gstring)))
4334 return gstring;
4335 font_object = LGSTRING_FONT (gstring);
4336 CHECK_FONT_OBJECT (font_object);
4337 font = XFONT_OBJECT (font_object);
4338 if (! font->driver->shape)
4339 return Qnil;
4340
4341 /* Try at most three times with larger gstring each time. */
4342 for (i = 0; i < 3; i++)
4343 {
4344 n = font->driver->shape (gstring);
4345 if (INTEGERP (n))
4346 break;
4347 gstring = larger_vector (gstring,
4348 LGSTRING_GLYPH_LEN (gstring), -1);
4349 }
4350 if (i == 3 || XINT (n) == 0)
4351 return Qnil;
4352 if (XINT (n) < LGSTRING_GLYPH_LEN (gstring))
4353 LGSTRING_SET_GLYPH (gstring, XINT (n), Qnil);
4354
4355 /* Check FROM_IDX and TO_IDX of each GLYPH in GSTRING to assure that
4356 GLYPHS covers all characters (except for the last few ones) in
4357 GSTRING. More formally, provided that NCHARS is the number of
4358 characters in GSTRING and GLYPHS[i] is the ith glyph, FROM_IDX
4359 and TO_IDX of each glyph must satisfy these conditions:
4360
4361 GLYPHS[0].FROM_IDX == 0
4362 GLYPHS[i].FROM_IDX <= GLYPHS[i].TO_IDX
4363 if (GLYPHS[i].FROM_IDX == GLYPHS[i-1].FROM_IDX)
4364 ;; GLYPHS[i] and GLYPHS[i-1] belongs to the same grapheme cluster
4365 GLYPHS[i].TO_IDX == GLYPHS[i-1].TO_IDX
4366 else
4367 ;; Be sure to cover all characters.
4368 GLYPHS[i].FROM_IDX == GLYPHS[i-1].TO_IDX + 1 */
4369 glyph = LGSTRING_GLYPH (gstring, 0);
4370 from = LGLYPH_FROM (glyph);
4371 to = LGLYPH_TO (glyph);
4372 if (from != 0 || to < from)
4373 goto shaper_error;
4374 for (i = 1; i < LGSTRING_GLYPH_LEN (gstring); i++)
4375 {
4376 glyph = LGSTRING_GLYPH (gstring, i);
4377 if (NILP (glyph))
4378 break;
4379 if (! (LGLYPH_FROM (glyph) <= LGLYPH_TO (glyph)
4380 && (LGLYPH_FROM (glyph) == from
4381 ? LGLYPH_TO (glyph) == to
4382 : LGLYPH_FROM (glyph) == to + 1)))
4383 goto shaper_error;
4384 from = LGLYPH_FROM (glyph);
4385 to = LGLYPH_TO (glyph);
4386 }
4387 return composition_gstring_put_cache (gstring, XINT (n));
4388
4389 shaper_error:
4390 return Qnil;
4391 }
4392
4393 DEFUN ("font-variation-glyphs", Ffont_variation_glyphs, Sfont_variation_glyphs,
4394 2, 2, 0,
4395 doc: /* Return a list of variation glyphs for CHAR in FONT-OBJECT.
4396 Each element of the value is a cons (VARIATION-SELECTOR . GLYPH-ID),
4397 where
4398 VARIATION-SELECTOR is a character code of variation selection
4399 (#xFE00..#xFE0F or #xE0100..#xE01EF)
4400 GLYPH-ID is a glyph code of the corresponding variation glyph. */)
4401 (Lisp_Object font_object, Lisp_Object character)
4402 {
4403 unsigned variations[256];
4404 struct font *font;
4405 int i, n;
4406 Lisp_Object val;
4407
4408 CHECK_FONT_OBJECT (font_object);
4409 CHECK_CHARACTER (character);
4410 font = XFONT_OBJECT (font_object);
4411 if (! font->driver->get_variation_glyphs)
4412 return Qnil;
4413 n = font->driver->get_variation_glyphs (font, XINT (character), variations);
4414 if (! n)
4415 return Qnil;
4416 val = Qnil;
4417 for (i = 0; i < 255; i++)
4418 if (variations[i])
4419 {
4420 int vs = (i < 16 ? 0xFE00 + i : 0xE0100 + (i - 16));
4421 Lisp_Object code = INTEGER_TO_CONS (variations[i]);
4422 val = Fcons (Fcons (make_number (vs), code), val);
4423 }
4424 return val;
4425 }
4426
4427 #if 0
4428
4429 DEFUN ("font-drive-otf", Ffont_drive_otf, Sfont_drive_otf, 6, 6, 0,
4430 doc: /* Apply OpenType features on glyph-string GSTRING-IN.
4431 OTF-FEATURES specifies which features to apply in this format:
4432 (SCRIPT LANGSYS GSUB GPOS)
4433 where
4434 SCRIPT is a symbol specifying a script tag of OpenType,
4435 LANGSYS is a symbol specifying a langsys tag of OpenType,
4436 GSUB and GPOS, if non-nil, are lists of symbols specifying feature tags.
4437
4438 If LANGSYS is nil, the default langsys is selected.
4439
4440 The features are applied in the order they appear in the list. The
4441 symbol `*' means to apply all available features not present in this
4442 list, and the remaining features are ignored. For instance, (vatu
4443 pstf * haln) is to apply vatu and pstf in this order, then to apply
4444 all available features other than vatu, pstf, and haln.
4445
4446 The features are applied to the glyphs in the range FROM and TO of
4447 the glyph-string GSTRING-IN.
4448
4449 If some feature is actually applicable, the resulting glyphs are
4450 produced in the glyph-string GSTRING-OUT from the index INDEX. In
4451 this case, the value is the number of produced glyphs.
4452
4453 If no feature is applicable, no glyph is produced in GSTRING-OUT, and
4454 the value is 0.
4455
4456 If GSTRING-OUT is too short to hold produced glyphs, no glyphs are
4457 produced in GSTRING-OUT, and the value is nil.
4458
4459 See the documentation of `composition-get-gstring' for the format of
4460 glyph-string. */)
4461 (Lisp_Object otf_features, Lisp_Object gstring_in, Lisp_Object from, Lisp_Object to, Lisp_Object gstring_out, Lisp_Object index)
4462 {
4463 Lisp_Object font_object = LGSTRING_FONT (gstring_in);
4464 Lisp_Object val;
4465 struct font *font;
4466 int len, num;
4467
4468 check_otf_features (otf_features);
4469 CHECK_FONT_OBJECT (font_object);
4470 font = XFONT_OBJECT (font_object);
4471 if (! font->driver->otf_drive)
4472 error ("Font backend %s can't drive OpenType GSUB table",
4473 SDATA (SYMBOL_NAME (font->driver->type)));
4474 CHECK_CONS (otf_features);
4475 CHECK_SYMBOL (XCAR (otf_features));
4476 val = XCDR (otf_features);
4477 CHECK_SYMBOL (XCAR (val));
4478 val = XCDR (otf_features);
4479 if (! NILP (val))
4480 CHECK_CONS (val);
4481 len = check_gstring (gstring_in);
4482 CHECK_VECTOR (gstring_out);
4483 CHECK_NATNUM (from);
4484 CHECK_NATNUM (to);
4485 CHECK_NATNUM (index);
4486
4487 if (XINT (from) >= XINT (to) || XINT (to) > len)
4488 args_out_of_range_3 (from, to, make_number (len));
4489 if (XINT (index) >= ASIZE (gstring_out))
4490 args_out_of_range (index, make_number (ASIZE (gstring_out)));
4491 num = font->driver->otf_drive (font, otf_features,
4492 gstring_in, XINT (from), XINT (to),
4493 gstring_out, XINT (index), 0);
4494 if (num < 0)
4495 return Qnil;
4496 return make_number (num);
4497 }
4498
4499 DEFUN ("font-otf-alternates", Ffont_otf_alternates, Sfont_otf_alternates,
4500 3, 3, 0,
4501 doc: /* Return a list of alternate glyphs of CHARACTER in FONT-OBJECT.
4502 OTF-FEATURES specifies which features of the font FONT-OBJECT to apply
4503 in this format:
4504 (SCRIPT LANGSYS FEATURE ...)
4505 See the documentation of `font-drive-otf' for more detail.
4506
4507 The value is a list of cons cells of the format (GLYPH-ID . CHARACTER),
4508 where GLYPH-ID is a glyph index of the font, and CHARACTER is a
4509 character code corresponding to the glyph or nil if there's no
4510 corresponding character. */)
4511 (Lisp_Object font_object, Lisp_Object character, Lisp_Object otf_features)
4512 {
4513 struct font *font;
4514 Lisp_Object gstring_in, gstring_out, g;
4515 Lisp_Object alternates;
4516 int i, num;
4517
4518 CHECK_FONT_GET_OBJECT (font_object, font);
4519 if (! font->driver->otf_drive)
4520 error ("Font backend %s can't drive OpenType GSUB table",
4521 SDATA (SYMBOL_NAME (font->driver->type)));
4522 CHECK_CHARACTER (character);
4523 CHECK_CONS (otf_features);
4524
4525 gstring_in = Ffont_make_gstring (font_object, make_number (1));
4526 g = LGSTRING_GLYPH (gstring_in, 0);
4527 LGLYPH_SET_CHAR (g, XINT (character));
4528 gstring_out = Ffont_make_gstring (font_object, make_number (10));
4529 while ((num = font->driver->otf_drive (font, otf_features, gstring_in, 0, 1,
4530 gstring_out, 0, 1)) < 0)
4531 gstring_out = Ffont_make_gstring (font_object,
4532 make_number (ASIZE (gstring_out) * 2));
4533 alternates = Qnil;
4534 for (i = 0; i < num; i++)
4535 {
4536 Lisp_Object g = LGSTRING_GLYPH (gstring_out, i);
4537 int c = LGLYPH_CHAR (g);
4538 unsigned code = LGLYPH_CODE (g);
4539
4540 alternates = Fcons (Fcons (make_number (code),
4541 c > 0 ? make_number (c) : Qnil),
4542 alternates);
4543 }
4544 return Fnreverse (alternates);
4545 }
4546 #endif /* 0 */
4547
4548 #ifdef FONT_DEBUG
4549
4550 DEFUN ("open-font", Fopen_font, Sopen_font, 1, 3, 0,
4551 doc: /* Open FONT-ENTITY. */)
4552 (Lisp_Object font_entity, Lisp_Object size, Lisp_Object frame)
4553 {
4554 EMACS_INT isize;
4555 struct frame *f = decode_live_frame (frame);
4556
4557 CHECK_FONT_ENTITY (font_entity);
4558
4559 if (NILP (size))
4560 isize = XINT (AREF (font_entity, FONT_SIZE_INDEX));
4561 else
4562 {
4563 CHECK_NUMBER_OR_FLOAT (size);
4564 if (FLOATP (size))
4565 isize = POINT_TO_PIXEL (XFLOAT_DATA (size), FRAME_RES_Y (f));
4566 else
4567 isize = XINT (size);
4568 if (! (INT_MIN <= isize && isize <= INT_MAX))
4569 args_out_of_range (font_entity, size);
4570 if (isize == 0)
4571 isize = 120;
4572 }
4573 return font_open_entity (f, font_entity, isize);
4574 }
4575
4576 DEFUN ("close-font", Fclose_font, Sclose_font, 1, 2, 0,
4577 doc: /* Close FONT-OBJECT. */)
4578 (Lisp_Object font_object, Lisp_Object frame)
4579 {
4580 CHECK_FONT_OBJECT (font_object);
4581 font_close_object (decode_live_frame (frame), font_object);
4582 return Qnil;
4583 }
4584
4585 DEFUN ("query-font", Fquery_font, Squery_font, 1, 1, 0,
4586 doc: /* Return information about FONT-OBJECT.
4587 The value is a vector:
4588 [ NAME FILENAME PIXEL-SIZE SIZE ASCENT DESCENT SPACE-WIDTH AVERAGE-WIDTH
4589 CAPABILITY ]
4590
4591 NAME is the font name, a string (or nil if the font backend doesn't
4592 provide a name).
4593
4594 FILENAME is the font file name, a string (or nil if the font backend
4595 doesn't provide a file name).
4596
4597 PIXEL-SIZE is a pixel size by which the font is opened.
4598
4599 SIZE is a maximum advance width of the font in pixels.
4600
4601 ASCENT, DESCENT, SPACE-WIDTH, AVERAGE-WIDTH are metrics of the font in
4602 pixels.
4603
4604 CAPABILITY is a list whose first element is a symbol representing the
4605 font format \(x, opentype, truetype, type1, pcf, or bdf) and the
4606 remaining elements describe the details of the font capability.
4607
4608 If the font is OpenType font, the form of the list is
4609 \(opentype GSUB GPOS)
4610 where GSUB shows which "GSUB" features the font supports, and GPOS
4611 shows which "GPOS" features the font supports. Both GSUB and GPOS are
4612 lists of the format:
4613 \((SCRIPT (LANGSYS FEATURE ...) ...) ...)
4614
4615 If the font is not OpenType font, currently the length of the form is
4616 one.
4617
4618 SCRIPT is a symbol representing OpenType script tag.
4619
4620 LANGSYS is a symbol representing OpenType langsys tag, or nil
4621 representing the default langsys.
4622
4623 FEATURE is a symbol representing OpenType feature tag.
4624
4625 If the font is not OpenType font, CAPABILITY is nil. */)
4626 (Lisp_Object font_object)
4627 {
4628 struct font *font;
4629 Lisp_Object val;
4630
4631 CHECK_FONT_GET_OBJECT (font_object, font);
4632
4633 val = make_uninit_vector (9);
4634 ASET (val, 0, AREF (font_object, FONT_NAME_INDEX));
4635 ASET (val, 1, AREF (font_object, FONT_FILE_INDEX));
4636 ASET (val, 2, make_number (font->pixel_size));
4637 ASET (val, 3, make_number (font->max_width));
4638 ASET (val, 4, make_number (font->ascent));
4639 ASET (val, 5, make_number (font->descent));
4640 ASET (val, 6, make_number (font->space_width));
4641 ASET (val, 7, make_number (font->average_width));
4642 if (font->driver->otf_capability)
4643 ASET (val, 8, Fcons (Qopentype, font->driver->otf_capability (font)));
4644 else
4645 ASET (val, 8, Qnil);
4646 return val;
4647 }
4648
4649 DEFUN ("font-get-glyphs", Ffont_get_glyphs, Sfont_get_glyphs, 3, 4, 0,
4650 doc:
4651 /* Return a vector of FONT-OBJECT's glyphs for the specified characters.
4652 FROM and TO are positions (integers or markers) specifying a region
4653 of the current buffer.
4654 If the optional fourth arg OBJECT is not nil, it is a string or a
4655 vector containing the target characters.
4656
4657 Each element is a vector containing information of a glyph in this format:
4658 [FROM-IDX TO-IDX C CODE WIDTH LBEARING RBEARING ASCENT DESCENT ADJUSTMENT]
4659 where
4660 FROM is an index numbers of a character the glyph corresponds to.
4661 TO is the same as FROM.
4662 C is the character of the glyph.
4663 CODE is the glyph-code of C in FONT-OBJECT.
4664 WIDTH thru DESCENT are the metrics (in pixels) of the glyph.
4665 ADJUSTMENT is always nil.
4666 If FONT-OBJECT doesn't have a glyph for a character,
4667 the corresponding element is nil. */)
4668 (Lisp_Object font_object, Lisp_Object from, Lisp_Object to,
4669 Lisp_Object object)
4670 {
4671 struct font *font;
4672 ptrdiff_t i, len;
4673 Lisp_Object *chars, vec;
4674 USE_SAFE_ALLOCA;
4675
4676 CHECK_FONT_GET_OBJECT (font_object, font);
4677 if (NILP (object))
4678 {
4679 ptrdiff_t charpos, bytepos;
4680
4681 validate_region (&from, &to);
4682 if (EQ (from, to))
4683 return Qnil;
4684 len = XFASTINT (to) - XFASTINT (from);
4685 SAFE_ALLOCA_LISP (chars, len);
4686 charpos = XFASTINT (from);
4687 bytepos = CHAR_TO_BYTE (charpos);
4688 for (i = 0; charpos < XFASTINT (to); i++)
4689 {
4690 int c;
4691 FETCH_CHAR_ADVANCE (c, charpos, bytepos);
4692 chars[i] = make_number (c);
4693 }
4694 }
4695 else if (STRINGP (object))
4696 {
4697 const unsigned char *p;
4698
4699 CHECK_NUMBER (from);
4700 CHECK_NUMBER (to);
4701 if (XINT (from) < 0 || XINT (from) > XINT (to)
4702 || XINT (to) > SCHARS (object))
4703 args_out_of_range_3 (object, from, to);
4704 if (EQ (from, to))
4705 return Qnil;
4706 len = XFASTINT (to) - XFASTINT (from);
4707 SAFE_ALLOCA_LISP (chars, len);
4708 p = SDATA (object);
4709 if (STRING_MULTIBYTE (object))
4710 for (i = 0; i < len; i++)
4711 {
4712 int c = STRING_CHAR_ADVANCE (p);
4713 chars[i] = make_number (c);
4714 }
4715 else
4716 for (i = 0; i < len; i++)
4717 chars[i] = make_number (p[i]);
4718 }
4719 else
4720 {
4721 CHECK_VECTOR (object);
4722 CHECK_NUMBER (from);
4723 CHECK_NUMBER (to);
4724 if (XINT (from) < 0 || XINT (from) > XINT (to)
4725 || XINT (to) > ASIZE (object))
4726 args_out_of_range_3 (object, from, to);
4727 if (EQ (from, to))
4728 return Qnil;
4729 len = XFASTINT (to) - XFASTINT (from);
4730 for (i = 0; i < len; i++)
4731 {
4732 Lisp_Object elt = AREF (object, XFASTINT (from) + i);
4733 CHECK_CHARACTER (elt);
4734 }
4735 chars = aref_addr (object, XFASTINT (from));
4736 }
4737
4738 vec = make_uninit_vector (len);
4739 for (i = 0; i < len; i++)
4740 {
4741 Lisp_Object g;
4742 int c = XFASTINT (chars[i]);
4743 unsigned code;
4744 struct font_metrics metrics;
4745
4746 code = font->driver->encode_char (font, c);
4747 if (code == FONT_INVALID_CODE)
4748 {
4749 ASET (vec, i, Qnil);
4750 continue;
4751 }
4752 g = LGLYPH_NEW ();
4753 LGLYPH_SET_FROM (g, i);
4754 LGLYPH_SET_TO (g, i);
4755 LGLYPH_SET_CHAR (g, c);
4756 LGLYPH_SET_CODE (g, code);
4757 font->driver->text_extents (font, &code, 1, &metrics);
4758 LGLYPH_SET_WIDTH (g, metrics.width);
4759 LGLYPH_SET_LBEARING (g, metrics.lbearing);
4760 LGLYPH_SET_RBEARING (g, metrics.rbearing);
4761 LGLYPH_SET_ASCENT (g, metrics.ascent);
4762 LGLYPH_SET_DESCENT (g, metrics.descent);
4763 ASET (vec, i, g);
4764 }
4765 if (! VECTORP (object))
4766 SAFE_FREE ();
4767 return vec;
4768 }
4769
4770 DEFUN ("font-match-p", Ffont_match_p, Sfont_match_p, 2, 2, 0,
4771 doc: /* Return t if and only if font-spec SPEC matches with FONT.
4772 FONT is a font-spec, font-entity, or font-object. */)
4773 (Lisp_Object spec, Lisp_Object font)
4774 {
4775 CHECK_FONT_SPEC (spec);
4776 CHECK_FONT (font);
4777
4778 return (font_match_p (spec, font) ? Qt : Qnil);
4779 }
4780
4781 DEFUN ("font-at", Ffont_at, Sfont_at, 1, 3, 0,
4782 doc: /* Return a font-object for displaying a character at POSITION.
4783 Optional second arg WINDOW, if non-nil, is a window displaying
4784 the current buffer. It defaults to the currently selected window.
4785 Optional third arg STRING, if non-nil, is a string containing the target
4786 character at index specified by POSITION. */)
4787 (Lisp_Object position, Lisp_Object window, Lisp_Object string)
4788 {
4789 struct window *w = decode_live_window (window);
4790
4791 if (NILP (string))
4792 {
4793 if (XBUFFER (w->contents) != current_buffer)
4794 error ("Specified window is not displaying the current buffer");
4795 CHECK_NUMBER_COERCE_MARKER (position);
4796 if (! (BEGV <= XINT (position) && XINT (position) < ZV))
4797 args_out_of_range_3 (position, make_number (BEGV), make_number (ZV));
4798 }
4799 else
4800 {
4801 CHECK_NUMBER (position);
4802 CHECK_STRING (string);
4803 if (! (0 <= XINT (position) && XINT (position) < SCHARS (string)))
4804 args_out_of_range (string, position);
4805 }
4806
4807 return font_at (-1, XINT (position), NULL, w, string);
4808 }
4809
4810 #if 0
4811 DEFUN ("draw-string", Fdraw_string, Sdraw_string, 2, 2, 0,
4812 doc: /* Draw STRING by FONT-OBJECT on the top left corner of the current frame.
4813 The value is a number of glyphs drawn.
4814 Type C-l to recover what previously shown. */)
4815 (Lisp_Object font_object, Lisp_Object string)
4816 {
4817 Lisp_Object frame = selected_frame;
4818 struct frame *f = XFRAME (frame);
4819 struct font *font;
4820 struct face *face;
4821 int i, len, width;
4822 unsigned *code;
4823
4824 CHECK_FONT_GET_OBJECT (font_object, font);
4825 CHECK_STRING (string);
4826 len = SCHARS (string);
4827 code = alloca (sizeof (unsigned) * len);
4828 for (i = 0; i < len; i++)
4829 {
4830 Lisp_Object ch = Faref (string, make_number (i));
4831 Lisp_Object val;
4832 int c = XINT (ch);
4833
4834 code[i] = font->driver->encode_char (font, c);
4835 if (code[i] == FONT_INVALID_CODE)
4836 break;
4837 }
4838 face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
4839 face->fontp = font;
4840 if (font->driver->prepare_face)
4841 font->driver->prepare_face (f, face);
4842 width = font->driver->text_extents (font, code, i, NULL);
4843 len = font->driver->draw_text (f, face, 0, font->ascent, code, i, width);
4844 if (font->driver->done_face)
4845 font->driver->done_face (f, face);
4846 face->fontp = NULL;
4847 return make_number (len);
4848 }
4849 #endif
4850
4851 DEFUN ("frame-font-cache", Fframe_font_cache, Sframe_font_cache, 0, 1, 0,
4852 doc: /* Return FRAME's font cache. Mainly used for debugging.
4853 If FRAME is omitted or nil, use the selected frame. */)
4854 (Lisp_Object frame)
4855 {
4856 #ifdef HAVE_WINDOW_SYSTEM
4857 struct frame *f = decode_live_frame (frame);
4858
4859 if (FRAME_WINDOW_P (f))
4860 return FRAME_DISPLAY_INFO (f)->name_list_element;
4861 else
4862 #endif
4863 return Qnil;
4864 }
4865
4866 #endif /* FONT_DEBUG */
4867
4868 #ifdef HAVE_WINDOW_SYSTEM
4869
4870 DEFUN ("font-info", Ffont_info, Sfont_info, 1, 2, 0,
4871 doc: /* Return information about a font named NAME on frame FRAME.
4872 If FRAME is omitted or nil, use the selected frame.
4873 The returned value is a vector of OPENED-NAME, FULL-NAME, SIZE,
4874 HEIGHT, BASELINE-OFFSET, RELATIVE-COMPOSE, and DEFAULT-ASCENT,
4875 where
4876 OPENED-NAME is the name used for opening the font,
4877 FULL-NAME is the full name of the font,
4878 SIZE is the pixelsize of the font,
4879 HEIGHT is the pixel-height of the font (i.e., ascent + descent),
4880 BASELINE-OFFSET is the upward offset pixels from ASCII baseline,
4881 RELATIVE-COMPOSE and DEFAULT-ASCENT are the numbers controlling
4882 how to compose characters.
4883 If the named font is not yet loaded, return nil. */)
4884 (Lisp_Object name, Lisp_Object frame)
4885 {
4886 struct frame *f;
4887 struct font *font;
4888 Lisp_Object info;
4889 Lisp_Object font_object;
4890
4891 if (! FONTP (name))
4892 CHECK_STRING (name);
4893 f = decode_window_system_frame (frame);
4894
4895 if (STRINGP (name))
4896 {
4897 int fontset = fs_query_fontset (name, 0);
4898
4899 if (fontset >= 0)
4900 name = fontset_ascii (fontset);
4901 font_object = font_open_by_name (f, name);
4902 }
4903 else if (FONT_OBJECT_P (name))
4904 font_object = name;
4905 else if (FONT_ENTITY_P (name))
4906 font_object = font_open_entity (f, name, 0);
4907 else
4908 {
4909 struct face *face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
4910 Lisp_Object entity = font_matching_entity (f, face->lface, name);
4911
4912 font_object = ! NILP (entity) ? font_open_entity (f, entity, 0) : Qnil;
4913 }
4914 if (NILP (font_object))
4915 return Qnil;
4916 font = XFONT_OBJECT (font_object);
4917
4918 info = make_uninit_vector (7);
4919 ASET (info, 0, AREF (font_object, FONT_NAME_INDEX));
4920 ASET (info, 1, AREF (font_object, FONT_FULLNAME_INDEX));
4921 ASET (info, 2, make_number (font->pixel_size));
4922 ASET (info, 3, make_number (font->height));
4923 ASET (info, 4, make_number (font->baseline_offset));
4924 ASET (info, 5, make_number (font->relative_compose));
4925 ASET (info, 6, make_number (font->default_ascent));
4926
4927 #if 0
4928 /* As font_object is still in FONT_OBJLIST of the entity, we can't
4929 close it now. Perhaps, we should manage font-objects
4930 by `reference-count'. */
4931 font_close_object (f, font_object);
4932 #endif
4933 return info;
4934 }
4935 #endif
4936
4937 \f
4938 #define BUILD_STYLE_TABLE(TBL) \
4939 build_style_table ((TBL), sizeof TBL / sizeof (struct table_entry))
4940
4941 static Lisp_Object
4942 build_style_table (const struct table_entry *entry, int nelement)
4943 {
4944 int i, j;
4945 Lisp_Object table, elt;
4946
4947 table = make_uninit_vector (nelement);
4948 for (i = 0; i < nelement; i++)
4949 {
4950 for (j = 0; entry[i].names[j]; j++);
4951 elt = Fmake_vector (make_number (j + 1), Qnil);
4952 ASET (elt, 0, make_number (entry[i].numeric));
4953 for (j = 0; entry[i].names[j]; j++)
4954 ASET (elt, j + 1, intern_c_string (entry[i].names[j]));
4955 ASET (table, i, elt);
4956 }
4957 return table;
4958 }
4959
4960 /* The deferred font-log data of the form [ACTION ARG RESULT].
4961 If ACTION is not nil, that is added to the log when font_add_log is
4962 called next time. At that time, ACTION is set back to nil. */
4963 static Lisp_Object Vfont_log_deferred;
4964
4965 /* Prepend the font-related logging data in Vfont_log if it is not
4966 `t'. ACTION describes a kind of font-related action (e.g. listing,
4967 opening), ARG is the argument for the action, and RESULT is the
4968 result of the action. */
4969 void
4970 font_add_log (const char *action, Lisp_Object arg, Lisp_Object result)
4971 {
4972 Lisp_Object val;
4973 int i;
4974
4975 if (EQ (Vfont_log, Qt))
4976 return;
4977 if (STRINGP (AREF (Vfont_log_deferred, 0)))
4978 {
4979 char *str = SSDATA (AREF (Vfont_log_deferred, 0));
4980
4981 ASET (Vfont_log_deferred, 0, Qnil);
4982 font_add_log (str, AREF (Vfont_log_deferred, 1),
4983 AREF (Vfont_log_deferred, 2));
4984 }
4985
4986 if (FONTP (arg))
4987 {
4988 Lisp_Object tail, elt;
4989 Lisp_Object equalstr = build_string ("=");
4990
4991 val = Ffont_xlfd_name (arg, Qt);
4992 for (tail = AREF (arg, FONT_EXTRA_INDEX); CONSP (tail);
4993 tail = XCDR (tail))
4994 {
4995 elt = XCAR (tail);
4996 if (EQ (XCAR (elt), QCscript)
4997 && SYMBOLP (XCDR (elt)))
4998 val = concat3 (val, SYMBOL_NAME (QCscript),
4999 concat2 (equalstr, SYMBOL_NAME (XCDR (elt))));
5000 else if (EQ (XCAR (elt), QClang)
5001 && SYMBOLP (XCDR (elt)))
5002 val = concat3 (val, SYMBOL_NAME (QClang),
5003 concat2 (equalstr, SYMBOL_NAME (XCDR (elt))));
5004 else if (EQ (XCAR (elt), QCotf)
5005 && CONSP (XCDR (elt)) && SYMBOLP (XCAR (XCDR (elt))))
5006 val = concat3 (val, SYMBOL_NAME (QCotf),
5007 concat2 (equalstr,
5008 SYMBOL_NAME (XCAR (XCDR (elt)))));
5009 }
5010 arg = val;
5011 }
5012
5013 if (CONSP (result)
5014 && VECTORP (XCAR (result))
5015 && ASIZE (XCAR (result)) > 0
5016 && FONTP (AREF (XCAR (result), 0)))
5017 result = font_vconcat_entity_vectors (result);
5018 if (FONTP (result))
5019 {
5020 val = Ffont_xlfd_name (result, Qt);
5021 if (! FONT_SPEC_P (result))
5022 val = concat3 (SYMBOL_NAME (AREF (result, FONT_TYPE_INDEX)),
5023 build_string (":"), val);
5024 result = val;
5025 }
5026 else if (CONSP (result))
5027 {
5028 Lisp_Object tail;
5029 result = Fcopy_sequence (result);
5030 for (tail = result; CONSP (tail); tail = XCDR (tail))
5031 {
5032 val = XCAR (tail);
5033 if (FONTP (val))
5034 val = Ffont_xlfd_name (val, Qt);
5035 XSETCAR (tail, val);
5036 }
5037 }
5038 else if (VECTORP (result))
5039 {
5040 result = Fcopy_sequence (result);
5041 for (i = 0; i < ASIZE (result); i++)
5042 {
5043 val = AREF (result, i);
5044 if (FONTP (val))
5045 val = Ffont_xlfd_name (val, Qt);
5046 ASET (result, i, val);
5047 }
5048 }
5049 Vfont_log = Fcons (list3 (intern (action), arg, result), Vfont_log);
5050 }
5051
5052 /* Record a font-related logging data to be added to Vfont_log when
5053 font_add_log is called next time. ACTION, ARG, RESULT are the same
5054 as font_add_log. */
5055
5056 void
5057 font_deferred_log (const char *action, Lisp_Object arg, Lisp_Object result)
5058 {
5059 if (EQ (Vfont_log, Qt))
5060 return;
5061 ASET (Vfont_log_deferred, 0, build_string (action));
5062 ASET (Vfont_log_deferred, 1, arg);
5063 ASET (Vfont_log_deferred, 2, result);
5064 }
5065
5066 void
5067 syms_of_font (void)
5068 {
5069 sort_shift_bits[FONT_TYPE_INDEX] = 0;
5070 sort_shift_bits[FONT_SLANT_INDEX] = 2;
5071 sort_shift_bits[FONT_WEIGHT_INDEX] = 9;
5072 sort_shift_bits[FONT_SIZE_INDEX] = 16;
5073 sort_shift_bits[FONT_WIDTH_INDEX] = 23;
5074 /* Note that the other elements in sort_shift_bits are not used. */
5075
5076 staticpro (&font_charset_alist);
5077 font_charset_alist = Qnil;
5078
5079 DEFSYM (Qopentype, "opentype");
5080
5081 DEFSYM (Qascii_0, "ascii-0");
5082 DEFSYM (Qiso8859_1, "iso8859-1");
5083 DEFSYM (Qiso10646_1, "iso10646-1");
5084 DEFSYM (Qunicode_bmp, "unicode-bmp");
5085 DEFSYM (Qunicode_sip, "unicode-sip");
5086
5087 DEFSYM (QCf, "Cf");
5088
5089 DEFSYM (QCotf, ":otf");
5090 DEFSYM (QClang, ":lang");
5091 DEFSYM (QCscript, ":script");
5092 DEFSYM (QCantialias, ":antialias");
5093
5094 DEFSYM (QCfoundry, ":foundry");
5095 DEFSYM (QCadstyle, ":adstyle");
5096 DEFSYM (QCregistry, ":registry");
5097 DEFSYM (QCspacing, ":spacing");
5098 DEFSYM (QCdpi, ":dpi");
5099 DEFSYM (QCscalable, ":scalable");
5100 DEFSYM (QCavgwidth, ":avgwidth");
5101 DEFSYM (QCfont_entity, ":font-entity");
5102 DEFSYM (QCfc_unknown_spec, ":fc-unknown-spec");
5103
5104 DEFSYM (Qc, "c");
5105 DEFSYM (Qm, "m");
5106 DEFSYM (Qp, "p");
5107 DEFSYM (Qd, "d");
5108
5109 DEFSYM (Qja, "ja");
5110 DEFSYM (Qko, "ko");
5111
5112 DEFSYM (QCuser_spec, "user-spec");
5113
5114 staticpro (&scratch_font_spec);
5115 scratch_font_spec = Ffont_spec (0, NULL);
5116 staticpro (&scratch_font_prefer);
5117 scratch_font_prefer = Ffont_spec (0, NULL);
5118
5119 staticpro (&Vfont_log_deferred);
5120 Vfont_log_deferred = Fmake_vector (make_number (3), Qnil);
5121
5122 #if 0
5123 #ifdef HAVE_LIBOTF
5124 staticpro (&otf_list);
5125 otf_list = Qnil;
5126 #endif /* HAVE_LIBOTF */
5127 #endif /* 0 */
5128
5129 defsubr (&Sfontp);
5130 defsubr (&Sfont_spec);
5131 defsubr (&Sfont_get);
5132 #ifdef HAVE_WINDOW_SYSTEM
5133 defsubr (&Sfont_face_attributes);
5134 #endif
5135 defsubr (&Sfont_put);
5136 defsubr (&Slist_fonts);
5137 defsubr (&Sfont_family_list);
5138 defsubr (&Sfind_font);
5139 defsubr (&Sfont_xlfd_name);
5140 defsubr (&Sclear_font_cache);
5141 defsubr (&Sfont_shape_gstring);
5142 defsubr (&Sfont_variation_glyphs);
5143 #if 0
5144 defsubr (&Sfont_drive_otf);
5145 defsubr (&Sfont_otf_alternates);
5146 #endif /* 0 */
5147
5148 #ifdef FONT_DEBUG
5149 defsubr (&Sopen_font);
5150 defsubr (&Sclose_font);
5151 defsubr (&Squery_font);
5152 defsubr (&Sfont_get_glyphs);
5153 defsubr (&Sfont_match_p);
5154 defsubr (&Sfont_at);
5155 #if 0
5156 defsubr (&Sdraw_string);
5157 #endif
5158 defsubr (&Sframe_font_cache);
5159 #endif /* FONT_DEBUG */
5160 #ifdef HAVE_WINDOW_SYSTEM
5161 defsubr (&Sfont_info);
5162 #endif
5163
5164 DEFVAR_LISP ("font-encoding-alist", Vfont_encoding_alist,
5165 doc: /*
5166 Alist of fontname patterns vs the corresponding encoding and repertory info.
5167 Each element looks like (REGEXP . (ENCODING . REPERTORY)),
5168 where ENCODING is a charset or a char-table,
5169 and REPERTORY is a charset, a char-table, or nil.
5170
5171 If ENCODING and REPERTORY are the same, the element can have the form
5172 \(REGEXP . ENCODING).
5173
5174 ENCODING is for converting a character to a glyph code of the font.
5175 If ENCODING is a charset, encoding a character by the charset gives
5176 the corresponding glyph code. If ENCODING is a char-table, looking up
5177 the table by a character gives the corresponding glyph code.
5178
5179 REPERTORY specifies a repertory of characters supported by the font.
5180 If REPERTORY is a charset, all characters belonging to the charset are
5181 supported. If REPERTORY is a char-table, all characters who have a
5182 non-nil value in the table are supported. If REPERTORY is nil, Emacs
5183 gets the repertory information by an opened font and ENCODING. */);
5184 Vfont_encoding_alist = Qnil;
5185
5186 /* FIXME: These 3 vars are not quite what they appear: setq on them
5187 won't have any effect other than disconnect them from the style
5188 table used by the font display code. So we make them read-only,
5189 to avoid this confusing situation. */
5190
5191 DEFVAR_LISP_NOPRO ("font-weight-table", Vfont_weight_table,
5192 doc: /* Vector of valid font weight values.
5193 Each element has the form:
5194 [NUMERIC-VALUE SYMBOLIC-NAME ALIAS-NAME ...]
5195 NUMERIC-VALUE is an integer, and SYMBOLIC-NAME and ALIAS-NAME are symbols. */);
5196 Vfont_weight_table = BUILD_STYLE_TABLE (weight_table);
5197 XSYMBOL (intern_c_string ("font-weight-table"))->constant = 1;
5198
5199 DEFVAR_LISP_NOPRO ("font-slant-table", Vfont_slant_table,
5200 doc: /* Vector of font slant symbols vs the corresponding numeric values.
5201 See `font-weight-table' for the format of the vector. */);
5202 Vfont_slant_table = BUILD_STYLE_TABLE (slant_table);
5203 XSYMBOL (intern_c_string ("font-slant-table"))->constant = 1;
5204
5205 DEFVAR_LISP_NOPRO ("font-width-table", Vfont_width_table,
5206 doc: /* Alist of font width symbols vs the corresponding numeric values.
5207 See `font-weight-table' for the format of the vector. */);
5208 Vfont_width_table = BUILD_STYLE_TABLE (width_table);
5209 XSYMBOL (intern_c_string ("font-width-table"))->constant = 1;
5210
5211 staticpro (&font_style_table);
5212 font_style_table = make_uninit_vector (3);
5213 ASET (font_style_table, 0, Vfont_weight_table);
5214 ASET (font_style_table, 1, Vfont_slant_table);
5215 ASET (font_style_table, 2, Vfont_width_table);
5216
5217 DEFVAR_LISP ("font-log", Vfont_log, doc: /*
5218 *Logging list of font related actions and results.
5219 The value t means to suppress the logging.
5220 The initial value is set to nil if the environment variable
5221 EMACS_FONT_LOG is set. Otherwise, it is set to t. */);
5222 Vfont_log = Qnil;
5223
5224 #ifdef HAVE_WINDOW_SYSTEM
5225 #ifdef HAVE_FREETYPE
5226 syms_of_ftfont ();
5227 #ifdef HAVE_X_WINDOWS
5228 syms_of_xfont ();
5229 syms_of_ftxfont ();
5230 #ifdef HAVE_XFT
5231 syms_of_xftfont ();
5232 #endif /* HAVE_XFT */
5233 #endif /* HAVE_X_WINDOWS */
5234 #else /* not HAVE_FREETYPE */
5235 #ifdef HAVE_X_WINDOWS
5236 syms_of_xfont ();
5237 #endif /* HAVE_X_WINDOWS */
5238 #endif /* not HAVE_FREETYPE */
5239 #ifdef HAVE_BDFFONT
5240 syms_of_bdffont ();
5241 #endif /* HAVE_BDFFONT */
5242 #ifdef HAVE_NTGUI
5243 syms_of_w32font ();
5244 #endif /* HAVE_NTGUI */
5245 #endif /* HAVE_WINDOW_SYSTEM */
5246 }
5247
5248 void
5249 init_font (void)
5250 {
5251 Vfont_log = egetenv ("EMACS_FONT_LOG") ? Qnil : Qt;
5252 }