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