* lisp/progmodes/xref.el (xref-find-apropos): Use read-string.
[emacs.git] / src / font.c
blob2ccfd15d43691e07327995a541fc53386893bec2
1 /* font.c -- "Font" primitives.
3 Copyright (C) 2006-2015 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
8 This file is part of GNU Emacs.
10 GNU Emacs is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
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.
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/>. */
23 #include <config.h>
24 #include <float.h>
25 #include <stdio.h>
27 #include <c-ctype.h>
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"
40 #ifdef HAVE_WINDOW_SYSTEM
41 #include TERM_HEADER
42 #endif /* HAVE_WINDOW_SYSTEM */
44 #define DEFAULT_ENCODING Qiso8859_1
46 /* Vector of Vfont_weight_table, Vfont_slant_table, and Vfont_width_table. */
47 static Lisp_Object font_style_table;
49 /* Structure used for tables mapping weight, slant, and width numeric
50 values and their names. */
52 struct table_entry
54 int numeric;
55 /* The first one is a valid name as a face attribute.
56 The second one (if any) is a typical name in XLFD field. */
57 const char *names[5];
60 /* Table of weight numeric values and their names. This table must be
61 sorted by numeric values in ascending order. */
63 static const struct table_entry weight_table[] =
65 { 0, { "thin" }},
66 { 20, { "ultra-light", "ultralight" }},
67 { 40, { "extra-light", "extralight" }},
68 { 50, { "light" }},
69 { 75, { "semi-light", "semilight", "demilight", "book" }},
70 { 100, { "normal", "medium", "regular", "unspecified" }},
71 { 180, { "semi-bold", "semibold", "demibold", "demi" }},
72 { 200, { "bold" }},
73 { 205, { "extra-bold", "extrabold" }},
74 { 210, { "ultra-bold", "ultrabold", "black" }}
77 /* Table of slant numeric values and their names. This table must be
78 sorted by numeric values in ascending order. */
80 static const struct table_entry slant_table[] =
82 { 0, { "reverse-oblique", "ro" }},
83 { 10, { "reverse-italic", "ri" }},
84 { 100, { "normal", "r", "unspecified" }},
85 { 200, { "italic" ,"i", "ot" }},
86 { 210, { "oblique", "o" }}
89 /* Table of width numeric values and their names. This table must be
90 sorted by numeric values in ascending order. */
92 static const struct table_entry width_table[] =
94 { 50, { "ultra-condensed", "ultracondensed" }},
95 { 63, { "extra-condensed", "extracondensed" }},
96 { 75, { "condensed", "compressed", "narrow" }},
97 { 87, { "semi-condensed", "semicondensed", "demicondensed" }},
98 { 100, { "normal", "medium", "regular", "unspecified" }},
99 { 113, { "semi-expanded", "semiexpanded", "demiexpanded" }},
100 { 125, { "expanded" }},
101 { 150, { "extra-expanded", "extraexpanded" }},
102 { 200, { "ultra-expanded", "ultraexpanded", "wide" }}
105 /* Alist of font registry symbols and the corresponding charset
106 information. The information is retrieved from
107 Vfont_encoding_alist on demand.
109 Eash element has the form:
110 (REGISTRY . (ENCODING-CHARSET-ID . REPERTORY-CHARSET-ID))
112 (REGISTRY . nil)
114 In the former form, ENCODING-CHARSET-ID is an ID of a charset that
115 encodes a character code to a glyph code of a font, and
116 REPERTORY-CHARSET-ID is an ID of a charset that tells if a
117 character is supported by a font.
119 The latter form means that the information for REGISTRY couldn't be
120 retrieved. */
121 static Lisp_Object font_charset_alist;
123 /* List of all font drivers. Each font-backend (XXXfont.c) calls
124 register_font_driver in syms_of_XXXfont to register its font-driver
125 here. */
126 static struct font_driver_list *font_driver_list;
128 #ifdef ENABLE_CHECKING
130 /* Used to catch bogus pointers in font objects. */
132 bool
133 valid_font_driver (struct font_driver *drv)
135 Lisp_Object tail, frame;
136 struct font_driver_list *fdl;
138 for (fdl = font_driver_list; fdl; fdl = fdl->next)
139 if (fdl->driver == drv)
140 return true;
141 FOR_EACH_FRAME (tail, frame)
142 for (fdl = XFRAME (frame)->font_driver_list; fdl; fdl = fdl->next)
143 if (fdl->driver == drv)
144 return true;
145 return false;
148 #endif /* ENABLE_CHECKING */
150 /* Creators of font-related Lisp object. */
152 static Lisp_Object
153 font_make_spec (void)
155 Lisp_Object font_spec;
156 struct font_spec *spec
157 = ((struct font_spec *)
158 allocate_pseudovector (VECSIZE (struct font_spec),
159 FONT_SPEC_MAX, FONT_SPEC_MAX, PVEC_FONT));
160 XSETFONT (font_spec, spec);
161 return font_spec;
164 Lisp_Object
165 font_make_entity (void)
167 Lisp_Object font_entity;
168 struct font_entity *entity
169 = ((struct font_entity *)
170 allocate_pseudovector (VECSIZE (struct font_entity),
171 FONT_ENTITY_MAX, FONT_ENTITY_MAX, PVEC_FONT));
172 XSETFONT (font_entity, entity);
173 return font_entity;
176 /* Create a font-object whose structure size is SIZE. If ENTITY is
177 not nil, copy properties from ENTITY to the font-object. If
178 PIXELSIZE is positive, set the `size' property to PIXELSIZE. */
179 Lisp_Object
180 font_make_object (int size, Lisp_Object entity, int pixelsize)
182 Lisp_Object font_object;
183 struct font *font
184 = (struct font *) allocate_pseudovector (size, FONT_OBJECT_MAX,
185 FONT_OBJECT_MAX, PVEC_FONT);
186 int i;
188 /* GC can happen before the driver is set up,
189 so avoid dangling pointer here (Bug#17771). */
190 font->driver = NULL;
191 XSETFONT (font_object, font);
193 if (! NILP (entity))
195 for (i = 1; i < FONT_SPEC_MAX; i++)
196 font->props[i] = AREF (entity, i);
197 if (! NILP (AREF (entity, FONT_EXTRA_INDEX)))
198 font->props[FONT_EXTRA_INDEX]
199 = Fcopy_alist (AREF (entity, FONT_EXTRA_INDEX));
201 if (size > 0)
202 font->props[FONT_SIZE_INDEX] = make_number (pixelsize);
203 return font_object;
206 #if defined (HAVE_XFT) || defined (HAVE_FREETYPE) || defined (HAVE_NS)
208 static int font_unparse_fcname (Lisp_Object, int, char *, int);
210 /* Like above, but also set `type', `name' and `fullname' properties
211 of font-object. */
213 Lisp_Object
214 font_build_object (int vectorsize, Lisp_Object type,
215 Lisp_Object entity, double pixelsize)
217 int len;
218 char name[256];
219 Lisp_Object font_object = font_make_object (vectorsize, entity, pixelsize);
221 ASET (font_object, FONT_TYPE_INDEX, type);
222 len = font_unparse_xlfd (entity, pixelsize, name, sizeof name);
223 if (len > 0)
224 ASET (font_object, FONT_NAME_INDEX, make_string (name, len));
225 len = font_unparse_fcname (entity, pixelsize, name, sizeof name);
226 if (len > 0)
227 ASET (font_object, FONT_FULLNAME_INDEX, make_string (name, len));
228 else
229 ASET (font_object, FONT_FULLNAME_INDEX,
230 AREF (font_object, FONT_NAME_INDEX));
231 return font_object;
234 #endif /* HAVE_XFT || HAVE_FREETYPE || HAVE_NS */
236 static int font_pixel_size (struct frame *f, Lisp_Object);
237 static Lisp_Object font_open_entity (struct frame *, Lisp_Object, int);
238 static Lisp_Object font_matching_entity (struct frame *, Lisp_Object *,
239 Lisp_Object);
240 static unsigned font_encode_char (Lisp_Object, int);
242 /* Number of registered font drivers. */
243 static int num_font_drivers;
246 /* Return a Lispy value of a font property value at STR and LEN bytes.
247 If STR is "*", return nil. If FORCE_SYMBOL, or if STR does not
248 consist entirely of one or more digits, return a symbol interned
249 from STR. Otherwise, return an integer. */
251 Lisp_Object
252 font_intern_prop (const char *str, ptrdiff_t len, bool force_symbol)
254 ptrdiff_t i, nbytes, nchars;
255 Lisp_Object tem, name, obarray;
257 if (len == 1 && *str == '*')
258 return Qnil;
259 if (!force_symbol && 0 < len && '0' <= *str && *str <= '9')
261 for (i = 1; i < len; i++)
262 if (! ('0' <= str[i] && str[i] <= '9'))
263 break;
264 if (i == len)
266 EMACS_INT n;
268 i = 0;
269 for (n = 0; (n += str[i++] - '0') <= MOST_POSITIVE_FIXNUM; n *= 10)
271 if (i == len)
272 return make_number (n);
273 if (MOST_POSITIVE_FIXNUM / 10 < n)
274 break;
277 xsignal1 (Qoverflow_error, make_string (str, len));
281 /* This code is similar to intern function from lread.c. */
282 obarray = check_obarray (Vobarray);
283 parse_str_as_multibyte ((unsigned char *) str, len, &nchars, &nbytes);
284 tem = oblookup (obarray, str,
285 (len == nchars || len != nbytes) ? len : nchars, len);
286 if (SYMBOLP (tem))
287 return tem;
288 name = make_specified_string (str, nchars, len,
289 len != nchars && len == nbytes);
290 return intern_driver (name, obarray, tem);
293 /* Return a pixel size of font-spec SPEC on frame F. */
295 static int
296 font_pixel_size (struct frame *f, Lisp_Object spec)
298 #ifdef HAVE_WINDOW_SYSTEM
299 Lisp_Object size = AREF (spec, FONT_SIZE_INDEX);
300 double point_size;
301 int dpi, pixel_size;
302 Lisp_Object val;
304 if (INTEGERP (size))
305 return XINT (size);
306 if (NILP (size))
307 return 0;
308 eassert (FLOATP (size));
309 point_size = XFLOAT_DATA (size);
310 val = AREF (spec, FONT_DPI_INDEX);
311 if (INTEGERP (val))
312 dpi = XINT (val);
313 else
314 dpi = FRAME_RES_Y (f);
315 pixel_size = POINT_TO_PIXEL (point_size, dpi);
316 return pixel_size;
317 #else
318 return 1;
319 #endif
323 /* Return a value of PROP's VAL (symbol or integer) to be stored in a
324 font vector. If VAL is not valid (i.e. not registered in
325 font_style_table), return -1 if NOERROR is zero, and return a
326 proper index if NOERROR is nonzero. In that case, register VAL in
327 font_style_table if VAL is a symbol, and return the closest index if
328 VAL is an integer. */
331 font_style_to_value (enum font_property_index prop, Lisp_Object val,
332 bool noerror)
334 Lisp_Object table = AREF (font_style_table, prop - FONT_WEIGHT_INDEX);
335 int len;
337 CHECK_VECTOR (table);
338 len = ASIZE (table);
340 if (SYMBOLP (val))
342 int i, j;
343 char *s;
344 Lisp_Object elt;
346 /* At first try exact match. */
347 for (i = 0; i < len; i++)
349 CHECK_VECTOR (AREF (table, i));
350 for (j = 1; j < ASIZE (AREF (table, i)); j++)
351 if (EQ (val, AREF (AREF (table, i), j)))
353 CHECK_NUMBER (AREF (AREF (table, i), 0));
354 return ((XINT (AREF (AREF (table, i), 0)) << 8)
355 | (i << 4) | (j - 1));
358 /* Try also with case-folding match. */
359 s = SSDATA (SYMBOL_NAME (val));
360 for (i = 0; i < len; i++)
361 for (j = 1; j < ASIZE (AREF (table, i)); j++)
363 elt = AREF (AREF (table, i), j);
364 if (xstrcasecmp (s, SSDATA (SYMBOL_NAME (elt))) == 0)
366 CHECK_NUMBER (AREF (AREF (table, i), 0));
367 return ((XINT (AREF (AREF (table, i), 0)) << 8)
368 | (i << 4) | (j - 1));
371 if (! noerror)
372 return -1;
373 eassert (len < 255);
374 elt = Fmake_vector (make_number (2), make_number (100));
375 ASET (elt, 1, val);
376 ASET (font_style_table, prop - FONT_WEIGHT_INDEX,
377 CALLN (Fvconcat, table, Fmake_vector (make_number (1), elt)));
378 return (100 << 8) | (i << 4);
380 else
382 int i, last_n;
383 EMACS_INT numeric = XINT (val);
385 for (i = 0, last_n = -1; i < len; i++)
387 int n;
389 CHECK_VECTOR (AREF (table, i));
390 CHECK_NUMBER (AREF (AREF (table, i), 0));
391 n = XINT (AREF (AREF (table, i), 0));
392 if (numeric == n)
393 return (n << 8) | (i << 4);
394 if (numeric < n)
396 if (! noerror)
397 return -1;
398 return ((i == 0 || n - numeric < numeric - last_n)
399 ? (n << 8) | (i << 4): (last_n << 8 | ((i - 1) << 4)));
401 last_n = n;
403 if (! noerror)
404 return -1;
405 return ((last_n << 8) | ((i - 1) << 4));
409 Lisp_Object
410 font_style_symbolic (Lisp_Object font, enum font_property_index prop,
411 bool for_face)
413 Lisp_Object val = AREF (font, prop);
414 Lisp_Object table, elt;
415 int i;
417 if (NILP (val))
418 return Qnil;
419 table = AREF (font_style_table, prop - FONT_WEIGHT_INDEX);
420 CHECK_VECTOR (table);
421 i = XINT (val) & 0xFF;
422 eassert (((i >> 4) & 0xF) < ASIZE (table));
423 elt = AREF (table, ((i >> 4) & 0xF));
424 CHECK_VECTOR (elt);
425 eassert ((i & 0xF) + 1 < ASIZE (elt));
426 elt = (for_face ? AREF (elt, 1) : AREF (elt, (i & 0xF) + 1));
427 CHECK_SYMBOL (elt);
428 return elt;
431 /* Return ENCODING or a cons of ENCODING and REPERTORY of the font
432 FONTNAME. ENCODING is a charset symbol that specifies the encoding
433 of the font. REPERTORY is a charset symbol or nil. */
435 Lisp_Object
436 find_font_encoding (Lisp_Object fontname)
438 Lisp_Object tail, elt;
440 for (tail = Vfont_encoding_alist; CONSP (tail); tail = XCDR (tail))
442 elt = XCAR (tail);
443 if (CONSP (elt)
444 && STRINGP (XCAR (elt))
445 && fast_string_match_ignore_case (XCAR (elt), fontname) >= 0
446 && (SYMBOLP (XCDR (elt))
447 ? CHARSETP (XCDR (elt))
448 : CONSP (XCDR (elt)) && CHARSETP (XCAR (XCDR (elt)))))
449 return (XCDR (elt));
451 return Qnil;
454 /* Return encoding charset and repertory charset for REGISTRY in
455 ENCODING and REPERTORY correspondingly. If correct information for
456 REGISTRY is available, return 0. Otherwise return -1. */
459 font_registry_charsets (Lisp_Object registry, struct charset **encoding, struct charset **repertory)
461 Lisp_Object val;
462 int encoding_id, repertory_id;
464 val = Fassoc_string (registry, font_charset_alist, Qt);
465 if (! NILP (val))
467 val = XCDR (val);
468 if (NILP (val))
469 return -1;
470 encoding_id = XINT (XCAR (val));
471 repertory_id = XINT (XCDR (val));
473 else
475 val = find_font_encoding (SYMBOL_NAME (registry));
476 if (SYMBOLP (val) && CHARSETP (val))
478 encoding_id = repertory_id = XINT (CHARSET_SYMBOL_ID (val));
480 else if (CONSP (val))
482 if (! CHARSETP (XCAR (val)))
483 goto invalid_entry;
484 encoding_id = XINT (CHARSET_SYMBOL_ID (XCAR (val)));
485 if (NILP (XCDR (val)))
486 repertory_id = -1;
487 else
489 if (! CHARSETP (XCDR (val)))
490 goto invalid_entry;
491 repertory_id = XINT (CHARSET_SYMBOL_ID (XCDR (val)));
494 else
495 goto invalid_entry;
496 val = Fcons (make_number (encoding_id), make_number (repertory_id));
497 font_charset_alist
498 = nconc2 (font_charset_alist, list1 (Fcons (registry, val)));
501 if (encoding)
502 *encoding = CHARSET_FROM_ID (encoding_id);
503 if (repertory)
504 *repertory = repertory_id >= 0 ? CHARSET_FROM_ID (repertory_id) : NULL;
505 return 0;
507 invalid_entry:
508 font_charset_alist
509 = nconc2 (font_charset_alist, list1 (Fcons (registry, Qnil)));
510 return -1;
514 /* Font property value validators. See the comment of
515 font_property_table for the meaning of the arguments. */
517 static Lisp_Object font_prop_validate (int, Lisp_Object, Lisp_Object);
518 static Lisp_Object font_prop_validate_symbol (Lisp_Object, Lisp_Object);
519 static Lisp_Object font_prop_validate_style (Lisp_Object, Lisp_Object);
520 static Lisp_Object font_prop_validate_non_neg (Lisp_Object, Lisp_Object);
521 static Lisp_Object font_prop_validate_spacing (Lisp_Object, Lisp_Object);
522 static int get_font_prop_index (Lisp_Object);
524 static Lisp_Object
525 font_prop_validate_symbol (Lisp_Object prop, Lisp_Object val)
527 if (STRINGP (val))
528 val = Fintern (val, Qnil);
529 if (! SYMBOLP (val))
530 val = Qerror;
531 else if (EQ (prop, QCregistry))
532 val = Fintern (Fdowncase (SYMBOL_NAME (val)), Qnil);
533 return val;
537 static Lisp_Object
538 font_prop_validate_style (Lisp_Object style, Lisp_Object val)
540 enum font_property_index prop = (EQ (style, QCweight) ? FONT_WEIGHT_INDEX
541 : EQ (style, QCslant) ? FONT_SLANT_INDEX
542 : FONT_WIDTH_INDEX);
543 if (INTEGERP (val))
545 EMACS_INT n = XINT (val);
546 CHECK_VECTOR (AREF (font_style_table, prop - FONT_WEIGHT_INDEX));
547 if (((n >> 4) & 0xF)
548 >= ASIZE (AREF (font_style_table, prop - FONT_WEIGHT_INDEX)))
549 val = Qerror;
550 else
552 Lisp_Object elt = AREF (AREF (font_style_table, prop - FONT_WEIGHT_INDEX), (n >> 4) & 0xF);
554 CHECK_VECTOR (elt);
555 if ((n & 0xF) + 1 >= ASIZE (elt))
556 val = Qerror;
557 else
559 CHECK_NUMBER (AREF (elt, 0));
560 if (XINT (AREF (elt, 0)) != (n >> 8))
561 val = Qerror;
565 else if (SYMBOLP (val))
567 int n = font_style_to_value (prop, val, 0);
569 val = n >= 0 ? make_number (n) : Qerror;
571 else
572 val = Qerror;
573 return val;
576 static Lisp_Object
577 font_prop_validate_non_neg (Lisp_Object prop, Lisp_Object val)
579 return (NATNUMP (val) || (FLOATP (val) && XFLOAT_DATA (val) >= 0)
580 ? val : Qerror);
583 static Lisp_Object
584 font_prop_validate_spacing (Lisp_Object prop, Lisp_Object val)
586 if (NILP (val) || (NATNUMP (val) && XINT (val) <= FONT_SPACING_CHARCELL))
587 return val;
588 if (SYMBOLP (val) && SBYTES (SYMBOL_NAME (val)) == 1)
590 char spacing = SDATA (SYMBOL_NAME (val))[0];
592 if (spacing == 'c' || spacing == 'C')
593 return make_number (FONT_SPACING_CHARCELL);
594 if (spacing == 'm' || spacing == 'M')
595 return make_number (FONT_SPACING_MONO);
596 if (spacing == 'p' || spacing == 'P')
597 return make_number (FONT_SPACING_PROPORTIONAL);
598 if (spacing == 'd' || spacing == 'D')
599 return make_number (FONT_SPACING_DUAL);
601 return Qerror;
604 static Lisp_Object
605 font_prop_validate_otf (Lisp_Object prop, Lisp_Object val)
607 Lisp_Object tail, tmp;
608 int i;
610 /* VAL = (SCRIPT [ LANGSYS [ GSUB-FEATURES [ GPOS-FEATURES ]]])
611 GSUB-FEATURES = (FEATURE ... [ nil FEATURE ... ]) | nil
612 GPOS-FEATURES = (FEATURE ... [ nil FEATURE ... ]) | nil */
613 if (! CONSP (val))
614 return Qerror;
615 if (! SYMBOLP (XCAR (val)))
616 return Qerror;
617 tail = XCDR (val);
618 if (NILP (tail))
619 return val;
620 if (! CONSP (tail) || ! SYMBOLP (XCAR (val)))
621 return Qerror;
622 for (i = 0; i < 2; i++)
624 tail = XCDR (tail);
625 if (NILP (tail))
626 return val;
627 if (! CONSP (tail))
628 return Qerror;
629 for (tmp = XCAR (tail); CONSP (tmp); tmp = XCDR (tmp))
630 if (! SYMBOLP (XCAR (tmp)))
631 return Qerror;
632 if (! NILP (tmp))
633 return Qerror;
635 return val;
638 /* Structure of known font property keys and validator of the
639 values. */
640 static const struct
642 /* Index of the key symbol. */
643 int key;
644 /* Function to validate PROP's value VAL, or NULL if any value is
645 ok. The value is VAL or its regularized value if VAL is valid,
646 and Qerror if not. */
647 Lisp_Object (*validator) (Lisp_Object prop, Lisp_Object val);
648 } font_property_table[] =
649 { { SYMBOL_INDEX (QCtype), font_prop_validate_symbol },
650 { SYMBOL_INDEX (QCfoundry), font_prop_validate_symbol },
651 { SYMBOL_INDEX (QCfamily), font_prop_validate_symbol },
652 { SYMBOL_INDEX (QCadstyle), font_prop_validate_symbol },
653 { SYMBOL_INDEX (QCregistry), font_prop_validate_symbol },
654 { SYMBOL_INDEX (QCweight), font_prop_validate_style },
655 { SYMBOL_INDEX (QCslant), font_prop_validate_style },
656 { SYMBOL_INDEX (QCwidth), font_prop_validate_style },
657 { SYMBOL_INDEX (QCsize), font_prop_validate_non_neg },
658 { SYMBOL_INDEX (QCdpi), font_prop_validate_non_neg },
659 { SYMBOL_INDEX (QCspacing), font_prop_validate_spacing },
660 { SYMBOL_INDEX (QCavgwidth), font_prop_validate_non_neg },
661 /* The order of the above entries must match with enum
662 font_property_index. */
663 { SYMBOL_INDEX (QClang), font_prop_validate_symbol },
664 { SYMBOL_INDEX (QCscript), font_prop_validate_symbol },
665 { SYMBOL_INDEX (QCotf), font_prop_validate_otf }
668 /* Return an index number of font property KEY or -1 if KEY is not an
669 already known property. */
671 static int
672 get_font_prop_index (Lisp_Object key)
674 int i;
676 for (i = 0; i < ARRAYELTS (font_property_table); i++)
677 if (EQ (key, builtin_lisp_symbol (font_property_table[i].key)))
678 return i;
679 return -1;
682 /* Validate the font property. The property key is specified by the
683 symbol PROP, or the index IDX (if PROP is nil). If VAL is invalid,
684 signal an error. The value is VAL or the regularized one. */
686 static Lisp_Object
687 font_prop_validate (int idx, Lisp_Object prop, Lisp_Object val)
689 Lisp_Object validated;
691 if (NILP (val))
692 return val;
693 if (NILP (prop))
694 prop = builtin_lisp_symbol (font_property_table[idx].key);
695 else
697 idx = get_font_prop_index (prop);
698 if (idx < 0)
699 return val;
701 validated = (font_property_table[idx].validator) (prop, val);
702 if (EQ (validated, Qerror))
703 signal_error ("invalid font property", Fcons (prop, val));
704 return validated;
708 /* Store VAL as a value of extra font property PROP in FONT while
709 keeping the sorting order. Don't check the validity of VAL. */
711 Lisp_Object
712 font_put_extra (Lisp_Object font, Lisp_Object prop, Lisp_Object val)
714 Lisp_Object extra = AREF (font, FONT_EXTRA_INDEX);
715 Lisp_Object slot = (NILP (extra) ? Qnil : assq_no_quit (prop, extra));
717 if (NILP (slot))
719 Lisp_Object prev = Qnil;
721 while (CONSP (extra)
722 && NILP (Fstring_lessp (prop, XCAR (XCAR (extra)))))
723 prev = extra, extra = XCDR (extra);
725 if (NILP (prev))
726 ASET (font, FONT_EXTRA_INDEX, Fcons (Fcons (prop, val), extra));
727 else
728 XSETCDR (prev, Fcons (Fcons (prop, val), extra));
730 return val;
732 XSETCDR (slot, val);
733 if (NILP (val))
734 ASET (font, FONT_EXTRA_INDEX, Fdelq (slot, extra));
735 return val;
739 /* Font name parser and unparser. */
741 static int parse_matrix (const char *);
742 static int font_expand_wildcards (Lisp_Object *, int);
743 static int font_parse_name (char *, ptrdiff_t, Lisp_Object);
745 /* An enumerator for each field of an XLFD font name. */
746 enum xlfd_field_index
748 XLFD_FOUNDRY_INDEX,
749 XLFD_FAMILY_INDEX,
750 XLFD_WEIGHT_INDEX,
751 XLFD_SLANT_INDEX,
752 XLFD_SWIDTH_INDEX,
753 XLFD_ADSTYLE_INDEX,
754 XLFD_PIXEL_INDEX,
755 XLFD_POINT_INDEX,
756 XLFD_RESX_INDEX,
757 XLFD_RESY_INDEX,
758 XLFD_SPACING_INDEX,
759 XLFD_AVGWIDTH_INDEX,
760 XLFD_REGISTRY_INDEX,
761 XLFD_ENCODING_INDEX,
762 XLFD_LAST_INDEX
765 /* An enumerator for mask bit corresponding to each XLFD field. */
766 enum xlfd_field_mask
768 XLFD_FOUNDRY_MASK = 0x0001,
769 XLFD_FAMILY_MASK = 0x0002,
770 XLFD_WEIGHT_MASK = 0x0004,
771 XLFD_SLANT_MASK = 0x0008,
772 XLFD_SWIDTH_MASK = 0x0010,
773 XLFD_ADSTYLE_MASK = 0x0020,
774 XLFD_PIXEL_MASK = 0x0040,
775 XLFD_POINT_MASK = 0x0080,
776 XLFD_RESX_MASK = 0x0100,
777 XLFD_RESY_MASK = 0x0200,
778 XLFD_SPACING_MASK = 0x0400,
779 XLFD_AVGWIDTH_MASK = 0x0800,
780 XLFD_REGISTRY_MASK = 0x1000,
781 XLFD_ENCODING_MASK = 0x2000
785 /* Parse P pointing to the pixel/point size field of the form
786 `[A B C D]' which specifies a transformation matrix:
788 A B 0
789 C D 0
790 0 0 1
792 by which all glyphs of the font are transformed. The spec says
793 that scalar value N for the pixel/point size is equivalent to:
794 A = N * resx/resy, B = C = 0, D = N.
796 Return the scalar value N if the form is valid. Otherwise return
797 -1. */
799 static int
800 parse_matrix (const char *p)
802 double matrix[4];
803 char *end;
804 int i;
806 for (i = 0, p++; i < 4 && *p && *p != ']'; i++)
808 if (*p == '~')
809 matrix[i] = - strtod (p + 1, &end);
810 else
811 matrix[i] = strtod (p, &end);
812 p = end;
814 return (i == 4 ? (int) matrix[3] : -1);
817 /* Expand a wildcard field in FIELD (the first N fields are filled) to
818 multiple fields to fill in all 14 XLFD fields while restricting a
819 field position by its contents. */
821 static int
822 font_expand_wildcards (Lisp_Object *field, int n)
824 /* Copy of FIELD. */
825 Lisp_Object tmp[XLFD_LAST_INDEX];
826 /* Array of information about where this element can go. Nth
827 element is for Nth element of FIELD. */
828 struct {
829 /* Minimum possible field. */
830 int from;
831 /* Maximum possible field. */
832 int to;
833 /* Bit mask of possible field. Nth bit corresponds to Nth field. */
834 int mask;
835 } range[XLFD_LAST_INDEX];
836 int i, j;
837 int range_from, range_to;
838 unsigned range_mask;
840 #define XLFD_SYMBOL_MASK (XLFD_FOUNDRY_MASK | XLFD_FAMILY_MASK \
841 | XLFD_ADSTYLE_MASK | XLFD_REGISTRY_MASK)
842 #define XLFD_NULL_MASK (XLFD_FOUNDRY_MASK | XLFD_ADSTYLE_MASK)
843 #define XLFD_LARGENUM_MASK (XLFD_POINT_MASK | XLFD_RESX_MASK | XLFD_RESY_MASK \
844 | XLFD_AVGWIDTH_MASK)
845 #define XLFD_REGENC_MASK (XLFD_REGISTRY_MASK | XLFD_ENCODING_MASK)
847 /* Initialize RANGE_MASK for FIELD[0] which can be 0th to (14 - N)th
848 field. The value is shifted to left one bit by one in the
849 following loop. */
850 for (i = 0, range_mask = 0; i <= 14 - n; i++)
851 range_mask = (range_mask << 1) | 1;
853 /* The triplet RANGE_FROM, RANGE_TO, and RANGE_MASK is a
854 position-based restriction for FIELD[I]. */
855 for (i = 0, range_from = 0, range_to = 14 - n; i < n;
856 i++, range_from++, range_to++, range_mask <<= 1)
858 Lisp_Object val = field[i];
860 tmp[i] = val;
861 if (NILP (val))
863 /* Wildcard. */
864 range[i].from = range_from;
865 range[i].to = range_to;
866 range[i].mask = range_mask;
868 else
870 /* The triplet FROM, TO, and MASK is a value-based
871 restriction for FIELD[I]. */
872 int from, to;
873 unsigned mask;
875 if (INTEGERP (val))
877 EMACS_INT numeric = XINT (val);
879 if (i + 1 == n)
880 from = to = XLFD_ENCODING_INDEX,
881 mask = XLFD_ENCODING_MASK;
882 else if (numeric == 0)
883 from = XLFD_PIXEL_INDEX, to = XLFD_AVGWIDTH_INDEX,
884 mask = XLFD_PIXEL_MASK | XLFD_LARGENUM_MASK;
885 else if (numeric <= 48)
886 from = to = XLFD_PIXEL_INDEX,
887 mask = XLFD_PIXEL_MASK;
888 else
889 from = XLFD_POINT_INDEX, to = XLFD_AVGWIDTH_INDEX,
890 mask = XLFD_LARGENUM_MASK;
892 else if (SBYTES (SYMBOL_NAME (val)) == 0)
893 from = XLFD_FOUNDRY_INDEX, to = XLFD_ADSTYLE_INDEX,
894 mask = XLFD_NULL_MASK;
895 else if (i == 0)
896 from = to = XLFD_FOUNDRY_INDEX, mask = XLFD_FOUNDRY_MASK;
897 else if (i + 1 == n)
899 Lisp_Object name = SYMBOL_NAME (val);
901 if (SDATA (name)[SBYTES (name) - 1] == '*')
902 from = XLFD_REGISTRY_INDEX, to = XLFD_ENCODING_INDEX,
903 mask = XLFD_REGENC_MASK;
904 else
905 from = to = XLFD_ENCODING_INDEX,
906 mask = XLFD_ENCODING_MASK;
908 else if (range_from <= XLFD_WEIGHT_INDEX
909 && range_to >= XLFD_WEIGHT_INDEX
910 && FONT_WEIGHT_NAME_NUMERIC (val) >= 0)
911 from = to = XLFD_WEIGHT_INDEX, mask = XLFD_WEIGHT_MASK;
912 else if (range_from <= XLFD_SLANT_INDEX
913 && range_to >= XLFD_SLANT_INDEX
914 && FONT_SLANT_NAME_NUMERIC (val) >= 0)
915 from = to = XLFD_SLANT_INDEX, mask = XLFD_SLANT_MASK;
916 else if (range_from <= XLFD_SWIDTH_INDEX
917 && range_to >= XLFD_SWIDTH_INDEX
918 && FONT_WIDTH_NAME_NUMERIC (val) >= 0)
919 from = to = XLFD_SWIDTH_INDEX, mask = XLFD_SWIDTH_MASK;
920 else
922 if (EQ (val, Qc) || EQ (val, Qm) || EQ (val, Qp) || EQ (val, Qd))
923 from = to = XLFD_SPACING_INDEX, mask = XLFD_SPACING_MASK;
924 else
925 from = XLFD_FOUNDRY_INDEX, to = XLFD_ENCODING_INDEX,
926 mask = XLFD_SYMBOL_MASK;
929 /* Merge position-based and value-based restrictions. */
930 mask &= range_mask;
931 while (from < range_from)
932 mask &= ~(1 << from++);
933 while (from < 14 && ! (mask & (1 << from)))
934 from++;
935 while (to > range_to)
936 mask &= ~(1 << to--);
937 while (to >= 0 && ! (mask & (1 << to)))
938 to--;
939 if (from > to)
940 return -1;
941 range[i].from = from;
942 range[i].to = to;
943 range[i].mask = mask;
945 if (from > range_from || to < range_to)
947 /* The range is narrowed by value-based restrictions.
948 Reflect it to the other fields. */
950 /* Following fields should be after FROM. */
951 range_from = from;
952 /* Preceding fields should be before TO. */
953 for (j = i - 1, from--, to--; j >= 0; j--, from--, to--)
955 /* Check FROM for non-wildcard field. */
956 if (! NILP (tmp[j]) && range[j].from < from)
958 while (range[j].from < from)
959 range[j].mask &= ~(1 << range[j].from++);
960 while (from < 14 && ! (range[j].mask & (1 << from)))
961 from++;
962 range[j].from = from;
964 else
965 from = range[j].from;
966 if (range[j].to > to)
968 while (range[j].to > to)
969 range[j].mask &= ~(1 << range[j].to--);
970 while (to >= 0 && ! (range[j].mask & (1 << to)))
971 to--;
972 range[j].to = to;
974 else
975 to = range[j].to;
976 if (from > to)
977 return -1;
983 /* Decide all fields from restrictions in RANGE. */
984 for (i = j = 0; i < n ; i++)
986 if (j < range[i].from)
988 if (i == 0 || ! NILP (tmp[i - 1]))
989 /* None of TMP[X] corresponds to Jth field. */
990 return -1;
991 memclear (field + j, (range[i].from - j) * word_size);
992 j = range[i].from;
994 field[j++] = tmp[i];
996 if (! NILP (tmp[n - 1]) && j < XLFD_REGISTRY_INDEX)
997 return -1;
998 memclear (field + j, (XLFD_LAST_INDEX - j) * word_size);
999 if (INTEGERP (field[XLFD_ENCODING_INDEX]))
1000 field[XLFD_ENCODING_INDEX]
1001 = Fintern (Fnumber_to_string (field[XLFD_ENCODING_INDEX]), Qnil);
1002 return 0;
1006 /* Parse NAME (null terminated) as XLFD and store information in FONT
1007 (font-spec or font-entity). Size property of FONT is set as
1008 follows:
1009 specified XLFD fields FONT property
1010 --------------------- -------------
1011 PIXEL_SIZE PIXEL_SIZE (Lisp integer)
1012 POINT_SIZE and RESY calculated pixel size (Lisp integer)
1013 POINT_SIZE POINT_SIZE/10 (Lisp float)
1015 If NAME is successfully parsed, return 0. Otherwise return -1.
1017 FONT is usually a font-spec, but when this function is called from
1018 X font backend driver, it is a font-entity. In that case, NAME is
1019 a fully specified XLFD. */
1022 font_parse_xlfd (char *name, ptrdiff_t len, Lisp_Object font)
1024 int i, j, n;
1025 char *f[XLFD_LAST_INDEX + 1];
1026 Lisp_Object val;
1027 char *p;
1029 if (len > 255 || !len)
1030 /* Maximum XLFD name length is 255. */
1031 return -1;
1032 /* Accept "*-.." as a fully specified XLFD. */
1033 if (name[0] == '*' && (len == 1 || name[1] == '-'))
1034 i = 1, f[XLFD_FOUNDRY_INDEX] = name;
1035 else
1036 i = 0;
1037 for (p = name + i; *p; p++)
1038 if (*p == '-')
1040 f[i++] = p + 1;
1041 if (i == XLFD_LAST_INDEX)
1042 break;
1044 f[i] = name + len;
1046 #define INTERN_FIELD(N) font_intern_prop (f[N], f[(N) + 1] - 1 - f[N], 0)
1047 #define INTERN_FIELD_SYM(N) font_intern_prop (f[N], f[(N) + 1] - 1 - f[N], 1)
1049 if (i == XLFD_LAST_INDEX)
1051 /* Fully specified XLFD. */
1052 int pixel_size;
1054 ASET (font, FONT_FOUNDRY_INDEX, INTERN_FIELD_SYM (XLFD_FOUNDRY_INDEX));
1055 ASET (font, FONT_FAMILY_INDEX, INTERN_FIELD_SYM (XLFD_FAMILY_INDEX));
1056 for (i = XLFD_WEIGHT_INDEX, j = FONT_WEIGHT_INDEX;
1057 i <= XLFD_SWIDTH_INDEX; i++, j++)
1059 val = INTERN_FIELD_SYM (i);
1060 if (! NILP (val))
1062 if ((n = font_style_to_value (j, INTERN_FIELD_SYM (i), 0)) < 0)
1063 return -1;
1064 ASET (font, j, make_number (n));
1067 ASET (font, FONT_ADSTYLE_INDEX, INTERN_FIELD_SYM (XLFD_ADSTYLE_INDEX));
1068 if (strcmp (f[XLFD_REGISTRY_INDEX], "*-*") == 0)
1069 ASET (font, FONT_REGISTRY_INDEX, Qnil);
1070 else
1071 ASET (font, FONT_REGISTRY_INDEX,
1072 font_intern_prop (f[XLFD_REGISTRY_INDEX],
1073 f[XLFD_LAST_INDEX] - f[XLFD_REGISTRY_INDEX],
1074 1));
1075 p = f[XLFD_PIXEL_INDEX];
1076 if (*p == '[' && (pixel_size = parse_matrix (p)) >= 0)
1077 ASET (font, FONT_SIZE_INDEX, make_number (pixel_size));
1078 else
1080 val = INTERN_FIELD (XLFD_PIXEL_INDEX);
1081 if (INTEGERP (val))
1082 ASET (font, FONT_SIZE_INDEX, val);
1083 else if (FONT_ENTITY_P (font))
1084 return -1;
1085 else
1087 double point_size = -1;
1089 eassert (FONT_SPEC_P (font));
1090 p = f[XLFD_POINT_INDEX];
1091 if (*p == '[')
1092 point_size = parse_matrix (p);
1093 else if (c_isdigit (*p))
1094 point_size = atoi (p), point_size /= 10;
1095 if (point_size >= 0)
1096 ASET (font, FONT_SIZE_INDEX, make_float (point_size));
1100 val = INTERN_FIELD (XLFD_RESY_INDEX);
1101 if (! NILP (val) && ! INTEGERP (val))
1102 return -1;
1103 ASET (font, FONT_DPI_INDEX, val);
1104 val = INTERN_FIELD (XLFD_SPACING_INDEX);
1105 if (! NILP (val))
1107 val = font_prop_validate_spacing (QCspacing, val);
1108 if (! INTEGERP (val))
1109 return -1;
1110 ASET (font, FONT_SPACING_INDEX, val);
1112 p = f[XLFD_AVGWIDTH_INDEX];
1113 if (*p == '~')
1114 p++;
1115 val = font_intern_prop (p, f[XLFD_REGISTRY_INDEX] - 1 - p, 0);
1116 if (! NILP (val) && ! INTEGERP (val))
1117 return -1;
1118 ASET (font, FONT_AVGWIDTH_INDEX, val);
1120 else
1122 bool wild_card_found = 0;
1123 Lisp_Object prop[XLFD_LAST_INDEX];
1125 if (FONT_ENTITY_P (font))
1126 return -1;
1127 for (j = 0; j < i; j++)
1129 if (*f[j] == '*')
1131 if (f[j][1] && f[j][1] != '-')
1132 return -1;
1133 prop[j] = Qnil;
1134 wild_card_found = 1;
1136 else if (j + 1 < i)
1137 prop[j] = INTERN_FIELD (j);
1138 else
1139 prop[j] = font_intern_prop (f[j], f[i] - f[j], 0);
1141 if (! wild_card_found)
1142 return -1;
1143 if (font_expand_wildcards (prop, i) < 0)
1144 return -1;
1146 ASET (font, FONT_FOUNDRY_INDEX, prop[XLFD_FOUNDRY_INDEX]);
1147 ASET (font, FONT_FAMILY_INDEX, prop[XLFD_FAMILY_INDEX]);
1148 for (i = XLFD_WEIGHT_INDEX, j = FONT_WEIGHT_INDEX;
1149 i <= XLFD_SWIDTH_INDEX; i++, j++)
1150 if (! NILP (prop[i]))
1152 if ((n = font_style_to_value (j, prop[i], 1)) < 0)
1153 return -1;
1154 ASET (font, j, make_number (n));
1156 ASET (font, FONT_ADSTYLE_INDEX, prop[XLFD_ADSTYLE_INDEX]);
1157 val = prop[XLFD_REGISTRY_INDEX];
1158 if (NILP (val))
1160 val = prop[XLFD_ENCODING_INDEX];
1161 if (! NILP (val))
1163 AUTO_STRING (star_dash, "*-");
1164 val = concat2 (star_dash, SYMBOL_NAME (val));
1167 else if (NILP (prop[XLFD_ENCODING_INDEX]))
1169 AUTO_STRING (dash_star, "-*");
1170 val = concat2 (SYMBOL_NAME (val), dash_star);
1172 else
1174 AUTO_STRING (dash, "-");
1175 val = concat3 (SYMBOL_NAME (val), dash,
1176 SYMBOL_NAME (prop[XLFD_ENCODING_INDEX]));
1178 if (! NILP (val))
1179 ASET (font, FONT_REGISTRY_INDEX, Fintern (val, Qnil));
1181 if (INTEGERP (prop[XLFD_PIXEL_INDEX]))
1182 ASET (font, FONT_SIZE_INDEX, prop[XLFD_PIXEL_INDEX]);
1183 else if (INTEGERP (prop[XLFD_POINT_INDEX]))
1185 double point_size = XINT (prop[XLFD_POINT_INDEX]);
1187 ASET (font, FONT_SIZE_INDEX, make_float (point_size / 10));
1190 if (INTEGERP (prop[XLFD_RESX_INDEX]))
1191 ASET (font, FONT_DPI_INDEX, prop[XLFD_RESY_INDEX]);
1192 if (! NILP (prop[XLFD_SPACING_INDEX]))
1194 val = font_prop_validate_spacing (QCspacing,
1195 prop[XLFD_SPACING_INDEX]);
1196 if (! INTEGERP (val))
1197 return -1;
1198 ASET (font, FONT_SPACING_INDEX, val);
1200 if (INTEGERP (prop[XLFD_AVGWIDTH_INDEX]))
1201 ASET (font, FONT_AVGWIDTH_INDEX, prop[XLFD_AVGWIDTH_INDEX]);
1204 return 0;
1207 /* Store XLFD name of FONT (font-spec or font-entity) in NAME (NBYTES
1208 length), and return the name length. If FONT_SIZE_INDEX of FONT is
1209 0, use PIXEL_SIZE instead. */
1211 ptrdiff_t
1212 font_unparse_xlfd (Lisp_Object font, int pixel_size, char *name, int nbytes)
1214 char *p;
1215 const char *f[XLFD_REGISTRY_INDEX + 1];
1216 Lisp_Object val;
1217 int i, j, len;
1219 eassert (FONTP (font));
1221 for (i = FONT_FOUNDRY_INDEX, j = XLFD_FOUNDRY_INDEX; i <= FONT_REGISTRY_INDEX;
1222 i++, j++)
1224 if (i == FONT_ADSTYLE_INDEX)
1225 j = XLFD_ADSTYLE_INDEX;
1226 else if (i == FONT_REGISTRY_INDEX)
1227 j = XLFD_REGISTRY_INDEX;
1228 val = AREF (font, i);
1229 if (NILP (val))
1231 if (j == XLFD_REGISTRY_INDEX)
1232 f[j] = "*-*";
1233 else
1234 f[j] = "*";
1236 else
1238 if (SYMBOLP (val))
1239 val = SYMBOL_NAME (val);
1240 if (j == XLFD_REGISTRY_INDEX
1241 && ! strchr (SSDATA (val), '-'))
1243 /* Change "jisx0208*" and "jisx0208" to "jisx0208*-*". */
1244 ptrdiff_t alloc = SBYTES (val) + 4;
1245 if (nbytes <= alloc)
1246 return -1;
1247 f[j] = p = alloca (alloc);
1248 sprintf (p, "%s%s-*", SDATA (val),
1249 &"*"[SDATA (val)[SBYTES (val) - 1] == '*']);
1251 else
1252 f[j] = SSDATA (val);
1256 for (i = FONT_WEIGHT_INDEX, j = XLFD_WEIGHT_INDEX; i <= FONT_WIDTH_INDEX;
1257 i++, j++)
1259 val = font_style_symbolic (font, i, 0);
1260 if (NILP (val))
1261 f[j] = "*";
1262 else
1264 int c, k, l;
1265 ptrdiff_t alloc;
1267 val = SYMBOL_NAME (val);
1268 alloc = SBYTES (val) + 1;
1269 if (nbytes <= alloc)
1270 return -1;
1271 f[j] = p = alloca (alloc);
1272 /* Copy the name while excluding '-', '?', ',', and '"'. */
1273 for (k = l = 0; k < alloc; k++)
1275 c = SREF (val, k);
1276 if (c != '-' && c != '?' && c != ',' && c != '"')
1277 p[l++] = c;
1282 val = AREF (font, FONT_SIZE_INDEX);
1283 eassert (NUMBERP (val) || NILP (val));
1284 char font_size_index_buf[sizeof "-*"
1285 + max (INT_STRLEN_BOUND (EMACS_INT),
1286 1 + DBL_MAX_10_EXP + 1)];
1287 if (INTEGERP (val))
1289 EMACS_INT v = XINT (val);
1290 if (v <= 0)
1291 v = pixel_size;
1292 if (v > 0)
1294 f[XLFD_PIXEL_INDEX] = p = font_size_index_buf;
1295 sprintf (p, "%"pI"d-*", v);
1297 else
1298 f[XLFD_PIXEL_INDEX] = "*-*";
1300 else if (FLOATP (val))
1302 double v = XFLOAT_DATA (val) * 10;
1303 f[XLFD_PIXEL_INDEX] = p = font_size_index_buf;
1304 sprintf (p, "*-%.0f", v);
1306 else
1307 f[XLFD_PIXEL_INDEX] = "*-*";
1309 char dpi_index_buf[sizeof "-" + 2 * INT_STRLEN_BOUND (EMACS_INT)];
1310 if (INTEGERP (AREF (font, FONT_DPI_INDEX)))
1312 EMACS_INT v = XINT (AREF (font, FONT_DPI_INDEX));
1313 f[XLFD_RESX_INDEX] = p = dpi_index_buf;
1314 sprintf (p, "%"pI"d-%"pI"d", v, v);
1316 else
1317 f[XLFD_RESX_INDEX] = "*-*";
1319 if (INTEGERP (AREF (font, FONT_SPACING_INDEX)))
1321 EMACS_INT spacing = XINT (AREF (font, FONT_SPACING_INDEX));
1323 f[XLFD_SPACING_INDEX] = (spacing <= FONT_SPACING_PROPORTIONAL ? "p"
1324 : spacing <= FONT_SPACING_DUAL ? "d"
1325 : spacing <= FONT_SPACING_MONO ? "m"
1326 : "c");
1328 else
1329 f[XLFD_SPACING_INDEX] = "*";
1331 char avgwidth_index_buf[INT_BUFSIZE_BOUND (EMACS_INT)];
1332 if (INTEGERP (AREF (font, FONT_AVGWIDTH_INDEX)))
1334 f[XLFD_AVGWIDTH_INDEX] = p = avgwidth_index_buf;
1335 sprintf (p, "%"pI"d", XINT (AREF (font, FONT_AVGWIDTH_INDEX)));
1337 else
1338 f[XLFD_AVGWIDTH_INDEX] = "*";
1340 len = snprintf (name, nbytes, "-%s-%s-%s-%s-%s-%s-%s-%s-%s-%s-%s",
1341 f[XLFD_FOUNDRY_INDEX], f[XLFD_FAMILY_INDEX],
1342 f[XLFD_WEIGHT_INDEX], f[XLFD_SLANT_INDEX],
1343 f[XLFD_SWIDTH_INDEX], f[XLFD_ADSTYLE_INDEX],
1344 f[XLFD_PIXEL_INDEX], f[XLFD_RESX_INDEX],
1345 f[XLFD_SPACING_INDEX], f[XLFD_AVGWIDTH_INDEX],
1346 f[XLFD_REGISTRY_INDEX]);
1347 return len < nbytes ? len : -1;
1350 /* Parse NAME (null terminated) and store information in FONT
1351 (font-spec or font-entity). NAME is supplied in either the
1352 Fontconfig or GTK font name format. If NAME is successfully
1353 parsed, return 0. Otherwise return -1.
1355 The fontconfig format is
1357 FAMILY[-SIZE][:PROP1[=VAL1][:PROP2[=VAL2]...]]
1359 The GTK format is
1361 FAMILY [PROPS...] [SIZE]
1363 This function tries to guess which format it is. */
1365 static int
1366 font_parse_fcname (char *name, ptrdiff_t len, Lisp_Object font)
1368 char *p, *q;
1369 char *size_beg = NULL, *size_end = NULL;
1370 char *props_beg = NULL, *family_end = NULL;
1372 if (len == 0)
1373 return -1;
1375 for (p = name; *p; p++)
1377 if (*p == '\\' && p[1])
1378 p++;
1379 else if (*p == ':')
1381 props_beg = family_end = p;
1382 break;
1384 else if (*p == '-')
1386 bool decimal = 0, size_found = 1;
1387 for (q = p + 1; *q && *q != ':'; q++)
1388 if (! c_isdigit (*q))
1390 if (*q != '.' || decimal)
1392 size_found = 0;
1393 break;
1395 decimal = 1;
1397 if (size_found)
1399 family_end = p;
1400 size_beg = p + 1;
1401 size_end = q;
1402 break;
1407 if (family_end)
1409 Lisp_Object extra_props = Qnil;
1411 /* A fontconfig name with size and/or property data. */
1412 if (family_end > name)
1414 Lisp_Object family;
1415 family = font_intern_prop (name, family_end - name, 1);
1416 ASET (font, FONT_FAMILY_INDEX, family);
1418 if (size_beg)
1420 double point_size = strtod (size_beg, &size_end);
1421 ASET (font, FONT_SIZE_INDEX, make_float (point_size));
1422 if (*size_end == ':' && size_end[1])
1423 props_beg = size_end;
1425 if (props_beg)
1427 /* Now parse ":KEY=VAL" patterns. */
1428 Lisp_Object val;
1430 for (p = props_beg; *p; p = q)
1432 for (q = p + 1; *q && *q != '=' && *q != ':'; q++);
1433 if (*q != '=')
1435 /* Must be an enumerated value. */
1436 ptrdiff_t word_len;
1437 p = p + 1;
1438 word_len = q - p;
1439 val = font_intern_prop (p, q - p, 1);
1441 #define PROP_MATCH(STR) (word_len == strlen (STR) \
1442 && memcmp (p, STR, strlen (STR)) == 0)
1444 if (PROP_MATCH ("light")
1445 || PROP_MATCH ("medium")
1446 || PROP_MATCH ("demibold")
1447 || PROP_MATCH ("bold")
1448 || PROP_MATCH ("black"))
1449 FONT_SET_STYLE (font, FONT_WEIGHT_INDEX, val);
1450 else if (PROP_MATCH ("roman")
1451 || PROP_MATCH ("italic")
1452 || PROP_MATCH ("oblique"))
1453 FONT_SET_STYLE (font, FONT_SLANT_INDEX, val);
1454 else if (PROP_MATCH ("charcell"))
1455 ASET (font, FONT_SPACING_INDEX,
1456 make_number (FONT_SPACING_CHARCELL));
1457 else if (PROP_MATCH ("mono"))
1458 ASET (font, FONT_SPACING_INDEX,
1459 make_number (FONT_SPACING_MONO));
1460 else if (PROP_MATCH ("proportional"))
1461 ASET (font, FONT_SPACING_INDEX,
1462 make_number (FONT_SPACING_PROPORTIONAL));
1463 #undef PROP_MATCH
1465 else
1467 /* KEY=VAL pairs */
1468 Lisp_Object key;
1469 int prop;
1471 if (q - p == 10 && memcmp (p + 1, "pixelsize", 9) == 0)
1472 prop = FONT_SIZE_INDEX;
1473 else
1475 key = font_intern_prop (p, q - p, 1);
1476 prop = get_font_prop_index (key);
1479 p = q + 1;
1480 for (q = p; *q && *q != ':'; q++);
1481 val = font_intern_prop (p, q - p, 0);
1483 if (prop >= FONT_FOUNDRY_INDEX
1484 && prop < FONT_EXTRA_INDEX)
1485 ASET (font, prop, font_prop_validate (prop, Qnil, val));
1486 else
1488 extra_props = nconc2 (extra_props,
1489 list1 (Fcons (key, val)));
1492 p = q;
1496 if (! NILP (extra_props))
1498 struct font_driver_list *driver_list = font_driver_list;
1499 for ( ; driver_list; driver_list = driver_list->next)
1500 if (driver_list->driver->filter_properties)
1501 (*driver_list->driver->filter_properties) (font, extra_props);
1505 else
1507 /* Either a fontconfig-style name with no size and property
1508 data, or a GTK-style name. */
1509 Lisp_Object weight = Qnil, slant = Qnil;
1510 Lisp_Object width = Qnil, size = Qnil;
1511 char *word_start;
1512 ptrdiff_t word_len;
1514 /* Scan backwards from the end, looking for a size. */
1515 for (p = name + len - 1; p >= name; p--)
1516 if (!c_isdigit (*p))
1517 break;
1519 if ((p < name + len - 1) && ((p + 1 == name) || *p == ' '))
1520 /* Found a font size. */
1521 size = make_float (strtod (p + 1, NULL));
1522 else
1523 p = name + len;
1525 /* Now P points to the termination of the string, sans size.
1526 Scan backwards, looking for font properties. */
1527 for (; p > name; p = q)
1529 for (q = p - 1; q >= name; q--)
1531 if (q > name && *(q-1) == '\\')
1532 --q; /* Skip quoting backslashes. */
1533 else if (*q == ' ')
1534 break;
1537 word_start = q + 1;
1538 word_len = p - word_start;
1540 #define PROP_MATCH(STR) \
1541 (word_len == strlen (STR) \
1542 && memcmp (word_start, STR, strlen (STR)) == 0)
1543 #define PROP_SAVE(VAR, STR) \
1544 (VAR = NILP (VAR) ? font_intern_prop (STR, strlen (STR), 1) : VAR)
1546 if (PROP_MATCH ("Ultra-Light"))
1547 PROP_SAVE (weight, "ultra-light");
1548 else if (PROP_MATCH ("Light"))
1549 PROP_SAVE (weight, "light");
1550 else if (PROP_MATCH ("Book"))
1551 PROP_SAVE (weight, "book");
1552 else if (PROP_MATCH ("Medium"))
1553 PROP_SAVE (weight, "medium");
1554 else if (PROP_MATCH ("Semi-Bold"))
1555 PROP_SAVE (weight, "semi-bold");
1556 else if (PROP_MATCH ("Bold"))
1557 PROP_SAVE (weight, "bold");
1558 else if (PROP_MATCH ("Italic"))
1559 PROP_SAVE (slant, "italic");
1560 else if (PROP_MATCH ("Oblique"))
1561 PROP_SAVE (slant, "oblique");
1562 else if (PROP_MATCH ("Semi-Condensed"))
1563 PROP_SAVE (width, "semi-condensed");
1564 else if (PROP_MATCH ("Condensed"))
1565 PROP_SAVE (width, "condensed");
1566 /* An unknown word must be part of the font name. */
1567 else
1569 family_end = p;
1570 break;
1573 #undef PROP_MATCH
1574 #undef PROP_SAVE
1576 if (family_end)
1577 ASET (font, FONT_FAMILY_INDEX,
1578 font_intern_prop (name, family_end - name, 1));
1579 if (!NILP (size))
1580 ASET (font, FONT_SIZE_INDEX, size);
1581 if (!NILP (weight))
1582 FONT_SET_STYLE (font, FONT_WEIGHT_INDEX, weight);
1583 if (!NILP (slant))
1584 FONT_SET_STYLE (font, FONT_SLANT_INDEX, slant);
1585 if (!NILP (width))
1586 FONT_SET_STYLE (font, FONT_WIDTH_INDEX, width);
1589 return 0;
1592 #if defined HAVE_XFT || defined HAVE_FREETYPE || defined HAVE_NS
1594 /* Store fontconfig's font name of FONT (font-spec or font-entity) in
1595 NAME (NBYTES length), and return the name length. If
1596 FONT_SIZE_INDEX of FONT is 0, use PIXEL_SIZE instead.
1597 Return a negative value on error. */
1599 static int
1600 font_unparse_fcname (Lisp_Object font, int pixel_size, char *name, int nbytes)
1602 Lisp_Object family, foundry;
1603 Lisp_Object val;
1604 int point_size;
1605 int i;
1606 char *p;
1607 char *lim;
1608 Lisp_Object styles[3];
1609 const char *style_names[3] = { "weight", "slant", "width" };
1611 family = AREF (font, FONT_FAMILY_INDEX);
1612 if (! NILP (family))
1614 if (SYMBOLP (family))
1615 family = SYMBOL_NAME (family);
1616 else
1617 family = Qnil;
1620 val = AREF (font, FONT_SIZE_INDEX);
1621 if (INTEGERP (val))
1623 if (XINT (val) != 0)
1624 pixel_size = XINT (val);
1625 point_size = -1;
1627 else
1629 eassert (FLOATP (val));
1630 pixel_size = -1;
1631 point_size = (int) XFLOAT_DATA (val);
1634 foundry = AREF (font, FONT_FOUNDRY_INDEX);
1635 if (! NILP (foundry))
1637 if (SYMBOLP (foundry))
1638 foundry = SYMBOL_NAME (foundry);
1639 else
1640 foundry = Qnil;
1643 for (i = 0; i < 3; i++)
1644 styles[i] = font_style_symbolic (font, FONT_WEIGHT_INDEX + i, 0);
1646 p = name;
1647 lim = name + nbytes;
1648 if (! NILP (family))
1650 int len = snprintf (p, lim - p, "%s", SSDATA (family));
1651 if (! (0 <= len && len < lim - p))
1652 return -1;
1653 p += len;
1655 if (point_size > 0)
1657 int len = snprintf (p, lim - p, &"-%d"[p == name], point_size);
1658 if (! (0 <= len && len < lim - p))
1659 return -1;
1660 p += len;
1662 else if (pixel_size > 0)
1664 int len = snprintf (p, lim - p, ":pixelsize=%d", pixel_size);
1665 if (! (0 <= len && len < lim - p))
1666 return -1;
1667 p += len;
1669 if (! NILP (AREF (font, FONT_FOUNDRY_INDEX)))
1671 int len = snprintf (p, lim - p, ":foundry=%s",
1672 SSDATA (SYMBOL_NAME (AREF (font,
1673 FONT_FOUNDRY_INDEX))));
1674 if (! (0 <= len && len < lim - p))
1675 return -1;
1676 p += len;
1678 for (i = 0; i < 3; i++)
1679 if (! NILP (styles[i]))
1681 int len = snprintf (p, lim - p, ":%s=%s", style_names[i],
1682 SSDATA (SYMBOL_NAME (styles[i])));
1683 if (! (0 <= len && len < lim - p))
1684 return -1;
1685 p += len;
1688 if (INTEGERP (AREF (font, FONT_DPI_INDEX)))
1690 int len = snprintf (p, lim - p, ":dpi=%"pI"d",
1691 XINT (AREF (font, FONT_DPI_INDEX)));
1692 if (! (0 <= len && len < lim - p))
1693 return -1;
1694 p += len;
1697 if (INTEGERP (AREF (font, FONT_SPACING_INDEX)))
1699 int len = snprintf (p, lim - p, ":spacing=%"pI"d",
1700 XINT (AREF (font, FONT_SPACING_INDEX)));
1701 if (! (0 <= len && len < lim - p))
1702 return -1;
1703 p += len;
1706 if (INTEGERP (AREF (font, FONT_AVGWIDTH_INDEX)))
1708 int len = snprintf (p, lim - p,
1709 (XINT (AREF (font, FONT_AVGWIDTH_INDEX)) == 0
1710 ? ":scalable=true"
1711 : ":scalable=false"));
1712 if (! (0 <= len && len < lim - p))
1713 return -1;
1714 p += len;
1717 return (p - name);
1720 #endif
1722 /* Parse NAME (null terminated) and store information in FONT
1723 (font-spec or font-entity). If NAME is successfully parsed, return
1724 0. Otherwise return -1. */
1726 static int
1727 font_parse_name (char *name, ptrdiff_t namelen, Lisp_Object font)
1729 if (name[0] == '-' || strchr (name, '*') || strchr (name, '?'))
1730 return font_parse_xlfd (name, namelen, font);
1731 return font_parse_fcname (name, namelen, font);
1735 /* Merge FAMILY and REGISTRY into FONT_SPEC. FAMILY may have the form
1736 "FAMILY-FOUNDRY". REGISTRY may not contain charset-encoding
1737 part. */
1739 void
1740 font_parse_family_registry (Lisp_Object family, Lisp_Object registry, Lisp_Object font_spec)
1742 ptrdiff_t len;
1743 char *p0, *p1;
1745 if (! NILP (family)
1746 && NILP (AREF (font_spec, FONT_FAMILY_INDEX)))
1748 CHECK_STRING (family);
1749 len = SBYTES (family);
1750 p0 = SSDATA (family);
1751 p1 = strchr (p0, '-');
1752 if (p1)
1754 if ((*p0 != '*' && p1 - p0 > 0)
1755 && NILP (AREF (font_spec, FONT_FOUNDRY_INDEX)))
1756 Ffont_put (font_spec, QCfoundry, font_intern_prop (p0, p1 - p0, 1));
1757 p1++;
1758 len -= p1 - p0;
1759 Ffont_put (font_spec, QCfamily, font_intern_prop (p1, len, 1));
1761 else
1762 ASET (font_spec, FONT_FAMILY_INDEX, Fintern (family, Qnil));
1764 if (! NILP (registry))
1766 /* Convert "XXX" and "XXX*" to "XXX*-*". */
1767 CHECK_STRING (registry);
1768 len = SBYTES (registry);
1769 p0 = SSDATA (registry);
1770 p1 = strchr (p0, '-');
1771 if (! p1)
1773 AUTO_STRING (extra, ("*-*" + (len && p0[len - 1] == '*')));
1774 registry = concat2 (registry, extra);
1776 registry = Fdowncase (registry);
1777 ASET (font_spec, FONT_REGISTRY_INDEX, Fintern (registry, Qnil));
1782 /* This part (through the next ^L) is still experimental and not
1783 tested much. We may drastically change codes. */
1785 /* OTF handler. */
1787 #if 0
1789 #define LGSTRING_HEADER_SIZE 6
1790 #define LGSTRING_GLYPH_SIZE 8
1792 static int
1793 check_gstring (Lisp_Object gstring)
1795 Lisp_Object val;
1796 ptrdiff_t i;
1797 int j;
1799 CHECK_VECTOR (gstring);
1800 val = AREF (gstring, 0);
1801 CHECK_VECTOR (val);
1802 if (ASIZE (val) < LGSTRING_HEADER_SIZE)
1803 goto err;
1804 CHECK_FONT_OBJECT (LGSTRING_FONT (gstring));
1805 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_LBEARING)))
1806 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_LBEARING));
1807 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_RBEARING)))
1808 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_RBEARING));
1809 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_WIDTH)))
1810 CHECK_NATNUM (LGSTRING_SLOT (gstring, LGSTRING_IX_WIDTH));
1811 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT)))
1812 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT));
1813 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT)))
1814 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT));
1816 for (i = 0; i < LGSTRING_GLYPH_LEN (gstring); i++)
1818 val = LGSTRING_GLYPH (gstring, i);
1819 CHECK_VECTOR (val);
1820 if (ASIZE (val) < LGSTRING_GLYPH_SIZE)
1821 goto err;
1822 if (NILP (AREF (val, LGLYPH_IX_CHAR)))
1823 break;
1824 CHECK_NATNUM (AREF (val, LGLYPH_IX_FROM));
1825 CHECK_NATNUM (AREF (val, LGLYPH_IX_TO));
1826 CHECK_CHARACTER (AREF (val, LGLYPH_IX_CHAR));
1827 if (!NILP (AREF (val, LGLYPH_IX_CODE)))
1828 CHECK_NATNUM (AREF (val, LGLYPH_IX_CODE));
1829 if (!NILP (AREF (val, LGLYPH_IX_WIDTH)))
1830 CHECK_NATNUM (AREF (val, LGLYPH_IX_WIDTH));
1831 if (!NILP (AREF (val, LGLYPH_IX_ADJUSTMENT)))
1833 val = AREF (val, LGLYPH_IX_ADJUSTMENT);
1834 CHECK_VECTOR (val);
1835 if (ASIZE (val) < 3)
1836 goto err;
1837 for (j = 0; j < 3; j++)
1838 CHECK_NUMBER (AREF (val, j));
1841 return i;
1842 err:
1843 error ("Invalid glyph-string format");
1844 return -1;
1847 static void
1848 check_otf_features (Lisp_Object otf_features)
1850 Lisp_Object val;
1852 CHECK_CONS (otf_features);
1853 CHECK_SYMBOL (XCAR (otf_features));
1854 otf_features = XCDR (otf_features);
1855 CHECK_CONS (otf_features);
1856 CHECK_SYMBOL (XCAR (otf_features));
1857 otf_features = XCDR (otf_features);
1858 for (val = Fcar (otf_features); CONSP (val); val = XCDR (val))
1860 CHECK_SYMBOL (XCAR (val));
1861 if (SBYTES (SYMBOL_NAME (XCAR (val))) > 4)
1862 error ("Invalid OTF GSUB feature: %s",
1863 SDATA (SYMBOL_NAME (XCAR (val))));
1865 otf_features = XCDR (otf_features);
1866 for (val = Fcar (otf_features); CONSP (val); val = XCDR (val))
1868 CHECK_SYMBOL (XCAR (val));
1869 if (SBYTES (SYMBOL_NAME (XCAR (val))) > 4)
1870 error ("Invalid OTF GPOS feature: %s",
1871 SDATA (SYMBOL_NAME (XCAR (val))));
1875 #ifdef HAVE_LIBOTF
1876 #include <otf.h>
1878 Lisp_Object otf_list;
1880 static Lisp_Object
1881 otf_tag_symbol (OTF_Tag tag)
1883 char name[5];
1885 OTF_tag_name (tag, name);
1886 return Fintern (make_unibyte_string (name, 4), Qnil);
1889 static OTF *
1890 otf_open (Lisp_Object file)
1892 Lisp_Object val = Fassoc (file, otf_list);
1893 OTF *otf;
1895 if (! NILP (val))
1896 otf = XSAVE_POINTER (XCDR (val), 0);
1897 else
1899 otf = STRINGP (file) ? OTF_open (SSDATA (file)) : NULL;
1900 val = make_save_ptr (otf);
1901 otf_list = Fcons (Fcons (file, val), otf_list);
1903 return otf;
1907 /* Return a list describing which scripts/languages FONT supports by
1908 which GSUB/GPOS features of OpenType tables. See the comment of
1909 (struct font_driver).otf_capability. */
1911 Lisp_Object
1912 font_otf_capability (struct font *font)
1914 OTF *otf;
1915 Lisp_Object capability = Fcons (Qnil, Qnil);
1916 int i;
1918 otf = otf_open (font->props[FONT_FILE_INDEX]);
1919 if (! otf)
1920 return Qnil;
1921 for (i = 0; i < 2; i++)
1923 OTF_GSUB_GPOS *gsub_gpos;
1924 Lisp_Object script_list = Qnil;
1925 int j;
1927 if (OTF_get_features (otf, i == 0) < 0)
1928 continue;
1929 gsub_gpos = i == 0 ? otf->gsub : otf->gpos;
1930 for (j = gsub_gpos->ScriptList.ScriptCount - 1; j >= 0; j--)
1932 OTF_Script *script = gsub_gpos->ScriptList.Script + j;
1933 Lisp_Object langsys_list = Qnil;
1934 Lisp_Object script_tag = otf_tag_symbol (script->ScriptTag);
1935 int k;
1937 for (k = script->LangSysCount; k >= 0; k--)
1939 OTF_LangSys *langsys;
1940 Lisp_Object feature_list = Qnil;
1941 Lisp_Object langsys_tag;
1942 int l;
1944 if (k == script->LangSysCount)
1946 langsys = &script->DefaultLangSys;
1947 langsys_tag = Qnil;
1949 else
1951 langsys = script->LangSys + k;
1952 langsys_tag
1953 = otf_tag_symbol (script->LangSysRecord[k].LangSysTag);
1955 for (l = langsys->FeatureCount - 1; l >= 0; l--)
1957 OTF_Feature *feature
1958 = gsub_gpos->FeatureList.Feature + langsys->FeatureIndex[l];
1959 Lisp_Object feature_tag
1960 = otf_tag_symbol (feature->FeatureTag);
1962 feature_list = Fcons (feature_tag, feature_list);
1964 langsys_list = Fcons (Fcons (langsys_tag, feature_list),
1965 langsys_list);
1967 script_list = Fcons (Fcons (script_tag, langsys_list),
1968 script_list);
1971 if (i == 0)
1972 XSETCAR (capability, script_list);
1973 else
1974 XSETCDR (capability, script_list);
1977 return capability;
1980 /* Parse OTF features in SPEC and write a proper features spec string
1981 in FEATURES for the call of OTF_drive_gsub/gpos (of libotf). It is
1982 assured that the sufficient memory has already allocated for
1983 FEATURES. */
1985 static void
1986 generate_otf_features (Lisp_Object spec, char *features)
1988 Lisp_Object val;
1989 char *p;
1990 bool asterisk;
1992 p = features;
1993 *p = '\0';
1994 for (asterisk = 0; CONSP (spec); spec = XCDR (spec))
1996 val = XCAR (spec);
1997 CHECK_SYMBOL (val);
1998 if (p > features)
1999 *p++ = ',';
2000 if (SREF (SYMBOL_NAME (val), 0) == '*')
2002 asterisk = 1;
2003 *p++ = '*';
2005 else if (! asterisk)
2007 val = SYMBOL_NAME (val);
2008 p += esprintf (p, "%s", SDATA (val));
2010 else
2012 val = SYMBOL_NAME (val);
2013 p += esprintf (p, "~%s", SDATA (val));
2016 if (CONSP (spec))
2017 error ("OTF spec too long");
2020 Lisp_Object
2021 font_otf_DeviceTable (OTF_DeviceTable *device_table)
2023 int len = device_table->StartSize - device_table->EndSize + 1;
2025 return Fcons (make_number (len),
2026 make_unibyte_string (device_table->DeltaValue, len));
2029 Lisp_Object
2030 font_otf_ValueRecord (int value_format, OTF_ValueRecord *value_record)
2032 Lisp_Object val = Fmake_vector (make_number (8), Qnil);
2034 if (value_format & OTF_XPlacement)
2035 ASET (val, 0, make_number (value_record->XPlacement));
2036 if (value_format & OTF_YPlacement)
2037 ASET (val, 1, make_number (value_record->YPlacement));
2038 if (value_format & OTF_XAdvance)
2039 ASET (val, 2, make_number (value_record->XAdvance));
2040 if (value_format & OTF_YAdvance)
2041 ASET (val, 3, make_number (value_record->YAdvance));
2042 if (value_format & OTF_XPlaDevice)
2043 ASET (val, 4, font_otf_DeviceTable (&value_record->XPlaDevice));
2044 if (value_format & OTF_YPlaDevice)
2045 ASET (val, 4, font_otf_DeviceTable (&value_record->YPlaDevice));
2046 if (value_format & OTF_XAdvDevice)
2047 ASET (val, 4, font_otf_DeviceTable (&value_record->XAdvDevice));
2048 if (value_format & OTF_YAdvDevice)
2049 ASET (val, 4, font_otf_DeviceTable (&value_record->YAdvDevice));
2050 return val;
2053 Lisp_Object
2054 font_otf_Anchor (OTF_Anchor *anchor)
2056 Lisp_Object val;
2058 val = Fmake_vector (make_number (anchor->AnchorFormat + 1), Qnil);
2059 ASET (val, 0, make_number (anchor->XCoordinate));
2060 ASET (val, 1, make_number (anchor->YCoordinate));
2061 if (anchor->AnchorFormat == 2)
2062 ASET (val, 2, make_number (anchor->f.f1.AnchorPoint));
2063 else
2065 ASET (val, 3, font_otf_DeviceTable (&anchor->f.f2.XDeviceTable));
2066 ASET (val, 4, font_otf_DeviceTable (&anchor->f.f2.YDeviceTable));
2068 return val;
2070 #endif /* HAVE_LIBOTF */
2071 #endif /* 0 */
2074 /* Font sorting. */
2076 static double
2077 font_rescale_ratio (Lisp_Object font_entity)
2079 Lisp_Object tail, elt;
2080 Lisp_Object name = Qnil;
2082 for (tail = Vface_font_rescale_alist; CONSP (tail); tail = XCDR (tail))
2084 elt = XCAR (tail);
2085 if (FLOATP (XCDR (elt)))
2087 if (STRINGP (XCAR (elt)))
2089 if (NILP (name))
2090 name = Ffont_xlfd_name (font_entity, Qnil);
2091 if (fast_string_match_ignore_case (XCAR (elt), name) >= 0)
2092 return XFLOAT_DATA (XCDR (elt));
2094 else if (FONT_SPEC_P (XCAR (elt)))
2096 if (font_match_p (XCAR (elt), font_entity))
2097 return XFLOAT_DATA (XCDR (elt));
2101 return 1.0;
2104 /* We sort fonts by scoring each of them against a specified
2105 font-spec. The score value is 32 bit (`unsigned'), and the smaller
2106 the value is, the closer the font is to the font-spec.
2108 The lowest 2 bits of the score are used for driver type. The font
2109 available by the most preferred font driver is 0.
2111 The 4 7-bit fields in the higher 28 bits are used for numeric properties
2112 WEIGHT, SLANT, WIDTH, and SIZE. */
2114 /* How many bits to shift to store the difference value of each font
2115 property in a score. Note that floats for FONT_TYPE_INDEX and
2116 FONT_REGISTRY_INDEX are not used. */
2117 static int sort_shift_bits[FONT_SIZE_INDEX + 1];
2119 /* Score font-entity ENTITY against properties of font-spec SPEC_PROP.
2120 The return value indicates how different ENTITY is compared with
2121 SPEC_PROP. */
2123 static unsigned
2124 font_score (Lisp_Object entity, Lisp_Object *spec_prop)
2126 unsigned score = 0;
2127 int i;
2129 /* Score three style numeric fields. Maximum difference is 127. */
2130 for (i = FONT_WEIGHT_INDEX; i <= FONT_WIDTH_INDEX; i++)
2131 if (! NILP (spec_prop[i]) && ! EQ (AREF (entity, i), spec_prop[i]))
2133 EMACS_INT diff = ((XINT (AREF (entity, i)) >> 8)
2134 - (XINT (spec_prop[i]) >> 8));
2135 score |= min (eabs (diff), 127) << sort_shift_bits[i];
2138 /* Score the size. Maximum difference is 127. */
2139 if (! NILP (spec_prop[FONT_SIZE_INDEX])
2140 && XINT (AREF (entity, FONT_SIZE_INDEX)) > 0)
2142 /* We use the higher 6-bit for the actual size difference. The
2143 lowest bit is set if the DPI is different. */
2144 EMACS_INT diff;
2145 EMACS_INT pixel_size = XINT (spec_prop[FONT_SIZE_INDEX]);
2146 EMACS_INT entity_size = XINT (AREF (entity, FONT_SIZE_INDEX));
2148 if (CONSP (Vface_font_rescale_alist))
2149 pixel_size *= font_rescale_ratio (entity);
2150 if (pixel_size * 2 < entity_size || entity_size * 2 < pixel_size)
2151 /* This size is wrong by more than a factor 2: reject it! */
2152 return 0xFFFFFFFF;
2153 diff = eabs (pixel_size - entity_size) << 1;
2154 if (! NILP (spec_prop[FONT_DPI_INDEX])
2155 && ! EQ (spec_prop[FONT_DPI_INDEX], AREF (entity, FONT_DPI_INDEX)))
2156 diff |= 1;
2157 if (! NILP (spec_prop[FONT_AVGWIDTH_INDEX])
2158 && ! EQ (spec_prop[FONT_AVGWIDTH_INDEX], AREF (entity, FONT_AVGWIDTH_INDEX)))
2159 diff |= 1;
2160 score |= min (diff, 127) << sort_shift_bits[FONT_SIZE_INDEX];
2163 return score;
2167 /* Concatenate all elements of LIST into one vector. LIST is a list
2168 of font-entity vectors. */
2170 static Lisp_Object
2171 font_vconcat_entity_vectors (Lisp_Object list)
2173 EMACS_INT nargs = XFASTINT (Flength (list));
2174 Lisp_Object *args;
2175 USE_SAFE_ALLOCA;
2176 SAFE_ALLOCA_LISP (args, nargs);
2177 ptrdiff_t i;
2179 for (i = 0; i < nargs; i++, list = XCDR (list))
2180 args[i] = XCAR (list);
2181 Lisp_Object result = Fvconcat (nargs, args);
2182 SAFE_FREE ();
2183 return result;
2187 /* The structure for elements being sorted by qsort. */
2188 struct font_sort_data
2190 unsigned score;
2191 int font_driver_preference;
2192 Lisp_Object entity;
2196 /* The comparison function for qsort. */
2198 static int
2199 font_compare (const void *d1, const void *d2)
2201 const struct font_sort_data *data1 = d1;
2202 const struct font_sort_data *data2 = d2;
2204 if (data1->score < data2->score)
2205 return -1;
2206 else if (data1->score > data2->score)
2207 return 1;
2208 return (data1->font_driver_preference - data2->font_driver_preference);
2212 /* Sort each font-entity vector in LIST by closeness to font-spec PREFER.
2213 If PREFER specifies a point-size, calculate the corresponding
2214 pixel-size from QCdpi property of PREFER or from the Y-resolution
2215 of FRAME before sorting.
2217 If BEST-ONLY is nonzero, return the best matching entity (that
2218 supports the character BEST-ONLY if BEST-ONLY is positive, or any
2219 if BEST-ONLY is negative). Otherwise, return the sorted result as
2220 a single vector of font-entities.
2222 This function does no optimization for the case that the total
2223 number of elements is 1. The caller should avoid calling this in
2224 such a case. */
2226 static Lisp_Object
2227 font_sort_entities (Lisp_Object list, Lisp_Object prefer,
2228 struct frame *f, int best_only)
2230 Lisp_Object prefer_prop[FONT_SPEC_MAX];
2231 int len, maxlen, i;
2232 struct font_sort_data *data;
2233 unsigned best_score;
2234 Lisp_Object best_entity;
2235 Lisp_Object tail, vec IF_LINT (= Qnil);
2236 USE_SAFE_ALLOCA;
2238 for (i = FONT_WEIGHT_INDEX; i <= FONT_AVGWIDTH_INDEX; i++)
2239 prefer_prop[i] = AREF (prefer, i);
2240 if (FLOATP (prefer_prop[FONT_SIZE_INDEX]))
2241 prefer_prop[FONT_SIZE_INDEX]
2242 = make_number (font_pixel_size (f, prefer));
2244 if (NILP (XCDR (list)))
2246 /* What we have to take care of is this single vector. */
2247 vec = XCAR (list);
2248 maxlen = ASIZE (vec);
2250 else if (best_only)
2252 /* We don't have to perform sort, so there's no need of creating
2253 a single vector. But, we must find the length of the longest
2254 vector. */
2255 maxlen = 0;
2256 for (tail = list; CONSP (tail); tail = XCDR (tail))
2257 if (maxlen < ASIZE (XCAR (tail)))
2258 maxlen = ASIZE (XCAR (tail));
2260 else
2262 /* We have to create a single vector to sort it. */
2263 vec = font_vconcat_entity_vectors (list);
2264 maxlen = ASIZE (vec);
2267 data = SAFE_ALLOCA (maxlen * sizeof *data);
2268 best_score = 0xFFFFFFFF;
2269 best_entity = Qnil;
2271 for (tail = list; CONSP (tail); tail = XCDR (tail))
2273 int font_driver_preference = 0;
2274 Lisp_Object current_font_driver;
2276 if (best_only)
2277 vec = XCAR (tail);
2278 len = ASIZE (vec);
2280 /* We are sure that the length of VEC > 0. */
2281 current_font_driver = AREF (AREF (vec, 0), FONT_TYPE_INDEX);
2282 /* Score the elements. */
2283 for (i = 0; i < len; i++)
2285 data[i].entity = AREF (vec, i);
2286 data[i].score
2287 = ((best_only <= 0 || font_has_char (f, data[i].entity, best_only)
2288 > 0)
2289 ? font_score (data[i].entity, prefer_prop)
2290 : 0xFFFFFFFF);
2291 if (best_only && best_score > data[i].score)
2293 best_score = data[i].score;
2294 best_entity = data[i].entity;
2295 if (best_score == 0)
2296 break;
2298 if (! EQ (current_font_driver, AREF (AREF (vec, i), FONT_TYPE_INDEX)))
2300 current_font_driver = AREF (AREF (vec, i), FONT_TYPE_INDEX);
2301 font_driver_preference++;
2303 data[i].font_driver_preference = font_driver_preference;
2306 /* Sort if necessary. */
2307 if (! best_only)
2309 qsort (data, len, sizeof *data, font_compare);
2310 for (i = 0; i < len; i++)
2311 ASET (vec, i, data[i].entity);
2312 break;
2314 else
2315 vec = best_entity;
2318 SAFE_FREE ();
2320 FONT_ADD_LOG ("sort-by", prefer, vec);
2321 return vec;
2325 /* API of Font Service Layer. */
2327 /* Reflect ORDER (see the variable font_sort_order in xfaces.c) to
2328 sort_shift_bits. Finternal_set_font_selection_order calls this
2329 function with font_sort_order after setting up it. */
2331 void
2332 font_update_sort_order (int *order)
2334 int i, shift_bits;
2336 for (i = 0, shift_bits = 23; i < 4; i++, shift_bits -= 7)
2338 int xlfd_idx = order[i];
2340 if (xlfd_idx == XLFD_WEIGHT_INDEX)
2341 sort_shift_bits[FONT_WEIGHT_INDEX] = shift_bits;
2342 else if (xlfd_idx == XLFD_SLANT_INDEX)
2343 sort_shift_bits[FONT_SLANT_INDEX] = shift_bits;
2344 else if (xlfd_idx == XLFD_SWIDTH_INDEX)
2345 sort_shift_bits[FONT_WIDTH_INDEX] = shift_bits;
2346 else
2347 sort_shift_bits[FONT_SIZE_INDEX] = shift_bits;
2351 static bool
2352 font_check_otf_features (Lisp_Object script, Lisp_Object langsys,
2353 Lisp_Object features, Lisp_Object table)
2355 Lisp_Object val;
2356 bool negative;
2358 table = assq_no_quit (script, table);
2359 if (NILP (table))
2360 return 0;
2361 table = XCDR (table);
2362 if (! NILP (langsys))
2364 table = assq_no_quit (langsys, table);
2365 if (NILP (table))
2366 return 0;
2368 else
2370 val = assq_no_quit (Qnil, table);
2371 if (NILP (val))
2372 table = XCAR (table);
2373 else
2374 table = val;
2376 table = XCDR (table);
2377 for (negative = 0; CONSP (features); features = XCDR (features))
2379 if (NILP (XCAR (features)))
2381 negative = 1;
2382 continue;
2384 if (NILP (Fmemq (XCAR (features), table)) != negative)
2385 return 0;
2387 return 1;
2390 /* Check if OTF_CAPABILITY satisfies SPEC (otf-spec). */
2392 static bool
2393 font_check_otf (Lisp_Object spec, Lisp_Object otf_capability)
2395 Lisp_Object script, langsys = Qnil, gsub = Qnil, gpos = Qnil;
2397 script = XCAR (spec);
2398 spec = XCDR (spec);
2399 if (! NILP (spec))
2401 langsys = XCAR (spec);
2402 spec = XCDR (spec);
2403 if (! NILP (spec))
2405 gsub = XCAR (spec);
2406 spec = XCDR (spec);
2407 if (! NILP (spec))
2408 gpos = XCAR (spec);
2412 if (! NILP (gsub) && ! font_check_otf_features (script, langsys, gsub,
2413 XCAR (otf_capability)))
2414 return 0;
2415 if (! NILP (gpos) && ! font_check_otf_features (script, langsys, gpos,
2416 XCDR (otf_capability)))
2417 return 0;
2418 return 1;
2423 /* Check if FONT (font-entity or font-object) matches with the font
2424 specification SPEC. */
2426 bool
2427 font_match_p (Lisp_Object spec, Lisp_Object font)
2429 Lisp_Object prop[FONT_SPEC_MAX], *props;
2430 Lisp_Object extra, font_extra;
2431 int i;
2433 for (i = FONT_FOUNDRY_INDEX; i <= FONT_REGISTRY_INDEX; i++)
2434 if (! NILP (AREF (spec, i))
2435 && ! NILP (AREF (font, i))
2436 && ! EQ (AREF (spec, i), AREF (font, i)))
2437 return 0;
2438 props = XFONT_SPEC (spec)->props;
2439 if (FLOATP (props[FONT_SIZE_INDEX]))
2441 for (i = FONT_FOUNDRY_INDEX; i < FONT_SIZE_INDEX; i++)
2442 prop[i] = AREF (spec, i);
2443 prop[FONT_SIZE_INDEX]
2444 = make_number (font_pixel_size (XFRAME (selected_frame), spec));
2445 props = prop;
2448 if (font_score (font, props) > 0)
2449 return 0;
2450 extra = AREF (spec, FONT_EXTRA_INDEX);
2451 font_extra = AREF (font, FONT_EXTRA_INDEX);
2452 for (; CONSP (extra); extra = XCDR (extra))
2454 Lisp_Object key = XCAR (XCAR (extra));
2455 Lisp_Object val = XCDR (XCAR (extra)), val2;
2457 if (EQ (key, QClang))
2459 val2 = assq_no_quit (key, font_extra);
2460 if (NILP (val2))
2461 return 0;
2462 val2 = XCDR (val2);
2463 if (CONSP (val))
2465 if (! CONSP (val2))
2466 return 0;
2467 while (CONSP (val))
2468 if (NILP (Fmemq (val, val2)))
2469 return 0;
2471 else
2472 if (CONSP (val2)
2473 ? NILP (Fmemq (val, XCDR (val2)))
2474 : ! EQ (val, val2))
2475 return 0;
2477 else if (EQ (key, QCscript))
2479 val2 = assq_no_quit (val, Vscript_representative_chars);
2480 if (CONSP (val2))
2482 val2 = XCDR (val2);
2483 if (CONSP (val2))
2485 /* All characters in the list must be supported. */
2486 for (; CONSP (val2); val2 = XCDR (val2))
2488 if (! CHARACTERP (XCAR (val2)))
2489 continue;
2490 if (font_encode_char (font, XFASTINT (XCAR (val2)))
2491 == FONT_INVALID_CODE)
2492 return 0;
2495 else if (VECTORP (val2))
2497 /* At most one character in the vector must be supported. */
2498 for (i = 0; i < ASIZE (val2); i++)
2500 if (! CHARACTERP (AREF (val2, i)))
2501 continue;
2502 if (font_encode_char (font, XFASTINT (AREF (val2, i)))
2503 != FONT_INVALID_CODE)
2504 break;
2506 if (i == ASIZE (val2))
2507 return 0;
2511 else if (EQ (key, QCotf))
2513 struct font *fontp;
2515 if (! FONT_OBJECT_P (font))
2516 return 0;
2517 fontp = XFONT_OBJECT (font);
2518 if (! fontp->driver->otf_capability)
2519 return 0;
2520 val2 = fontp->driver->otf_capability (fontp);
2521 if (NILP (val2) || ! font_check_otf (val, val2))
2522 return 0;
2526 return 1;
2530 /* Font cache
2532 Each font backend has the callback function get_cache, and it
2533 returns a cons cell of which cdr part can be freely used for
2534 caching fonts. The cons cell may be shared by multiple frames
2535 and/or multiple font drivers. So, we arrange the cdr part as this:
2537 ((DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) ...)
2539 where DRIVER-TYPE is a symbol such as `x', `xft', etc., NUM-FRAMES
2540 is a number frames sharing this cache, and FONT-CACHE-DATA is a
2541 cons (FONT-SPEC . [FONT-ENTITY ...]). */
2543 static void font_prepare_cache (struct frame *, struct font_driver *);
2544 static void font_finish_cache (struct frame *, struct font_driver *);
2545 static Lisp_Object font_get_cache (struct frame *, struct font_driver *);
2546 static void font_clear_cache (struct frame *, Lisp_Object,
2547 struct font_driver *);
2549 static void
2550 font_prepare_cache (struct frame *f, struct font_driver *driver)
2552 Lisp_Object cache, val;
2554 cache = driver->get_cache (f);
2555 val = XCDR (cache);
2556 while (CONSP (val) && ! EQ (XCAR (XCAR (val)), driver->type))
2557 val = XCDR (val);
2558 if (NILP (val))
2560 val = list2 (driver->type, make_number (1));
2561 XSETCDR (cache, Fcons (val, XCDR (cache)));
2563 else
2565 val = XCDR (XCAR (val));
2566 XSETCAR (val, make_number (XINT (XCAR (val)) + 1));
2571 static void
2572 font_finish_cache (struct frame *f, struct font_driver *driver)
2574 Lisp_Object cache, val, tmp;
2577 cache = driver->get_cache (f);
2578 val = XCDR (cache);
2579 while (CONSP (val) && ! EQ (XCAR (XCAR (val)), driver->type))
2580 cache = val, val = XCDR (val);
2581 eassert (! NILP (val));
2582 tmp = XCDR (XCAR (val));
2583 XSETCAR (tmp, make_number (XINT (XCAR (tmp)) - 1));
2584 if (XINT (XCAR (tmp)) == 0)
2586 font_clear_cache (f, XCAR (val), driver);
2587 XSETCDR (cache, XCDR (val));
2592 static Lisp_Object
2593 font_get_cache (struct frame *f, struct font_driver *driver)
2595 Lisp_Object val = driver->get_cache (f);
2596 Lisp_Object type = driver->type;
2598 eassert (CONSP (val));
2599 for (val = XCDR (val); ! EQ (XCAR (XCAR (val)), type); val = XCDR (val));
2600 eassert (CONSP (val));
2601 /* VAL = ((DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) ...) */
2602 val = XCDR (XCAR (val));
2603 return val;
2607 static void
2608 font_clear_cache (struct frame *f, Lisp_Object cache, struct font_driver *driver)
2610 Lisp_Object tail, elt;
2611 Lisp_Object entity;
2612 ptrdiff_t i;
2614 /* CACHE = (DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) */
2615 for (tail = XCDR (XCDR (cache)); CONSP (tail); tail = XCDR (tail))
2617 elt = XCAR (tail);
2618 /* elt should have the form (FONT-SPEC . [FONT-ENTITY ...]) */
2619 if (CONSP (elt) && FONT_SPEC_P (XCAR (elt)))
2621 elt = XCDR (elt);
2622 eassert (VECTORP (elt));
2623 for (i = 0; i < ASIZE (elt); i++)
2625 entity = AREF (elt, i);
2627 if (FONT_ENTITY_P (entity)
2628 && EQ (driver->type, AREF (entity, FONT_TYPE_INDEX)))
2630 Lisp_Object objlist = AREF (entity, FONT_OBJLIST_INDEX);
2632 for (; CONSP (objlist); objlist = XCDR (objlist))
2634 Lisp_Object val = XCAR (objlist);
2635 struct font *font = XFONT_OBJECT (val);
2637 if (! NILP (AREF (val, FONT_TYPE_INDEX)))
2639 eassert (font && driver == font->driver);
2640 driver->close (font);
2643 if (driver->free_entity)
2644 driver->free_entity (entity);
2649 XSETCDR (cache, Qnil);
2653 static Lisp_Object scratch_font_spec, scratch_font_prefer;
2655 /* Check each font-entity in VEC, and return a list of font-entities
2656 that satisfy these conditions:
2657 (1) matches with SPEC and SIZE if SPEC is not nil, and
2658 (2) doesn't match with any regexps in Vface_ignored_fonts (if non-nil).
2661 static Lisp_Object
2662 font_delete_unmatched (Lisp_Object vec, Lisp_Object spec, int size)
2664 Lisp_Object entity, val;
2665 enum font_property_index prop;
2666 ptrdiff_t i;
2668 for (val = Qnil, i = ASIZE (vec) - 1; i >= 0; i--)
2670 entity = AREF (vec, i);
2671 if (! NILP (Vface_ignored_fonts))
2673 char name[256];
2674 ptrdiff_t namelen;
2675 Lisp_Object tail, regexp;
2677 namelen = font_unparse_xlfd (entity, 0, name, 256);
2678 if (namelen >= 0)
2680 for (tail = Vface_ignored_fonts; CONSP (tail); tail = XCDR (tail))
2682 regexp = XCAR (tail);
2683 if (STRINGP (regexp)
2684 && fast_c_string_match_ignore_case (regexp, name,
2685 namelen) >= 0)
2686 break;
2688 if (CONSP (tail))
2689 continue;
2692 if (NILP (spec))
2694 val = Fcons (entity, val);
2695 continue;
2697 for (prop = FONT_WEIGHT_INDEX; prop < FONT_SIZE_INDEX; prop++)
2698 if (INTEGERP (AREF (spec, prop))
2699 && ((XINT (AREF (spec, prop)) >> 8)
2700 != (XINT (AREF (entity, prop)) >> 8)))
2701 prop = FONT_SPEC_MAX;
2702 if (prop < FONT_SPEC_MAX
2703 && size
2704 && XINT (AREF (entity, FONT_SIZE_INDEX)) > 0)
2706 int diff = XINT (AREF (entity, FONT_SIZE_INDEX)) - size;
2708 if (eabs (diff) > FONT_PIXEL_SIZE_QUANTUM)
2709 prop = FONT_SPEC_MAX;
2711 if (prop < FONT_SPEC_MAX
2712 && INTEGERP (AREF (spec, FONT_DPI_INDEX))
2713 && INTEGERP (AREF (entity, FONT_DPI_INDEX))
2714 && XINT (AREF (entity, FONT_DPI_INDEX)) != 0
2715 && ! EQ (AREF (spec, FONT_DPI_INDEX), AREF (entity, FONT_DPI_INDEX)))
2716 prop = FONT_SPEC_MAX;
2717 if (prop < FONT_SPEC_MAX
2718 && INTEGERP (AREF (spec, FONT_AVGWIDTH_INDEX))
2719 && INTEGERP (AREF (entity, FONT_AVGWIDTH_INDEX))
2720 && XINT (AREF (entity, FONT_AVGWIDTH_INDEX)) != 0
2721 && ! EQ (AREF (spec, FONT_AVGWIDTH_INDEX),
2722 AREF (entity, FONT_AVGWIDTH_INDEX)))
2723 prop = FONT_SPEC_MAX;
2724 if (prop < FONT_SPEC_MAX)
2725 val = Fcons (entity, val);
2727 return (Fvconcat (1, &val));
2731 /* Return a list of vectors of font-entities matching with SPEC on
2732 FRAME. Each elements in the list is a vector of entities from the
2733 same font-driver. */
2735 Lisp_Object
2736 font_list_entities (struct frame *f, Lisp_Object spec)
2738 struct font_driver_list *driver_list = f->font_driver_list;
2739 Lisp_Object ftype, val;
2740 Lisp_Object list = Qnil;
2741 int size;
2742 bool need_filtering = 0;
2743 int i;
2745 eassert (FONT_SPEC_P (spec));
2747 if (INTEGERP (AREF (spec, FONT_SIZE_INDEX)))
2748 size = XINT (AREF (spec, FONT_SIZE_INDEX));
2749 else if (FLOATP (AREF (spec, FONT_SIZE_INDEX)))
2750 size = font_pixel_size (f, spec);
2751 else
2752 size = 0;
2754 ftype = AREF (spec, FONT_TYPE_INDEX);
2755 for (i = FONT_FOUNDRY_INDEX; i <= FONT_REGISTRY_INDEX; i++)
2756 ASET (scratch_font_spec, i, AREF (spec, i));
2757 for (i = FONT_WEIGHT_INDEX; i < FONT_EXTRA_INDEX; i++)
2758 if (i != FONT_SPACING_INDEX)
2760 ASET (scratch_font_spec, i, Qnil);
2761 if (! NILP (AREF (spec, i)))
2762 need_filtering = 1;
2764 ASET (scratch_font_spec, FONT_SPACING_INDEX, AREF (spec, FONT_SPACING_INDEX));
2765 ASET (scratch_font_spec, FONT_EXTRA_INDEX, AREF (spec, FONT_EXTRA_INDEX));
2767 for (; driver_list; driver_list = driver_list->next)
2768 if (driver_list->on
2769 && (NILP (ftype) || EQ (driver_list->driver->type, ftype)))
2771 Lisp_Object cache = font_get_cache (f, driver_list->driver);
2773 ASET (scratch_font_spec, FONT_TYPE_INDEX, driver_list->driver->type);
2774 val = assoc_no_quit (scratch_font_spec, XCDR (cache));
2775 if (CONSP (val))
2776 val = XCDR (val);
2777 else
2779 val = driver_list->driver->list (f, scratch_font_spec);
2780 if (!NILP (val))
2782 Lisp_Object copy = copy_font_spec (scratch_font_spec);
2784 val = Fvconcat (1, &val);
2785 ASET (copy, FONT_TYPE_INDEX, driver_list->driver->type);
2786 XSETCDR (cache, Fcons (Fcons (copy, val), XCDR (cache)));
2789 if (VECTORP (val) && ASIZE (val) > 0
2790 && (need_filtering
2791 || ! NILP (Vface_ignored_fonts)))
2792 val = font_delete_unmatched (val, need_filtering ? spec : Qnil, size);
2793 if (VECTORP (val) && ASIZE (val) > 0)
2794 list = Fcons (val, list);
2797 list = Fnreverse (list);
2798 FONT_ADD_LOG ("list", spec, list);
2799 return list;
2803 /* Return a font entity matching with SPEC on FRAME. ATTRS, if non
2804 nil, is an array of face's attributes, which specifies preferred
2805 font-related attributes. */
2807 static Lisp_Object
2808 font_matching_entity (struct frame *f, Lisp_Object *attrs, Lisp_Object spec)
2810 struct font_driver_list *driver_list = f->font_driver_list;
2811 Lisp_Object ftype, size, entity;
2812 Lisp_Object work = copy_font_spec (spec);
2814 ftype = AREF (spec, FONT_TYPE_INDEX);
2815 size = AREF (spec, FONT_SIZE_INDEX);
2817 if (FLOATP (size))
2818 ASET (work, FONT_SIZE_INDEX, make_number (font_pixel_size (f, spec)));
2819 FONT_SET_STYLE (work, FONT_WEIGHT_INDEX, attrs[LFACE_WEIGHT_INDEX]);
2820 FONT_SET_STYLE (work, FONT_SLANT_INDEX, attrs[LFACE_SLANT_INDEX]);
2821 FONT_SET_STYLE (work, FONT_WIDTH_INDEX, attrs[LFACE_SWIDTH_INDEX]);
2823 entity = Qnil;
2824 for (; driver_list; driver_list = driver_list->next)
2825 if (driver_list->on
2826 && (NILP (ftype) || EQ (driver_list->driver->type, ftype)))
2828 Lisp_Object cache = font_get_cache (f, driver_list->driver);
2830 ASET (work, FONT_TYPE_INDEX, driver_list->driver->type);
2831 entity = assoc_no_quit (work, XCDR (cache));
2832 if (CONSP (entity))
2833 entity = AREF (XCDR (entity), 0);
2834 else
2836 entity = driver_list->driver->match (f, work);
2837 if (!NILP (entity))
2839 Lisp_Object copy = copy_font_spec (work);
2840 Lisp_Object match = Fvector (1, &entity);
2842 ASET (copy, FONT_TYPE_INDEX, driver_list->driver->type);
2843 XSETCDR (cache, Fcons (Fcons (copy, match), XCDR (cache)));
2846 if (! NILP (entity))
2847 break;
2849 FONT_ADD_LOG ("match", work, entity);
2850 return entity;
2854 /* Open a font of ENTITY and PIXEL_SIZE on frame F, and return the
2855 opened font object. */
2857 static Lisp_Object
2858 font_open_entity (struct frame *f, Lisp_Object entity, int pixel_size)
2860 struct font_driver_list *driver_list;
2861 Lisp_Object objlist, size, val, font_object;
2862 struct font *font;
2863 int min_width, height, psize;
2865 eassert (FONT_ENTITY_P (entity));
2866 size = AREF (entity, FONT_SIZE_INDEX);
2867 if (XINT (size) != 0)
2868 pixel_size = XINT (size);
2870 val = AREF (entity, FONT_TYPE_INDEX);
2871 for (driver_list = f->font_driver_list;
2872 driver_list && ! EQ (driver_list->driver->type, val);
2873 driver_list = driver_list->next);
2874 if (! driver_list)
2875 return Qnil;
2877 for (objlist = AREF (entity, FONT_OBJLIST_INDEX); CONSP (objlist);
2878 objlist = XCDR (objlist))
2880 Lisp_Object fn = XCAR (objlist);
2881 if (! NILP (AREF (fn, FONT_TYPE_INDEX))
2882 && XFONT_OBJECT (fn)->pixel_size == pixel_size)
2884 if (driver_list->driver->cached_font_ok == NULL
2885 || driver_list->driver->cached_font_ok (f, fn, entity))
2886 return fn;
2890 /* We always open a font of manageable size; i.e non-zero average
2891 width and height. */
2892 for (psize = pixel_size; ; psize++)
2894 font_object = driver_list->driver->open (f, entity, psize);
2895 if (NILP (font_object))
2896 return Qnil;
2897 font = XFONT_OBJECT (font_object);
2898 if (font->average_width > 0 && font->height > 0)
2899 break;
2901 ASET (font_object, FONT_SIZE_INDEX, make_number (pixel_size));
2902 FONT_ADD_LOG ("open", entity, font_object);
2903 ASET (entity, FONT_OBJLIST_INDEX,
2904 Fcons (font_object, AREF (entity, FONT_OBJLIST_INDEX)));
2906 font = XFONT_OBJECT (font_object);
2907 min_width = (font->min_width ? font->min_width
2908 : font->average_width ? font->average_width
2909 : font->space_width ? font->space_width
2910 : 1);
2911 height = (font->height ? font->height : 1);
2912 #ifdef HAVE_WINDOW_SYSTEM
2913 FRAME_DISPLAY_INFO (f)->n_fonts++;
2914 if (FRAME_DISPLAY_INFO (f)->n_fonts == 1)
2916 FRAME_SMALLEST_CHAR_WIDTH (f) = min_width;
2917 FRAME_SMALLEST_FONT_HEIGHT (f) = height;
2918 f->fonts_changed = 1;
2920 else
2922 if (FRAME_SMALLEST_CHAR_WIDTH (f) > min_width)
2923 FRAME_SMALLEST_CHAR_WIDTH (f) = min_width, f->fonts_changed = 1;
2924 if (FRAME_SMALLEST_FONT_HEIGHT (f) > height)
2925 FRAME_SMALLEST_FONT_HEIGHT (f) = height, f->fonts_changed = 1;
2927 #endif
2929 return font_object;
2933 /* Close FONT_OBJECT that is opened on frame F. */
2935 static void
2936 font_close_object (struct frame *f, Lisp_Object font_object)
2938 struct font *font = XFONT_OBJECT (font_object);
2940 if (NILP (AREF (font_object, FONT_TYPE_INDEX)))
2941 /* Already closed. */
2942 return;
2943 FONT_ADD_LOG ("close", font_object, Qnil);
2944 font->driver->close (font);
2945 #ifdef HAVE_WINDOW_SYSTEM
2946 eassert (FRAME_DISPLAY_INFO (f)->n_fonts);
2947 FRAME_DISPLAY_INFO (f)->n_fonts--;
2948 #endif
2952 /* Return 1 if FONT on F has a glyph for character C, 0 if not, -1 if
2953 FONT is a font-entity and it must be opened to check. */
2956 font_has_char (struct frame *f, Lisp_Object font, int c)
2958 struct font *fontp;
2960 if (FONT_ENTITY_P (font))
2962 Lisp_Object type = AREF (font, FONT_TYPE_INDEX);
2963 struct font_driver_list *driver_list;
2965 for (driver_list = f->font_driver_list;
2966 driver_list && ! EQ (driver_list->driver->type, type);
2967 driver_list = driver_list->next);
2968 if (! driver_list)
2969 return 0;
2970 if (! driver_list->driver->has_char)
2971 return -1;
2972 return driver_list->driver->has_char (font, c);
2975 eassert (FONT_OBJECT_P (font));
2976 fontp = XFONT_OBJECT (font);
2977 if (fontp->driver->has_char)
2979 int result = fontp->driver->has_char (font, c);
2981 if (result >= 0)
2982 return result;
2984 return (fontp->driver->encode_char (fontp, c) != FONT_INVALID_CODE);
2988 /* Return the glyph ID of FONT_OBJECT for character C. */
2990 static unsigned
2991 font_encode_char (Lisp_Object font_object, int c)
2993 struct font *font;
2995 eassert (FONT_OBJECT_P (font_object));
2996 font = XFONT_OBJECT (font_object);
2997 return font->driver->encode_char (font, c);
3001 /* Return the name of FONT_OBJECT. */
3003 Lisp_Object
3004 font_get_name (Lisp_Object font_object)
3006 eassert (FONT_OBJECT_P (font_object));
3007 return AREF (font_object, FONT_NAME_INDEX);
3011 /* Create a new font spec from FONT_NAME, and return it. If FONT_NAME
3012 could not be parsed by font_parse_name, return Qnil. */
3014 Lisp_Object
3015 font_spec_from_name (Lisp_Object font_name)
3017 Lisp_Object spec = Ffont_spec (0, NULL);
3019 CHECK_STRING (font_name);
3020 if (font_parse_name (SSDATA (font_name), SBYTES (font_name), spec) == -1)
3021 return Qnil;
3022 font_put_extra (spec, QCname, font_name);
3023 font_put_extra (spec, QCuser_spec, font_name);
3024 return spec;
3028 void
3029 font_clear_prop (Lisp_Object *attrs, enum font_property_index prop)
3031 Lisp_Object font = attrs[LFACE_FONT_INDEX];
3033 if (! FONTP (font))
3034 return;
3036 if (! NILP (Ffont_get (font, QCname)))
3038 font = copy_font_spec (font);
3039 font_put_extra (font, QCname, Qnil);
3042 if (NILP (AREF (font, prop))
3043 && prop != FONT_FAMILY_INDEX
3044 && prop != FONT_FOUNDRY_INDEX
3045 && prop != FONT_WIDTH_INDEX
3046 && prop != FONT_SIZE_INDEX)
3047 return;
3048 if (EQ (font, attrs[LFACE_FONT_INDEX]))
3049 font = copy_font_spec (font);
3050 ASET (font, prop, Qnil);
3051 if (prop == FONT_FAMILY_INDEX || prop == FONT_FOUNDRY_INDEX)
3053 if (prop == FONT_FAMILY_INDEX)
3055 ASET (font, FONT_FOUNDRY_INDEX, Qnil);
3056 /* If we are setting the font family, we must also clear
3057 FONT_WIDTH_INDEX to avoid rejecting families that lack
3058 support for some widths. */
3059 ASET (font, FONT_WIDTH_INDEX, Qnil);
3061 ASET (font, FONT_ADSTYLE_INDEX, Qnil);
3062 ASET (font, FONT_REGISTRY_INDEX, Qnil);
3063 ASET (font, FONT_SIZE_INDEX, Qnil);
3064 ASET (font, FONT_DPI_INDEX, Qnil);
3065 ASET (font, FONT_SPACING_INDEX, Qnil);
3066 ASET (font, FONT_AVGWIDTH_INDEX, Qnil);
3068 else if (prop == FONT_SIZE_INDEX)
3070 ASET (font, FONT_DPI_INDEX, Qnil);
3071 ASET (font, FONT_SPACING_INDEX, Qnil);
3072 ASET (font, FONT_AVGWIDTH_INDEX, Qnil);
3074 else if (prop == FONT_WIDTH_INDEX)
3075 ASET (font, FONT_AVGWIDTH_INDEX, Qnil);
3076 attrs[LFACE_FONT_INDEX] = font;
3079 /* Select a font from ENTITIES (list of font-entity vectors) that
3080 supports C and is the best match for ATTRS and PIXEL_SIZE. */
3082 static Lisp_Object
3083 font_select_entity (struct frame *f, Lisp_Object entities,
3084 Lisp_Object *attrs, int pixel_size, int c)
3086 Lisp_Object font_entity;
3087 Lisp_Object prefer;
3088 int i;
3090 if (NILP (XCDR (entities))
3091 && ASIZE (XCAR (entities)) == 1)
3093 font_entity = AREF (XCAR (entities), 0);
3094 if (c < 0 || font_has_char (f, font_entity, c) > 0)
3095 return font_entity;
3096 return Qnil;
3099 /* Sort fonts by properties specified in ATTRS. */
3100 prefer = scratch_font_prefer;
3102 for (i = FONT_WEIGHT_INDEX; i <= FONT_SIZE_INDEX; i++)
3103 ASET (prefer, i, Qnil);
3104 if (FONTP (attrs[LFACE_FONT_INDEX]))
3106 Lisp_Object face_font = attrs[LFACE_FONT_INDEX];
3108 for (i = FONT_WEIGHT_INDEX; i <= FONT_SIZE_INDEX; i++)
3109 ASET (prefer, i, AREF (face_font, i));
3111 if (NILP (AREF (prefer, FONT_WEIGHT_INDEX)))
3112 FONT_SET_STYLE (prefer, FONT_WEIGHT_INDEX, attrs[LFACE_WEIGHT_INDEX]);
3113 if (NILP (AREF (prefer, FONT_SLANT_INDEX)))
3114 FONT_SET_STYLE (prefer, FONT_SLANT_INDEX, attrs[LFACE_SLANT_INDEX]);
3115 if (NILP (AREF (prefer, FONT_WIDTH_INDEX)))
3116 FONT_SET_STYLE (prefer, FONT_WIDTH_INDEX, attrs[LFACE_SWIDTH_INDEX]);
3117 ASET (prefer, FONT_SIZE_INDEX, make_number (pixel_size));
3119 return font_sort_entities (entities, prefer, f, c);
3122 /* Return a font-entity that satisfies SPEC and is the best match for
3123 face's font related attributes in ATTRS. C, if not negative, is a
3124 character that the entity must support. */
3126 Lisp_Object
3127 font_find_for_lface (struct frame *f, Lisp_Object *attrs, Lisp_Object spec, int c)
3129 Lisp_Object work;
3130 Lisp_Object entities, val;
3131 Lisp_Object foundry[3], *family, registry[3], adstyle[3];
3132 int pixel_size;
3133 int i, j, k, l;
3134 USE_SAFE_ALLOCA;
3136 registry[0] = AREF (spec, FONT_REGISTRY_INDEX);
3137 if (NILP (registry[0]))
3139 registry[0] = DEFAULT_ENCODING;
3140 registry[1] = Qascii_0;
3141 registry[2] = zero_vector;
3143 else
3144 registry[1] = zero_vector;
3146 if (c >= 0 && ! NILP (AREF (spec, FONT_REGISTRY_INDEX)))
3148 struct charset *encoding, *repertory;
3150 if (font_registry_charsets (AREF (spec, FONT_REGISTRY_INDEX),
3151 &encoding, &repertory) < 0)
3152 return Qnil;
3153 if (repertory
3154 && ENCODE_CHAR (repertory, c) == CHARSET_INVALID_CODE (repertory))
3155 return Qnil;
3156 else if (c > encoding->max_char)
3157 return Qnil;
3160 work = copy_font_spec (spec);
3161 ASET (work, FONT_TYPE_INDEX, AREF (spec, FONT_TYPE_INDEX));
3162 pixel_size = font_pixel_size (f, spec);
3163 if (pixel_size == 0 && INTEGERP (attrs[LFACE_HEIGHT_INDEX]))
3165 double pt = XINT (attrs[LFACE_HEIGHT_INDEX]);
3167 pixel_size = POINT_TO_PIXEL (pt / 10, FRAME_RES_Y (f));
3168 if (pixel_size < 1)
3169 pixel_size = 1;
3171 ASET (work, FONT_SIZE_INDEX, Qnil);
3172 foundry[0] = AREF (work, FONT_FOUNDRY_INDEX);
3173 if (! NILP (foundry[0]))
3174 foundry[1] = zero_vector;
3175 else if (STRINGP (attrs[LFACE_FOUNDRY_INDEX]))
3177 val = attrs[LFACE_FOUNDRY_INDEX];
3178 foundry[0] = font_intern_prop (SSDATA (val), SBYTES (val), 1);
3179 foundry[1] = Qnil;
3180 foundry[2] = zero_vector;
3182 else
3183 foundry[0] = Qnil, foundry[1] = zero_vector;
3185 adstyle[0] = AREF (work, FONT_ADSTYLE_INDEX);
3186 if (! NILP (adstyle[0]))
3187 adstyle[1] = zero_vector;
3188 else if (FONTP (attrs[LFACE_FONT_INDEX]))
3190 Lisp_Object face_font = attrs[LFACE_FONT_INDEX];
3192 if (! NILP (AREF (face_font, FONT_ADSTYLE_INDEX)))
3194 adstyle[0] = AREF (face_font, FONT_ADSTYLE_INDEX);
3195 adstyle[1] = Qnil;
3196 adstyle[2] = zero_vector;
3198 else
3199 adstyle[0] = Qnil, adstyle[1] = zero_vector;
3201 else
3202 adstyle[0] = Qnil, adstyle[1] = zero_vector;
3205 val = AREF (work, FONT_FAMILY_INDEX);
3206 if (NILP (val) && STRINGP (attrs[LFACE_FAMILY_INDEX]))
3208 val = attrs[LFACE_FAMILY_INDEX];
3209 val = font_intern_prop (SSDATA (val), SBYTES (val), 1);
3211 Lisp_Object familybuf[3];
3212 if (NILP (val))
3214 family = familybuf;
3215 family[0] = Qnil;
3216 family[1] = zero_vector; /* terminator. */
3218 else
3220 Lisp_Object alters
3221 = Fassoc_string (val, Vface_alternative_font_family_alist, Qt);
3223 if (! NILP (alters))
3225 EMACS_INT alterslen = XFASTINT (Flength (alters));
3226 SAFE_ALLOCA_LISP (family, alterslen + 2);
3227 for (i = 0; CONSP (alters); i++, alters = XCDR (alters))
3228 family[i] = XCAR (alters);
3229 if (NILP (AREF (spec, FONT_FAMILY_INDEX)))
3230 family[i++] = Qnil;
3231 family[i] = zero_vector;
3233 else
3235 family = familybuf;
3236 i = 0;
3237 family[i++] = val;
3238 if (NILP (AREF (spec, FONT_FAMILY_INDEX)))
3239 family[i++] = Qnil;
3240 family[i] = zero_vector;
3244 for (i = 0; SYMBOLP (family[i]); i++)
3246 ASET (work, FONT_FAMILY_INDEX, family[i]);
3247 for (j = 0; SYMBOLP (foundry[j]); j++)
3249 ASET (work, FONT_FOUNDRY_INDEX, foundry[j]);
3250 for (k = 0; SYMBOLP (registry[k]); k++)
3252 ASET (work, FONT_REGISTRY_INDEX, registry[k]);
3253 for (l = 0; SYMBOLP (adstyle[l]); l++)
3255 ASET (work, FONT_ADSTYLE_INDEX, adstyle[l]);
3256 entities = font_list_entities (f, work);
3257 if (! NILP (entities))
3259 val = font_select_entity (f, entities,
3260 attrs, pixel_size, c);
3261 if (! NILP (val))
3263 SAFE_FREE ();
3264 return val;
3272 SAFE_FREE ();
3273 return Qnil;
3277 Lisp_Object
3278 font_open_for_lface (struct frame *f, Lisp_Object entity, Lisp_Object *attrs, Lisp_Object spec)
3280 int size;
3282 if (INTEGERP (AREF (entity, FONT_SIZE_INDEX))
3283 && XINT (AREF (entity, FONT_SIZE_INDEX)) > 0)
3284 size = XINT (AREF (entity, FONT_SIZE_INDEX));
3285 else
3287 if (FONT_SPEC_P (spec) && ! NILP (AREF (spec, FONT_SIZE_INDEX)))
3288 size = font_pixel_size (f, spec);
3289 else
3291 double pt;
3292 if (INTEGERP (attrs[LFACE_HEIGHT_INDEX]))
3293 pt = XINT (attrs[LFACE_HEIGHT_INDEX]);
3294 else
3296 struct face *def = FACE_FROM_ID (f, DEFAULT_FACE_ID);
3297 Lisp_Object height = def->lface[LFACE_HEIGHT_INDEX];
3298 eassert (INTEGERP (height));
3299 pt = XINT (height);
3302 pt /= 10;
3303 size = POINT_TO_PIXEL (pt, FRAME_RES_Y (f));
3304 #ifdef HAVE_NS
3305 if (size == 0)
3307 Lisp_Object ffsize = get_frame_param (f, Qfontsize);
3308 size = (NUMBERP (ffsize)
3309 ? POINT_TO_PIXEL (XINT (ffsize), FRAME_RES_Y (f)) : 0);
3311 #endif
3313 size *= font_rescale_ratio (entity);
3316 return font_open_entity (f, entity, size);
3320 /* Find a font that satisfies SPEC and is the best match for
3321 face's attributes in ATTRS on FRAME, and return the opened
3322 font-object. */
3324 Lisp_Object
3325 font_load_for_lface (struct frame *f, Lisp_Object *attrs, Lisp_Object spec)
3327 Lisp_Object entity, name;
3329 entity = font_find_for_lface (f, attrs, spec, -1);
3330 if (NILP (entity))
3332 /* No font is listed for SPEC, but each font-backend may have
3333 different criteria about "font matching". So, try it. */
3334 entity = font_matching_entity (f, attrs, spec);
3335 if (NILP (entity))
3336 return Qnil;
3338 /* Don't lose the original name that was put in initially. We need
3339 it to re-apply the font when font parameters (like hinting or dpi) have
3340 changed. */
3341 entity = font_open_for_lface (f, entity, attrs, spec);
3342 if (!NILP (entity))
3344 name = Ffont_get (spec, QCuser_spec);
3345 if (STRINGP (name)) font_put_extra (entity, QCuser_spec, name);
3347 return entity;
3351 /* Make FACE on frame F ready to use the font opened for FACE. */
3353 void
3354 font_prepare_for_face (struct frame *f, struct face *face)
3356 if (face->font->driver->prepare_face)
3357 face->font->driver->prepare_face (f, face);
3361 /* Make FACE on frame F stop using the font opened for FACE. */
3363 void
3364 font_done_for_face (struct frame *f, struct face *face)
3366 if (face->font->driver->done_face)
3367 face->font->driver->done_face (f, face);
3371 /* Open a font that is a match for font-spec SPEC on frame F. If no proper
3372 font is found, return Qnil. */
3374 Lisp_Object
3375 font_open_by_spec (struct frame *f, Lisp_Object spec)
3377 Lisp_Object attrs[LFACE_VECTOR_SIZE];
3379 /* We set up the default font-related attributes of a face to prefer
3380 a moderate font. */
3381 attrs[LFACE_FAMILY_INDEX] = attrs[LFACE_FOUNDRY_INDEX] = Qnil;
3382 attrs[LFACE_SWIDTH_INDEX] = attrs[LFACE_WEIGHT_INDEX]
3383 = attrs[LFACE_SLANT_INDEX] = Qnormal;
3384 #ifndef HAVE_NS
3385 attrs[LFACE_HEIGHT_INDEX] = make_number (120);
3386 #else
3387 attrs[LFACE_HEIGHT_INDEX] = make_number (0);
3388 #endif
3389 attrs[LFACE_FONT_INDEX] = Qnil;
3391 return font_load_for_lface (f, attrs, spec);
3395 /* Open a font that matches NAME on frame F. If no proper font is
3396 found, return Qnil. */
3398 Lisp_Object
3399 font_open_by_name (struct frame *f, Lisp_Object name)
3401 Lisp_Object spec = CALLN (Ffont_spec, QCname, name);
3402 Lisp_Object ret = font_open_by_spec (f, spec);
3403 /* Do not lose name originally put in. */
3404 if (!NILP (ret))
3405 font_put_extra (ret, QCuser_spec, name);
3407 return ret;
3411 /* Register font-driver DRIVER. This function is used in two ways.
3413 The first is with frame F non-NULL. In this case, make DRIVER
3414 available (but not yet activated) on F. All frame creators
3415 (e.g. Fx_create_frame) must call this function at least once with
3416 an available font-driver.
3418 The second is with frame F NULL. In this case, DRIVER is globally
3419 registered in the variable `font_driver_list'. All font-driver
3420 implementations must call this function in its syms_of_XXXX
3421 (e.g. syms_of_xfont). */
3423 void
3424 register_font_driver (struct font_driver *driver, struct frame *f)
3426 struct font_driver_list *root = f ? f->font_driver_list : font_driver_list;
3427 struct font_driver_list *prev, *list;
3429 #ifdef HAVE_WINDOW_SYSTEM
3430 if (f && ! driver->draw)
3431 error ("Unusable font driver for a frame: %s",
3432 SDATA (SYMBOL_NAME (driver->type)));
3433 #endif /* HAVE_WINDOW_SYSTEM */
3435 for (prev = NULL, list = root; list; prev = list, list = list->next)
3436 if (EQ (list->driver->type, driver->type))
3437 error ("Duplicated font driver: %s", SDATA (SYMBOL_NAME (driver->type)));
3439 list = xmalloc (sizeof *list);
3440 list->on = 0;
3441 list->driver = driver;
3442 list->next = NULL;
3443 if (prev)
3444 prev->next = list;
3445 else if (f)
3446 f->font_driver_list = list;
3447 else
3448 font_driver_list = list;
3449 if (! f)
3450 num_font_drivers++;
3453 void
3454 free_font_driver_list (struct frame *f)
3456 struct font_driver_list *list, *next;
3458 for (list = f->font_driver_list; list; list = next)
3460 next = list->next;
3461 xfree (list);
3463 f->font_driver_list = NULL;
3467 /* Make the frame F use font backends listed in NEW_DRIVERS (list of
3468 symbols, e.g. xft, x). If NEW_DRIVERS is t, make F use all
3469 available font drivers. If NEW_DRIVERS is nil, finalize all drivers.
3471 A caller must free all realized faces if any in advance. The
3472 return value is a list of font backends actually made used on
3473 F. */
3475 Lisp_Object
3476 font_update_drivers (struct frame *f, Lisp_Object new_drivers)
3478 Lisp_Object active_drivers = Qnil;
3479 struct font_driver_list *list;
3481 /* At first, turn off non-requested drivers, and turn on requested
3482 drivers. */
3483 for (list = f->font_driver_list; list; list = list->next)
3485 struct font_driver *driver = list->driver;
3486 if ((EQ (new_drivers, Qt) || ! NILP (Fmemq (driver->type, new_drivers)))
3487 != list->on)
3489 if (list->on)
3491 if (driver->end_for_frame)
3492 driver->end_for_frame (f);
3493 font_finish_cache (f, driver);
3494 list->on = 0;
3496 else
3498 if (! driver->start_for_frame
3499 || driver->start_for_frame (f) == 0)
3501 font_prepare_cache (f, driver);
3502 list->on = 1;
3508 if (NILP (new_drivers))
3509 return Qnil;
3511 if (! EQ (new_drivers, Qt))
3513 /* Re-order the driver list according to new_drivers. */
3514 struct font_driver_list **list_table, **next;
3515 Lisp_Object tail;
3516 int i;
3517 USE_SAFE_ALLOCA;
3519 SAFE_NALLOCA (list_table, 1, num_font_drivers + 1);
3520 for (i = 0, tail = new_drivers; ! NILP (tail); tail = XCDR (tail))
3522 for (list = f->font_driver_list; list; list = list->next)
3523 if (list->on && EQ (list->driver->type, XCAR (tail)))
3524 break;
3525 if (list)
3526 list_table[i++] = list;
3528 for (list = f->font_driver_list; list; list = list->next)
3529 if (! list->on)
3530 list_table[i++] = list;
3531 list_table[i] = NULL;
3533 next = &f->font_driver_list;
3534 for (i = 0; list_table[i]; i++)
3536 *next = list_table[i];
3537 next = &(*next)->next;
3539 *next = NULL;
3540 SAFE_FREE ();
3542 if (! f->font_driver_list->on)
3543 { /* None of the drivers is enabled: enable them all.
3544 Happens if you set the list of drivers to (xft x) in your .emacs
3545 and then use it under w32 or ns. */
3546 for (list = f->font_driver_list; list; list = list->next)
3548 struct font_driver *driver = list->driver;
3549 eassert (! list->on);
3550 if (! driver->start_for_frame
3551 || driver->start_for_frame (f) == 0)
3553 font_prepare_cache (f, driver);
3554 list->on = 1;
3560 for (list = f->font_driver_list; list; list = list->next)
3561 if (list->on)
3562 active_drivers = nconc2 (active_drivers, list1 (list->driver->type));
3563 return active_drivers;
3566 #if defined (HAVE_XFT) || defined (HAVE_FREETYPE)
3568 static void
3569 fset_font_data (struct frame *f, Lisp_Object val)
3571 f->font_data = val;
3574 void
3575 font_put_frame_data (struct frame *f, Lisp_Object driver, void *data)
3577 Lisp_Object val = assq_no_quit (driver, f->font_data);
3579 if (!data)
3580 fset_font_data (f, Fdelq (val, f->font_data));
3581 else
3583 if (NILP (val))
3584 fset_font_data (f, Fcons (Fcons (driver, make_save_ptr (data)),
3585 f->font_data));
3586 else
3587 XSETCDR (val, make_save_ptr (data));
3591 void *
3592 font_get_frame_data (struct frame *f, Lisp_Object driver)
3594 Lisp_Object val = assq_no_quit (driver, f->font_data);
3596 return NILP (val) ? NULL : XSAVE_POINTER (XCDR (val), 0);
3599 #endif /* HAVE_XFT || HAVE_FREETYPE */
3601 /* Sets attributes on a font. Any properties that appear in ALIST and
3602 BOOLEAN_PROPERTIES or NON_BOOLEAN_PROPERTIES are set on the font.
3603 BOOLEAN_PROPERTIES and NON_BOOLEAN_PROPERTIES are NULL-terminated
3604 arrays of strings. This function is intended for use by the font
3605 drivers to implement their specific font_filter_properties. */
3606 void
3607 font_filter_properties (Lisp_Object font,
3608 Lisp_Object alist,
3609 const char *const boolean_properties[],
3610 const char *const non_boolean_properties[])
3612 Lisp_Object it;
3613 int i;
3615 /* Set boolean values to Qt or Qnil. */
3616 for (i = 0; boolean_properties[i] != NULL; ++i)
3617 for (it = alist; ! NILP (it); it = XCDR (it))
3619 Lisp_Object key = XCAR (XCAR (it));
3620 Lisp_Object val = XCDR (XCAR (it));
3621 char *keystr = SSDATA (SYMBOL_NAME (key));
3623 if (strcmp (boolean_properties[i], keystr) == 0)
3625 const char *str = INTEGERP (val) ? (XINT (val) ? "true" : "false")
3626 : SYMBOLP (val) ? SSDATA (SYMBOL_NAME (val))
3627 : "true";
3629 if (strcmp ("false", str) == 0 || strcmp ("False", str) == 0
3630 || strcmp ("FALSE", str) == 0 || strcmp ("FcFalse", str) == 0
3631 || strcmp ("off", str) == 0 || strcmp ("OFF", str) == 0
3632 || strcmp ("Off", str) == 0)
3633 val = Qnil;
3634 else
3635 val = Qt;
3637 Ffont_put (font, key, val);
3641 for (i = 0; non_boolean_properties[i] != NULL; ++i)
3642 for (it = alist; ! NILP (it); it = XCDR (it))
3644 Lisp_Object key = XCAR (XCAR (it));
3645 Lisp_Object val = XCDR (XCAR (it));
3646 char *keystr = SSDATA (SYMBOL_NAME (key));
3647 if (strcmp (non_boolean_properties[i], keystr) == 0)
3648 Ffont_put (font, key, val);
3653 /* Return the font used to draw character C by FACE at buffer position
3654 POS in window W. If STRING is non-nil, it is a string containing C
3655 at index POS. If C is negative, get C from the current buffer or
3656 STRING. */
3658 static Lisp_Object
3659 font_at (int c, ptrdiff_t pos, struct face *face, struct window *w,
3660 Lisp_Object string)
3662 struct frame *f;
3663 bool multibyte;
3664 Lisp_Object font_object;
3666 multibyte = (NILP (string)
3667 ? ! NILP (BVAR (current_buffer, enable_multibyte_characters))
3668 : STRING_MULTIBYTE (string));
3669 if (c < 0)
3671 if (NILP (string))
3673 if (multibyte)
3675 ptrdiff_t pos_byte = CHAR_TO_BYTE (pos);
3677 c = FETCH_CHAR (pos_byte);
3679 else
3680 c = FETCH_BYTE (pos);
3682 else
3684 unsigned char *str;
3686 multibyte = STRING_MULTIBYTE (string);
3687 if (multibyte)
3689 ptrdiff_t pos_byte = string_char_to_byte (string, pos);
3691 str = SDATA (string) + pos_byte;
3692 c = STRING_CHAR (str);
3694 else
3695 c = SDATA (string)[pos];
3699 f = XFRAME (w->frame);
3700 if (! FRAME_WINDOW_P (f))
3701 return Qnil;
3702 if (! face)
3704 int face_id;
3705 ptrdiff_t endptr;
3707 if (STRINGP (string))
3708 face_id = face_at_string_position (w, string, pos, 0, &endptr,
3709 DEFAULT_FACE_ID, false);
3710 else
3711 face_id = face_at_buffer_position (w, pos, &endptr,
3712 pos + 100, false, -1);
3713 face = FACE_FROM_ID (f, face_id);
3715 if (multibyte)
3717 int face_id = FACE_FOR_CHAR (f, face, c, pos, string);
3718 face = FACE_FROM_ID (f, face_id);
3720 if (! face->font)
3721 return Qnil;
3723 XSETFONT (font_object, face->font);
3724 return font_object;
3728 #ifdef HAVE_WINDOW_SYSTEM
3730 /* Check how many characters after character/byte position POS/POS_BYTE
3731 (at most to *LIMIT) can be displayed by the same font in the window W.
3732 FACE, if non-NULL, is the face selected for the character at POS.
3733 If STRING is not nil, it is the string to check instead of the current
3734 buffer. In that case, FACE must be not NULL.
3736 The return value is the font-object for the character at POS.
3737 *LIMIT is set to the position where that font can't be used.
3739 It is assured that the current buffer (or STRING) is multibyte. */
3741 Lisp_Object
3742 font_range (ptrdiff_t pos, ptrdiff_t pos_byte, ptrdiff_t *limit,
3743 struct window *w, struct face *face, Lisp_Object string)
3745 ptrdiff_t ignore;
3746 int c;
3747 Lisp_Object font_object = Qnil;
3749 if (NILP (string))
3751 if (! face)
3753 int face_id;
3755 face_id = face_at_buffer_position (w, pos, &ignore,
3756 *limit, false, -1);
3757 face = FACE_FROM_ID (XFRAME (w->frame), face_id);
3760 else
3761 eassert (face);
3763 while (pos < *limit)
3765 Lisp_Object category;
3767 if (NILP (string))
3768 FETCH_CHAR_ADVANCE_NO_CHECK (c, pos, pos_byte);
3769 else
3770 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, string, pos, pos_byte);
3771 category = CHAR_TABLE_REF (Vunicode_category_table, c);
3772 if (INTEGERP (category)
3773 && (XINT (category) == UNICODE_CATEGORY_Cf
3774 || CHAR_VARIATION_SELECTOR_P (c)))
3775 continue;
3776 if (NILP (font_object))
3778 font_object = font_for_char (face, c, pos - 1, string);
3779 if (NILP (font_object))
3780 return Qnil;
3781 continue;
3783 if (font_encode_char (font_object, c) == FONT_INVALID_CODE)
3784 *limit = pos - 1;
3786 return font_object;
3788 #endif
3791 /* Lisp API. */
3793 DEFUN ("fontp", Ffontp, Sfontp, 1, 2, 0,
3794 doc: /* Return t if OBJECT is a font-spec, font-entity, or font-object.
3795 Return nil otherwise.
3796 Optional 2nd argument EXTRA-TYPE, if non-nil, specifies to check
3797 which kind of font it is. It must be one of `font-spec', `font-entity',
3798 `font-object'. */)
3799 (Lisp_Object object, Lisp_Object extra_type)
3801 if (NILP (extra_type))
3802 return (FONTP (object) ? Qt : Qnil);
3803 if (EQ (extra_type, Qfont_spec))
3804 return (FONT_SPEC_P (object) ? Qt : Qnil);
3805 if (EQ (extra_type, Qfont_entity))
3806 return (FONT_ENTITY_P (object) ? Qt : Qnil);
3807 if (EQ (extra_type, Qfont_object))
3808 return (FONT_OBJECT_P (object) ? Qt : Qnil);
3809 wrong_type_argument (intern ("font-extra-type"), extra_type);
3812 DEFUN ("font-spec", Ffont_spec, Sfont_spec, 0, MANY, 0,
3813 doc: /* Return a newly created font-spec with arguments as properties.
3815 ARGS must come in pairs KEY VALUE of font properties. KEY must be a
3816 valid font property name listed below:
3818 `:family', `:weight', `:slant', `:width'
3820 They are the same as face attributes of the same name. See
3821 `set-face-attribute'.
3823 `:foundry'
3825 VALUE must be a string or a symbol specifying the font foundry, e.g. `misc'.
3827 `:adstyle'
3829 VALUE must be a string or a symbol specifying the additional
3830 typographic style information of a font, e.g. `sans'.
3832 `:registry'
3834 VALUE must be a string or a symbol specifying the charset registry and
3835 encoding of a font, e.g. `iso8859-1'.
3837 `:size'
3839 VALUE must be a non-negative integer or a floating point number
3840 specifying the font size. It specifies the font size in pixels (if
3841 VALUE is an integer), or in points (if VALUE is a float).
3843 `:name'
3845 VALUE must be a string of XLFD-style or fontconfig-style font name.
3847 `:script'
3849 VALUE must be a symbol representing a script that the font must
3850 support. It may be a symbol representing a subgroup of a script
3851 listed in the variable `script-representative-chars'.
3853 `:lang'
3855 VALUE must be a symbol of two-letter ISO-639 language names,
3856 e.g. `ja'.
3858 `:otf'
3860 VALUE must be a list (SCRIPT-TAG LANGSYS-TAG GSUB [ GPOS ]) to specify
3861 required OpenType features.
3863 SCRIPT-TAG: OpenType script tag symbol (e.g. `deva').
3864 LANGSYS-TAG: OpenType language system tag symbol,
3865 or nil for the default language system.
3866 GSUB: List of OpenType GSUB feature tag symbols, or nil if none required.
3867 GPOS: List of OpenType GPOS feature tag symbols, or nil if none required.
3869 GSUB and GPOS may contain nil elements. In such a case, the font
3870 must not have any of the remaining elements.
3872 For instance, if the VALUE is `(thai nil nil (mark))', the font must
3873 be an OpenType font whose GPOS table of `thai' script's default
3874 language system must contain `mark' feature.
3876 usage: (font-spec ARGS...) */)
3877 (ptrdiff_t nargs, Lisp_Object *args)
3879 Lisp_Object spec = font_make_spec ();
3880 ptrdiff_t i;
3882 for (i = 0; i < nargs; i += 2)
3884 Lisp_Object key = args[i], val;
3886 CHECK_SYMBOL (key);
3887 if (i + 1 >= nargs)
3888 error ("No value for key `%s'", SDATA (SYMBOL_NAME (key)));
3889 val = args[i + 1];
3891 if (EQ (key, QCname))
3893 CHECK_STRING (val);
3894 if (font_parse_name (SSDATA (val), SBYTES (val), spec) < 0)
3895 error ("Invalid font name: %s", SSDATA (val));
3896 font_put_extra (spec, key, val);
3898 else
3900 int idx = get_font_prop_index (key);
3902 if (idx >= 0)
3904 val = font_prop_validate (idx, Qnil, val);
3905 if (idx < FONT_EXTRA_INDEX)
3906 ASET (spec, idx, val);
3907 else
3908 font_put_extra (spec, key, val);
3910 else
3911 font_put_extra (spec, key, font_prop_validate (0, key, val));
3914 return spec;
3917 /* Return a copy of FONT as a font-spec. For the sake of speed, this code
3918 relies on an internal stuff exposed from alloc.c and should be handled
3919 with care. */
3921 Lisp_Object
3922 copy_font_spec (Lisp_Object font)
3924 enum { font_spec_size = VECSIZE (struct font_spec) };
3925 Lisp_Object new_spec, tail, *pcdr;
3926 struct font_spec *spec;
3928 CHECK_FONT (font);
3930 /* Make an uninitialized font-spec object. */
3931 spec = (struct font_spec *) allocate_vector (font_spec_size);
3932 XSETPVECTYPESIZE (spec, PVEC_FONT, FONT_SPEC_MAX,
3933 font_spec_size - FONT_SPEC_MAX);
3935 spec->props[FONT_TYPE_INDEX] = spec->props[FONT_EXTRA_INDEX] = Qnil;
3937 /* Copy basic properties FONT_FOUNDRY_INDEX..FONT_AVGWIDTH_INDEX. */
3938 memcpy (spec->props + 1, XVECTOR (font)->contents + 1,
3939 (FONT_EXTRA_INDEX - 1) * word_size);
3941 /* Copy an alist of extra information but discard :font-entity property. */
3942 pcdr = spec->props + FONT_EXTRA_INDEX;
3943 for (tail = AREF (font, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
3944 if (!EQ (XCAR (XCAR (tail)), QCfont_entity))
3945 *pcdr = Fcons (XCAR (tail), Qnil), pcdr = xcdr_addr (*pcdr);
3947 XSETFONT (new_spec, spec);
3948 return new_spec;
3951 /* Merge font-specs FROM and TO, and return a new font-spec.
3952 Every specified property in FROM overrides the corresponding
3953 property in TO. */
3954 Lisp_Object
3955 merge_font_spec (Lisp_Object from, Lisp_Object to)
3957 Lisp_Object extra, tail;
3958 int i;
3960 CHECK_FONT (from);
3961 CHECK_FONT (to);
3962 to = copy_font_spec (to);
3963 for (i = 0; i < FONT_EXTRA_INDEX; i++)
3964 ASET (to, i, AREF (from, i));
3965 extra = AREF (to, FONT_EXTRA_INDEX);
3966 for (tail = AREF (from, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
3967 if (! EQ (XCAR (XCAR (tail)), Qfont_entity))
3969 Lisp_Object slot = assq_no_quit (XCAR (XCAR (tail)), extra);
3971 if (! NILP (slot))
3972 XSETCDR (slot, XCDR (XCAR (tail)));
3973 else
3974 extra = Fcons (Fcons (XCAR (XCAR (tail)), XCDR (XCAR (tail))), extra);
3976 ASET (to, FONT_EXTRA_INDEX, extra);
3977 return to;
3980 DEFUN ("font-get", Ffont_get, Sfont_get, 2, 2, 0,
3981 doc: /* Return the value of FONT's property KEY.
3982 FONT is a font-spec, a font-entity, or a font-object.
3983 KEY is any symbol, but these are reserved for specific meanings:
3984 :family, :weight, :slant, :width, :foundry, :adstyle, :registry,
3985 :size, :name, :script, :otf
3986 See the documentation of `font-spec' for their meanings.
3987 In addition, if FONT is a font-entity or a font-object, values of
3988 :script and :otf are different from those of a font-spec as below:
3990 The value of :script may be a list of scripts that are supported by the font.
3992 The value of :otf is a cons (GSUB . GPOS) where GSUB and GPOS are lists
3993 representing the OpenType features supported by the font by this form:
3994 ((SCRIPT (LANGSYS FEATURE ...) ...) ...)
3995 SCRIPT, LANGSYS, and FEATURE are all symbols representing OpenType
3996 Layout tags. */)
3997 (Lisp_Object font, Lisp_Object key)
3999 int idx;
4000 Lisp_Object val;
4002 CHECK_FONT (font);
4003 CHECK_SYMBOL (key);
4005 idx = get_font_prop_index (key);
4006 if (idx >= FONT_WEIGHT_INDEX && idx <= FONT_WIDTH_INDEX)
4007 return font_style_symbolic (font, idx, 0);
4008 if (idx >= 0 && idx < FONT_EXTRA_INDEX)
4009 return AREF (font, idx);
4010 val = Fassq (key, AREF (font, FONT_EXTRA_INDEX));
4011 if (NILP (val) && EQ (key, QCotf) && FONT_OBJECT_P (font))
4013 struct font *fontp = XFONT_OBJECT (font);
4015 if (fontp->driver->otf_capability)
4016 val = fontp->driver->otf_capability (fontp);
4017 else
4018 val = Fcons (Qnil, Qnil);
4020 else
4021 val = Fcdr (val);
4022 return val;
4025 #ifdef HAVE_WINDOW_SYSTEM
4027 DEFUN ("font-face-attributes", Ffont_face_attributes, Sfont_face_attributes, 1, 2, 0,
4028 doc: /* Return a plist of face attributes generated by FONT.
4029 FONT is a font name, a font-spec, a font-entity, or a font-object.
4030 The return value is a list of the form
4032 \(:family FAMILY :height HEIGHT :weight WEIGHT :slant SLANT :width WIDTH)
4034 where FAMILY, HEIGHT, WEIGHT, SLANT, and WIDTH are face attribute values
4035 compatible with `set-face-attribute'. Some of these key-attribute pairs
4036 may be omitted from the list if they are not specified by FONT.
4038 The optional argument FRAME specifies the frame that the face attributes
4039 are to be displayed on. If omitted, the selected frame is used. */)
4040 (Lisp_Object font, Lisp_Object frame)
4042 struct frame *f = decode_live_frame (frame);
4043 Lisp_Object plist[10];
4044 Lisp_Object val;
4045 int n = 0;
4047 if (STRINGP (font))
4049 int fontset = fs_query_fontset (font, 0);
4050 Lisp_Object name = font;
4051 if (fontset >= 0)
4052 font = fontset_ascii (fontset);
4053 font = font_spec_from_name (name);
4054 if (! FONTP (font))
4055 signal_error ("Invalid font name", name);
4057 else if (! FONTP (font))
4058 signal_error ("Invalid font object", font);
4060 val = AREF (font, FONT_FAMILY_INDEX);
4061 if (! NILP (val))
4063 plist[n++] = QCfamily;
4064 plist[n++] = SYMBOL_NAME (val);
4067 val = AREF (font, FONT_SIZE_INDEX);
4068 if (INTEGERP (val))
4070 Lisp_Object font_dpi = AREF (font, FONT_DPI_INDEX);
4071 int dpi = INTEGERP (font_dpi) ? XINT (font_dpi) : FRAME_RES_Y (f);
4072 plist[n++] = QCheight;
4073 plist[n++] = make_number (PIXEL_TO_POINT (XINT (val) * 10, dpi));
4075 else if (FLOATP (val))
4077 plist[n++] = QCheight;
4078 plist[n++] = make_number (10 * (int) XFLOAT_DATA (val));
4081 val = FONT_WEIGHT_FOR_FACE (font);
4082 if (! NILP (val))
4084 plist[n++] = QCweight;
4085 plist[n++] = val;
4088 val = FONT_SLANT_FOR_FACE (font);
4089 if (! NILP (val))
4091 plist[n++] = QCslant;
4092 plist[n++] = val;
4095 val = FONT_WIDTH_FOR_FACE (font);
4096 if (! NILP (val))
4098 plist[n++] = QCwidth;
4099 plist[n++] = val;
4102 return Flist (n, plist);
4105 #endif
4107 DEFUN ("font-put", Ffont_put, Sfont_put, 3, 3, 0,
4108 doc: /* Set one property of FONT: give property KEY value VAL.
4109 FONT is a font-spec, a font-entity, or a font-object.
4111 If FONT is a font-spec, KEY can be any symbol. But if KEY is the one
4112 accepted by the function `font-spec' (which see), VAL must be what
4113 allowed in `font-spec'.
4115 If FONT is a font-entity or a font-object, KEY must not be the one
4116 accepted by `font-spec'. */)
4117 (Lisp_Object font, Lisp_Object prop, Lisp_Object val)
4119 int idx;
4121 idx = get_font_prop_index (prop);
4122 if (idx >= 0 && idx < FONT_EXTRA_INDEX)
4124 CHECK_FONT_SPEC (font);
4125 ASET (font, idx, font_prop_validate (idx, Qnil, val));
4127 else
4129 if (EQ (prop, QCname)
4130 || EQ (prop, QCscript)
4131 || EQ (prop, QClang)
4132 || EQ (prop, QCotf))
4133 CHECK_FONT_SPEC (font);
4134 else
4135 CHECK_FONT (font);
4136 font_put_extra (font, prop, font_prop_validate (0, prop, val));
4138 return val;
4141 DEFUN ("list-fonts", Flist_fonts, Slist_fonts, 1, 4, 0,
4142 doc: /* List available fonts matching FONT-SPEC on the current frame.
4143 Optional 2nd argument FRAME specifies the target frame.
4144 Optional 3rd argument NUM, if non-nil, limits the number of returned fonts.
4145 Optional 4th argument PREFER, if non-nil, is a font-spec to
4146 control the order of the returned list. Fonts are sorted by
4147 how close they are to PREFER. */)
4148 (Lisp_Object font_spec, Lisp_Object frame, Lisp_Object num, Lisp_Object prefer)
4150 struct frame *f = decode_live_frame (frame);
4151 Lisp_Object vec, list;
4152 EMACS_INT n = 0;
4154 CHECK_FONT_SPEC (font_spec);
4155 if (! NILP (num))
4157 CHECK_NUMBER (num);
4158 n = XINT (num);
4159 if (n <= 0)
4160 return Qnil;
4162 if (! NILP (prefer))
4163 CHECK_FONT_SPEC (prefer);
4165 list = font_list_entities (f, font_spec);
4166 if (NILP (list))
4167 return Qnil;
4168 if (NILP (XCDR (list))
4169 && ASIZE (XCAR (list)) == 1)
4170 return list1 (AREF (XCAR (list), 0));
4172 if (! NILP (prefer))
4173 vec = font_sort_entities (list, prefer, f, 0);
4174 else
4175 vec = font_vconcat_entity_vectors (list);
4176 if (n == 0 || n >= ASIZE (vec))
4177 list = CALLN (Fappend, vec, Qnil);
4178 else
4180 for (list = Qnil, n--; n >= 0; n--)
4181 list = Fcons (AREF (vec, n), list);
4183 return list;
4186 DEFUN ("font-family-list", Ffont_family_list, Sfont_family_list, 0, 1, 0,
4187 doc: /* List available font families on the current frame.
4188 If FRAME is omitted or nil, the selected frame is used. */)
4189 (Lisp_Object frame)
4191 struct frame *f = decode_live_frame (frame);
4192 struct font_driver_list *driver_list;
4193 Lisp_Object list = Qnil;
4195 for (driver_list = f->font_driver_list; driver_list;
4196 driver_list = driver_list->next)
4197 if (driver_list->driver->list_family)
4199 Lisp_Object val = driver_list->driver->list_family (f);
4200 Lisp_Object tail = list;
4202 for (; CONSP (val); val = XCDR (val))
4203 if (NILP (Fmemq (XCAR (val), tail))
4204 && SYMBOLP (XCAR (val)))
4205 list = Fcons (SYMBOL_NAME (XCAR (val)), list);
4207 return list;
4210 DEFUN ("find-font", Ffind_font, Sfind_font, 1, 2, 0,
4211 doc: /* Return a font-entity matching with FONT-SPEC on the current frame.
4212 Optional 2nd argument FRAME, if non-nil, specifies the target frame. */)
4213 (Lisp_Object font_spec, Lisp_Object frame)
4215 Lisp_Object val = Flist_fonts (font_spec, frame, make_number (1), Qnil);
4217 if (CONSP (val))
4218 val = XCAR (val);
4219 return val;
4222 DEFUN ("font-xlfd-name", Ffont_xlfd_name, Sfont_xlfd_name, 1, 2, 0,
4223 doc: /* Return XLFD name of FONT.
4224 FONT is a font-spec, font-entity, or font-object.
4225 If the name is too long for XLFD (maximum 255 chars), return nil.
4226 If the 2nd optional arg FOLD-WILDCARDS is non-nil,
4227 the consecutive wildcards are folded into one. */)
4228 (Lisp_Object font, Lisp_Object fold_wildcards)
4230 char name[256];
4231 int namelen, pixel_size = 0;
4233 CHECK_FONT (font);
4235 if (FONT_OBJECT_P (font))
4237 Lisp_Object font_name = AREF (font, FONT_NAME_INDEX);
4239 if (STRINGP (font_name)
4240 && SDATA (font_name)[0] == '-')
4242 if (NILP (fold_wildcards))
4243 return font_name;
4244 lispstpcpy (name, font_name);
4245 namelen = SBYTES (font_name);
4246 goto done;
4248 pixel_size = XFONT_OBJECT (font)->pixel_size;
4250 namelen = font_unparse_xlfd (font, pixel_size, name, 256);
4251 if (namelen < 0)
4252 return Qnil;
4253 done:
4254 if (! NILP (fold_wildcards))
4256 char *p0 = name, *p1;
4258 while ((p1 = strstr (p0, "-*-*")))
4260 strcpy (p1, p1 + 2);
4261 namelen -= 2;
4262 p0 = p1;
4266 return make_string (name, namelen);
4269 void
4270 clear_font_cache (struct frame *f)
4272 struct font_driver_list *driver_list = f->font_driver_list;
4274 for (; driver_list; driver_list = driver_list->next)
4275 if (driver_list->on)
4277 Lisp_Object val, tmp, cache = driver_list->driver->get_cache (f);
4279 val = XCDR (cache);
4280 while (! NILP (val)
4281 && ! EQ (XCAR (XCAR (val)), driver_list->driver->type))
4282 val = XCDR (val);
4283 eassert (! NILP (val));
4284 tmp = XCDR (XCAR (val));
4285 if (XINT (XCAR (tmp)) == 0)
4287 font_clear_cache (f, XCAR (val), driver_list->driver);
4288 XSETCDR (cache, XCDR (val));
4293 DEFUN ("clear-font-cache", Fclear_font_cache, Sclear_font_cache, 0, 0, 0,
4294 doc: /* Clear font cache of each frame. */)
4295 (void)
4297 Lisp_Object list, frame;
4299 FOR_EACH_FRAME (list, frame)
4300 clear_font_cache (XFRAME (frame));
4302 return Qnil;
4306 void
4307 font_fill_lglyph_metrics (Lisp_Object glyph, Lisp_Object font_object)
4309 struct font *font = XFONT_OBJECT (font_object);
4310 unsigned code = font->driver->encode_char (font, LGLYPH_CHAR (glyph));
4311 struct font_metrics metrics;
4313 LGLYPH_SET_CODE (glyph, code);
4314 font->driver->text_extents (font, &code, 1, &metrics);
4315 LGLYPH_SET_LBEARING (glyph, metrics.lbearing);
4316 LGLYPH_SET_RBEARING (glyph, metrics.rbearing);
4317 LGLYPH_SET_WIDTH (glyph, metrics.width);
4318 LGLYPH_SET_ASCENT (glyph, metrics.ascent);
4319 LGLYPH_SET_DESCENT (glyph, metrics.descent);
4323 DEFUN ("font-shape-gstring", Ffont_shape_gstring, Sfont_shape_gstring, 1, 1, 0,
4324 doc: /* Shape the glyph-string GSTRING.
4325 Shaping means substituting glyphs and/or adjusting positions of glyphs
4326 to get the correct visual image of character sequences set in the
4327 header of the glyph-string.
4329 If the shaping was successful, the value is GSTRING itself or a newly
4330 created glyph-string. Otherwise, the value is nil.
4332 See the documentation of `composition-get-gstring' for the format of
4333 GSTRING. */)
4334 (Lisp_Object gstring)
4336 struct font *font;
4337 Lisp_Object font_object, n, glyph;
4338 ptrdiff_t i, from, to;
4340 if (! composition_gstring_p (gstring))
4341 signal_error ("Invalid glyph-string: ", gstring);
4342 if (! NILP (LGSTRING_ID (gstring)))
4343 return gstring;
4344 font_object = LGSTRING_FONT (gstring);
4345 CHECK_FONT_OBJECT (font_object);
4346 font = XFONT_OBJECT (font_object);
4347 if (! font->driver->shape)
4348 return Qnil;
4350 /* Try at most three times with larger gstring each time. */
4351 for (i = 0; i < 3; i++)
4353 n = font->driver->shape (gstring);
4354 if (INTEGERP (n))
4355 break;
4356 gstring = larger_vector (gstring,
4357 LGSTRING_GLYPH_LEN (gstring), -1);
4359 if (i == 3 || XINT (n) == 0)
4360 return Qnil;
4361 if (XINT (n) < LGSTRING_GLYPH_LEN (gstring))
4362 LGSTRING_SET_GLYPH (gstring, XINT (n), Qnil);
4364 /* Check FROM_IDX and TO_IDX of each GLYPH in GSTRING to assure that
4365 GLYPHS covers all characters (except for the last few ones) in
4366 GSTRING. More formally, provided that NCHARS is the number of
4367 characters in GSTRING and GLYPHS[i] is the ith glyph, FROM_IDX
4368 and TO_IDX of each glyph must satisfy these conditions:
4370 GLYPHS[0].FROM_IDX == 0
4371 GLYPHS[i].FROM_IDX <= GLYPHS[i].TO_IDX
4372 if (GLYPHS[i].FROM_IDX == GLYPHS[i-1].FROM_IDX)
4373 ;; GLYPHS[i] and GLYPHS[i-1] belongs to the same grapheme cluster
4374 GLYPHS[i].TO_IDX == GLYPHS[i-1].TO_IDX
4375 else
4376 ;; Be sure to cover all characters.
4377 GLYPHS[i].FROM_IDX == GLYPHS[i-1].TO_IDX + 1 */
4378 glyph = LGSTRING_GLYPH (gstring, 0);
4379 from = LGLYPH_FROM (glyph);
4380 to = LGLYPH_TO (glyph);
4381 if (from != 0 || to < from)
4382 goto shaper_error;
4383 for (i = 1; i < LGSTRING_GLYPH_LEN (gstring); i++)
4385 glyph = LGSTRING_GLYPH (gstring, i);
4386 if (NILP (glyph))
4387 break;
4388 if (! (LGLYPH_FROM (glyph) <= LGLYPH_TO (glyph)
4389 && (LGLYPH_FROM (glyph) == from
4390 ? LGLYPH_TO (glyph) == to
4391 : LGLYPH_FROM (glyph) == to + 1)))
4392 goto shaper_error;
4393 from = LGLYPH_FROM (glyph);
4394 to = LGLYPH_TO (glyph);
4396 return composition_gstring_put_cache (gstring, XINT (n));
4398 shaper_error:
4399 return Qnil;
4402 DEFUN ("font-variation-glyphs", Ffont_variation_glyphs, Sfont_variation_glyphs,
4403 2, 2, 0,
4404 doc: /* Return a list of variation glyphs for CHAR in FONT-OBJECT.
4405 Each element of the value is a cons (VARIATION-SELECTOR . GLYPH-ID),
4406 where
4407 VARIATION-SELECTOR is a character code of variation selection
4408 (#xFE00..#xFE0F or #xE0100..#xE01EF)
4409 GLYPH-ID is a glyph code of the corresponding variation glyph. */)
4410 (Lisp_Object font_object, Lisp_Object character)
4412 unsigned variations[256];
4413 struct font *font;
4414 int i, n;
4415 Lisp_Object val;
4417 CHECK_FONT_OBJECT (font_object);
4418 CHECK_CHARACTER (character);
4419 font = XFONT_OBJECT (font_object);
4420 if (! font->driver->get_variation_glyphs)
4421 return Qnil;
4422 n = font->driver->get_variation_glyphs (font, XINT (character), variations);
4423 if (! n)
4424 return Qnil;
4425 val = Qnil;
4426 for (i = 0; i < 255; i++)
4427 if (variations[i])
4429 int vs = (i < 16 ? 0xFE00 + i : 0xE0100 + (i - 16));
4430 Lisp_Object code = INTEGER_TO_CONS (variations[i]);
4431 val = Fcons (Fcons (make_number (vs), code), val);
4433 return val;
4436 #if 0
4438 DEFUN ("font-drive-otf", Ffont_drive_otf, Sfont_drive_otf, 6, 6, 0,
4439 doc: /* Apply OpenType features on glyph-string GSTRING-IN.
4440 OTF-FEATURES specifies which features to apply in this format:
4441 (SCRIPT LANGSYS GSUB GPOS)
4442 where
4443 SCRIPT is a symbol specifying a script tag of OpenType,
4444 LANGSYS is a symbol specifying a langsys tag of OpenType,
4445 GSUB and GPOS, if non-nil, are lists of symbols specifying feature tags.
4447 If LANGSYS is nil, the default langsys is selected.
4449 The features are applied in the order they appear in the list. The
4450 symbol `*' means to apply all available features not present in this
4451 list, and the remaining features are ignored. For instance, (vatu
4452 pstf * haln) is to apply vatu and pstf in this order, then to apply
4453 all available features other than vatu, pstf, and haln.
4455 The features are applied to the glyphs in the range FROM and TO of
4456 the glyph-string GSTRING-IN.
4458 If some feature is actually applicable, the resulting glyphs are
4459 produced in the glyph-string GSTRING-OUT from the index INDEX. In
4460 this case, the value is the number of produced glyphs.
4462 If no feature is applicable, no glyph is produced in GSTRING-OUT, and
4463 the value is 0.
4465 If GSTRING-OUT is too short to hold produced glyphs, no glyphs are
4466 produced in GSTRING-OUT, and the value is nil.
4468 See the documentation of `composition-get-gstring' for the format of
4469 glyph-string. */)
4470 (Lisp_Object otf_features, Lisp_Object gstring_in, Lisp_Object from, Lisp_Object to, Lisp_Object gstring_out, Lisp_Object index)
4472 Lisp_Object font_object = LGSTRING_FONT (gstring_in);
4473 Lisp_Object val;
4474 struct font *font;
4475 int len, num;
4477 check_otf_features (otf_features);
4478 CHECK_FONT_OBJECT (font_object);
4479 font = XFONT_OBJECT (font_object);
4480 if (! font->driver->otf_drive)
4481 error ("Font backend %s can't drive OpenType GSUB table",
4482 SDATA (SYMBOL_NAME (font->driver->type)));
4483 CHECK_CONS (otf_features);
4484 CHECK_SYMBOL (XCAR (otf_features));
4485 val = XCDR (otf_features);
4486 CHECK_SYMBOL (XCAR (val));
4487 val = XCDR (otf_features);
4488 if (! NILP (val))
4489 CHECK_CONS (val);
4490 len = check_gstring (gstring_in);
4491 CHECK_VECTOR (gstring_out);
4492 CHECK_NATNUM (from);
4493 CHECK_NATNUM (to);
4494 CHECK_NATNUM (index);
4496 if (XINT (from) >= XINT (to) || XINT (to) > len)
4497 args_out_of_range_3 (from, to, make_number (len));
4498 if (XINT (index) >= ASIZE (gstring_out))
4499 args_out_of_range (index, make_number (ASIZE (gstring_out)));
4500 num = font->driver->otf_drive (font, otf_features,
4501 gstring_in, XINT (from), XINT (to),
4502 gstring_out, XINT (index), 0);
4503 if (num < 0)
4504 return Qnil;
4505 return make_number (num);
4508 DEFUN ("font-otf-alternates", Ffont_otf_alternates, Sfont_otf_alternates,
4509 3, 3, 0,
4510 doc: /* Return a list of alternate glyphs of CHARACTER in FONT-OBJECT.
4511 OTF-FEATURES specifies which features of the font FONT-OBJECT to apply
4512 in this format:
4513 (SCRIPT LANGSYS FEATURE ...)
4514 See the documentation of `font-drive-otf' for more detail.
4516 The value is a list of cons cells of the format (GLYPH-ID . CHARACTER),
4517 where GLYPH-ID is a glyph index of the font, and CHARACTER is a
4518 character code corresponding to the glyph or nil if there's no
4519 corresponding character. */)
4520 (Lisp_Object font_object, Lisp_Object character, Lisp_Object otf_features)
4522 struct font *font = CHECK_FONT_GET_OBJECT (font_object);
4523 Lisp_Object gstring_in, gstring_out, g;
4524 Lisp_Object alternates;
4525 int i, num;
4527 if (! font->driver->otf_drive)
4528 error ("Font backend %s can't drive OpenType GSUB table",
4529 SDATA (SYMBOL_NAME (font->driver->type)));
4530 CHECK_CHARACTER (character);
4531 CHECK_CONS (otf_features);
4533 gstring_in = Ffont_make_gstring (font_object, make_number (1));
4534 g = LGSTRING_GLYPH (gstring_in, 0);
4535 LGLYPH_SET_CHAR (g, XINT (character));
4536 gstring_out = Ffont_make_gstring (font_object, make_number (10));
4537 while ((num = font->driver->otf_drive (font, otf_features, gstring_in, 0, 1,
4538 gstring_out, 0, 1)) < 0)
4539 gstring_out = Ffont_make_gstring (font_object,
4540 make_number (ASIZE (gstring_out) * 2));
4541 alternates = Qnil;
4542 for (i = 0; i < num; i++)
4544 Lisp_Object g = LGSTRING_GLYPH (gstring_out, i);
4545 int c = LGLYPH_CHAR (g);
4546 unsigned code = LGLYPH_CODE (g);
4548 alternates = Fcons (Fcons (make_number (code),
4549 c > 0 ? make_number (c) : Qnil),
4550 alternates);
4552 return Fnreverse (alternates);
4554 #endif /* 0 */
4556 #ifdef FONT_DEBUG
4558 DEFUN ("open-font", Fopen_font, Sopen_font, 1, 3, 0,
4559 doc: /* Open FONT-ENTITY. */)
4560 (Lisp_Object font_entity, Lisp_Object size, Lisp_Object frame)
4562 EMACS_INT isize;
4563 struct frame *f = decode_live_frame (frame);
4565 CHECK_FONT_ENTITY (font_entity);
4567 if (NILP (size))
4568 isize = XINT (AREF (font_entity, FONT_SIZE_INDEX));
4569 else
4571 CHECK_NUMBER_OR_FLOAT (size);
4572 if (FLOATP (size))
4573 isize = POINT_TO_PIXEL (XFLOAT_DATA (size), FRAME_RES_Y (f));
4574 else
4575 isize = XINT (size);
4576 if (! (INT_MIN <= isize && isize <= INT_MAX))
4577 args_out_of_range (font_entity, size);
4578 if (isize == 0)
4579 isize = 120;
4581 return font_open_entity (f, font_entity, isize);
4584 DEFUN ("close-font", Fclose_font, Sclose_font, 1, 2, 0,
4585 doc: /* Close FONT-OBJECT. */)
4586 (Lisp_Object font_object, Lisp_Object frame)
4588 CHECK_FONT_OBJECT (font_object);
4589 font_close_object (decode_live_frame (frame), font_object);
4590 return Qnil;
4593 DEFUN ("query-font", Fquery_font, Squery_font, 1, 1, 0,
4594 doc: /* Return information about FONT-OBJECT.
4595 The value is a vector:
4596 [ NAME FILENAME PIXEL-SIZE SIZE ASCENT DESCENT SPACE-WIDTH AVERAGE-WIDTH
4597 CAPABILITY ]
4599 NAME is the font name, a string (or nil if the font backend doesn't
4600 provide a name).
4602 FILENAME is the font file name, a string (or nil if the font backend
4603 doesn't provide a file name).
4605 PIXEL-SIZE is a pixel size by which the font is opened.
4607 SIZE is a maximum advance width of the font in pixels.
4609 ASCENT, DESCENT, SPACE-WIDTH, AVERAGE-WIDTH are metrics of the font in
4610 pixels.
4612 CAPABILITY is a list whose first element is a symbol representing the
4613 font format \(x, opentype, truetype, type1, pcf, or bdf) and the
4614 remaining elements describe the details of the font capability.
4616 If the font is OpenType font, the form of the list is
4617 \(opentype GSUB GPOS)
4618 where GSUB shows which "GSUB" features the font supports, and GPOS
4619 shows which "GPOS" features the font supports. Both GSUB and GPOS are
4620 lists of the format:
4621 \((SCRIPT (LANGSYS FEATURE ...) ...) ...)
4623 If the font is not OpenType font, currently the length of the form is
4624 one.
4626 SCRIPT is a symbol representing OpenType script tag.
4628 LANGSYS is a symbol representing OpenType langsys tag, or nil
4629 representing the default langsys.
4631 FEATURE is a symbol representing OpenType feature tag.
4633 If the font is not OpenType font, CAPABILITY is nil. */)
4634 (Lisp_Object font_object)
4636 struct font *font = CHECK_FONT_GET_OBJECT (font_object);
4637 Lisp_Object val = make_uninit_vector (9);
4639 ASET (val, 0, AREF (font_object, FONT_NAME_INDEX));
4640 ASET (val, 1, AREF (font_object, FONT_FILE_INDEX));
4641 ASET (val, 2, make_number (font->pixel_size));
4642 ASET (val, 3, make_number (font->max_width));
4643 ASET (val, 4, make_number (font->ascent));
4644 ASET (val, 5, make_number (font->descent));
4645 ASET (val, 6, make_number (font->space_width));
4646 ASET (val, 7, make_number (font->average_width));
4647 if (font->driver->otf_capability)
4648 ASET (val, 8, Fcons (Qopentype, font->driver->otf_capability (font)));
4649 else
4650 ASET (val, 8, Qnil);
4651 return val;
4654 DEFUN ("font-get-glyphs", Ffont_get_glyphs, Sfont_get_glyphs, 3, 4, 0,
4655 doc:
4656 /* Return a vector of FONT-OBJECT's glyphs for the specified characters.
4657 FROM and TO are positions (integers or markers) specifying a region
4658 of the current buffer, and can be in either order. If the optional
4659 fourth arg OBJECT is not nil, it is a string or a vector containing
4660 the target characters between indices FROM and TO, which are treated
4661 as in `substring'.
4663 Each element is a vector containing information of a glyph in this format:
4664 [FROM-IDX TO-IDX C CODE WIDTH LBEARING RBEARING ASCENT DESCENT ADJUSTMENT]
4665 where
4666 FROM is an index numbers of a character the glyph corresponds to.
4667 TO is the same as FROM.
4668 C is the character of the glyph.
4669 CODE is the glyph-code of C in FONT-OBJECT.
4670 WIDTH thru DESCENT are the metrics (in pixels) of the glyph.
4671 ADJUSTMENT is always nil.
4672 If FONT-OBJECT doesn't have a glyph for a character,
4673 the corresponding element is nil. */)
4674 (Lisp_Object font_object, Lisp_Object from, Lisp_Object to,
4675 Lisp_Object object)
4677 struct font *font = CHECK_FONT_GET_OBJECT (font_object);
4678 ptrdiff_t i, len;
4679 Lisp_Object *chars, vec;
4680 USE_SAFE_ALLOCA;
4682 if (NILP (object))
4684 ptrdiff_t charpos, bytepos;
4686 validate_region (&from, &to);
4687 if (EQ (from, to))
4688 return Qnil;
4689 len = XFASTINT (to) - XFASTINT (from);
4690 SAFE_ALLOCA_LISP (chars, len);
4691 charpos = XFASTINT (from);
4692 bytepos = CHAR_TO_BYTE (charpos);
4693 for (i = 0; charpos < XFASTINT (to); i++)
4695 int c;
4696 FETCH_CHAR_ADVANCE (c, charpos, bytepos);
4697 chars[i] = make_number (c);
4700 else if (STRINGP (object))
4702 const unsigned char *p;
4703 ptrdiff_t ifrom, ito;
4705 validate_subarray (object, from, to, SCHARS (object), &ifrom, &ito);
4706 if (ifrom == ito)
4707 return Qnil;
4708 len = ito - ifrom;
4709 SAFE_ALLOCA_LISP (chars, len);
4710 p = SDATA (object);
4711 if (STRING_MULTIBYTE (object))
4713 int c;
4715 /* Skip IFROM characters from the beginning. */
4716 for (i = 0; i < ifrom; i++)
4717 c = STRING_CHAR_ADVANCE (p);
4719 /* Now fetch an interesting characters. */
4720 for (i = 0; i < len; i++)
4722 c = STRING_CHAR_ADVANCE (p);
4723 chars[i] = make_number (c);
4726 else
4727 for (i = 0; i < len; i++)
4728 chars[i] = make_number (p[ifrom + i]);
4730 else if (VECTORP (object))
4732 ptrdiff_t ifrom, ito;
4734 validate_subarray (object, from, to, ASIZE (object), &ifrom, &ito);
4735 if (ifrom == ito)
4736 return Qnil;
4737 len = ito - ifrom;
4738 for (i = 0; i < len; i++)
4740 Lisp_Object elt = AREF (object, ifrom + i);
4741 CHECK_CHARACTER (elt);
4743 chars = aref_addr (object, ifrom);
4745 else
4746 wrong_type_argument (Qarrayp, object);
4748 vec = make_uninit_vector (len);
4749 for (i = 0; i < len; i++)
4751 Lisp_Object g;
4752 int c = XFASTINT (chars[i]);
4753 unsigned code;
4754 struct font_metrics metrics;
4756 code = font->driver->encode_char (font, c);
4757 if (code == FONT_INVALID_CODE)
4759 ASET (vec, i, Qnil);
4760 continue;
4762 g = LGLYPH_NEW ();
4763 LGLYPH_SET_FROM (g, i);
4764 LGLYPH_SET_TO (g, i);
4765 LGLYPH_SET_CHAR (g, c);
4766 LGLYPH_SET_CODE (g, code);
4767 font->driver->text_extents (font, &code, 1, &metrics);
4768 LGLYPH_SET_WIDTH (g, metrics.width);
4769 LGLYPH_SET_LBEARING (g, metrics.lbearing);
4770 LGLYPH_SET_RBEARING (g, metrics.rbearing);
4771 LGLYPH_SET_ASCENT (g, metrics.ascent);
4772 LGLYPH_SET_DESCENT (g, metrics.descent);
4773 ASET (vec, i, g);
4775 if (! VECTORP (object))
4776 SAFE_FREE ();
4777 return vec;
4780 DEFUN ("font-match-p", Ffont_match_p, Sfont_match_p, 2, 2, 0,
4781 doc: /* Return t if and only if font-spec SPEC matches with FONT.
4782 FONT is a font-spec, font-entity, or font-object. */)
4783 (Lisp_Object spec, Lisp_Object font)
4785 CHECK_FONT_SPEC (spec);
4786 CHECK_FONT (font);
4788 return (font_match_p (spec, font) ? Qt : Qnil);
4791 DEFUN ("font-at", Ffont_at, Sfont_at, 1, 3, 0,
4792 doc: /* Return a font-object for displaying a character at POSITION.
4793 Optional second arg WINDOW, if non-nil, is a window displaying
4794 the current buffer. It defaults to the currently selected window.
4795 Optional third arg STRING, if non-nil, is a string containing the target
4796 character at index specified by POSITION. */)
4797 (Lisp_Object position, Lisp_Object window, Lisp_Object string)
4799 struct window *w = decode_live_window (window);
4801 if (NILP (string))
4803 if (XBUFFER (w->contents) != current_buffer)
4804 error ("Specified window is not displaying the current buffer");
4805 CHECK_NUMBER_COERCE_MARKER (position);
4806 if (! (BEGV <= XINT (position) && XINT (position) < ZV))
4807 args_out_of_range_3 (position, make_number (BEGV), make_number (ZV));
4809 else
4811 CHECK_NUMBER (position);
4812 CHECK_STRING (string);
4813 if (! (0 <= XINT (position) && XINT (position) < SCHARS (string)))
4814 args_out_of_range (string, position);
4817 return font_at (-1, XINT (position), NULL, w, string);
4820 #if 0
4821 DEFUN ("draw-string", Fdraw_string, Sdraw_string, 2, 2, 0,
4822 doc: /* Draw STRING by FONT-OBJECT on the top left corner of the current frame.
4823 The value is a number of glyphs drawn.
4824 Type C-l to recover what previously shown. */)
4825 (Lisp_Object font_object, Lisp_Object string)
4827 Lisp_Object frame = selected_frame;
4828 struct frame *f = XFRAME (frame);
4829 struct font *font;
4830 struct face *face;
4831 int i, len, width;
4832 unsigned *code;
4834 CHECK_FONT_GET_OBJECT (font_object, font);
4835 CHECK_STRING (string);
4836 len = SCHARS (string);
4837 code = alloca (sizeof (unsigned) * len);
4838 for (i = 0; i < len; i++)
4840 Lisp_Object ch = Faref (string, make_number (i));
4841 Lisp_Object val;
4842 int c = XINT (ch);
4844 code[i] = font->driver->encode_char (font, c);
4845 if (code[i] == FONT_INVALID_CODE)
4846 break;
4848 face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
4849 face->fontp = font;
4850 if (font->driver->prepare_face)
4851 font->driver->prepare_face (f, face);
4852 width = font->driver->text_extents (font, code, i, NULL);
4853 len = font->driver->draw_text (f, face, 0, font->ascent, code, i, width);
4854 if (font->driver->done_face)
4855 font->driver->done_face (f, face);
4856 face->fontp = NULL;
4857 return make_number (len);
4859 #endif
4861 DEFUN ("frame-font-cache", Fframe_font_cache, Sframe_font_cache, 0, 1, 0,
4862 doc: /* Return FRAME's font cache. Mainly used for debugging.
4863 If FRAME is omitted or nil, use the selected frame. */)
4864 (Lisp_Object frame)
4866 #ifdef HAVE_WINDOW_SYSTEM
4867 struct frame *f = decode_live_frame (frame);
4869 if (FRAME_WINDOW_P (f))
4870 return FRAME_DISPLAY_INFO (f)->name_list_element;
4871 else
4872 #endif
4873 return Qnil;
4876 #endif /* FONT_DEBUG */
4878 #ifdef HAVE_WINDOW_SYSTEM
4880 DEFUN ("font-info", Ffont_info, Sfont_info, 1, 2, 0,
4881 doc: /* Return information about a font named NAME on frame FRAME.
4882 If FRAME is omitted or nil, use the selected frame.
4884 The returned value is a vector:
4885 [ OPENED-NAME FULL-NAME SIZE HEIGHT BASELINE-OFFSET RELATIVE-COMPOSE
4886 DEFAULT-ASCENT MAX-WIDTH ASCENT DESCENT SPACE-WIDTH AVERAGE-WIDTH
4887 CAPABILITY ]
4888 where
4889 OPENED-NAME is the name used for opening the font,
4890 FULL-NAME is the full name of the font,
4891 SIZE is the pixelsize of the font,
4892 HEIGHT is the pixel-height of the font (i.e., ascent + descent),
4893 BASELINE-OFFSET is the upward offset pixels from ASCII baseline,
4894 RELATIVE-COMPOSE and DEFAULT-ASCENT are the numbers controlling
4895 how to compose characters,
4896 MAX-WIDTH is the maximum advance width of the font,
4897 ASCENT, DESCENT, SPACE-WIDTH, AVERAGE-WIDTH are metrics of the font
4898 in pixels,
4899 FILENAME is the font file name, a string (or nil if the font backend
4900 doesn't provide a file name).
4901 CAPABILITY is a list whose first element is a symbol representing the
4902 font format, one of x, opentype, truetype, type1, pcf, or bdf.
4903 The remaining elements describe the details of the font capabilities,
4904 as follows:
4906 If the font is OpenType font, the form of the list is
4907 \(opentype GSUB GPOS)
4908 where GSUB shows which "GSUB" features the font supports, and GPOS
4909 shows which "GPOS" features the font supports. Both GSUB and GPOS are
4910 lists of the form:
4911 \((SCRIPT (LANGSYS FEATURE ...) ...) ...)
4913 where
4914 SCRIPT is a symbol representing OpenType script tag.
4915 LANGSYS is a symbol representing OpenType langsys tag, or nil
4916 representing the default langsys.
4917 FEATURE is a symbol representing OpenType feature tag.
4919 If the font is not an OpenType font, there are no elements
4920 in CAPABILITY except the font format symbol.
4922 If the named font is not yet loaded, return nil. */)
4923 (Lisp_Object name, Lisp_Object frame)
4925 struct frame *f;
4926 struct font *font;
4927 Lisp_Object info;
4928 Lisp_Object font_object;
4930 if (! FONTP (name))
4931 CHECK_STRING (name);
4932 f = decode_window_system_frame (frame);
4934 if (STRINGP (name))
4936 int fontset = fs_query_fontset (name, 0);
4938 if (fontset >= 0)
4939 name = fontset_ascii (fontset);
4940 font_object = font_open_by_name (f, name);
4942 else if (FONT_OBJECT_P (name))
4943 font_object = name;
4944 else if (FONT_ENTITY_P (name))
4945 font_object = font_open_entity (f, name, 0);
4946 else
4948 struct face *face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
4949 Lisp_Object entity = font_matching_entity (f, face->lface, name);
4951 font_object = ! NILP (entity) ? font_open_entity (f, entity, 0) : Qnil;
4953 if (NILP (font_object))
4954 return Qnil;
4955 font = XFONT_OBJECT (font_object);
4957 info = make_uninit_vector (14);
4958 ASET (info, 0, AREF (font_object, FONT_NAME_INDEX));
4959 ASET (info, 1, AREF (font_object, FONT_FULLNAME_INDEX));
4960 ASET (info, 2, make_number (font->pixel_size));
4961 ASET (info, 3, make_number (font->height));
4962 ASET (info, 4, make_number (font->baseline_offset));
4963 ASET (info, 5, make_number (font->relative_compose));
4964 ASET (info, 6, make_number (font->default_ascent));
4965 ASET (info, 7, make_number (font->max_width));
4966 ASET (info, 8, make_number (font->ascent));
4967 ASET (info, 9, make_number (font->descent));
4968 ASET (info, 10, make_number (font->space_width));
4969 ASET (info, 11, make_number (font->average_width));
4970 ASET (info, 12, AREF (font_object, FONT_FILE_INDEX));
4971 if (font->driver->otf_capability)
4972 ASET (info, 13, Fcons (Qopentype, font->driver->otf_capability (font)));
4973 else
4974 ASET (info, 13, Qnil);
4976 #if 0
4977 /* As font_object is still in FONT_OBJLIST of the entity, we can't
4978 close it now. Perhaps, we should manage font-objects
4979 by `reference-count'. */
4980 font_close_object (f, font_object);
4981 #endif
4982 return info;
4984 #endif
4987 #define BUILD_STYLE_TABLE(TBL) build_style_table (TBL, ARRAYELTS (TBL))
4989 static Lisp_Object
4990 build_style_table (const struct table_entry *entry, int nelement)
4992 int i, j;
4993 Lisp_Object table, elt;
4995 table = make_uninit_vector (nelement);
4996 for (i = 0; i < nelement; i++)
4998 for (j = 0; entry[i].names[j]; j++);
4999 elt = Fmake_vector (make_number (j + 1), Qnil);
5000 ASET (elt, 0, make_number (entry[i].numeric));
5001 for (j = 0; entry[i].names[j]; j++)
5002 ASET (elt, j + 1, intern_c_string (entry[i].names[j]));
5003 ASET (table, i, elt);
5005 return table;
5008 /* The deferred font-log data of the form [ACTION ARG RESULT].
5009 If ACTION is not nil, that is added to the log when font_add_log is
5010 called next time. At that time, ACTION is set back to nil. */
5011 static Lisp_Object Vfont_log_deferred;
5013 /* Prepend the font-related logging data in Vfont_log if it is not
5014 t. ACTION describes a kind of font-related action (e.g. listing,
5015 opening), ARG is the argument for the action, and RESULT is the
5016 result of the action. */
5017 void
5018 font_add_log (const char *action, Lisp_Object arg, Lisp_Object result)
5020 Lisp_Object val;
5021 int i;
5023 if (EQ (Vfont_log, Qt))
5024 return;
5025 if (STRINGP (AREF (Vfont_log_deferred, 0)))
5027 char *str = SSDATA (AREF (Vfont_log_deferred, 0));
5029 ASET (Vfont_log_deferred, 0, Qnil);
5030 font_add_log (str, AREF (Vfont_log_deferred, 1),
5031 AREF (Vfont_log_deferred, 2));
5034 if (FONTP (arg))
5036 Lisp_Object tail, elt;
5037 AUTO_STRING (equal, "=");
5039 val = Ffont_xlfd_name (arg, Qt);
5040 for (tail = AREF (arg, FONT_EXTRA_INDEX); CONSP (tail);
5041 tail = XCDR (tail))
5043 elt = XCAR (tail);
5044 if (EQ (XCAR (elt), QCscript)
5045 && SYMBOLP (XCDR (elt)))
5046 val = concat3 (val, SYMBOL_NAME (QCscript),
5047 concat2 (equal, SYMBOL_NAME (XCDR (elt))));
5048 else if (EQ (XCAR (elt), QClang)
5049 && SYMBOLP (XCDR (elt)))
5050 val = concat3 (val, SYMBOL_NAME (QClang),
5051 concat2 (equal, SYMBOL_NAME (XCDR (elt))));
5052 else if (EQ (XCAR (elt), QCotf)
5053 && CONSP (XCDR (elt)) && SYMBOLP (XCAR (XCDR (elt))))
5054 val = concat3 (val, SYMBOL_NAME (QCotf),
5055 concat2 (equal, SYMBOL_NAME (XCAR (XCDR (elt)))));
5057 arg = val;
5060 if (CONSP (result)
5061 && VECTORP (XCAR (result))
5062 && ASIZE (XCAR (result)) > 0
5063 && FONTP (AREF (XCAR (result), 0)))
5064 result = font_vconcat_entity_vectors (result);
5065 if (FONTP (result))
5067 val = Ffont_xlfd_name (result, Qt);
5068 if (! FONT_SPEC_P (result))
5070 AUTO_STRING (colon, ":");
5071 val = concat3 (SYMBOL_NAME (AREF (result, FONT_TYPE_INDEX)),
5072 colon, val);
5074 result = val;
5076 else if (CONSP (result))
5078 Lisp_Object tail;
5079 result = Fcopy_sequence (result);
5080 for (tail = result; CONSP (tail); tail = XCDR (tail))
5082 val = XCAR (tail);
5083 if (FONTP (val))
5084 val = Ffont_xlfd_name (val, Qt);
5085 XSETCAR (tail, val);
5088 else if (VECTORP (result))
5090 result = Fcopy_sequence (result);
5091 for (i = 0; i < ASIZE (result); i++)
5093 val = AREF (result, i);
5094 if (FONTP (val))
5095 val = Ffont_xlfd_name (val, Qt);
5096 ASET (result, i, val);
5099 Vfont_log = Fcons (list3 (intern (action), arg, result), Vfont_log);
5102 /* Record a font-related logging data to be added to Vfont_log when
5103 font_add_log is called next time. ACTION, ARG, RESULT are the same
5104 as font_add_log. */
5106 void
5107 font_deferred_log (const char *action, Lisp_Object arg, Lisp_Object result)
5109 if (EQ (Vfont_log, Qt))
5110 return;
5111 ASET (Vfont_log_deferred, 0, build_string (action));
5112 ASET (Vfont_log_deferred, 1, arg);
5113 ASET (Vfont_log_deferred, 2, result);
5116 void
5117 syms_of_font (void)
5119 sort_shift_bits[FONT_TYPE_INDEX] = 0;
5120 sort_shift_bits[FONT_SLANT_INDEX] = 2;
5121 sort_shift_bits[FONT_WEIGHT_INDEX] = 9;
5122 sort_shift_bits[FONT_SIZE_INDEX] = 16;
5123 sort_shift_bits[FONT_WIDTH_INDEX] = 23;
5124 /* Note that the other elements in sort_shift_bits are not used. */
5126 staticpro (&font_charset_alist);
5127 font_charset_alist = Qnil;
5129 DEFSYM (Qopentype, "opentype");
5131 /* Important character set symbols. */
5132 DEFSYM (Qascii_0, "ascii-0");
5133 DEFSYM (Qiso8859_1, "iso8859-1");
5134 DEFSYM (Qiso10646_1, "iso10646-1");
5135 DEFSYM (Qunicode_bmp, "unicode-bmp");
5136 DEFSYM (Qunicode_sip, "unicode-sip");
5138 /* Unicode category `Cf'. */
5139 DEFSYM (QCf, "Cf");
5141 /* Symbols representing keys of font extra info. */
5142 DEFSYM (QCotf, ":otf");
5143 DEFSYM (QClang, ":lang");
5144 DEFSYM (QCscript, ":script");
5145 DEFSYM (QCantialias, ":antialias");
5146 DEFSYM (QCfoundry, ":foundry");
5147 DEFSYM (QCadstyle, ":adstyle");
5148 DEFSYM (QCregistry, ":registry");
5149 DEFSYM (QCspacing, ":spacing");
5150 DEFSYM (QCdpi, ":dpi");
5151 DEFSYM (QCscalable, ":scalable");
5152 DEFSYM (QCavgwidth, ":avgwidth");
5153 DEFSYM (QCfont_entity, ":font-entity");
5154 DEFSYM (QCfc_unknown_spec, ":fc-unknown-spec");
5156 /* Symbols representing values of font spacing property. */
5157 DEFSYM (Qc, "c");
5158 DEFSYM (Qm, "m");
5159 DEFSYM (Qp, "p");
5160 DEFSYM (Qd, "d");
5162 /* Special ADSTYLE properties to avoid fonts used for Latin
5163 characters; used in xfont.c and ftfont.c. */
5164 DEFSYM (Qja, "ja");
5165 DEFSYM (Qko, "ko");
5167 DEFSYM (QCuser_spec, "user-spec");
5169 staticpro (&scratch_font_spec);
5170 scratch_font_spec = Ffont_spec (0, NULL);
5171 staticpro (&scratch_font_prefer);
5172 scratch_font_prefer = Ffont_spec (0, NULL);
5174 staticpro (&Vfont_log_deferred);
5175 Vfont_log_deferred = Fmake_vector (make_number (3), Qnil);
5177 #if 0
5178 #ifdef HAVE_LIBOTF
5179 staticpro (&otf_list);
5180 otf_list = Qnil;
5181 #endif /* HAVE_LIBOTF */
5182 #endif /* 0 */
5184 defsubr (&Sfontp);
5185 defsubr (&Sfont_spec);
5186 defsubr (&Sfont_get);
5187 #ifdef HAVE_WINDOW_SYSTEM
5188 defsubr (&Sfont_face_attributes);
5189 #endif
5190 defsubr (&Sfont_put);
5191 defsubr (&Slist_fonts);
5192 defsubr (&Sfont_family_list);
5193 defsubr (&Sfind_font);
5194 defsubr (&Sfont_xlfd_name);
5195 defsubr (&Sclear_font_cache);
5196 defsubr (&Sfont_shape_gstring);
5197 defsubr (&Sfont_variation_glyphs);
5198 #if 0
5199 defsubr (&Sfont_drive_otf);
5200 defsubr (&Sfont_otf_alternates);
5201 #endif /* 0 */
5203 #ifdef FONT_DEBUG
5204 defsubr (&Sopen_font);
5205 defsubr (&Sclose_font);
5206 defsubr (&Squery_font);
5207 defsubr (&Sfont_get_glyphs);
5208 defsubr (&Sfont_match_p);
5209 defsubr (&Sfont_at);
5210 #if 0
5211 defsubr (&Sdraw_string);
5212 #endif
5213 defsubr (&Sframe_font_cache);
5214 #endif /* FONT_DEBUG */
5215 #ifdef HAVE_WINDOW_SYSTEM
5216 defsubr (&Sfont_info);
5217 #endif
5219 DEFVAR_LISP ("font-encoding-alist", Vfont_encoding_alist,
5220 doc: /*
5221 Alist of fontname patterns vs the corresponding encoding and repertory info.
5222 Each element looks like (REGEXP . (ENCODING . REPERTORY)),
5223 where ENCODING is a charset or a char-table,
5224 and REPERTORY is a charset, a char-table, or nil.
5226 If ENCODING and REPERTORY are the same, the element can have the form
5227 \(REGEXP . ENCODING).
5229 ENCODING is for converting a character to a glyph code of the font.
5230 If ENCODING is a charset, encoding a character by the charset gives
5231 the corresponding glyph code. If ENCODING is a char-table, looking up
5232 the table by a character gives the corresponding glyph code.
5234 REPERTORY specifies a repertory of characters supported by the font.
5235 If REPERTORY is a charset, all characters belonging to the charset are
5236 supported. If REPERTORY is a char-table, all characters who have a
5237 non-nil value in the table are supported. If REPERTORY is nil, Emacs
5238 gets the repertory information by an opened font and ENCODING. */);
5239 Vfont_encoding_alist = Qnil;
5241 /* FIXME: These 3 vars are not quite what they appear: setq on them
5242 won't have any effect other than disconnect them from the style
5243 table used by the font display code. So we make them read-only,
5244 to avoid this confusing situation. */
5246 DEFVAR_LISP_NOPRO ("font-weight-table", Vfont_weight_table,
5247 doc: /* Vector of valid font weight values.
5248 Each element has the form:
5249 [NUMERIC-VALUE SYMBOLIC-NAME ALIAS-NAME ...]
5250 NUMERIC-VALUE is an integer, and SYMBOLIC-NAME and ALIAS-NAME are symbols. */);
5251 Vfont_weight_table = BUILD_STYLE_TABLE (weight_table);
5252 XSYMBOL (intern_c_string ("font-weight-table"))->constant = 1;
5254 DEFVAR_LISP_NOPRO ("font-slant-table", Vfont_slant_table,
5255 doc: /* Vector of font slant symbols vs the corresponding numeric values.
5256 See `font-weight-table' for the format of the vector. */);
5257 Vfont_slant_table = BUILD_STYLE_TABLE (slant_table);
5258 XSYMBOL (intern_c_string ("font-slant-table"))->constant = 1;
5260 DEFVAR_LISP_NOPRO ("font-width-table", Vfont_width_table,
5261 doc: /* Alist of font width symbols vs the corresponding numeric values.
5262 See `font-weight-table' for the format of the vector. */);
5263 Vfont_width_table = BUILD_STYLE_TABLE (width_table);
5264 XSYMBOL (intern_c_string ("font-width-table"))->constant = 1;
5266 staticpro (&font_style_table);
5267 font_style_table = make_uninit_vector (3);
5268 ASET (font_style_table, 0, Vfont_weight_table);
5269 ASET (font_style_table, 1, Vfont_slant_table);
5270 ASET (font_style_table, 2, Vfont_width_table);
5272 DEFVAR_LISP ("font-log", Vfont_log, doc: /*
5273 *Logging list of font related actions and results.
5274 The value t means to suppress the logging.
5275 The initial value is set to nil if the environment variable
5276 EMACS_FONT_LOG is set. Otherwise, it is set to t. */);
5277 Vfont_log = Qnil;
5279 #ifdef HAVE_WINDOW_SYSTEM
5280 #ifdef HAVE_FREETYPE
5281 syms_of_ftfont ();
5282 #ifdef HAVE_X_WINDOWS
5283 #ifdef USE_CAIRO
5284 syms_of_ftcrfont ();
5285 #else
5286 syms_of_xfont ();
5287 syms_of_ftxfont ();
5288 #ifdef HAVE_XFT
5289 syms_of_xftfont ();
5290 #endif /* HAVE_XFT */
5291 #endif /* not USE_CAIRO */
5292 #endif /* HAVE_X_WINDOWS */
5293 #else /* not HAVE_FREETYPE */
5294 #ifdef HAVE_X_WINDOWS
5295 syms_of_xfont ();
5296 #endif /* HAVE_X_WINDOWS */
5297 #endif /* not HAVE_FREETYPE */
5298 #ifdef HAVE_BDFFONT
5299 syms_of_bdffont ();
5300 #endif /* HAVE_BDFFONT */
5301 #ifdef HAVE_NTGUI
5302 syms_of_w32font ();
5303 #endif /* HAVE_NTGUI */
5304 #endif /* HAVE_WINDOW_SYSTEM */
5307 void
5308 init_font (void)
5310 Vfont_log = egetenv ("EMACS_FONT_LOG") ? Qnil : Qt;