2002-02-15 00:34:13 +01:00
|
|
|
/*
|
2003-03-05 06:53:10 +01:00
|
|
|
* $RCSId: xc/lib/fontconfig/src/fcname.c,v 1.15 2002/09/26 00:17:28 keithp Exp $
|
2002-02-15 00:34:13 +01:00
|
|
|
*
|
2004-12-07 02:14:46 +01:00
|
|
|
* Copyright © 2000 Keith Packard
|
2002-02-15 00:34:13 +01:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
* the above copyright notice appear in all copies and that both that
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
|
|
|
* documentation, and that the name of Keith Packard not be used in
|
|
|
|
* advertising or publicity pertaining to distribution of the software without
|
|
|
|
* specific, written prior permission. Keith Packard makes no
|
|
|
|
* representations about the suitability of this software for any purpose. It
|
|
|
|
* is provided "as is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
* KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
* EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "fcint.h"
|
|
|
|
|
2005-08-27 04:34:24 +02:00
|
|
|
/* Please do not revoke any of these bindings. */
|
2002-02-15 00:34:13 +01:00
|
|
|
static const FcObjectType _FcBaseObjectTypes[] = {
|
2005-09-22 22:49:24 +02:00
|
|
|
{ "__DUMMY__", FcTypeVoid, },
|
2002-02-15 00:34:13 +01:00
|
|
|
{ FC_FAMILY, FcTypeString, },
|
2004-12-04 20:41:10 +01:00
|
|
|
{ FC_FAMILYLANG, FcTypeString, },
|
2002-02-15 00:34:13 +01:00
|
|
|
{ FC_STYLE, FcTypeString, },
|
2004-12-04 20:41:10 +01:00
|
|
|
{ FC_STYLELANG, FcTypeString, },
|
|
|
|
{ FC_FULLNAME, FcTypeString, },
|
|
|
|
{ FC_FULLNAMELANG, FcTypeString, },
|
2002-02-15 00:34:13 +01:00
|
|
|
{ FC_SLANT, FcTypeInteger, },
|
|
|
|
{ FC_WEIGHT, FcTypeInteger, },
|
2003-03-12 23:16:43 +01:00
|
|
|
{ FC_WIDTH, FcTypeInteger, },
|
2002-02-15 00:34:13 +01:00
|
|
|
{ FC_SIZE, FcTypeDouble, },
|
2002-06-02 22:52:06 +02:00
|
|
|
{ FC_ASPECT, FcTypeDouble, },
|
2002-02-15 00:34:13 +01:00
|
|
|
{ FC_PIXEL_SIZE, FcTypeDouble, },
|
|
|
|
{ FC_SPACING, FcTypeInteger, },
|
|
|
|
{ FC_FOUNDRY, FcTypeString, },
|
|
|
|
/* { FC_CORE, FcTypeBool, }, */
|
|
|
|
{ FC_ANTIALIAS, FcTypeBool, },
|
2003-09-23 22:12:20 +02:00
|
|
|
{ FC_HINT_STYLE, FcTypeInteger, },
|
2002-06-29 22:31:02 +02:00
|
|
|
{ FC_HINTING, FcTypeBool, },
|
|
|
|
{ FC_VERTICAL_LAYOUT, FcTypeBool, },
|
|
|
|
{ FC_AUTOHINT, FcTypeBool, },
|
|
|
|
{ FC_GLOBAL_ADVANCE, FcTypeBool, },
|
2002-02-15 00:34:13 +01:00
|
|
|
/* { FC_XLFD, FcTypeString, }, */
|
|
|
|
{ FC_FILE, FcTypeString, },
|
|
|
|
{ FC_INDEX, FcTypeInteger, },
|
|
|
|
{ FC_RASTERIZER, FcTypeString, },
|
|
|
|
{ FC_OUTLINE, FcTypeBool, },
|
|
|
|
{ FC_SCALABLE, FcTypeBool, },
|
2002-06-29 22:31:02 +02:00
|
|
|
{ FC_DPI, FcTypeDouble },
|
2002-02-15 00:34:13 +01:00
|
|
|
{ FC_RGBA, FcTypeInteger, },
|
|
|
|
{ FC_SCALE, FcTypeDouble, },
|
|
|
|
{ FC_MINSPACE, FcTypeBool, },
|
2005-09-15 22:36:44 +02:00
|
|
|
/* { FC_RENDER, FcTypeBool, },*/
|
2002-02-15 00:34:13 +01:00
|
|
|
{ FC_CHAR_WIDTH, FcTypeInteger },
|
|
|
|
{ FC_CHAR_HEIGHT, FcTypeInteger },
|
|
|
|
{ FC_MATRIX, FcTypeMatrix },
|
|
|
|
{ FC_CHARSET, FcTypeCharSet },
|
2002-08-22 09:36:45 +02:00
|
|
|
{ FC_LANG, FcTypeLangSet },
|
2002-09-26 02:17:28 +02:00
|
|
|
{ FC_FONTVERSION, FcTypeInteger },
|
2004-12-04 23:06:52 +01:00
|
|
|
{ FC_CAPABILITY, FcTypeString },
|
2004-12-05 01:26:06 +01:00
|
|
|
{ FC_FONTFORMAT, FcTypeString },
|
2005-02-28 19:56:15 +01:00
|
|
|
{ FC_EMBOLDEN, FcTypeBool },
|
2002-02-15 00:34:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#define NUM_OBJECT_TYPES (sizeof _FcBaseObjectTypes / sizeof _FcBaseObjectTypes[0])
|
|
|
|
|
2005-09-15 22:36:44 +02:00
|
|
|
static FcObjectType * _FcUserObjectNames = 0;
|
|
|
|
static int user_obj_alloc = 0;
|
2005-09-22 22:49:24 +02:00
|
|
|
static int next_basic_offset = NUM_OBJECT_TYPES;
|
2005-09-15 22:36:44 +02:00
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
typedef struct _FcObjectTypeList FcObjectTypeList;
|
|
|
|
|
|
|
|
struct _FcObjectTypeList {
|
|
|
|
const FcObjectTypeList *next;
|
|
|
|
const FcObjectType *types;
|
|
|
|
int ntypes;
|
2005-09-22 22:49:24 +02:00
|
|
|
int basic_offset;
|
2002-02-15 00:34:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static const FcObjectTypeList _FcBaseObjectTypesList = {
|
|
|
|
0,
|
|
|
|
_FcBaseObjectTypes,
|
|
|
|
NUM_OBJECT_TYPES
|
|
|
|
};
|
|
|
|
|
|
|
|
static const FcObjectTypeList *_FcObjectTypes = &_FcBaseObjectTypesList;
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
FcNameRegisterObjectTypes (const FcObjectType *types, int ntypes)
|
|
|
|
{
|
|
|
|
FcObjectTypeList *l;
|
|
|
|
|
|
|
|
l = (FcObjectTypeList *) malloc (sizeof (FcObjectTypeList));
|
|
|
|
if (!l)
|
|
|
|
return FcFalse;
|
2002-09-01 00:17:32 +02:00
|
|
|
FcMemAlloc (FC_MEM_OBJECTTYPE, sizeof (FcObjectTypeList));
|
2002-02-15 00:34:13 +01:00
|
|
|
l->types = types;
|
|
|
|
l->ntypes = ntypes;
|
|
|
|
l->next = _FcObjectTypes;
|
2005-09-22 22:49:24 +02:00
|
|
|
l->basic_offset = next_basic_offset;
|
|
|
|
next_basic_offset += ntypes;
|
2002-02-15 00:34:13 +01:00
|
|
|
_FcObjectTypes = l;
|
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
|
2005-08-27 04:34:24 +02:00
|
|
|
static FcBool
|
|
|
|
FcNameUnregisterObjectTypesFree (const FcObjectType *types, int ntypes,
|
|
|
|
FcBool do_free)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
|
|
|
const FcObjectTypeList *l, **prev;
|
|
|
|
|
|
|
|
for (prev = &_FcObjectTypes;
|
|
|
|
(l = *prev);
|
|
|
|
prev = (const FcObjectTypeList **) &(l->next))
|
|
|
|
{
|
|
|
|
if (l->types == types && l->ntypes == ntypes)
|
|
|
|
{
|
|
|
|
*prev = l->next;
|
2005-08-27 04:34:24 +02:00
|
|
|
if (do_free) {
|
|
|
|
FcMemFree (FC_MEM_OBJECTTYPE, sizeof (FcObjectTypeList));
|
|
|
|
free ((void *) l);
|
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FcFalse;
|
|
|
|
}
|
|
|
|
|
2005-08-27 04:34:24 +02:00
|
|
|
FcBool
|
|
|
|
FcNameUnregisterObjectTypes (const FcObjectType *types, int ntypes)
|
|
|
|
{
|
|
|
|
return FcNameUnregisterObjectTypesFree (types, ntypes, FcTrue);
|
|
|
|
}
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
const FcObjectType *
|
|
|
|
FcNameGetObjectType (const char *object)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
const FcObjectTypeList *l;
|
|
|
|
const FcObjectType *t;
|
|
|
|
|
|
|
|
for (l = _FcObjectTypes; l; l = l->next)
|
|
|
|
{
|
|
|
|
for (i = 0; i < l->ntypes; i++)
|
|
|
|
{
|
|
|
|
t = &l->types[i];
|
2002-05-30 00:07:33 +02:00
|
|
|
if (!strcmp (object, t->object))
|
2002-02-15 00:34:13 +01:00
|
|
|
return t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-15 22:36:44 +02:00
|
|
|
#define OBJECT_HASH_SIZE 31
|
|
|
|
struct objectBucket {
|
|
|
|
struct objectBucket *next;
|
|
|
|
FcChar32 hash;
|
|
|
|
int id;
|
|
|
|
};
|
|
|
|
static struct objectBucket *FcObjectBuckets[OBJECT_HASH_SIZE];
|
|
|
|
|
2005-09-22 22:49:24 +02:00
|
|
|
/* Design constraint: biggest_known_ntypes must never change
|
|
|
|
* after any call to FcNameRegisterObjectTypes. */
|
2005-09-15 22:36:44 +02:00
|
|
|
static const FcObjectType *biggest_known_types = _FcBaseObjectTypes;
|
|
|
|
static FcBool allocated_biggest_known_types;
|
|
|
|
static int biggest_known_ntypes = NUM_OBJECT_TYPES;
|
|
|
|
static int biggest_known_count = 0;
|
|
|
|
static char * biggest_ptr;
|
|
|
|
|
|
|
|
|
2005-08-27 04:34:24 +02:00
|
|
|
static FcObjectPtr
|
|
|
|
FcObjectToPtrLookup (const char * object)
|
2005-08-24 08:21:30 +02:00
|
|
|
{
|
2005-09-15 22:36:44 +02:00
|
|
|
FcObjectPtr i = 0, n;
|
2005-08-24 08:21:30 +02:00
|
|
|
const FcObjectTypeList *l;
|
2005-09-15 22:36:44 +02:00
|
|
|
FcObjectType *t = _FcUserObjectNames;
|
2005-08-27 04:34:24 +02:00
|
|
|
|
2005-08-24 08:21:30 +02:00
|
|
|
for (l = _FcObjectTypes; l; l = l->next)
|
|
|
|
{
|
|
|
|
for (i = 0; i < l->ntypes; i++)
|
|
|
|
{
|
2005-09-15 22:36:44 +02:00
|
|
|
t = (FcObjectType *)&l->types[i];
|
2005-08-24 08:21:30 +02:00
|
|
|
if (!strcmp (object, t->object))
|
2005-09-15 22:36:44 +02:00
|
|
|
{
|
|
|
|
if (l == (FcObjectTypeList*)_FcUserObjectNames)
|
2005-09-22 22:49:24 +02:00
|
|
|
return -i;
|
2005-09-15 22:36:44 +02:00
|
|
|
else
|
2005-09-22 22:49:24 +02:00
|
|
|
return l->basic_offset + i;
|
2005-09-15 22:36:44 +02:00
|
|
|
}
|
2005-08-24 08:21:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-15 22:36:44 +02:00
|
|
|
/* We didn't match. Look for the correct FcObjectTypeList
|
|
|
|
* to replace it in-place. */
|
|
|
|
for (l = _FcObjectTypes; l; l = l->next)
|
|
|
|
{
|
|
|
|
if (l->types == _FcUserObjectNames)
|
|
|
|
break;
|
|
|
|
}
|
2005-08-27 04:34:24 +02:00
|
|
|
|
2005-09-15 22:36:44 +02:00
|
|
|
if (!_FcUserObjectNames ||
|
|
|
|
(l && l->types == _FcUserObjectNames && user_obj_alloc < l->ntypes))
|
|
|
|
{
|
|
|
|
int nt = user_obj_alloc + 4;
|
|
|
|
FcObjectType * t = realloc (_FcUserObjectNames,
|
|
|
|
nt * sizeof (FcObjectType));
|
|
|
|
if (!t)
|
2005-09-22 22:49:24 +02:00
|
|
|
return 0;
|
2005-09-15 22:36:44 +02:00
|
|
|
_FcUserObjectNames = t;
|
|
|
|
user_obj_alloc = nt;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l && l->types == _FcUserObjectNames)
|
|
|
|
{
|
|
|
|
n = l->ntypes;
|
|
|
|
FcNameUnregisterObjectTypesFree (l->types, l->ntypes, FcFalse);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
n = 0;
|
|
|
|
|
|
|
|
FcNameRegisterObjectTypes (_FcUserObjectNames, n+1);
|
|
|
|
|
|
|
|
for (l = _FcObjectTypes; l; l = l->next)
|
|
|
|
{
|
|
|
|
if (l->types == _FcUserObjectNames)
|
|
|
|
{
|
|
|
|
t = (FcObjectType *)l->types;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!t)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
t[n].object = object;
|
|
|
|
t[n].type = FcTypeVoid;
|
|
|
|
|
2005-09-22 22:49:24 +02:00
|
|
|
return -n;
|
2005-09-15 22:36:44 +02:00
|
|
|
}
|
2005-08-27 04:34:24 +02:00
|
|
|
|
|
|
|
FcObjectPtr
|
|
|
|
FcObjectToPtr (const char * name)
|
|
|
|
{
|
|
|
|
FcChar32 hash = FcStringHash ((const FcChar8 *) name);
|
|
|
|
struct objectBucket **p;
|
|
|
|
struct objectBucket *b;
|
|
|
|
int size;
|
|
|
|
|
|
|
|
for (p = &FcObjectBuckets[hash % OBJECT_HASH_SIZE]; (b = *p); p = &(b->next)
|
|
|
|
)
|
|
|
|
if (b->hash == hash && !strcmp (name, (char *) (b + 1)))
|
|
|
|
return b->id;
|
|
|
|
size = sizeof (struct objectBucket) + strlen (name) + 1;
|
2005-10-06 22:45:25 +02:00
|
|
|
/* workaround glibc bug which reads strlen in groups of 4 */
|
|
|
|
b = malloc (size + sizeof (int));
|
|
|
|
FcMemAlloc (FC_MEM_STATICSTR, size + sizeof(int));
|
2005-08-27 04:34:24 +02:00
|
|
|
if (!b)
|
2005-09-22 22:49:24 +02:00
|
|
|
return 0;
|
2005-08-27 04:34:24 +02:00
|
|
|
b->next = 0;
|
|
|
|
b->hash = hash;
|
|
|
|
b->id = FcObjectToPtrLookup (name);
|
|
|
|
strcpy ((char *) (b + 1), name);
|
|
|
|
*p = b;
|
|
|
|
return b->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
FcObjectStaticNameFini (void)
|
|
|
|
{
|
|
|
|
int i, size;
|
|
|
|
struct objectBucket *b, *next;
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
for (i = 0; i < OBJECT_HASH_SIZE; i++)
|
|
|
|
{
|
|
|
|
for (b = FcObjectBuckets[i]; b; b = next)
|
|
|
|
{
|
|
|
|
next = b->next;
|
|
|
|
name = (char *) (b + 1);
|
|
|
|
size = sizeof (struct objectBucket) + strlen (name) + 1;
|
|
|
|
FcMemFree (FC_MEM_STATICSTR, size);
|
|
|
|
free (b);
|
|
|
|
}
|
|
|
|
FcObjectBuckets[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-24 08:21:30 +02:00
|
|
|
const char *
|
|
|
|
FcObjectPtrU (FcObjectPtr si)
|
|
|
|
{
|
2005-09-22 22:49:24 +02:00
|
|
|
const FcObjectTypeList *l;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
if (si > 0)
|
|
|
|
{
|
|
|
|
if (si < biggest_known_ntypes)
|
|
|
|
return biggest_known_types[si].object;
|
|
|
|
|
|
|
|
j = 0;
|
|
|
|
for (l = _FcObjectTypes; l; l = l->next)
|
|
|
|
for (i = 0; i < l->ntypes; i++, j++)
|
|
|
|
if (j == si)
|
|
|
|
return l->types[i].object;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _FcUserObjectNames[-si].object;
|
2005-08-24 08:21:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-08-27 04:34:24 +02:00
|
|
|
FcObjectNeededBytes ()
|
2005-08-24 08:21:30 +02:00
|
|
|
{
|
2005-08-27 04:34:24 +02:00
|
|
|
int num = 0, i;
|
|
|
|
for (i = 0; i < biggest_known_ntypes; i++)
|
|
|
|
{
|
|
|
|
const char * t = biggest_known_types[i].object;
|
|
|
|
num = num + strlen(t) + 1;
|
|
|
|
}
|
|
|
|
biggest_known_count = num;
|
|
|
|
return num + sizeof(int);
|
2005-08-24 08:21:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
FcObjectDistributeBytes (FcCache * metadata, void * block_ptr)
|
|
|
|
{
|
2005-08-27 04:34:24 +02:00
|
|
|
*(int *)block_ptr = biggest_known_ntypes;
|
|
|
|
block_ptr = (int *) block_ptr + 1;
|
|
|
|
biggest_ptr = block_ptr;
|
|
|
|
block_ptr = (char *) block_ptr + biggest_known_count;
|
2005-08-24 08:21:30 +02:00
|
|
|
return block_ptr;
|
|
|
|
}
|
|
|
|
|
2005-08-27 04:34:24 +02:00
|
|
|
void
|
|
|
|
FcObjectSerialize ()
|
2005-08-24 08:21:30 +02:00
|
|
|
{
|
2005-08-27 04:34:24 +02:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < biggest_known_ntypes; i++)
|
|
|
|
{
|
|
|
|
const char * t = biggest_known_types[i].object;
|
|
|
|
strcpy (biggest_ptr, t);
|
|
|
|
biggest_ptr = biggest_ptr + strlen(t) + 1;
|
|
|
|
}
|
2005-08-24 08:21:30 +02:00
|
|
|
}
|
|
|
|
|
2005-08-27 04:34:24 +02:00
|
|
|
void *
|
|
|
|
FcObjectUnserialize (FcCache metadata, void *block_ptr)
|
2005-08-24 08:21:30 +02:00
|
|
|
{
|
2005-08-27 04:34:24 +02:00
|
|
|
int new_biggest;
|
|
|
|
new_biggest = *(int *)block_ptr;
|
|
|
|
block_ptr = (int *) block_ptr + 1;
|
|
|
|
if (biggest_known_ntypes < new_biggest)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char * bp = (char *)block_ptr;
|
|
|
|
FcObjectType * bn;
|
|
|
|
FcObjectTypeList * bnl;
|
|
|
|
|
|
|
|
bn = malloc (sizeof (const FcObjectType) * (new_biggest + 1));
|
|
|
|
if (!bn)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
bnl = malloc (sizeof (FcObjectTypeList));
|
|
|
|
if (!bnl)
|
|
|
|
{
|
|
|
|
free (bn);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < new_biggest; i++)
|
|
|
|
{
|
|
|
|
const FcObjectType * t = FcNameGetObjectType(bp);
|
|
|
|
if (t)
|
|
|
|
bn[i].type = t->type;
|
|
|
|
else
|
|
|
|
bn[i].type = FcTypeVoid;
|
|
|
|
bn[i].object = bp;
|
|
|
|
bp = bp + strlen(bp) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
FcNameUnregisterObjectTypesFree (biggest_known_types, biggest_known_ntypes, FcFalse);
|
|
|
|
if (allocated_biggest_known_types)
|
|
|
|
{
|
|
|
|
free ((FcObjectTypeList *)biggest_known_types);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
allocated_biggest_known_types = FcTrue;
|
|
|
|
|
|
|
|
FcNameRegisterObjectTypes (bn, new_biggest);
|
|
|
|
biggest_known_ntypes = new_biggest;
|
|
|
|
biggest_known_types = (const FcObjectType *)bn;
|
|
|
|
}
|
|
|
|
block_ptr = (char *) block_ptr + biggest_known_count;
|
|
|
|
return block_ptr;
|
2005-08-24 08:21:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
FcObjectPtrCompare (const FcObjectPtr a, const FcObjectPtr b)
|
|
|
|
{
|
|
|
|
return a - b;
|
|
|
|
}
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
static const FcConstant _FcBaseConstants[] = {
|
2003-03-12 23:16:43 +01:00
|
|
|
{ (FcChar8 *) "thin", "weight", FC_WEIGHT_THIN, },
|
|
|
|
{ (FcChar8 *) "extralight", "weight", FC_WEIGHT_EXTRALIGHT, },
|
|
|
|
{ (FcChar8 *) "ultralight", "weight", FC_WEIGHT_EXTRALIGHT, },
|
2002-02-15 07:01:28 +01:00
|
|
|
{ (FcChar8 *) "light", "weight", FC_WEIGHT_LIGHT, },
|
2003-05-02 03:11:09 +02:00
|
|
|
{ (FcChar8 *) "book", "weight", FC_WEIGHT_BOOK, },
|
2003-03-12 23:16:43 +01:00
|
|
|
{ (FcChar8 *) "regular", "weight", FC_WEIGHT_REGULAR, },
|
2002-02-15 07:01:28 +01:00
|
|
|
{ (FcChar8 *) "medium", "weight", FC_WEIGHT_MEDIUM, },
|
|
|
|
{ (FcChar8 *) "demibold", "weight", FC_WEIGHT_DEMIBOLD, },
|
2003-03-12 23:16:43 +01:00
|
|
|
{ (FcChar8 *) "semibold", "weight", FC_WEIGHT_DEMIBOLD, },
|
2002-02-15 07:01:28 +01:00
|
|
|
{ (FcChar8 *) "bold", "weight", FC_WEIGHT_BOLD, },
|
2003-03-12 23:16:43 +01:00
|
|
|
{ (FcChar8 *) "extrabold", "weight", FC_WEIGHT_EXTRABOLD, },
|
|
|
|
{ (FcChar8 *) "ultrabold", "weight", FC_WEIGHT_EXTRABOLD, },
|
2002-02-15 07:01:28 +01:00
|
|
|
{ (FcChar8 *) "black", "weight", FC_WEIGHT_BLACK, },
|
|
|
|
|
|
|
|
{ (FcChar8 *) "roman", "slant", FC_SLANT_ROMAN, },
|
|
|
|
{ (FcChar8 *) "italic", "slant", FC_SLANT_ITALIC, },
|
|
|
|
{ (FcChar8 *) "oblique", "slant", FC_SLANT_OBLIQUE, },
|
|
|
|
|
2003-03-12 23:16:43 +01:00
|
|
|
{ (FcChar8 *) "ultracondensed", "width", FC_WIDTH_ULTRACONDENSED },
|
|
|
|
{ (FcChar8 *) "extracondensed", "width", FC_WIDTH_EXTRACONDENSED },
|
|
|
|
{ (FcChar8 *) "condensed", "width", FC_WIDTH_CONDENSED },
|
|
|
|
{ (FcChar8 *) "semicondensed", "width", FC_WIDTH_SEMICONDENSED },
|
|
|
|
{ (FcChar8 *) "normal", "width", FC_WIDTH_NORMAL },
|
|
|
|
{ (FcChar8 *) "semiexpanded", "width", FC_WIDTH_SEMIEXPANDED },
|
|
|
|
{ (FcChar8 *) "expanded", "width", FC_WIDTH_EXPANDED },
|
|
|
|
{ (FcChar8 *) "extraexpanded", "width", FC_WIDTH_EXTRAEXPANDED },
|
|
|
|
{ (FcChar8 *) "ultraexpanded", "width", FC_WIDTH_ULTRAEXPANDED },
|
|
|
|
|
2002-02-15 07:01:28 +01:00
|
|
|
{ (FcChar8 *) "proportional", "spacing", FC_PROPORTIONAL, },
|
2003-09-06 21:40:41 +02:00
|
|
|
{ (FcChar8 *) "dual", "spacing", FC_DUAL, },
|
2002-02-15 07:01:28 +01:00
|
|
|
{ (FcChar8 *) "mono", "spacing", FC_MONO, },
|
|
|
|
{ (FcChar8 *) "charcell", "spacing", FC_CHARCELL, },
|
|
|
|
|
2002-10-02 09:11:30 +02:00
|
|
|
{ (FcChar8 *) "unknown", "rgba", FC_RGBA_UNKNOWN },
|
2002-02-15 07:01:28 +01:00
|
|
|
{ (FcChar8 *) "rgb", "rgba", FC_RGBA_RGB, },
|
|
|
|
{ (FcChar8 *) "bgr", "rgba", FC_RGBA_BGR, },
|
|
|
|
{ (FcChar8 *) "vrgb", "rgba", FC_RGBA_VRGB },
|
|
|
|
{ (FcChar8 *) "vbgr", "rgba", FC_RGBA_VBGR },
|
2002-10-02 09:11:30 +02:00
|
|
|
{ (FcChar8 *) "none", "rgba", FC_RGBA_NONE },
|
2003-09-23 22:12:20 +02:00
|
|
|
|
|
|
|
{ (FcChar8 *) "hintnone", "hintstyle", FC_HINT_NONE },
|
|
|
|
{ (FcChar8 *) "hintslight", "hintstyle", FC_HINT_SLIGHT },
|
|
|
|
{ (FcChar8 *) "hintmedium", "hintstyle", FC_HINT_MEDIUM },
|
|
|
|
{ (FcChar8 *) "hintfull", "hintstyle", FC_HINT_FULL },
|
2002-02-15 00:34:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#define NUM_FC_CONSTANTS (sizeof _FcBaseConstants/sizeof _FcBaseConstants[0])
|
|
|
|
|
|
|
|
typedef struct _FcConstantList FcConstantList;
|
|
|
|
|
|
|
|
struct _FcConstantList {
|
|
|
|
const FcConstantList *next;
|
|
|
|
const FcConstant *consts;
|
|
|
|
int nconsts;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const FcConstantList _FcBaseConstantList = {
|
|
|
|
0,
|
|
|
|
_FcBaseConstants,
|
|
|
|
NUM_FC_CONSTANTS
|
|
|
|
};
|
|
|
|
|
|
|
|
static const FcConstantList *_FcConstants = &_FcBaseConstantList;
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
FcNameRegisterConstants (const FcConstant *consts, int nconsts)
|
|
|
|
{
|
|
|
|
FcConstantList *l;
|
|
|
|
|
|
|
|
l = (FcConstantList *) malloc (sizeof (FcConstantList));
|
|
|
|
if (!l)
|
|
|
|
return FcFalse;
|
2002-09-01 00:17:32 +02:00
|
|
|
FcMemAlloc (FC_MEM_CONSTANT, sizeof (FcConstantList));
|
2002-02-15 00:34:13 +01:00
|
|
|
l->consts = consts;
|
|
|
|
l->nconsts = nconsts;
|
|
|
|
l->next = _FcConstants;
|
|
|
|
_FcConstants = l;
|
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
FcNameUnregisterConstants (const FcConstant *consts, int nconsts)
|
|
|
|
{
|
|
|
|
const FcConstantList *l, **prev;
|
|
|
|
|
|
|
|
for (prev = &_FcConstants;
|
|
|
|
(l = *prev);
|
|
|
|
prev = (const FcConstantList **) &(l->next))
|
|
|
|
{
|
|
|
|
if (l->consts == consts && l->nconsts == nconsts)
|
|
|
|
{
|
|
|
|
*prev = l->next;
|
2002-09-01 00:17:32 +02:00
|
|
|
FcMemFree (FC_MEM_CONSTANT, sizeof (FcConstantList));
|
2002-02-15 00:34:13 +01:00
|
|
|
free ((void *) l);
|
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FcFalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
const FcConstant *
|
2002-02-15 07:01:28 +01:00
|
|
|
FcNameGetConstant (FcChar8 *string)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
|
|
|
const FcConstantList *l;
|
|
|
|
int i;
|
2003-03-05 06:53:10 +01:00
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
for (l = _FcConstants; l; l = l->next)
|
|
|
|
{
|
|
|
|
for (i = 0; i < l->nconsts; i++)
|
|
|
|
if (!FcStrCmpIgnoreCase (string, l->consts[i].name))
|
|
|
|
return &l->consts[i];
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
FcBool
|
2002-02-15 07:01:28 +01:00
|
|
|
FcNameConstant (FcChar8 *string, int *result)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
|
|
|
const FcConstant *c;
|
|
|
|
|
|
|
|
if ((c = FcNameGetConstant(string)))
|
|
|
|
{
|
|
|
|
*result = c->value;
|
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
return FcFalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
FcBool
|
2005-01-29 00:55:14 +01:00
|
|
|
FcNameBool (const FcChar8 *v, FcBool *result)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
|
|
|
char c0, c1;
|
|
|
|
|
|
|
|
c0 = *v;
|
2003-03-05 06:53:10 +01:00
|
|
|
c0 = FcToLower (c0);
|
2002-02-15 00:34:13 +01:00
|
|
|
if (c0 == 't' || c0 == 'y' || c0 == '1')
|
|
|
|
{
|
|
|
|
*result = FcTrue;
|
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
if (c0 == 'f' || c0 == 'n' || c0 == '0')
|
|
|
|
{
|
|
|
|
*result = FcFalse;
|
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
if (c0 == 'o')
|
|
|
|
{
|
|
|
|
c1 = v[1];
|
2003-03-05 06:53:10 +01:00
|
|
|
c1 = FcToLower (c1);
|
2002-02-15 00:34:13 +01:00
|
|
|
if (c1 == 'n')
|
|
|
|
{
|
|
|
|
*result = FcTrue;
|
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
if (c1 == 'f')
|
|
|
|
{
|
|
|
|
*result = FcFalse;
|
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FcFalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
static FcValue
|
2002-02-15 07:01:28 +01:00
|
|
|
FcNameConvert (FcType type, FcChar8 *string, FcMatrix *m)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
|
|
|
FcValue v;
|
|
|
|
|
|
|
|
v.type = type;
|
|
|
|
switch (v.type) {
|
|
|
|
case FcTypeInteger:
|
|
|
|
if (!FcNameConstant (string, &v.u.i))
|
2002-02-15 07:01:28 +01:00
|
|
|
v.u.i = atoi ((char *) string);
|
2002-02-15 00:34:13 +01:00
|
|
|
break;
|
|
|
|
case FcTypeString:
|
2005-08-27 04:34:24 +02:00
|
|
|
v.u.s = FcStrStaticName(string);
|
2002-02-15 00:34:13 +01:00
|
|
|
break;
|
|
|
|
case FcTypeBool:
|
|
|
|
if (!FcNameBool (string, &v.u.b))
|
|
|
|
v.u.b = FcFalse;
|
|
|
|
break;
|
|
|
|
case FcTypeDouble:
|
2002-02-15 07:01:28 +01:00
|
|
|
v.u.d = strtod ((char *) string, 0);
|
2002-02-15 00:34:13 +01:00
|
|
|
break;
|
|
|
|
case FcTypeMatrix:
|
2005-08-24 08:21:30 +02:00
|
|
|
v.u.m = m;
|
2002-02-15 07:01:28 +01:00
|
|
|
sscanf ((char *) string, "%lg %lg %lg %lg", &m->xx, &m->xy, &m->yx, &m->yy);
|
2002-02-15 00:34:13 +01:00
|
|
|
break;
|
|
|
|
case FcTypeCharSet:
|
2005-08-24 08:21:30 +02:00
|
|
|
v.u.c = FcNameParseCharSet (string);
|
2002-02-15 00:34:13 +01:00
|
|
|
break;
|
2002-08-22 09:36:45 +02:00
|
|
|
case FcTypeLangSet:
|
2005-08-24 08:21:30 +02:00
|
|
|
v.u.l = FcNameParseLangSet (string);
|
2002-08-22 09:36:45 +02:00
|
|
|
break;
|
2002-02-15 00:34:13 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2002-02-15 07:01:28 +01:00
|
|
|
static const FcChar8 *
|
|
|
|
FcNameFindNext (const FcChar8 *cur, const char *delim, FcChar8 *save, FcChar8 *last)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2002-02-15 07:01:28 +01:00
|
|
|
FcChar8 c;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
|
|
|
while ((c = *cur))
|
|
|
|
{
|
|
|
|
if (c == '\\')
|
|
|
|
{
|
|
|
|
++cur;
|
|
|
|
if (!(c = *cur))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (strchr (delim, c))
|
|
|
|
break;
|
|
|
|
++cur;
|
|
|
|
*save++ = c;
|
|
|
|
}
|
|
|
|
*save = 0;
|
|
|
|
*last = *cur;
|
|
|
|
if (*cur)
|
|
|
|
cur++;
|
|
|
|
return cur;
|
|
|
|
}
|
|
|
|
|
|
|
|
FcPattern *
|
2002-02-15 07:01:28 +01:00
|
|
|
FcNameParse (const FcChar8 *name)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2002-02-15 07:01:28 +01:00
|
|
|
FcChar8 *save;
|
2002-02-15 00:34:13 +01:00
|
|
|
FcPattern *pat;
|
|
|
|
double d;
|
2002-02-15 07:01:28 +01:00
|
|
|
FcChar8 *e;
|
|
|
|
FcChar8 delim;
|
2002-02-15 00:34:13 +01:00
|
|
|
FcValue v;
|
|
|
|
FcMatrix m;
|
|
|
|
const FcObjectType *t;
|
|
|
|
const FcConstant *c;
|
|
|
|
|
2002-09-01 00:17:32 +02:00
|
|
|
/* freed below */
|
2002-02-15 07:01:28 +01:00
|
|
|
save = malloc (strlen ((char *) name) + 1);
|
2002-02-15 00:34:13 +01:00
|
|
|
if (!save)
|
|
|
|
goto bail0;
|
|
|
|
pat = FcPatternCreate ();
|
|
|
|
if (!pat)
|
|
|
|
goto bail1;
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
name = FcNameFindNext (name, "-,:", save, &delim);
|
|
|
|
if (save[0])
|
|
|
|
{
|
|
|
|
if (!FcPatternAddString (pat, FC_FAMILY, save))
|
|
|
|
goto bail2;
|
|
|
|
}
|
|
|
|
if (delim != ',')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (delim == '-')
|
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
name = FcNameFindNext (name, "-,:", save, &delim);
|
2002-02-15 07:01:28 +01:00
|
|
|
d = strtod ((char *) save, (char **) &e);
|
2002-02-15 00:34:13 +01:00
|
|
|
if (e != save)
|
|
|
|
{
|
|
|
|
if (!FcPatternAddDouble (pat, FC_SIZE, d))
|
|
|
|
goto bail2;
|
|
|
|
}
|
|
|
|
if (delim != ',')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (delim == ':')
|
|
|
|
{
|
|
|
|
name = FcNameFindNext (name, "=_:", save, &delim);
|
|
|
|
if (save[0])
|
|
|
|
{
|
|
|
|
if (delim == '=' || delim == '_')
|
|
|
|
{
|
2002-02-15 07:01:28 +01:00
|
|
|
t = FcNameGetObjectType ((char *) save);
|
2002-02-15 00:34:13 +01:00
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
name = FcNameFindNext (name, ":,", save, &delim);
|
2002-06-27 00:14:08 +02:00
|
|
|
if (t)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
|
|
|
v = FcNameConvert (t->type, save, &m);
|
|
|
|
if (!FcPatternAdd (pat, t->object, v, FcTrue))
|
|
|
|
{
|
2002-08-22 09:36:45 +02:00
|
|
|
switch (v.type) {
|
|
|
|
case FcTypeCharSet:
|
2005-08-24 08:21:30 +02:00
|
|
|
FcCharSetDestroy ((FcCharSet *) v.u.c);
|
2002-08-22 09:36:45 +02:00
|
|
|
break;
|
|
|
|
case FcTypeLangSet:
|
2005-08-24 08:21:30 +02:00
|
|
|
FcLangSetDestroy ((FcLangSet *) v.u.l);
|
2002-08-22 09:36:45 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
goto bail2;
|
|
|
|
}
|
2002-08-22 09:36:45 +02:00
|
|
|
switch (v.type) {
|
|
|
|
case FcTypeCharSet:
|
2005-08-24 08:21:30 +02:00
|
|
|
FcCharSetDestroy ((FcCharSet *) v.u.c);
|
2002-08-22 09:36:45 +02:00
|
|
|
break;
|
|
|
|
case FcTypeLangSet:
|
2005-08-24 08:21:30 +02:00
|
|
|
FcLangSetDestroy ((FcLangSet *) v.u.l);
|
2002-08-22 09:36:45 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
if (delim != ',')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((c = FcNameGetConstant (save)))
|
|
|
|
{
|
|
|
|
if (!FcPatternAddInteger (pat, c->object, c->value))
|
|
|
|
goto bail2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free (save);
|
|
|
|
return pat;
|
|
|
|
|
|
|
|
bail2:
|
|
|
|
FcPatternDestroy (pat);
|
|
|
|
bail1:
|
|
|
|
free (save);
|
|
|
|
bail0:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static FcBool
|
2002-02-18 23:29:28 +01:00
|
|
|
FcNameUnparseString (FcStrBuf *buf,
|
2002-02-15 00:34:13 +01:00
|
|
|
const FcChar8 *string,
|
|
|
|
const FcChar8 *escape)
|
|
|
|
{
|
|
|
|
FcChar8 c;
|
|
|
|
while ((c = *string++))
|
|
|
|
{
|
|
|
|
if (escape && strchr ((char *) escape, (char) c))
|
|
|
|
{
|
2002-02-18 23:29:28 +01:00
|
|
|
if (!FcStrBufChar (buf, escape[0]))
|
2002-02-15 00:34:13 +01:00
|
|
|
return FcFalse;
|
|
|
|
}
|
2002-02-18 23:29:28 +01:00
|
|
|
if (!FcStrBufChar (buf, c))
|
2002-02-15 00:34:13 +01:00
|
|
|
return FcFalse;
|
|
|
|
}
|
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
|
|
|
|
static FcBool
|
2002-02-18 23:29:28 +01:00
|
|
|
FcNameUnparseValue (FcStrBuf *buf,
|
2005-08-24 08:21:30 +02:00
|
|
|
int bank,
|
|
|
|
FcValue *v0,
|
2002-02-15 00:34:13 +01:00
|
|
|
FcChar8 *escape)
|
|
|
|
{
|
|
|
|
FcChar8 temp[1024];
|
2005-08-24 08:21:30 +02:00
|
|
|
FcValue v = FcValueCanonicalize(v0);
|
2002-02-15 00:34:13 +01:00
|
|
|
|
|
|
|
switch (v.type) {
|
|
|
|
case FcTypeVoid:
|
|
|
|
return FcTrue;
|
|
|
|
case FcTypeInteger:
|
|
|
|
sprintf ((char *) temp, "%d", v.u.i);
|
|
|
|
return FcNameUnparseString (buf, temp, 0);
|
|
|
|
case FcTypeDouble:
|
|
|
|
sprintf ((char *) temp, "%g", v.u.d);
|
|
|
|
return FcNameUnparseString (buf, temp, 0);
|
|
|
|
case FcTypeString:
|
2005-08-24 08:21:30 +02:00
|
|
|
return FcNameUnparseString (buf, v.u.s, escape);
|
2002-02-15 00:34:13 +01:00
|
|
|
case FcTypeBool:
|
2002-02-15 07:01:28 +01:00
|
|
|
return FcNameUnparseString (buf, v.u.b ? (FcChar8 *) "True" : (FcChar8 *) "False", 0);
|
2002-02-15 00:34:13 +01:00
|
|
|
case FcTypeMatrix:
|
|
|
|
sprintf ((char *) temp, "%g %g %g %g",
|
2005-08-24 08:21:30 +02:00
|
|
|
v.u.m->xx, v.u.m->xy, v.u.m->yx, v.u.m->yy);
|
2002-02-15 00:34:13 +01:00
|
|
|
return FcNameUnparseString (buf, temp, 0);
|
|
|
|
case FcTypeCharSet:
|
2005-08-24 08:21:30 +02:00
|
|
|
return FcNameUnparseCharSet (buf, v.u.c);
|
2002-08-22 09:36:45 +02:00
|
|
|
case FcTypeLangSet:
|
2005-08-24 08:21:30 +02:00
|
|
|
return FcNameUnparseLangSet (buf, v.u.l);
|
2002-06-02 23:07:57 +02:00
|
|
|
case FcTypeFTFace:
|
|
|
|
return FcTrue;
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
return FcFalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
static FcBool
|
2002-02-18 23:29:28 +01:00
|
|
|
FcNameUnparseValueList (FcStrBuf *buf,
|
2005-06-28 05:41:02 +02:00
|
|
|
FcValueListPtr v,
|
2002-02-15 07:01:28 +01:00
|
|
|
FcChar8 *escape)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2005-06-28 05:41:02 +02:00
|
|
|
while (FcValueListPtrU(v))
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2005-08-24 08:21:30 +02:00
|
|
|
if (!FcNameUnparseValue (buf, v.bank, &FcValueListPtrU(v)->value, escape))
|
2002-02-15 00:34:13 +01:00
|
|
|
return FcFalse;
|
2005-06-28 05:41:02 +02:00
|
|
|
if (FcValueListPtrU(v = FcValueListPtrU(v)->next))
|
2002-02-15 07:01:28 +01:00
|
|
|
if (!FcNameUnparseString (buf, (FcChar8 *) ",", 0))
|
2002-02-15 00:34:13 +01:00
|
|
|
return FcFalse;
|
|
|
|
}
|
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define FC_ESCAPE_FIXED "\\-:,"
|
|
|
|
#define FC_ESCAPE_VARIABLE "\\=_:,"
|
|
|
|
|
|
|
|
FcChar8 *
|
|
|
|
FcNameUnparse (FcPattern *pat)
|
|
|
|
{
|
2002-02-18 23:29:28 +01:00
|
|
|
FcStrBuf buf;
|
2002-02-15 00:34:13 +01:00
|
|
|
FcChar8 buf_static[8192];
|
|
|
|
int i;
|
|
|
|
FcPatternElt *e;
|
|
|
|
const FcObjectTypeList *l;
|
|
|
|
const FcObjectType *o;
|
|
|
|
|
2002-02-18 23:29:28 +01:00
|
|
|
FcStrBufInit (&buf, buf_static, sizeof (buf_static));
|
2002-06-03 10:31:15 +02:00
|
|
|
e = FcPatternFindElt (pat, FC_FAMILY);
|
2002-02-15 00:34:13 +01:00
|
|
|
if (e)
|
|
|
|
{
|
2002-02-15 07:01:28 +01:00
|
|
|
if (!FcNameUnparseValueList (&buf, e->values, (FcChar8 *) FC_ESCAPE_FIXED))
|
2002-02-15 00:34:13 +01:00
|
|
|
goto bail0;
|
|
|
|
}
|
2002-06-03 10:31:15 +02:00
|
|
|
e = FcPatternFindElt (pat, FC_SIZE);
|
2002-02-15 00:34:13 +01:00
|
|
|
if (e)
|
|
|
|
{
|
2002-02-15 07:01:28 +01:00
|
|
|
if (!FcNameUnparseString (&buf, (FcChar8 *) "-", 0))
|
2002-02-15 00:34:13 +01:00
|
|
|
goto bail0;
|
2002-02-15 07:01:28 +01:00
|
|
|
if (!FcNameUnparseValueList (&buf, e->values, (FcChar8 *) FC_ESCAPE_FIXED))
|
2002-02-15 00:34:13 +01:00
|
|
|
goto bail0;
|
|
|
|
}
|
|
|
|
for (l = _FcObjectTypes; l; l = l->next)
|
|
|
|
{
|
|
|
|
for (i = 0; i < l->ntypes; i++)
|
|
|
|
{
|
|
|
|
o = &l->types[i];
|
|
|
|
if (!strcmp (o->object, FC_FAMILY) ||
|
|
|
|
!strcmp (o->object, FC_SIZE) ||
|
|
|
|
!strcmp (o->object, FC_FILE))
|
|
|
|
continue;
|
|
|
|
|
2002-06-03 10:31:15 +02:00
|
|
|
e = FcPatternFindElt (pat, o->object);
|
2002-02-15 00:34:13 +01:00
|
|
|
if (e)
|
|
|
|
{
|
2002-02-15 07:01:28 +01:00
|
|
|
if (!FcNameUnparseString (&buf, (FcChar8 *) ":", 0))
|
2002-02-15 00:34:13 +01:00
|
|
|
goto bail0;
|
2002-02-15 07:01:28 +01:00
|
|
|
if (!FcNameUnparseString (&buf, (FcChar8 *) o->object, (FcChar8 *) FC_ESCAPE_VARIABLE))
|
2002-02-15 00:34:13 +01:00
|
|
|
goto bail0;
|
2002-02-15 07:01:28 +01:00
|
|
|
if (!FcNameUnparseString (&buf, (FcChar8 *) "=", 0))
|
2002-02-15 00:34:13 +01:00
|
|
|
goto bail0;
|
|
|
|
if (!FcNameUnparseValueList (&buf, e->values,
|
2002-02-15 07:01:28 +01:00
|
|
|
(FcChar8 *) FC_ESCAPE_VARIABLE))
|
2002-02-15 00:34:13 +01:00
|
|
|
goto bail0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-02-18 23:29:28 +01:00
|
|
|
return FcStrBufDone (&buf);
|
2002-02-15 00:34:13 +01:00
|
|
|
bail0:
|
2002-02-18 23:29:28 +01:00
|
|
|
FcStrBufDestroy (&buf);
|
2002-02-15 00:34:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|