Mercurial > hg > xemacs-beta
annotate src/objects-xlike-inc.c @ 4914:1628e3b9601a
When aborting due to unknown opcode, output more descriptive msg
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-02-02 Ben Wing <ben@xemacs.org>
* bytecode.c (execute_rare_opcode):
* lisp.h (abort_with_msg): New.
When aborting due to unknown opcode, output more descriptive msg.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Tue, 02 Feb 2010 15:19:15 -0600 |
parents | b3ce27ca7647 |
children | e813cf16c015 |
rev | line source |
---|---|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
1 /* Common code between X and GTK -- fonts and colors. |
3659 | 2 Copyright (C) 1991-5, 1997 Free Software Foundation, Inc. |
3 Copyright (C) 1995 Sun Microsystems, Inc. | |
4 Copyright (C) 1996, 2001, 2002, 2003 Ben Wing. | |
5 | |
6 This file is part of XEmacs. | |
7 | |
8 XEmacs is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
10 Free Software Foundation; either version 2, or (at your option) any | |
11 later version. | |
12 | |
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
19 along with XEmacs; see the file COPYING. If not, write to | |
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
21 Boston, MA 02111-1307, USA. */ | |
22 | |
23 /* Synched up with: Not in FSF. */ | |
24 | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
25 /* Before including this file, you need to define either THIS_IS_X or |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
26 THIS_IS_GTK. */ |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
27 |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
28 /* See comment at top of console-xlike-inc.h for an explanation of |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
29 how this file works. */ |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
30 |
3659 | 31 /* Pango is ready for prime-time now, as far as I understand it. The GTK |
32 people should be using that. Oh well. (Aidan Kehoe, Sat Nov 4 12:41:12 | |
33 CET 2006) */ | |
34 | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
35 #include "console-xlike-inc.h" |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
36 |
3659 | 37 #if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901) |
38 | |
39 #ifdef DEBUG_XEMACS | |
40 # define DEBUG_OBJECTS(FORMAT, ...) \ | |
41 do { if (debug_x_objects) stderr_out(FORMAT, __VA_ARGS__); } while (0) | |
42 #else /* DEBUG_XEMACS */ | |
43 # define DEBUG_OBJECTS(format, ...) | |
44 #endif /* DEBUG_XEMACS */ | |
45 | |
46 #elif defined(__GNUC__) | |
47 | |
48 #ifdef DEBUG_XEMACS | |
49 # define DEBUG_OBJECTS(format, args...) \ | |
50 do { if (debug_x_objects) stderr_out(format, args ); } while (0) | |
51 #else /* DEBUG_XEMACS */ | |
52 # define DEBUG_OBJECTS(format, args...) | |
53 #endif /* DEBUG_XEMACS */ | |
54 | |
55 #else /* defined(__STDC_VERSION__) [...] */ | |
56 # define DEBUG_OBJECTS (void) | |
57 #endif | |
58 | |
59 #ifdef MULE | |
60 | |
61 /* For some code it's reasonable to have only one copy and conditionalize | |
62 at run-time. For other code it isn't. */ | |
63 | |
64 static int | |
65 count_hyphens(const Ibyte *str, Bytecount length, Ibyte **last_hyphen) | |
66 { | |
67 int hyphen_count = 0; | |
68 const Ibyte *hyphening = str; | |
69 const Ibyte *new_hyphening; | |
70 | |
71 for (hyphen_count = 0; | |
4124 | 72 NULL != (new_hyphening = (Ibyte *) memchr((const void *)hyphening, '-', length)); |
3659 | 73 hyphen_count++) |
74 { | |
75 ++new_hyphening; | |
76 length -= new_hyphening - hyphening; | |
77 hyphening = new_hyphening; | |
78 } | |
79 | |
80 if (NULL != last_hyphen) | |
81 { | |
82 *last_hyphen = (Ibyte *)hyphening; | |
83 } | |
84 | |
85 return hyphen_count; | |
86 } | |
87 | |
88 static int | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
89 XFUN (font_spec_matches_charset) (struct device * USED_IF_XFT (d), |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
90 Lisp_Object charset, |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
91 const Ibyte *nonreloc, Lisp_Object reloc, |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
92 Bytecount offset, Bytecount length, |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
93 enum font_specifier_matchspec_stages stage) |
3659 | 94 { |
95 Lisp_Object registries = Qnil; | |
96 long i, registries_len; | |
97 const Ibyte *the_nonreloc; | |
98 Bytecount the_length; | |
99 | |
100 the_nonreloc = nonreloc; | |
101 the_length = length; | |
102 | |
103 if (!the_nonreloc) | |
104 the_nonreloc = XSTRING_DATA (reloc); | |
105 fixup_internal_substring (nonreloc, reloc, offset, &the_length); | |
106 the_nonreloc += offset; | |
107 | |
108 #ifdef USE_XFT | |
109 if (stage) | |
110 { | |
111 Display *dpy = DEVICE_X_DISPLAY (d); | |
112 Extbyte *extname; | |
113 XftFont *rf; | |
114 const Ibyte *the_nonreloc; | |
115 | |
116 if (!NILP(reloc)) | |
117 { | |
118 the_nonreloc = XSTRING_DATA (reloc); | |
119 LISP_STRING_TO_EXTERNAL (reloc, extname, Qx_font_name_encoding); | |
120 rf = xft_open_font_by_name (dpy, extname); | |
121 return 0; /* #### maybe this will compile and run ;) */ | |
122 /* Jesus, Stephen, what the fuck? */ | |
123 } | |
124 } | |
125 #endif | |
126 | |
127 /* Hmm, this smells bad. */ | |
4353
4143b78d0df0
Merge an old patch of Ben's, involving font instantiation and charsets.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4124
diff
changeset
|
128 if (NILP (charset)) |
3659 | 129 return 1; |
130 | |
131 /* Hack! Short font names don't have the registry in them, | |
132 so we just assume the user knows what they're doing in the | |
133 case of ASCII. For other charsets, you gotta give the | |
134 long form; sorry buster. | |
135 #### FMH: this screws fontconfig/Xft? | |
136 STRATEGY: use fontconfig's ability to hack languages and character | |
137 sets (lang and charset properties). | |
138 #### Maybe we can use the fontconfig model to eliminate the difference | |
139 between faces and fonts? No - it looks like that would be an abuse | |
140 (fontconfig doesn't know about colors, although Xft does). | |
141 */ | |
142 if (EQ (charset, Vcharset_ascii) && | |
143 (!memchr (the_nonreloc, '*', the_length)) | |
144 && (5 > (count_hyphens(the_nonreloc, the_length, NULL)))) | |
145 { | |
146 return 1; | |
147 } | |
148 | |
149 if (final == stage) | |
150 { | |
151 registries = Qunicode_registries; | |
152 } | |
153 else if (initial == stage) | |
154 { | |
155 registries = XCHARSET_REGISTRIES (charset); | |
156 if (NILP(registries)) | |
157 { | |
158 return 0; | |
159 } | |
160 } | |
161 else assert(0); | |
162 | |
163 CHECK_VECTOR (registries); | |
164 registries_len = XVECTOR_LENGTH(registries); | |
165 | |
166 for (i = 0; i < registries_len; ++i) | |
167 { | |
168 if (!(STRINGP(XVECTOR_DATA(registries)[i])) | |
169 || (XSTRING_LENGTH(XVECTOR_DATA(registries)[i]) > the_length)) | |
170 { | |
171 continue; | |
172 } | |
173 | |
174 /* Check if the font spec ends in the registry specified. X11 says | |
175 this comparison is case insensitive: XLFD, section 3.11: | |
176 | |
177 "Alphabetic case distinctions are allowed but are for human | |
178 readability concerns only. Conforming X servers will perform | |
179 matching on font name query or open requests independent of case." */ | |
180 if (0 == qxestrcasecmp(XSTRING_DATA(XVECTOR_DATA(registries)[i]), | |
181 the_nonreloc + (the_length - | |
182 XSTRING_LENGTH | |
183 (XVECTOR_DATA(registries)[i])))) | |
184 { | |
185 return 1; | |
186 } | |
187 } | |
188 return 0; | |
189 } | |
190 | |
191 static Lisp_Object | |
192 xlistfonts_checking_charset (Lisp_Object device, const Extbyte *xlfd, | |
193 Lisp_Object charset, | |
194 enum font_specifier_matchspec_stages stage) | |
195 { | |
196 Extbyte **names; | |
197 Lisp_Object result = Qnil; | |
198 int count = 0, i; | |
199 DECLARE_EISTRING(ei_single_result); | |
200 | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
201 names = XListFonts (GET_XLIKE_DISPLAY (XDEVICE (device)), |
3659 | 202 xlfd, MAX_FONT_COUNT, &count); |
203 | |
204 for (i = 0; i < count; ++i) | |
205 { | |
206 eireset(ei_single_result); | |
207 eicpy_ext(ei_single_result, names[i], Qx_font_name_encoding); | |
208 | |
209 if (DEVMETH_OR_GIVEN(XDEVICE (device), font_spec_matches_charset, | |
210 (XDEVICE (device), charset, | |
211 eidata(ei_single_result), Qnil, 0, | |
212 -1, stage), 0)) | |
213 { | |
214 result = eimake_string(ei_single_result); | |
215 DEBUG_OBJECTS ("in xlistfonts_checking_charset, returning %s\n", | |
216 eidata(ei_single_result)); | |
217 break; | |
218 } | |
219 } | |
220 | |
221 if (names) | |
222 { | |
223 XFreeFontNames (names); | |
224 } | |
225 | |
226 return result; | |
227 } | |
228 | |
229 #ifdef USE_XFT | |
230 /* #### debug functions: find a better place for us */ | |
231 const char *FcResultToString (FcResult r); | |
232 const char * | |
233 FcResultToString (FcResult r) | |
234 { | |
235 static char buffer[256]; | |
236 switch (r) | |
237 { | |
238 case FcResultMatch: | |
239 return "FcResultMatch"; | |
240 case FcResultNoMatch: | |
241 return "FcResultNoMatch"; | |
242 case FcResultTypeMismatch: | |
243 return "FcResultTypeMismatch"; | |
244 case FcResultNoId: | |
245 return "FcResultNoId"; | |
246 default: | |
247 snprintf (buffer, 255, "FcResultUndocumentedValue (%d)", r); | |
248 return buffer; | |
249 } | |
250 } | |
251 | |
252 const char *FcTypeOfValueToString (FcValue v); | |
253 const char * | |
254 FcTypeOfValueToString (FcValue v) | |
255 { | |
256 static char buffer[256]; | |
257 switch (v.type) | |
258 { | |
259 case FcTypeMatrix: | |
260 return "FcTypeMatrix"; | |
261 case FcTypeString: | |
262 return "FcTypeString"; | |
263 case FcTypeVoid: | |
264 return "FcTypeVoid"; | |
265 case FcTypeDouble: | |
266 return "FcTypeDouble"; | |
267 case FcTypeInteger: | |
268 return "FcTypeInteger"; | |
269 case FcTypeBool: | |
270 return "FcTypeBool"; | |
271 case FcTypeCharSet: | |
272 return "FcTypeCharSet"; | |
273 case FcTypeLangSet: | |
274 return "FcTypeLangSet"; | |
275 /* #### There is no union member of this type, but there are void* and | |
276 FcPattern* members, as of fontconfig.h FC_VERSION 10002 */ | |
277 case FcTypeFTFace: | |
278 return "FcTypeFTFace"; | |
279 default: | |
280 snprintf (buffer, 255, "FcTypeUndocumentedType (%d)", v.type); | |
281 return buffer; | |
282 } | |
283 } | |
284 | |
285 static FcCharSet * | |
286 mule_to_fc_charset (Lisp_Object cs) | |
287 { | |
288 int ucode, i, j; | |
289 FcCharSet *fccs; | |
290 | |
291 CHECK_CHARSET (cs); | |
292 fccs = FcCharSetCreate (); | |
293 /* #### do we also need to deal with 94 vs. 96 charsets? | |
294 ie, how are SP and DEL treated in ASCII? non-graphic should return -1 */ | |
295 if (1 == XCHARSET_DIMENSION (cs)) | |
296 /* Unicode tables are indexed by offsets from ASCII SP, not by ASCII */ | |
297 for (i = 0; i < 96; i++) | |
298 { | |
299 ucode = ((int *) XCHARSET_TO_UNICODE_TABLE (cs))[i]; | |
300 if (ucode >= 0) | |
301 /* #### should check for allocation failure */ | |
302 FcCharSetAddChar (fccs, (FcChar32) ucode); | |
303 } | |
304 else if (2 == XCHARSET_DIMENSION (cs)) | |
305 /* Unicode tables are indexed by offsets from ASCII SP, not by ASCII */ | |
306 for (i = 0; i < 96; i++) | |
307 for (j = 0; j < 96; j++) | |
308 { | |
309 ucode = ((int **) XCHARSET_TO_UNICODE_TABLE (cs))[i][j]; | |
310 if (ucode >= 0) | |
311 /* #### should check for allocation failure */ | |
312 FcCharSetAddChar (fccs, (FcChar32) ucode); | |
313 } | |
314 else | |
315 { | |
316 FcCharSetDestroy (fccs); | |
317 fccs = NULL; | |
318 } | |
319 return fccs; | |
320 } | |
321 | |
322 struct charset_reporter { | |
323 Lisp_Object *charset; | |
324 /* This is a debug facility, require ASCII. */ | |
325 Extbyte *language; /* ASCII, please */ | |
4758
75975fd0b7fc
Implement more of the fontconfig API.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4757
diff
changeset
|
326 /* Technically this is FcChar8, but fsckin' GCC 4 bitches. |
75975fd0b7fc
Implement more of the fontconfig API.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4757
diff
changeset
|
327 RFC 3066 is a combination of ISO 639 and ISO 3166. */ |
3659 | 328 Extbyte *rfc3066; /* ASCII, please */ |
329 }; | |
330 | |
331 static struct charset_reporter charset_table[] = | |
332 { | |
333 /* #### It's my branch, my favorite charsets get checked first! | |
334 That's a joke, Son. | |
335 Ie, I don't know what I'm doing, so my charsets first is as good as | |
336 any other arbitrary order. If you have a better idea, speak up! */ | |
337 { &Vcharset_ascii, "English", "en" }, | |
338 { &Vcharset_japanese_jisx0208, "Japanese", "ja" }, | |
339 { &Vcharset_japanese_jisx0212, "Japanese", "ja" }, | |
340 { &Vcharset_katakana_jisx0201, "Japanese", "ja" }, | |
341 { &Vcharset_latin_jisx0201, "Japanese", "ja" }, | |
342 { &Vcharset_japanese_jisx0208_1978, "Japanese", "ja" }, | |
343 { &Vcharset_greek_iso8859_7, "Greek", "el" }, | |
344 /* #### all the Chinese need checking | |
345 Damn the blood-sucking ISO anyway. */ | |
4756
5d67242595a8
Update charset_table used by Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4494
diff
changeset
|
346 { &Vcharset_chinese_gb2312, "simplified Chinese", "zh-cn" }, |
3659 | 347 { &Vcharset_korean_ksc5601, "Korean", "ko" }, |
4756
5d67242595a8
Update charset_table used by Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4494
diff
changeset
|
348 { &Vcharset_chinese_cns11643_1, "traditional Chinese", "zh-tw" }, |
5d67242595a8
Update charset_table used by Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4494
diff
changeset
|
349 { &Vcharset_chinese_cns11643_2, "traditional Chinese", "zh-tw" }, |
5d67242595a8
Update charset_table used by Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4494
diff
changeset
|
350 /* #### not obvious how to handle these |
5d67242595a8
Update charset_table used by Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4494
diff
changeset
|
351 We could (for experimental purposes) make the last element into |
5d67242595a8
Update charset_table used by Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4494
diff
changeset
|
352 an array of ISO 639 codes, and check for all of them. If a font |
5d67242595a8
Update charset_table used by Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4494
diff
changeset
|
353 provides some but not others, warn. */ |
3659 | 354 { &Vcharset_latin_iso8859_1, NULL, NULL }, |
355 { &Vcharset_latin_iso8859_2, NULL, NULL }, | |
356 { &Vcharset_latin_iso8859_3, NULL, NULL }, | |
357 { &Vcharset_latin_iso8859_4, NULL, NULL }, | |
358 { &Vcharset_latin_iso8859_9, NULL, NULL }, | |
359 { &Vcharset_latin_iso8859_15, NULL, NULL }, | |
4756
5d67242595a8
Update charset_table used by Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4494
diff
changeset
|
360 { &Vcharset_thai_tis620, "Thai", "th" }, |
5d67242595a8
Update charset_table used by Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4494
diff
changeset
|
361 /* We don't have an arabic charset. bidi issues, I guess? */ |
5d67242595a8
Update charset_table used by Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4494
diff
changeset
|
362 /* { &Vcharset_arabic_iso8859_6, "Arabic", "ar" }, */ |
3659 | 363 { &Vcharset_hebrew_iso8859_8, "Hebrew", "he" }, |
4756
5d67242595a8
Update charset_table used by Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4494
diff
changeset
|
364 /* #### probably close enough for Ukraine? */ |
5d67242595a8
Update charset_table used by Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4494
diff
changeset
|
365 { &Vcharset_cyrillic_iso8859_5, "Russian", "ru" }, |
3659 | 366 /* #### these probably are not quite right */ |
4756
5d67242595a8
Update charset_table used by Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4494
diff
changeset
|
367 { &Vcharset_chinese_big5_1, "traditional Chinese", "zh-tw" }, |
5d67242595a8
Update charset_table used by Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4494
diff
changeset
|
368 { &Vcharset_chinese_big5_2, "traditional Chinese", "zh-tw" }, |
3659 | 369 { NULL, NULL, NULL } |
370 }; | |
371 | |
372 /* Choose appropriate font name for debug messages. | |
373 Use only in the top half of next function (enforced with #undef). */ | |
374 #define DECLARE_DEBUG_FONTNAME(__xemacs_name) \ | |
375 Eistring *__xemacs_name; \ | |
376 do \ | |
377 { \ | |
378 __xemacs_name = debug_xft > 2 ? eistr_fullname \ | |
379 : debug_xft > 1 ? eistr_longname \ | |
380 : eistr_shortname; \ | |
381 } while (0) | |
382 | |
383 static Lisp_Object | |
384 xft_find_charset_font (Lisp_Object font, Lisp_Object charset, | |
385 enum font_specifier_matchspec_stages stage) | |
386 { | |
387 const Extbyte *patternext; | |
388 Lisp_Object result = Qnil; | |
389 | |
390 /* #### with Xft need to handle second stage here -- sjt | |
391 Hm. Or maybe not. That would be cool. :-) */ | |
392 if (stage) | |
393 return Qnil; | |
394 | |
395 /* Fontconfig converts all FreeType names to UTF-8 before passing them | |
396 back to callers---see fcfreetype.c (FcFreeTypeQuery). | |
397 I don't believe this is documented. */ | |
398 | |
399 DEBUG_XFT1 (1, "confirming charset for font instance %s\n", | |
400 XSTRING_DATA(font)); | |
401 | |
402 /* #### this looks like a fair amount of work, but the basic design | |
403 has never been rethought, and it should be | |
404 | |
405 what really should happen here is that we use FcFontSort (FcFontList?) | |
406 to get a list of matching fonts, then pick the first (best) one that | |
407 gives language or repertoire coverage. | |
408 */ | |
409 | |
410 FcInit (); /* No-op if already initialized. | |
411 In fontconfig 2.3.2, this cannot return | |
412 failure, but that looks like a bug. We | |
413 check for it with FcGetCurrentConfig(), | |
414 which *can* fail. */ | |
4758
75975fd0b7fc
Implement more of the fontconfig API.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4757
diff
changeset
|
415 if (!FcConfigGetCurrent()) |
3659 | 416 stderr_out ("Failed fontconfig initialization\n"); |
417 else | |
418 { | |
419 FcPattern *fontxft; /* long-lived, freed at end of this block */ | |
420 FcResult fcresult; | |
421 FcConfig *fcc; | |
422 FcChar8 *lang = (FcChar8 *) "en"; /* #### fix this bogus hack! */ | |
423 FcCharSet *fccs = NULL; | |
424 DECLARE_EISTRING (eistr_shortname); /* user-friendly nickname */ | |
425 DECLARE_EISTRING (eistr_longname); /* omit FC_LANG and FC_CHARSET */ | |
426 DECLARE_EISTRING (eistr_fullname); /* everything */ | |
427 | |
428 LISP_STRING_TO_EXTERNAL (font, patternext, Qfc_font_name_encoding); | |
429 fcc = FcConfigGetCurrent (); | |
430 | |
431 /* parse the name, do the substitutions, and match the font */ | |
432 | |
433 { | |
434 FcPattern *p = FcNameParse ((FcChar8 *) patternext); | |
435 PRINT_XFT_PATTERN (3, "FcNameParse'ed name is %s\n", p); | |
436 /* #### Next two return FcBool, but what does the return mean? */ | |
437 /* The order is correct according the fontconfig docs. */ | |
438 FcConfigSubstitute (fcc, p, FcMatchPattern); | |
439 PRINT_XFT_PATTERN (2, "FcConfigSubstitute'ed name is %s\n", p); | |
440 FcDefaultSubstitute (p); | |
441 PRINT_XFT_PATTERN (3, "FcDefaultSubstitute'ed name is %s\n", p); | |
442 /* #### check fcresult of following match? */ | |
4809
0d3ccd5a2509
Initialize the result variable passed to FcFontMatch. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4758
diff
changeset
|
443 fcresult = FcResultMatch; |
3659 | 444 fontxft = FcFontMatch (fcc, p, &fcresult); |
4757
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
445 switch (fcresult) |
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
446 { |
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
447 /* case FcResultOutOfMemory: */ |
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
448 case FcResultNoMatch: |
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
449 case FcResultTypeMismatch: |
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
450 case FcResultNoId: |
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
451 break; |
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
452 case FcResultMatch: |
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
453 /* this prints the long fontconfig name */ |
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
454 PRINT_XFT_PATTERN (1, "FcFontMatch'ed name is %s\n", fontxft); |
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
455 break; |
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
456 } |
3659 | 457 FcPatternDestroy (p); |
458 } | |
459 | |
460 /* heuristic to give reasonable-length names for debug reports | |
461 | |
462 I considered #ifdef SUPPORT_FULL_FONTCONFIG_NAME etc but that's | |
463 pointless. We're just going to remove this code once the font/ | |
464 face refactoring is done, but until then it could be very useful. | |
465 */ | |
466 { | |
467 FcPattern *p = FcFontRenderPrepare (fcc, fontxft, fontxft); | |
4758
75975fd0b7fc
Implement more of the fontconfig API.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4757
diff
changeset
|
468 Extbyte *name; |
3659 | 469 |
470 /* full name, including language coverage and repertoire */ | |
4758
75975fd0b7fc
Implement more of the fontconfig API.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4757
diff
changeset
|
471 name = (Extbyte *) FcNameUnparse (p); |
4757
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
472 eicpy_ext (eistr_fullname, |
4758
75975fd0b7fc
Implement more of the fontconfig API.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4757
diff
changeset
|
473 (name ? name : "NOT FOUND"), |
4757
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
474 Qfc_font_name_encoding); |
4758
75975fd0b7fc
Implement more of the fontconfig API.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4757
diff
changeset
|
475 if (name) free (name); |
3659 | 476 |
477 /* long name, omitting coverage and repertoire, plus a number | |
478 of rarely useful properties */ | |
479 FcPatternDel (p, FC_CHARSET); | |
480 FcPatternDel (p, FC_LANG); | |
3841 | 481 #ifdef FC_WIDTH |
3659 | 482 FcPatternDel (p, FC_WIDTH); |
3841 | 483 #endif |
3659 | 484 FcPatternDel (p, FC_SPACING); |
485 FcPatternDel (p, FC_HINTING); | |
486 FcPatternDel (p, FC_VERTICAL_LAYOUT); | |
487 FcPatternDel (p, FC_AUTOHINT); | |
488 FcPatternDel (p, FC_GLOBAL_ADVANCE); | |
489 FcPatternDel (p, FC_INDEX); | |
490 FcPatternDel (p, FC_SCALE); | |
491 FcPatternDel (p, FC_FONTVERSION); | |
4758
75975fd0b7fc
Implement more of the fontconfig API.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4757
diff
changeset
|
492 name = (Extbyte *) FcNameUnparse (p); |
4757
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
493 eicpy_ext (eistr_longname, |
4758
75975fd0b7fc
Implement more of the fontconfig API.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4757
diff
changeset
|
494 (name ? name : "NOT FOUND"), |
4757
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
495 Qfc_font_name_encoding); |
4758
75975fd0b7fc
Implement more of the fontconfig API.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4757
diff
changeset
|
496 if (name) free (name); |
3659 | 497 |
498 /* nickname, just family and size, but | |
499 "family" names usually have style, slant, and weight */ | |
500 FcPatternDel (p, FC_FOUNDRY); | |
501 FcPatternDel (p, FC_STYLE); | |
502 FcPatternDel (p, FC_SLANT); | |
503 FcPatternDel (p, FC_WEIGHT); | |
504 FcPatternDel (p, FC_PIXEL_SIZE); | |
505 FcPatternDel (p, FC_OUTLINE); | |
506 FcPatternDel (p, FC_SCALABLE); | |
507 FcPatternDel (p, FC_DPI); | |
4758
75975fd0b7fc
Implement more of the fontconfig API.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4757
diff
changeset
|
508 name = (Extbyte *) FcNameUnparse (p); |
4757
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
509 eicpy_ext (eistr_shortname, |
4758
75975fd0b7fc
Implement more of the fontconfig API.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4757
diff
changeset
|
510 (name ? name : "NOT FOUND"), |
4757
a23ac8f90a49
Improve warning and error messages from Xft.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4756
diff
changeset
|
511 Qfc_font_name_encoding); |
4758
75975fd0b7fc
Implement more of the fontconfig API.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4757
diff
changeset
|
512 if (name) free (name); |
3659 | 513 |
514 FcPatternDestroy (p); | |
515 } | |
516 | |
517 /* The language approach may better in the long run, but we can't use | |
518 it based on Mule charsets; fontconfig doesn't provide a way to test | |
519 for unions of languages, etc. That will require support from the | |
520 text module. | |
521 | |
522 Optimization: cache the generated FcCharSet in the Mule charset. | |
523 Don't forget to destroy it if the Mule charset gets deallocated. */ | |
524 | |
525 { | |
526 /* This block possibly should be a function, but it generates | |
527 multiple values. I find the "pass an address to return the | |
528 value in" idiom opaque, so prefer a block. */ | |
529 struct charset_reporter *cr; | |
530 for (cr = charset_table; | |
531 cr->charset && !EQ (*(cr->charset), charset); | |
532 cr++) | |
533 ; | |
534 | |
535 if (cr->rfc3066) | |
536 { | |
537 DECLARE_DEBUG_FONTNAME (name); | |
538 CHECKING_LANG (0, eidata(name), cr->language); | |
539 lang = (FcChar8 *) cr->rfc3066; | |
540 } | |
541 else if (cr->charset) | |
542 { | |
543 /* what the hey, build 'em on the fly */ | |
544 /* #### in the case of error this could return NULL! */ | |
545 fccs = mule_to_fc_charset (charset); | |
546 lang = (FcChar8 *) XSTRING_DATA (XSYMBOL | |
547 (XCHARSET_NAME (charset))-> name); | |
548 } | |
549 else | |
550 { | |
551 /* OK, we fell off the end of the table */ | |
552 warn_when_safe_lispobj (intern ("xft"), intern ("alert"), | |
553 list2 (build_string ("unchecked charset"), | |
554 charset)); | |
555 /* default to "en" | |
556 #### THIS IS WRONG, WRONG, WRONG!! | |
557 It is why we never fall through to XLFD-checking. */ | |
558 } | |
559 | |
560 ASSERT_ASCTEXT_ASCII((Extbyte *) lang); | |
561 | |
562 if (fccs) | |
563 { | |
564 /* check for character set coverage */ | |
565 int i = 0; | |
566 FcCharSet *v; | |
567 FcResult r = FcPatternGetCharSet (fontxft, FC_CHARSET, i, &v); | |
568 | |
569 if (r == FcResultTypeMismatch) | |
570 { | |
571 DEBUG_XFT0 (0, "Unexpected type return in charset value\n"); | |
572 result = Qnil; | |
573 } | |
574 else if (r == FcResultMatch && FcCharSetIsSubset (fccs, v)) | |
575 { | |
576 /* The full pattern with the bitmap coverage is massively | |
577 unwieldy, but the shorter names are just *wrong*. We | |
578 should have the full thing internally as truename, and | |
579 filter stuff the client doesn't want to see on output. | |
580 Should we just store it into the truename right here? */ | |
581 DECLARE_DEBUG_FONTNAME (name); | |
582 DEBUG_XFT2 (0, "Xft font %s supports %s\n", | |
583 eidata(name), lang); | |
584 #ifdef RETURN_LONG_FONTCONFIG_NAMES | |
585 result = eimake_string(eistr_fullname); | |
586 #else | |
587 result = eimake_string(eistr_longname); | |
588 #endif | |
589 } | |
590 else | |
591 { | |
592 DECLARE_DEBUG_FONTNAME (name); | |
593 DEBUG_XFT2 (0, "Xft font %s doesn't support %s\n", | |
594 eidata(name), lang); | |
595 result = Qnil; | |
596 } | |
597 | |
598 /* clean up */ | |
599 FcCharSetDestroy (fccs); | |
600 } | |
601 else | |
602 { | |
603 /* check for language coverage */ | |
604 int i = 0; | |
605 FcValue v; | |
606 /* the main event */ | |
607 FcResult r = FcPatternGet (fontxft, FC_LANG, i, &v); | |
608 | |
609 if (r == FcResultMatch) | |
610 { | |
611 if (v.type != FcTypeLangSet) /* excessive paranoia */ | |
612 { | |
613 ASSERT_ASCTEXT_ASCII(FcTypeOfValueToString(v)); | |
614 /* Urk! Fall back and punt to core font. */ | |
615 DEBUG_XFT1 (0, "Unexpected type of lang value (%s)\n", | |
616 FcTypeOfValueToString (v)); | |
617 result = Qnil; | |
618 } | |
619 else if (FcLangSetHasLang (v.u.l, lang) != FcLangDifferentLang) | |
620 { | |
621 DECLARE_DEBUG_FONTNAME (name); | |
622 DEBUG_XFT2 (0, "Xft font %s supports %s\n", | |
623 eidata(name), lang); | |
624 #ifdef RETURN_LONG_FONTCONFIG_NAMES | |
625 result = eimake_string(eistr_fullname); | |
626 #else | |
627 result = eimake_string(eistr_longname); | |
628 #endif | |
629 } | |
630 else | |
631 { | |
632 DECLARE_DEBUG_FONTNAME (name); | |
633 DEBUG_XFT2 (0, "Xft font %s doesn't support %s\n", | |
634 eidata(name), lang); | |
635 result = Qnil; | |
636 } | |
637 } | |
638 else | |
639 { | |
640 ASSERT_ASCTEXT_ASCII(FcResultToString(r)); | |
641 DEBUG_XFT1 (0, "Getting lang: unexpected result=%s\n", | |
642 FcResultToString (r)); | |
643 result = Qnil; | |
644 } | |
645 } | |
646 | |
647 /* clean up and maybe return */ | |
648 FcPatternDestroy (fontxft); | |
649 if (!UNBOUNDP (result)) | |
650 return result; | |
651 } | |
652 } | |
653 return Qnil; | |
654 } | |
655 #undef DECLARE_DEBUG_FONTNAME | |
656 | |
657 #endif /* USE_XFT */ | |
658 | |
659 /* find a font spec that matches font spec FONT and also matches | |
660 (the registry of) CHARSET. */ | |
661 static Lisp_Object | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
662 XFUN (find_charset_font) (Lisp_Object device, Lisp_Object font, |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
663 Lisp_Object charset, |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4809
diff
changeset
|
664 enum font_specifier_matchspec_stages stage) |
3659 | 665 { |
666 Lisp_Object result = Qnil, registries = Qnil; | |
667 int j, hyphen_count, registries_len = 0; | |
668 Ibyte *hyphening, *new_hyphening; | |
669 Bytecount xlfd_length; | |
670 | |
671 DECLARE_EISTRING(ei_xlfd_without_registry); | |
672 DECLARE_EISTRING(ei_xlfd); | |
673 | |
674 #ifdef USE_XFT | |
675 result = xft_find_charset_font(font, charset, stage); | |
676 if (!NILP(result)) | |
677 { | |
678 return result; | |
679 } | |
680 #endif | |
681 | |
682 switch (stage) | |
683 { | |
684 case initial: | |
685 { | |
686 if (!(NILP(XCHARSET_REGISTRIES(charset))) | |
687 && VECTORP(XCHARSET_REGISTRIES(charset))) | |
688 { | |
689 registries_len = XVECTOR_LENGTH(XCHARSET_REGISTRIES(charset)); | |
690 registries = XCHARSET_REGISTRIES(charset); | |
691 } | |
692 break; | |
693 } | |
694 case final: | |
695 { | |
696 registries_len = 1; | |
697 registries = Qunicode_registries; | |
698 break; | |
699 } | |
700 default: | |
701 { | |
702 assert(0); | |
703 break; | |
704 } | |
705 } | |
706 | |
707 eicpy_lstr(ei_xlfd, font); | |
708 hyphening = eidata(ei_xlfd); | |
709 xlfd_length = eilen(ei_xlfd); | |
710 | |
711 /* Count the hyphens in the string, moving new_hyphening to just after the | |
712 last one. */ | |
713 hyphen_count = count_hyphens(hyphening, xlfd_length, &new_hyphening); | |
714 | |
715 if (0 == registries_len || (5 > hyphen_count && | |
716 !(1 == xlfd_length && '*' == *hyphening))) | |
717 { | |
718 /* No proper XLFD specified, or we can't modify the pattern to change | |
719 the registry and encoding to match what we want, or we have no | |
720 information on the registry needed. */ | |
721 eito_external(ei_xlfd, Qx_font_name_encoding); | |
722 DEBUG_OBJECTS ("about to xlistfonts_checking_charset, XLFD %s\n", | |
723 eidata(ei_xlfd)); | |
724 result = xlistfonts_checking_charset (device, eiextdata(ei_xlfd), | |
725 charset, stage); | |
726 /* No need to loop through the available registries; return | |
727 immediately. */ | |
728 return result; | |
729 } | |
730 else if (1 == xlfd_length && '*' == *hyphening) | |
731 { | |
732 /* It's a single asterisk. We can add the registry directly to the | |
733 end. */ | |
734 eicpy_ch(ei_xlfd_without_registry, '*'); | |
735 } | |
736 else | |
737 { | |
738 /* It's a fully-specified XLFD. Work out where the registry and | |
739 encoding are, and initialise ei_xlfd_without_registry to the string | |
740 without them. */ | |
741 | |
742 /* count_hyphens has set new_hyphening to just after the last | |
743 hyphen. Move back to just after the hyphen before it. */ | |
744 | |
745 for (new_hyphening -= 2; new_hyphening > hyphening | |
746 && '-' != *new_hyphening; --new_hyphening) | |
747 ; | |
748 ++new_hyphening; | |
749 | |
750 eicpy_ei(ei_xlfd_without_registry, ei_xlfd); | |
751 | |
752 /* Manipulate ei_xlfd_without_registry, using the information about | |
753 ei_xlfd, to which it's identical. */ | |
754 eidel(ei_xlfd_without_registry, new_hyphening - hyphening, -1, | |
755 eilen(ei_xlfd) - (new_hyphening - hyphening), -1); | |
756 | |
757 } | |
758 | |
759 /* Now, loop through the registries and encodings defined for this | |
760 charset, doing an XListFonts each time with the pattern modified to | |
761 specify the regisry and encoding. This avoids huge amounts of IPC and | |
762 duplicated searching; now we use the searching the X server was doing | |
763 anyway, where before the X server did its search, transferred huge | |
764 amounts of data, and then we proceeded to do a regexp search on that | |
765 data. */ | |
766 for (j = 0; j < registries_len && NILP(result); ++j) | |
767 { | |
768 eireset(ei_xlfd); | |
769 eicpy_ei(ei_xlfd, ei_xlfd_without_registry); | |
770 | |
771 eicat_lstr(ei_xlfd, XVECTOR_DATA(registries)[j]); | |
772 | |
773 eito_external(ei_xlfd, Qx_font_name_encoding); | |
774 | |
775 DEBUG_OBJECTS ("about to xlistfonts_checking_charset, XLFD %s\n", | |
776 eidata(ei_xlfd)); | |
777 result = xlistfonts_checking_charset (device, eiextdata(ei_xlfd), | |
778 charset, stage); | |
779 } | |
780 | |
3676 | 781 /* In the event that the charset is ASCII and we haven't matched |
782 anything up to now, even with a pattern of "*", add "iso8859-1" | |
783 to the charset's registry and try again. Not returning a result | |
784 for ASCII means our frame geometry calculations are | |
785 inconsistent, and that we may crash. */ | |
786 | |
787 if (1 == xlfd_length && EQ(charset, Vcharset_ascii) && NILP(result) | |
788 && ('*' == eigetch(ei_xlfd_without_registry, 0))) | |
789 | |
790 { | |
791 int have_latin1 = 0; | |
792 | |
793 /* Set this to, for example, is08859-1 if you want to see the | |
794 error behaviour. */ | |
795 | |
796 #define FALLBACK_ASCII_REGISTRY "iso8859-1" | |
797 | |
798 for (j = 0; j < registries_len; ++j) | |
799 { | |
800 if (0 == qxestrcasecmp(XSTRING_DATA(XVECTOR_DATA(registries)[j]), | |
4124 | 801 (Ibyte *) FALLBACK_ASCII_REGISTRY)) |
3676 | 802 { |
803 have_latin1 = 1; | |
804 break; | |
805 } | |
806 } | |
807 | |
808 if (!have_latin1) | |
809 { | |
810 Lisp_Object new_registries = make_vector(registries_len + 1, Qnil); | |
811 | |
812 XVECTOR_DATA(new_registries)[0] | |
813 = build_string(FALLBACK_ASCII_REGISTRY); | |
814 | |
815 memcpy(XVECTOR_DATA(new_registries) + 1, | |
816 XVECTOR_DATA(registries), | |
817 sizeof XVECTOR_DATA(registries)[0] * | |
818 XVECTOR_LENGTH(registries)); | |
819 | |
820 /* Calling set_charset_registries instead of overwriting the | |
821 value directly, to allow the charset font caches to be | |
822 invalidated and a change to the default face to be | |
823 noted. */ | |
824 set_charset_registries(charset, new_registries); | |
825 | |
3680 | 826 warn_when_safe (Qface, Qwarning, |
827 "Your ASCII charset registries contain nothing " | |
828 "sensible. Adding `" FALLBACK_ASCII_REGISTRY "'."); | |
829 | |
3676 | 830 /* And recurse. */ |
831 result = | |
832 DEVMETH_OR_GIVEN (XDEVICE (device), find_charset_font, | |
833 (device, font, charset, stage), | |
834 result); | |
835 } | |
836 else | |
837 { | |
838 DECLARE_EISTRING (ei_connection_name); | |
839 | |
840 /* We preserve a copy of the connection name for the error message | |
841 after the device is deleted. */ | |
842 eicpy_lstr (ei_connection_name, | |
843 DEVICE_CONNECTION (XDEVICE(device))); | |
844 | |
845 stderr_out ("Cannot find a font for ASCII, deleting device on %s\n", | |
846 eidata (ei_connection_name)); | |
847 | |
848 io_error_delete_device (device); | |
849 | |
850 /* Do a normal warning in the event that we have other, non-X | |
851 frames available. (If we don't, io_error_delete_device will | |
852 have exited.) */ | |
853 warn_when_safe | |
854 (Qface, Qerror, | |
855 "Cannot find a font for ASCII, deleting device on %s.\n" | |
856 "\n" | |
857 "Your X server fonts appear to be inconsistent; fix them, or\n" | |
858 "the next frame you create on that DISPLAY will crash this\n" | |
859 "XEmacs. At a minimum, provide one font with an XLFD ending\n" | |
860 "in `" FALLBACK_ASCII_REGISTRY "', so we can work out what size\n" | |
861 "a frame should be. ", | |
862 eidata (ei_connection_name)); | |
863 } | |
864 | |
865 } | |
866 | |
3659 | 867 /* This function used to return the font spec, in the case where a font |
868 didn't exist on the X server but it did match the charset. We're not | |
869 doing that any more, because none of the other platform code does, and | |
870 the old behaviour was badly-judged in other respects, so I don't trust | |
871 the original author to have had a good reason for it. */ | |
872 | |
873 return result; | |
874 } | |
875 | |
876 #endif /* MULE */ |