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