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