]> git.wh0rd.org - fontconfig.git/blame - src/fcname.c
Add FC_EMBEDDED_BITMAP object type to tell Xft/Cairo whether to load
[fontconfig.git] / src / fcname.c
CommitLineData
24330d27 1/*
94421e40 2 * $RCSId: xc/lib/fontconfig/src/fcname.c,v 1.15 2002/09/26 00:17:28 keithp Exp $
24330d27 3 *
46b51147 4 * Copyright © 2000 Keith Packard
24330d27
KP
5 *
6 * Permission to use, copy, modify, distribute, and sell this software and its
7 * documentation for any purpose is hereby granted without fee, provided that
8 * the above copyright notice appear in all copies and that both that
9 * copyright notice and this permission notice appear in supporting
10 * documentation, and that the name of Keith Packard not be used in
11 * advertising or publicity pertaining to distribution of the software without
12 * specific, written prior permission. Keith Packard makes no
13 * representations about the suitability of this software for any purpose. It
14 * is provided "as is" without express or implied warranty.
15 *
16 * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22 * PERFORMANCE OF THIS SOFTWARE.
23 */
24
25#include <ctype.h>
26#include <stdlib.h>
27#include <string.h>
28#include <stdio.h>
29#include "fcint.h"
30
7f37423d 31/* Please do not revoke any of these bindings. */
24330d27 32static const FcObjectType _FcBaseObjectTypes[] = {
14143250 33 { "__DUMMY__", FcTypeVoid, },
24330d27 34 { FC_FAMILY, FcTypeString, },
4f27c1c0 35 { FC_FAMILYLANG, FcTypeString, },
24330d27 36 { FC_STYLE, FcTypeString, },
4f27c1c0
KP
37 { FC_STYLELANG, FcTypeString, },
38 { FC_FULLNAME, FcTypeString, },
39 { FC_FULLNAMELANG, FcTypeString, },
24330d27
KP
40 { FC_SLANT, FcTypeInteger, },
41 { FC_WEIGHT, FcTypeInteger, },
81fa16c3 42 { FC_WIDTH, FcTypeInteger, },
24330d27 43 { FC_SIZE, FcTypeDouble, },
2a41214a 44 { FC_ASPECT, FcTypeDouble, },
24330d27
KP
45 { FC_PIXEL_SIZE, FcTypeDouble, },
46 { FC_SPACING, FcTypeInteger, },
47 { FC_FOUNDRY, FcTypeString, },
48/* { FC_CORE, FcTypeBool, }, */
49 { FC_ANTIALIAS, FcTypeBool, },
f077d662 50 { FC_HINT_STYLE, FcTypeInteger, },
4c003605
KP
51 { FC_HINTING, FcTypeBool, },
52 { FC_VERTICAL_LAYOUT, FcTypeBool, },
53 { FC_AUTOHINT, FcTypeBool, },
54 { FC_GLOBAL_ADVANCE, FcTypeBool, },
24330d27
KP
55/* { FC_XLFD, FcTypeString, }, */
56 { FC_FILE, FcTypeString, },
57 { FC_INDEX, FcTypeInteger, },
58 { FC_RASTERIZER, FcTypeString, },
59 { FC_OUTLINE, FcTypeBool, },
60 { FC_SCALABLE, FcTypeBool, },
4c003605 61 { FC_DPI, FcTypeDouble },
24330d27
KP
62 { FC_RGBA, FcTypeInteger, },
63 { FC_SCALE, FcTypeDouble, },
24330d27 64 { FC_MINSPACE, FcTypeBool, },
13cdf607 65/* { FC_RENDER, FcTypeBool, },*/
24330d27
KP
66 { FC_CHAR_WIDTH, FcTypeInteger },
67 { FC_CHAR_HEIGHT, FcTypeInteger },
68 { FC_MATRIX, FcTypeMatrix },
69 { FC_CHARSET, FcTypeCharSet },
d8d73958 70 { FC_LANG, FcTypeLangSet },
a342e87d 71 { FC_FONTVERSION, FcTypeInteger },
dbf68dd5 72 { FC_CAPABILITY, FcTypeString },
537e3d23 73 { FC_FONTFORMAT, FcTypeString },
414f7202 74 { FC_EMBOLDEN, FcTypeBool },
720298e7 75 { FC_EMBEDDED_BITMAP, FcTypeBool },
24330d27
KP
76};
77
78#define NUM_OBJECT_TYPES (sizeof _FcBaseObjectTypes / sizeof _FcBaseObjectTypes[0])
79
13cdf607
PL
80static FcObjectType * _FcUserObjectNames = 0;
81static int user_obj_alloc = 0;
14143250 82static int next_basic_offset = NUM_OBJECT_TYPES;
13cdf607 83
24330d27
KP
84typedef struct _FcObjectTypeList FcObjectTypeList;
85
86struct _FcObjectTypeList {
87 const FcObjectTypeList *next;
88 const FcObjectType *types;
89 int ntypes;
14143250 90 int basic_offset;
24330d27
KP
91};
92
93static const FcObjectTypeList _FcBaseObjectTypesList = {
94 0,
95 _FcBaseObjectTypes,
96 NUM_OBJECT_TYPES
97};
98
99static const FcObjectTypeList *_FcObjectTypes = &_FcBaseObjectTypesList;
100
101FcBool
102FcNameRegisterObjectTypes (const FcObjectType *types, int ntypes)
103{
104 FcObjectTypeList *l;
105
106 l = (FcObjectTypeList *) malloc (sizeof (FcObjectTypeList));
107 if (!l)
108 return FcFalse;
9dac3c59 109 FcMemAlloc (FC_MEM_OBJECTTYPE, sizeof (FcObjectTypeList));
24330d27
KP
110 l->types = types;
111 l->ntypes = ntypes;
112 l->next = _FcObjectTypes;
14143250
PL
113 l->basic_offset = next_basic_offset;
114 next_basic_offset += ntypes;
24330d27
KP
115 _FcObjectTypes = l;
116 return FcTrue;
117}
118
7f37423d
PL
119static FcBool
120FcNameUnregisterObjectTypesFree (const FcObjectType *types, int ntypes,
121 FcBool do_free)
24330d27
KP
122{
123 const FcObjectTypeList *l, **prev;
124
125 for (prev = &_FcObjectTypes;
126 (l = *prev);
127 prev = (const FcObjectTypeList **) &(l->next))
128 {
129 if (l->types == types && l->ntypes == ntypes)
130 {
131 *prev = l->next;
7f37423d
PL
132 if (do_free) {
133 FcMemFree (FC_MEM_OBJECTTYPE, sizeof (FcObjectTypeList));
134 free ((void *) l);
135 }
24330d27
KP
136 return FcTrue;
137 }
138 }
139 return FcFalse;
140}
141
7f37423d
PL
142FcBool
143FcNameUnregisterObjectTypes (const FcObjectType *types, int ntypes)
144{
145 return FcNameUnregisterObjectTypesFree (types, ntypes, FcTrue);
146}
147
24330d27
KP
148const FcObjectType *
149FcNameGetObjectType (const char *object)
150{
151 int i;
152 const FcObjectTypeList *l;
153 const FcObjectType *t;
154
155 for (l = _FcObjectTypes; l; l = l->next)
156 {
157 for (i = 0; i < l->ntypes; i++)
158 {
159 t = &l->types[i];
bc9469ba 160 if (!strcmp (object, t->object))
24330d27
KP
161 return t;
162 }
163 }
164 return 0;
165}
166
13cdf607
PL
167#define OBJECT_HASH_SIZE 31
168struct objectBucket {
169 struct objectBucket *next;
170 FcChar32 hash;
171 int id;
172};
173static struct objectBucket *FcObjectBuckets[OBJECT_HASH_SIZE];
174
14143250
PL
175/* Design constraint: biggest_known_ntypes must never change
176 * after any call to FcNameRegisterObjectTypes. */
13cdf607
PL
177static const FcObjectType *biggest_known_types = _FcBaseObjectTypes;
178static FcBool allocated_biggest_known_types;
179static int biggest_known_ntypes = NUM_OBJECT_TYPES;
180static int biggest_known_count = 0;
181static char * biggest_ptr;
182
183
7f37423d
PL
184static FcObjectPtr
185FcObjectToPtrLookup (const char * object)
4262e0b3 186{
13cdf607 187 FcObjectPtr i = 0, n;
4262e0b3 188 const FcObjectTypeList *l;
13cdf607 189 FcObjectType *t = _FcUserObjectNames;
7f37423d 190
4262e0b3
PL
191 for (l = _FcObjectTypes; l; l = l->next)
192 {
193 for (i = 0; i < l->ntypes; i++)
194 {
13cdf607 195 t = (FcObjectType *)&l->types[i];
4262e0b3 196 if (!strcmp (object, t->object))
13cdf607
PL
197 {
198 if (l == (FcObjectTypeList*)_FcUserObjectNames)
14143250 199 return -i;
13cdf607 200 else
14143250 201 return l->basic_offset + i;
13cdf607 202 }
4262e0b3
PL
203 }
204 }
4262e0b3 205
13cdf607
PL
206 /* We didn't match. Look for the correct FcObjectTypeList
207 * to replace it in-place. */
208 for (l = _FcObjectTypes; l; l = l->next)
209 {
210 if (l->types == _FcUserObjectNames)
211 break;
212 }
7f37423d 213
13cdf607
PL
214 if (!_FcUserObjectNames ||
215 (l && l->types == _FcUserObjectNames && user_obj_alloc < l->ntypes))
216 {
217 int nt = user_obj_alloc + 4;
218 FcObjectType * t = realloc (_FcUserObjectNames,
219 nt * sizeof (FcObjectType));
220 if (!t)
14143250 221 return 0;
13cdf607
PL
222 _FcUserObjectNames = t;
223 user_obj_alloc = nt;
224 }
225
226 if (l && l->types == _FcUserObjectNames)
227 {
228 n = l->ntypes;
229 FcNameUnregisterObjectTypesFree (l->types, l->ntypes, FcFalse);
230 }
231 else
232 n = 0;
233
234 FcNameRegisterObjectTypes (_FcUserObjectNames, n+1);
235
236 for (l = _FcObjectTypes; l; l = l->next)
237 {
238 if (l->types == _FcUserObjectNames)
239 {
240 t = (FcObjectType *)l->types;
241 break;
242 }
243 }
244
245 if (!t)
246 return 0;
247
248 t[n].object = object;
249 t[n].type = FcTypeVoid;
250
14143250 251 return -n;
13cdf607 252}
7f37423d
PL
253
254FcObjectPtr
255FcObjectToPtr (const char * name)
256{
257 FcChar32 hash = FcStringHash ((const FcChar8 *) name);
258 struct objectBucket **p;
259 struct objectBucket *b;
260 int size;
261
262 for (p = &FcObjectBuckets[hash % OBJECT_HASH_SIZE]; (b = *p); p = &(b->next)
263)
264 if (b->hash == hash && !strcmp (name, (char *) (b + 1)))
265 return b->id;
266 size = sizeof (struct objectBucket) + strlen (name) + 1;
23787a8f
PL
267 /* workaround glibc bug which reads strlen in groups of 4 */
268 b = malloc (size + sizeof (int));
269 FcMemAlloc (FC_MEM_STATICSTR, size + sizeof(int));
7f37423d 270 if (!b)
14143250 271 return 0;
7f37423d
PL
272 b->next = 0;
273 b->hash = hash;
274 b->id = FcObjectToPtrLookup (name);
275 strcpy ((char *) (b + 1), name);
276 *p = b;
277 return b->id;
278}
279
280void
281FcObjectStaticNameFini (void)
282{
283 int i, size;
284 struct objectBucket *b, *next;
285 char *name;
286
287 for (i = 0; i < OBJECT_HASH_SIZE; i++)
288 {
289 for (b = FcObjectBuckets[i]; b; b = next)
290 {
291 next = b->next;
292 name = (char *) (b + 1);
293 size = sizeof (struct objectBucket) + strlen (name) + 1;
294 FcMemFree (FC_MEM_STATICSTR, size);
295 free (b);
296 }
297 FcObjectBuckets[i] = 0;
298 }
299}
300
4262e0b3
PL
301const char *
302FcObjectPtrU (FcObjectPtr si)
303{
14143250
PL
304 const FcObjectTypeList *l;
305 int i, j;
306
307 if (si > 0)
308 {
309 if (si < biggest_known_ntypes)
310 return biggest_known_types[si].object;
311
312 j = 0;
313 for (l = _FcObjectTypes; l; l = l->next)
314 for (i = 0; i < l->ntypes; i++, j++)
315 if (j == si)
316 return l->types[i].object;
317 }
318
319 return _FcUserObjectNames[-si].object;
4262e0b3
PL
320}
321
322int
7f37423d 323FcObjectNeededBytes ()
4262e0b3 324{
7f37423d
PL
325 int num = 0, i;
326 for (i = 0; i < biggest_known_ntypes; i++)
327 {
328 const char * t = biggest_known_types[i].object;
329 num = num + strlen(t) + 1;
330 }
331 biggest_known_count = num;
332 return num + sizeof(int);
4262e0b3
PL
333}
334
335void *
336FcObjectDistributeBytes (FcCache * metadata, void * block_ptr)
337{
7f37423d
PL
338 *(int *)block_ptr = biggest_known_ntypes;
339 block_ptr = (int *) block_ptr + 1;
340 biggest_ptr = block_ptr;
341 block_ptr = (char *) block_ptr + biggest_known_count;
4262e0b3
PL
342 return block_ptr;
343}
344
7f37423d
PL
345void
346FcObjectSerialize ()
4262e0b3 347{
7f37423d
PL
348 int i;
349 for (i = 0; i < biggest_known_ntypes; i++)
350 {
351 const char * t = biggest_known_types[i].object;
352 strcpy (biggest_ptr, t);
353 biggest_ptr = biggest_ptr + strlen(t) + 1;
354 }
4262e0b3
PL
355}
356
7f37423d
PL
357void *
358FcObjectUnserialize (FcCache metadata, void *block_ptr)
4262e0b3 359{
7f37423d
PL
360 int new_biggest;
361 new_biggest = *(int *)block_ptr;
362 block_ptr = (int *) block_ptr + 1;
363 if (biggest_known_ntypes < new_biggest)
364 {
365 int i;
366 char * bp = (char *)block_ptr;
367 FcObjectType * bn;
368 FcObjectTypeList * bnl;
369
370 bn = malloc (sizeof (const FcObjectType) * (new_biggest + 1));
371 if (!bn)
372 return 0;
373
374 bnl = malloc (sizeof (FcObjectTypeList));
375 if (!bnl)
376 {
377 free (bn);
378 return 0;
379 }
380
381 for (i = 0; i < new_biggest; i++)
382 {
383 const FcObjectType * t = FcNameGetObjectType(bp);
384 if (t)
385 bn[i].type = t->type;
386 else
387 bn[i].type = FcTypeVoid;
388 bn[i].object = bp;
389 bp = bp + strlen(bp) + 1;
390 }
391
392 FcNameUnregisterObjectTypesFree (biggest_known_types, biggest_known_ntypes, FcFalse);
393 if (allocated_biggest_known_types)
394 {
395 free ((FcObjectTypeList *)biggest_known_types);
396 }
397 else
398 allocated_biggest_known_types = FcTrue;
399
400 FcNameRegisterObjectTypes (bn, new_biggest);
401 biggest_known_ntypes = new_biggest;
402 biggest_known_types = (const FcObjectType *)bn;
403 }
404 block_ptr = (char *) block_ptr + biggest_known_count;
405 return block_ptr;
4262e0b3
PL
406}
407
408int
409FcObjectPtrCompare (const FcObjectPtr a, const FcObjectPtr b)
410{
411 return a - b;
412}
413
24330d27 414static const FcConstant _FcBaseConstants[] = {
81fa16c3
KP
415 { (FcChar8 *) "thin", "weight", FC_WEIGHT_THIN, },
416 { (FcChar8 *) "extralight", "weight", FC_WEIGHT_EXTRALIGHT, },
417 { (FcChar8 *) "ultralight", "weight", FC_WEIGHT_EXTRALIGHT, },
ccb3e93b 418 { (FcChar8 *) "light", "weight", FC_WEIGHT_LIGHT, },
1f71c4d8 419 { (FcChar8 *) "book", "weight", FC_WEIGHT_BOOK, },
81fa16c3 420 { (FcChar8 *) "regular", "weight", FC_WEIGHT_REGULAR, },
ccb3e93b
KP
421 { (FcChar8 *) "medium", "weight", FC_WEIGHT_MEDIUM, },
422 { (FcChar8 *) "demibold", "weight", FC_WEIGHT_DEMIBOLD, },
81fa16c3 423 { (FcChar8 *) "semibold", "weight", FC_WEIGHT_DEMIBOLD, },
ccb3e93b 424 { (FcChar8 *) "bold", "weight", FC_WEIGHT_BOLD, },
81fa16c3
KP
425 { (FcChar8 *) "extrabold", "weight", FC_WEIGHT_EXTRABOLD, },
426 { (FcChar8 *) "ultrabold", "weight", FC_WEIGHT_EXTRABOLD, },
ccb3e93b
KP
427 { (FcChar8 *) "black", "weight", FC_WEIGHT_BLACK, },
428
429 { (FcChar8 *) "roman", "slant", FC_SLANT_ROMAN, },
430 { (FcChar8 *) "italic", "slant", FC_SLANT_ITALIC, },
431 { (FcChar8 *) "oblique", "slant", FC_SLANT_OBLIQUE, },
432
81fa16c3
KP
433 { (FcChar8 *) "ultracondensed", "width", FC_WIDTH_ULTRACONDENSED },
434 { (FcChar8 *) "extracondensed", "width", FC_WIDTH_EXTRACONDENSED },
435 { (FcChar8 *) "condensed", "width", FC_WIDTH_CONDENSED },
436 { (FcChar8 *) "semicondensed", "width", FC_WIDTH_SEMICONDENSED },
437 { (FcChar8 *) "normal", "width", FC_WIDTH_NORMAL },
438 { (FcChar8 *) "semiexpanded", "width", FC_WIDTH_SEMIEXPANDED },
439 { (FcChar8 *) "expanded", "width", FC_WIDTH_EXPANDED },
440 { (FcChar8 *) "extraexpanded", "width", FC_WIDTH_EXTRAEXPANDED },
441 { (FcChar8 *) "ultraexpanded", "width", FC_WIDTH_ULTRAEXPANDED },
442
ccb3e93b 443 { (FcChar8 *) "proportional", "spacing", FC_PROPORTIONAL, },
a05d257f 444 { (FcChar8 *) "dual", "spacing", FC_DUAL, },
ccb3e93b
KP
445 { (FcChar8 *) "mono", "spacing", FC_MONO, },
446 { (FcChar8 *) "charcell", "spacing", FC_CHARCELL, },
447
1852d490 448 { (FcChar8 *) "unknown", "rgba", FC_RGBA_UNKNOWN },
ccb3e93b
KP
449 { (FcChar8 *) "rgb", "rgba", FC_RGBA_RGB, },
450 { (FcChar8 *) "bgr", "rgba", FC_RGBA_BGR, },
451 { (FcChar8 *) "vrgb", "rgba", FC_RGBA_VRGB },
452 { (FcChar8 *) "vbgr", "rgba", FC_RGBA_VBGR },
1852d490 453 { (FcChar8 *) "none", "rgba", FC_RGBA_NONE },
f077d662
OT
454
455 { (FcChar8 *) "hintnone", "hintstyle", FC_HINT_NONE },
456 { (FcChar8 *) "hintslight", "hintstyle", FC_HINT_SLIGHT },
457 { (FcChar8 *) "hintmedium", "hintstyle", FC_HINT_MEDIUM },
458 { (FcChar8 *) "hintfull", "hintstyle", FC_HINT_FULL },
24330d27
KP
459};
460
461#define NUM_FC_CONSTANTS (sizeof _FcBaseConstants/sizeof _FcBaseConstants[0])
462
463typedef struct _FcConstantList FcConstantList;
464
465struct _FcConstantList {
466 const FcConstantList *next;
467 const FcConstant *consts;
468 int nconsts;
469};
470
471static const FcConstantList _FcBaseConstantList = {
472 0,
473 _FcBaseConstants,
474 NUM_FC_CONSTANTS
475};
476
477static const FcConstantList *_FcConstants = &_FcBaseConstantList;
478
479FcBool
480FcNameRegisterConstants (const FcConstant *consts, int nconsts)
481{
482 FcConstantList *l;
483
484 l = (FcConstantList *) malloc (sizeof (FcConstantList));
485 if (!l)
486 return FcFalse;
9dac3c59 487 FcMemAlloc (FC_MEM_CONSTANT, sizeof (FcConstantList));
24330d27
KP
488 l->consts = consts;
489 l->nconsts = nconsts;
490 l->next = _FcConstants;
491 _FcConstants = l;
492 return FcTrue;
493}
494
495FcBool
496FcNameUnregisterConstants (const FcConstant *consts, int nconsts)
497{
498 const FcConstantList *l, **prev;
499
500 for (prev = &_FcConstants;
501 (l = *prev);
502 prev = (const FcConstantList **) &(l->next))
503 {
504 if (l->consts == consts && l->nconsts == nconsts)
505 {
506 *prev = l->next;
9dac3c59 507 FcMemFree (FC_MEM_CONSTANT, sizeof (FcConstantList));
24330d27
KP
508 free ((void *) l);
509 return FcTrue;
510 }
511 }
512 return FcFalse;
513}
514
515const FcConstant *
ccb3e93b 516FcNameGetConstant (FcChar8 *string)
24330d27
KP
517{
518 const FcConstantList *l;
519 int i;
94421e40 520
24330d27
KP
521 for (l = _FcConstants; l; l = l->next)
522 {
523 for (i = 0; i < l->nconsts; i++)
524 if (!FcStrCmpIgnoreCase (string, l->consts[i].name))
525 return &l->consts[i];
526 }
527 return 0;
528}
529
530FcBool
ccb3e93b 531FcNameConstant (FcChar8 *string, int *result)
24330d27
KP
532{
533 const FcConstant *c;
534
535 if ((c = FcNameGetConstant(string)))
536 {
537 *result = c->value;
538 return FcTrue;
539 }
540 return FcFalse;
541}
542
543FcBool
ca60d2b5 544FcNameBool (const FcChar8 *v, FcBool *result)
24330d27
KP
545{
546 char c0, c1;
547
548 c0 = *v;
94421e40 549 c0 = FcToLower (c0);
24330d27
KP
550 if (c0 == 't' || c0 == 'y' || c0 == '1')
551 {
552 *result = FcTrue;
553 return FcTrue;
554 }
555 if (c0 == 'f' || c0 == 'n' || c0 == '0')
556 {
557 *result = FcFalse;
558 return FcTrue;
559 }
560 if (c0 == 'o')
561 {
562 c1 = v[1];
94421e40 563 c1 = FcToLower (c1);
24330d27
KP
564 if (c1 == 'n')
565 {
566 *result = FcTrue;
567 return FcTrue;
568 }
569 if (c1 == 'f')
570 {
571 *result = FcFalse;
572 return FcTrue;
573 }
574 }
575 return FcFalse;
576}
577
578static FcValue
ccb3e93b 579FcNameConvert (FcType type, FcChar8 *string, FcMatrix *m)
24330d27
KP
580{
581 FcValue v;
582
583 v.type = type;
584 switch (v.type) {
585 case FcTypeInteger:
586 if (!FcNameConstant (string, &v.u.i))
ccb3e93b 587 v.u.i = atoi ((char *) string);
24330d27
KP
588 break;
589 case FcTypeString:
7f37423d 590 v.u.s = FcStrStaticName(string);
24330d27
KP
591 break;
592 case FcTypeBool:
593 if (!FcNameBool (string, &v.u.b))
594 v.u.b = FcFalse;
595 break;
596 case FcTypeDouble:
ccb3e93b 597 v.u.d = strtod ((char *) string, 0);
24330d27
KP
598 break;
599 case FcTypeMatrix:
4262e0b3 600 v.u.m = m;
ccb3e93b 601 sscanf ((char *) string, "%lg %lg %lg %lg", &m->xx, &m->xy, &m->yx, &m->yy);
24330d27
KP
602 break;
603 case FcTypeCharSet:
4262e0b3 604 v.u.c = FcNameParseCharSet (string);
24330d27 605 break;
d8d73958 606 case FcTypeLangSet:
4262e0b3 607 v.u.l = FcNameParseLangSet (string);
d8d73958 608 break;
24330d27
KP
609 default:
610 break;
611 }
612 return v;
613}
614
ccb3e93b
KP
615static const FcChar8 *
616FcNameFindNext (const FcChar8 *cur, const char *delim, FcChar8 *save, FcChar8 *last)
24330d27 617{
ccb3e93b 618 FcChar8 c;
24330d27
KP
619
620 while ((c = *cur))
621 {
622 if (c == '\\')
623 {
624 ++cur;
625 if (!(c = *cur))
626 break;
627 }
628 else if (strchr (delim, c))
629 break;
630 ++cur;
631 *save++ = c;
632 }
633 *save = 0;
634 *last = *cur;
635 if (*cur)
636 cur++;
637 return cur;
638}
639
640FcPattern *
ccb3e93b 641FcNameParse (const FcChar8 *name)
24330d27 642{
ccb3e93b 643 FcChar8 *save;
24330d27
KP
644 FcPattern *pat;
645 double d;
ccb3e93b
KP
646 FcChar8 *e;
647 FcChar8 delim;
24330d27
KP
648 FcValue v;
649 FcMatrix m;
650 const FcObjectType *t;
651 const FcConstant *c;
652
9dac3c59 653 /* freed below */
ccb3e93b 654 save = malloc (strlen ((char *) name) + 1);
24330d27
KP
655 if (!save)
656 goto bail0;
657 pat = FcPatternCreate ();
658 if (!pat)
659 goto bail1;
660
661 for (;;)
662 {
663 name = FcNameFindNext (name, "-,:", save, &delim);
664 if (save[0])
665 {
666 if (!FcPatternAddString (pat, FC_FAMILY, save))
667 goto bail2;
668 }
669 if (delim != ',')
670 break;
671 }
672 if (delim == '-')
673 {
674 for (;;)
675 {
676 name = FcNameFindNext (name, "-,:", save, &delim);
ccb3e93b 677 d = strtod ((char *) save, (char **) &e);
24330d27
KP
678 if (e != save)
679 {
680 if (!FcPatternAddDouble (pat, FC_SIZE, d))
681 goto bail2;
682 }
683 if (delim != ',')
684 break;
685 }
686 }
687 while (delim == ':')
688 {
689 name = FcNameFindNext (name, "=_:", save, &delim);
690 if (save[0])
691 {
692 if (delim == '=' || delim == '_')
693 {
ccb3e93b 694 t = FcNameGetObjectType ((char *) save);
24330d27
KP
695 for (;;)
696 {
697 name = FcNameFindNext (name, ":,", save, &delim);
c552f59b 698 if (t)
24330d27
KP
699 {
700 v = FcNameConvert (t->type, save, &m);
701 if (!FcPatternAdd (pat, t->object, v, FcTrue))
702 {
d8d73958
KP
703 switch (v.type) {
704 case FcTypeCharSet:
4262e0b3 705 FcCharSetDestroy ((FcCharSet *) v.u.c);
d8d73958
KP
706 break;
707 case FcTypeLangSet:
4262e0b3 708 FcLangSetDestroy ((FcLangSet *) v.u.l);
d8d73958
KP
709 break;
710 default:
711 break;
712 }
24330d27
KP
713 goto bail2;
714 }
d8d73958
KP
715 switch (v.type) {
716 case FcTypeCharSet:
4262e0b3 717 FcCharSetDestroy ((FcCharSet *) v.u.c);
d8d73958
KP
718 break;
719 case FcTypeLangSet:
4262e0b3 720 FcLangSetDestroy ((FcLangSet *) v.u.l);
d8d73958
KP
721 break;
722 default:
723 break;
724 }
24330d27
KP
725 }
726 if (delim != ',')
727 break;
728 }
729 }
730 else
731 {
732 if ((c = FcNameGetConstant (save)))
733 {
734 if (!FcPatternAddInteger (pat, c->object, c->value))
735 goto bail2;
736 }
737 }
738 }
739 }
740
741 free (save);
742 return pat;
743
744bail2:
745 FcPatternDestroy (pat);
746bail1:
747 free (save);
748bail0:
749 return 0;
750}
24330d27 751static FcBool
c2e7c611 752FcNameUnparseString (FcStrBuf *buf,
24330d27
KP
753 const FcChar8 *string,
754 const FcChar8 *escape)
755{
756 FcChar8 c;
757 while ((c = *string++))
758 {
759 if (escape && strchr ((char *) escape, (char) c))
760 {
c2e7c611 761 if (!FcStrBufChar (buf, escape[0]))
24330d27
KP
762 return FcFalse;
763 }
c2e7c611 764 if (!FcStrBufChar (buf, c))
24330d27
KP
765 return FcFalse;
766 }
767 return FcTrue;
768}
769
770static FcBool
c2e7c611 771FcNameUnparseValue (FcStrBuf *buf,
4262e0b3
PL
772 int bank,
773 FcValue *v0,
24330d27
KP
774 FcChar8 *escape)
775{
776 FcChar8 temp[1024];
4262e0b3 777 FcValue v = FcValueCanonicalize(v0);
24330d27
KP
778
779 switch (v.type) {
780 case FcTypeVoid:
781 return FcTrue;
782 case FcTypeInteger:
783 sprintf ((char *) temp, "%d", v.u.i);
784 return FcNameUnparseString (buf, temp, 0);
785 case FcTypeDouble:
786 sprintf ((char *) temp, "%g", v.u.d);
787 return FcNameUnparseString (buf, temp, 0);
788 case FcTypeString:
4262e0b3 789 return FcNameUnparseString (buf, v.u.s, escape);
24330d27 790 case FcTypeBool:
ccb3e93b 791 return FcNameUnparseString (buf, v.u.b ? (FcChar8 *) "True" : (FcChar8 *) "False", 0);
24330d27
KP
792 case FcTypeMatrix:
793 sprintf ((char *) temp, "%g %g %g %g",
4262e0b3 794 v.u.m->xx, v.u.m->xy, v.u.m->yx, v.u.m->yy);
24330d27
KP
795 return FcNameUnparseString (buf, temp, 0);
796 case FcTypeCharSet:
4262e0b3 797 return FcNameUnparseCharSet (buf, v.u.c);
d8d73958 798 case FcTypeLangSet:
4262e0b3 799 return FcNameUnparseLangSet (buf, v.u.l);
88c747e2
KP
800 case FcTypeFTFace:
801 return FcTrue;
24330d27
KP
802 }
803 return FcFalse;
804}
805
806static FcBool
c2e7c611 807FcNameUnparseValueList (FcStrBuf *buf,
cd2ec1a9 808 FcValueListPtr v,
ccb3e93b 809 FcChar8 *escape)
24330d27 810{
cd2ec1a9 811 while (FcValueListPtrU(v))
24330d27 812 {
4262e0b3 813 if (!FcNameUnparseValue (buf, v.bank, &FcValueListPtrU(v)->value, escape))
24330d27 814 return FcFalse;
cd2ec1a9 815 if (FcValueListPtrU(v = FcValueListPtrU(v)->next))
ccb3e93b 816 if (!FcNameUnparseString (buf, (FcChar8 *) ",", 0))
24330d27
KP
817 return FcFalse;
818 }
819 return FcTrue;
820}
821
822#define FC_ESCAPE_FIXED "\\-:,"
823#define FC_ESCAPE_VARIABLE "\\=_:,"
824
825FcChar8 *
826FcNameUnparse (FcPattern *pat)
2fa3f27e
PL
827{
828 return FcNameUnparseEscaped (pat, FcTrue);
829}
830
831FcChar8 *
832FcNameUnparseEscaped (FcPattern *pat, FcBool escape)
24330d27 833{
c2e7c611 834 FcStrBuf buf;
24330d27
KP
835 FcChar8 buf_static[8192];
836 int i;
837 FcPatternElt *e;
838 const FcObjectTypeList *l;
839 const FcObjectType *o;
840
c2e7c611 841 FcStrBufInit (&buf, buf_static, sizeof (buf_static));
e9be9cd1 842 e = FcPatternFindElt (pat, FC_FAMILY);
24330d27
KP
843 if (e)
844 {
2fa3f27e 845 if (!FcNameUnparseValueList (&buf, e->values, escape ? (FcChar8 *) FC_ESCAPE_FIXED : 0))
24330d27
KP
846 goto bail0;
847 }
e9be9cd1 848 e = FcPatternFindElt (pat, FC_SIZE);
24330d27
KP
849 if (e)
850 {
ccb3e93b 851 if (!FcNameUnparseString (&buf, (FcChar8 *) "-", 0))
24330d27 852 goto bail0;
2fa3f27e 853 if (!FcNameUnparseValueList (&buf, e->values, escape ? (FcChar8 *) FC_ESCAPE_FIXED : 0))
24330d27
KP
854 goto bail0;
855 }
856 for (l = _FcObjectTypes; l; l = l->next)
857 {
858 for (i = 0; i < l->ntypes; i++)
859 {
860 o = &l->types[i];
861 if (!strcmp (o->object, FC_FAMILY) ||
862 !strcmp (o->object, FC_SIZE) ||
863 !strcmp (o->object, FC_FILE))
864 continue;
865
e9be9cd1 866 e = FcPatternFindElt (pat, o->object);
24330d27
KP
867 if (e)
868 {
ccb3e93b 869 if (!FcNameUnparseString (&buf, (FcChar8 *) ":", 0))
24330d27 870 goto bail0;
2fa3f27e 871 if (!FcNameUnparseString (&buf, (FcChar8 *) o->object, escape ? (FcChar8 *) FC_ESCAPE_VARIABLE : 0))
24330d27 872 goto bail0;
ccb3e93b 873 if (!FcNameUnparseString (&buf, (FcChar8 *) "=", 0))
24330d27 874 goto bail0;
2fa3f27e
PL
875 if (!FcNameUnparseValueList (&buf, e->values, escape ?
876 (FcChar8 *) FC_ESCAPE_VARIABLE : 0))
24330d27
KP
877 goto bail0;
878 }
879 }
880 }
c2e7c611 881 return FcStrBufDone (&buf);
24330d27 882bail0:
c2e7c611 883 FcStrBufDestroy (&buf);
24330d27
KP
884 return 0;
885}