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