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