2002-02-15 00:34:13 +01:00
|
|
|
/*
|
2008-08-12 22:34:24 +02:00
|
|
|
* fontconfig/src/fcname.c
|
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
|
2010-11-10 22:45:42 +01:00
|
|
|
* documentation, and that the name of the author(s) not be used in
|
2002-02-15 00:34:13 +01:00
|
|
|
* advertising or publicity pertaining to distribution of the software without
|
2010-11-10 22:45:42 +01:00
|
|
|
* specific, written prior permission. The authors make no
|
2002-02-15 00:34:13 +01:00
|
|
|
* representations about the suitability of this software for any purpose. It
|
|
|
|
* is provided "as is" without express or implied warranty.
|
|
|
|
*
|
2009-03-12 21:00:08 +01:00
|
|
|
* THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
2002-02-15 00:34:13 +01:00
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
2009-03-12 21:00:08 +01:00
|
|
|
* EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
2002-02-15 00:34:13 +01:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2006-04-25 07:57:41 +02:00
|
|
|
#include "fcint.h"
|
2002-02-15 00:34:13 +01:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2012-09-20 20:42:31 +02:00
|
|
|
static const FcObjectType FcObjects[] = {
|
2013-02-06 11:02:07 +01:00
|
|
|
#define FC_OBJECT(NAME, Type, Cmp) { FC_##NAME, Type },
|
2012-09-20 20:42:31 +02:00
|
|
|
#include "fcobjs.h"
|
|
|
|
#undef FC_OBJECT
|
2002-02-15 00:34:13 +01:00
|
|
|
};
|
|
|
|
|
2012-09-20 20:42:31 +02:00
|
|
|
#define NUM_OBJECT_TYPES ((int) (sizeof FcObjects / sizeof FcObjects[0]))
|
2002-02-15 00:34:13 +01:00
|
|
|
|
2012-09-20 20:42:31 +02:00
|
|
|
static const FcObjectType *
|
2006-08-31 03:50:58 +02:00
|
|
|
FcObjectFindById (FcObject object)
|
|
|
|
{
|
2012-09-20 20:42:31 +02:00
|
|
|
if (1 <= object && object <= NUM_OBJECT_TYPES)
|
|
|
|
return &FcObjects[object - 1];
|
|
|
|
return FcObjectLookupOtherTypeById (object);
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
|
2006-08-31 03:50:58 +02:00
|
|
|
FcBool
|
|
|
|
FcNameRegisterObjectTypes (const FcObjectType *types, int ntypes)
|
|
|
|
{
|
2012-09-20 20:01:47 +02:00
|
|
|
/* Deprecated. */
|
|
|
|
return FcFalse;
|
2006-08-31 03:50:58 +02:00
|
|
|
}
|
2005-09-15 22:36:44 +02:00
|
|
|
|
2006-08-31 03:50:58 +02:00
|
|
|
FcBool
|
|
|
|
FcNameUnregisterObjectTypes (const FcObjectType *types, int ntypes)
|
|
|
|
{
|
2012-09-20 20:01:47 +02:00
|
|
|
/* Deprecated. */
|
|
|
|
return FcFalse;
|
2006-08-31 03:50:58 +02:00
|
|
|
}
|
2005-09-15 22:36:44 +02:00
|
|
|
|
2006-08-31 03:50:58 +02:00
|
|
|
const FcObjectType *
|
|
|
|
FcNameGetObjectType (const char *object)
|
|
|
|
{
|
2012-09-20 20:42:31 +02:00
|
|
|
int id = FcObjectLookupBuiltinIdByName (object);
|
|
|
|
|
|
|
|
if (!id)
|
|
|
|
return FcObjectLookupOtherTypeByName (object);
|
|
|
|
|
|
|
|
return &FcObjects[id - 1];
|
2005-09-15 22:36:44 +02:00
|
|
|
}
|
2005-08-27 04:34:24 +02:00
|
|
|
|
2006-08-30 13:16:22 +02:00
|
|
|
FcBool
|
|
|
|
FcObjectValidType (FcObject object, FcType type)
|
|
|
|
{
|
2012-09-20 20:42:31 +02:00
|
|
|
const FcObjectType *t = FcObjectFindById (object);
|
2006-08-31 03:50:58 +02:00
|
|
|
|
|
|
|
if (t) {
|
2012-12-30 04:11:09 +01:00
|
|
|
switch ((int) t->type) {
|
2013-06-28 08:04:11 +02:00
|
|
|
case FcTypeUnknown:
|
|
|
|
return FcTrue;
|
2006-08-31 03:50:58 +02:00
|
|
|
case FcTypeDouble:
|
|
|
|
case FcTypeInteger:
|
|
|
|
if (type == FcTypeDouble || type == FcTypeInteger)
|
|
|
|
return FcTrue;
|
|
|
|
break;
|
2006-09-01 03:16:00 +02:00
|
|
|
case FcTypeLangSet:
|
|
|
|
if (type == FcTypeLangSet || type == FcTypeString)
|
|
|
|
return FcTrue;
|
|
|
|
break;
|
2013-11-20 10:44:59 +01:00
|
|
|
case FcTypeRange:
|
2014-07-04 23:15:11 +02:00
|
|
|
if (type == FcTypeRange ||
|
|
|
|
type == FcTypeDouble ||
|
|
|
|
type == FcTypeInteger)
|
2013-11-20 10:44:59 +01:00
|
|
|
return FcTrue;
|
|
|
|
break;
|
2006-08-31 03:50:58 +02:00
|
|
|
default:
|
2013-06-28 08:04:11 +02:00
|
|
|
if (type == t->type)
|
2006-08-31 03:50:58 +02:00
|
|
|
return FcTrue;
|
|
|
|
break;
|
|
|
|
}
|
2006-08-30 13:16:22 +02:00
|
|
|
return FcFalse;
|
2006-08-31 03:50:58 +02:00
|
|
|
}
|
2006-08-30 13:16:22 +02:00
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
|
|
|
|
FcObject
|
|
|
|
FcObjectFromName (const char * name)
|
2005-08-27 04:34:24 +02:00
|
|
|
{
|
2012-09-20 20:42:31 +02:00
|
|
|
return FcObjectLookupIdByName (name);
|
2006-08-31 03:50:58 +02:00
|
|
|
}
|
|
|
|
|
2008-08-13 08:24:42 +02:00
|
|
|
FcObjectSet *
|
|
|
|
FcObjectGetSet (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
FcObjectSet *os = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
os = FcObjectSetCreate ();
|
2012-09-20 20:42:31 +02:00
|
|
|
for (i = 0; i < NUM_OBJECT_TYPES; i++)
|
2008-08-13 08:24:42 +02:00
|
|
|
FcObjectSetAdd (os, FcObjects[i].object);
|
|
|
|
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
2005-08-24 08:21:30 +02:00
|
|
|
const char *
|
2006-08-30 13:16:22 +02:00
|
|
|
FcObjectName (FcObject object)
|
2005-08-24 08:21:30 +02:00
|
|
|
{
|
2012-09-20 20:42:31 +02:00
|
|
|
const FcObjectType *o = FcObjectFindById (object);
|
2005-09-22 22:49:24 +02:00
|
|
|
|
2006-08-31 03:50:58 +02:00
|
|
|
if (o)
|
|
|
|
return o->object;
|
2012-09-20 20:42:31 +02:00
|
|
|
|
|
|
|
return FcObjectLookupOtherNameById (object);
|
2005-08-24 08:21:30 +02:00
|
|
|
}
|
|
|
|
|
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, },
|
2014-07-25 22:24:26 +02:00
|
|
|
{ (FcChar8 *) "demilight", "weight", FC_WEIGHT_DEMILIGHT, },
|
|
|
|
{ (FcChar8 *) "semilight", "weight", FC_WEIGHT_DEMILIGHT, },
|
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, },
|
2006-09-03 02:52:12 +02:00
|
|
|
{ (FcChar8 *) "heavy", "weight", FC_WEIGHT_HEAVY, },
|
2002-02-15 07:01:28 +01:00
|
|
|
|
|
|
|
{ (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 },
|
2012-09-20 20:42:31 +02:00
|
|
|
{ (FcChar8 *) "semicondensed", "width", FC_WIDTH_SEMICONDENSED },
|
2003-03-12 23:16:43 +01:00
|
|
|
{ (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 },
|
2010-04-12 18:18:50 +02:00
|
|
|
|
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 },
|
2006-09-03 02:52:12 +02:00
|
|
|
|
|
|
|
{ (FcChar8 *) "antialias", "antialias", FcTrue },
|
|
|
|
{ (FcChar8 *) "hinting", "hinting", FcTrue },
|
|
|
|
{ (FcChar8 *) "verticallayout", "verticallayout", FcTrue },
|
|
|
|
{ (FcChar8 *) "autohint", "autohint", FcTrue },
|
2012-06-11 07:14:41 +02:00
|
|
|
{ (FcChar8 *) "globaladvance", "globaladvance", FcTrue }, /* deprecated */
|
2006-09-03 02:52:12 +02:00
|
|
|
{ (FcChar8 *) "outline", "outline", FcTrue },
|
|
|
|
{ (FcChar8 *) "scalable", "scalable", FcTrue },
|
|
|
|
{ (FcChar8 *) "minspace", "minspace", FcTrue },
|
|
|
|
{ (FcChar8 *) "embolden", "embolden", FcTrue },
|
|
|
|
{ (FcChar8 *) "embeddedbitmap", "embeddedbitmap", FcTrue },
|
|
|
|
{ (FcChar8 *) "decorative", "decorative", FcTrue },
|
2008-05-04 04:33:45 +02:00
|
|
|
{ (FcChar8 *) "lcdnone", "lcdfilter", FC_LCD_NONE },
|
|
|
|
{ (FcChar8 *) "lcddefault", "lcdfilter", FC_LCD_DEFAULT },
|
|
|
|
{ (FcChar8 *) "lcdlight", "lcdfilter", FC_LCD_LIGHT },
|
|
|
|
{ (FcChar8 *) "lcdlegacy", "lcdfilter", FC_LCD_LEGACY },
|
2002-02-15 00:34:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#define NUM_FC_CONSTANTS (sizeof _FcBaseConstants/sizeof _FcBaseConstants[0])
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
FcNameRegisterConstants (const FcConstant *consts, int nconsts)
|
|
|
|
{
|
2012-09-20 20:01:47 +02:00
|
|
|
/* Deprecated. */
|
|
|
|
return FcFalse;
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
FcNameUnregisterConstants (const FcConstant *consts, int nconsts)
|
|
|
|
{
|
2012-09-20 20:01:47 +02:00
|
|
|
/* Deprecated. */
|
2002-02-15 00:34:13 +01:00
|
|
|
return FcFalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
const FcConstant *
|
2011-11-07 21:26:52 +01:00
|
|
|
FcNameGetConstant (const FcChar8 *string)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2012-09-20 20:42:31 +02:00
|
|
|
unsigned int i;
|
2012-09-20 20:01:47 +02:00
|
|
|
|
|
|
|
for (i = 0; i < NUM_FC_CONSTANTS; i++)
|
|
|
|
if (!FcStrCmpIgnoreCase (string, _FcBaseConstants[i].name))
|
|
|
|
return &_FcBaseConstants[i];
|
2003-03-05 06:53:10 +01:00
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
FcBool
|
2011-11-07 21:26:52 +01:00
|
|
|
FcNameConstant (const 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;
|
|
|
|
}
|
2017-09-16 19:45:02 +02:00
|
|
|
if (c0 == 'd' || c0 == 'x' || c0 == '2')
|
|
|
|
{
|
|
|
|
*result = FcDontCare;
|
|
|
|
return FcTrue;
|
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
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;
|
|
|
|
}
|
2017-09-16 19:45:02 +02:00
|
|
|
if (c1 == 'r')
|
|
|
|
{
|
|
|
|
*result = FcDontCare;
|
|
|
|
return FcTrue;
|
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
return FcFalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
static FcValue
|
2012-03-28 06:37:15 +02:00
|
|
|
FcNameConvert (FcType type, FcChar8 *string)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
|
|
|
FcValue v;
|
2012-03-28 06:37:15 +02:00
|
|
|
FcMatrix m;
|
2013-11-20 10:44:59 +01:00
|
|
|
double b, e;
|
|
|
|
char *p;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
|
|
|
v.type = type;
|
2012-12-30 04:11:09 +01:00
|
|
|
switch ((int) v.type) {
|
2002-02-15 00:34:13 +01:00
|
|
|
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:
|
2013-01-02 09:06:15 +01:00
|
|
|
v.u.s = FcStrdup (string);
|
2006-09-03 05:23:31 +02:00
|
|
|
if (!v.u.s)
|
|
|
|
v.type = FcTypeVoid;
|
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:
|
2013-01-02 03:27:54 +01:00
|
|
|
FcMatrixInit (&m);
|
2012-03-28 06:37:15 +02:00
|
|
|
sscanf ((char *) string, "%lg %lg %lg %lg", &m.xx, &m.xy, &m.yx, &m.yy);
|
|
|
|
v.u.m = FcMatrixCopy (&m);
|
2002-02-15 00:34:13 +01:00
|
|
|
break;
|
|
|
|
case FcTypeCharSet:
|
2005-08-24 08:21:30 +02:00
|
|
|
v.u.c = FcNameParseCharSet (string);
|
2006-09-03 05:23:31 +02:00
|
|
|
if (!v.u.c)
|
|
|
|
v.type = FcTypeVoid;
|
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);
|
2006-09-03 05:23:31 +02:00
|
|
|
if (!v.u.l)
|
|
|
|
v.type = FcTypeVoid;
|
2002-08-22 09:36:45 +02:00
|
|
|
break;
|
2013-11-20 10:44:59 +01:00
|
|
|
case FcTypeRange:
|
2017-09-13 09:29:20 +02:00
|
|
|
if (sscanf ((char *) string, "[%lg %lg]", &b, &e) != 2)
|
2013-11-20 10:44:59 +01:00
|
|
|
{
|
|
|
|
v.u.d = strtod ((char *) string, &p);
|
|
|
|
if (p != NULL && p[0] != 0)
|
|
|
|
{
|
|
|
|
v.type = FcTypeVoid;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
v.type = FcTypeDouble;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
v.u.r = FcRangeCreateDouble (b, e);
|
|
|
|
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;
|
2010-04-12 18:18:50 +02:00
|
|
|
|
2013-05-24 06:55:07 +02:00
|
|
|
while ((c = *cur))
|
|
|
|
{
|
|
|
|
if (!isspace (c))
|
|
|
|
break;
|
|
|
|
++cur;
|
|
|
|
}
|
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;
|
|
|
|
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);
|
2006-09-03 02:52:12 +02:00
|
|
|
if (t)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2012-03-28 06:37:15 +02:00
|
|
|
v = FcNameConvert (t->type, save);
|
2002-02-15 00:34:13 +01:00
|
|
|
if (!FcPatternAdd (pat, t->object, v, FcTrue))
|
|
|
|
{
|
2012-03-28 06:37:15 +02:00
|
|
|
FcValueDestroy (v);
|
2002-02-15 00:34:13 +01:00
|
|
|
goto bail2;
|
|
|
|
}
|
2012-03-28 06:37:15 +02:00
|
|
|
FcValueDestroy (v);
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
if (delim != ',')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((c = FcNameGetConstant (save)))
|
|
|
|
{
|
2006-09-03 02:52:12 +02:00
|
|
|
t = FcNameGetObjectType ((char *) c->object);
|
2013-11-02 18:23:57 +01:00
|
|
|
if (t == NULL)
|
|
|
|
goto bail2;
|
2012-12-30 04:11:09 +01:00
|
|
|
switch ((int) t->type) {
|
2006-09-03 02:52:12 +02:00
|
|
|
case FcTypeInteger:
|
|
|
|
case FcTypeDouble:
|
|
|
|
if (!FcPatternAddInteger (pat, c->object, c->value))
|
|
|
|
goto bail2;
|
|
|
|
break;
|
|
|
|
case FcTypeBool:
|
|
|
|
if (!FcPatternAddBool (pat, c->object, c->value))
|
|
|
|
goto bail2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free (save);
|
|
|
|
return pat;
|
|
|
|
|
|
|
|
bail2:
|
|
|
|
FcPatternDestroy (pat);
|
|
|
|
bail1:
|
|
|
|
free (save);
|
|
|
|
bail0:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static FcBool
|
2010-04-12 18:18:50 +02: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;
|
|
|
|
}
|
|
|
|
|
2009-02-12 05:44:36 +01:00
|
|
|
FcBool
|
2002-02-18 23:29:28 +01:00
|
|
|
FcNameUnparseValue (FcStrBuf *buf,
|
2005-08-24 08:21:30 +02:00
|
|
|
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);
|
2010-04-12 18:18:50 +02:00
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
switch (v.type) {
|
2013-06-28 08:04:11 +02:00
|
|
|
case FcTypeUnknown:
|
2002-02-15 00:34:13 +01:00
|
|
|
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:
|
2017-09-16 19:45:02 +02:00
|
|
|
return FcNameUnparseString (buf,
|
|
|
|
v.u.b == FcTrue ? (FcChar8 *) "True" :
|
|
|
|
v.u.b == FcFalse ? (FcChar8 *) "False" :
|
|
|
|
(FcChar8 *) "DontCare", 0);
|
2002-02-15 00:34:13 +01:00
|
|
|
case FcTypeMatrix:
|
2010-04-12 18:18:50 +02:00
|
|
|
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;
|
2013-11-20 10:44:59 +01:00
|
|
|
case FcTypeRange:
|
2017-09-13 09:29:20 +02:00
|
|
|
sprintf ((char *) temp, "[%g %g]", v.u.r->begin, v.u.r->end);
|
2014-08-20 22:07:26 +02:00
|
|
|
return FcNameUnparseString (buf, temp, 0);
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
return FcFalse;
|
|
|
|
}
|
|
|
|
|
2008-12-30 02:00:26 +01:00
|
|
|
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
|
|
|
{
|
2006-08-30 13:16:22 +02:00
|
|
|
while (v)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2006-08-30 13:16:22 +02:00
|
|
|
if (!FcNameUnparseValue (buf, &v->value, escape))
|
2002-02-15 00:34:13 +01:00
|
|
|
return FcFalse;
|
2006-08-30 13:16:22 +02:00
|
|
|
if ((v = FcValueListNext(v)) != NULL)
|
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)
|
2005-10-21 21:47:43 +02:00
|
|
|
{
|
|
|
|
return FcNameUnparseEscaped (pat, FcTrue);
|
|
|
|
}
|
|
|
|
|
|
|
|
FcChar8 *
|
|
|
|
FcNameUnparseEscaped (FcPattern *pat, FcBool escape)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2013-11-20 10:44:59 +01:00
|
|
|
FcStrBuf buf, buf2;
|
|
|
|
FcChar8 buf_static[8192], buf2_static[256];
|
2002-02-15 00:34:13 +01:00
|
|
|
int i;
|
|
|
|
FcPatternElt *e;
|
|
|
|
|
2002-02-18 23:29:28 +01:00
|
|
|
FcStrBufInit (&buf, buf_static, sizeof (buf_static));
|
2013-11-20 10:44:59 +01:00
|
|
|
FcStrBufInit (&buf2, buf2_static, sizeof (buf2_static));
|
2006-08-30 13:16:22 +02:00
|
|
|
e = FcPatternObjectFindElt (pat, FC_FAMILY_OBJECT);
|
2002-02-15 00:34:13 +01:00
|
|
|
if (e)
|
|
|
|
{
|
2006-08-30 13:16:22 +02:00
|
|
|
if (!FcNameUnparseValueList (&buf, FcPatternEltValues(e), escape ? (FcChar8 *) FC_ESCAPE_FIXED : 0))
|
2002-02-15 00:34:13 +01:00
|
|
|
goto bail0;
|
|
|
|
}
|
2006-08-30 13:16:22 +02:00
|
|
|
e = FcPatternObjectFindElt (pat, FC_SIZE_OBJECT);
|
2002-02-15 00:34:13 +01:00
|
|
|
if (e)
|
|
|
|
{
|
2013-11-20 10:44:59 +01:00
|
|
|
FcChar8 *p;
|
|
|
|
|
|
|
|
if (!FcNameUnparseString (&buf2, (FcChar8 *) "-", 0))
|
2002-02-15 00:34:13 +01:00
|
|
|
goto bail0;
|
2013-11-20 10:44:59 +01:00
|
|
|
if (!FcNameUnparseValueList (&buf2, FcPatternEltValues(e), escape ? (FcChar8 *) FC_ESCAPE_FIXED : 0))
|
2002-02-15 00:34:13 +01:00
|
|
|
goto bail0;
|
2013-11-20 10:44:59 +01:00
|
|
|
p = FcStrBufDoneStatic (&buf2);
|
|
|
|
FcStrBufDestroy (&buf2);
|
|
|
|
if (strlen ((const char *)p) > 1)
|
|
|
|
if (!FcStrBufString (&buf, p))
|
|
|
|
goto bail0;
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
2012-09-20 20:42:31 +02:00
|
|
|
for (i = 0; i < NUM_OBJECT_TYPES; i++)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2012-09-20 20:42:31 +02:00
|
|
|
FcObject id = i + 1;
|
|
|
|
const FcObjectType *o;
|
|
|
|
o = &FcObjects[i];
|
|
|
|
if (!strcmp (o->object, FC_FAMILY) ||
|
|
|
|
!strcmp (o->object, FC_SIZE))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
e = FcPatternObjectFindElt (pat, id);
|
|
|
|
if (e)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2012-09-20 20:42:31 +02:00
|
|
|
if (!FcNameUnparseString (&buf, (FcChar8 *) ":", 0))
|
|
|
|
goto bail0;
|
|
|
|
if (!FcNameUnparseString (&buf, (FcChar8 *) o->object, escape ? (FcChar8 *) FC_ESCAPE_VARIABLE : 0))
|
|
|
|
goto bail0;
|
|
|
|
if (!FcNameUnparseString (&buf, (FcChar8 *) "=", 0))
|
|
|
|
goto bail0;
|
|
|
|
if (!FcNameUnparseValueList (&buf, FcPatternEltValues(e), escape ?
|
|
|
|
(FcChar8 *) FC_ESCAPE_VARIABLE : 0))
|
|
|
|
goto bail0;
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
}
|
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;
|
|
|
|
}
|
2006-09-05 11:24:01 +02:00
|
|
|
#define __fcname__
|
|
|
|
#include "fcaliastail.h"
|
|
|
|
#undef __fcname__
|