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