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