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