2002-02-15 00:34:13 +01:00
|
|
|
|
/*
|
2002-08-07 03:45:59 +02:00
|
|
|
|
* $XFree86: xc/lib/fontconfig/src/fcpat.c,v 1.11 2002/07/06 23:47:44 keithp Exp $
|
2002-02-15 00:34:13 +01:00
|
|
|
|
*
|
|
|
|
|
* Copyright <EFBFBD> 2000 Keith Packard, member of The XFree86 Project, Inc.
|
|
|
|
|
*
|
|
|
|
|
* 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 <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include "fcint.h"
|
|
|
|
|
|
|
|
|
|
FcPattern *
|
|
|
|
|
FcPatternCreate (void)
|
|
|
|
|
{
|
|
|
|
|
FcPattern *p;
|
|
|
|
|
|
|
|
|
|
p = (FcPattern *) malloc (sizeof (FcPattern));
|
|
|
|
|
if (!p)
|
|
|
|
|
return 0;
|
|
|
|
|
FcMemAlloc (FC_MEM_PATTERN, sizeof (FcPattern));
|
|
|
|
|
p->num = 0;
|
|
|
|
|
p->size = 0;
|
|
|
|
|
p->elts = 0;
|
2002-06-19 22:08:22 +02:00
|
|
|
|
p->ref = 1;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FcValueDestroy (FcValue v)
|
|
|
|
|
{
|
|
|
|
|
switch (v.type) {
|
|
|
|
|
case FcTypeString:
|
|
|
|
|
FcStrFree ((FcChar8 *) v.u.s);
|
|
|
|
|
break;
|
|
|
|
|
case FcTypeMatrix:
|
|
|
|
|
FcMatrixFree ((FcMatrix *) v.u.m);
|
|
|
|
|
break;
|
|
|
|
|
case FcTypeCharSet:
|
|
|
|
|
FcCharSetDestroy ((FcCharSet *) v.u.c);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcValue
|
|
|
|
|
FcValueSave (FcValue v)
|
|
|
|
|
{
|
|
|
|
|
switch (v.type) {
|
|
|
|
|
case FcTypeString:
|
|
|
|
|
v.u.s = FcStrCopy (v.u.s);
|
|
|
|
|
if (!v.u.s)
|
|
|
|
|
v.type = FcTypeVoid;
|
|
|
|
|
break;
|
|
|
|
|
case FcTypeMatrix:
|
|
|
|
|
v.u.m = FcMatrixCopy (v.u.m);
|
|
|
|
|
if (!v.u.m)
|
|
|
|
|
v.type = FcTypeVoid;
|
|
|
|
|
break;
|
|
|
|
|
case FcTypeCharSet:
|
|
|
|
|
v.u.c = FcCharSetCopy ((FcCharSet *) v.u.c);
|
|
|
|
|
if (!v.u.c)
|
|
|
|
|
v.type = FcTypeVoid;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return v;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FcValueListDestroy (FcValueList *l)
|
|
|
|
|
{
|
|
|
|
|
FcValueList *next;
|
|
|
|
|
for (; l; l = next)
|
|
|
|
|
{
|
|
|
|
|
switch (l->value.type) {
|
|
|
|
|
case FcTypeString:
|
|
|
|
|
FcStrFree ((FcChar8 *) l->value.u.s);
|
|
|
|
|
break;
|
|
|
|
|
case FcTypeMatrix:
|
|
|
|
|
FcMatrixFree ((FcMatrix *) l->value.u.m);
|
|
|
|
|
break;
|
|
|
|
|
case FcTypeCharSet:
|
|
|
|
|
FcCharSetDestroy ((FcCharSet *) l->value.u.c);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
next = l->next;
|
|
|
|
|
FcMemFree (FC_MEM_VALLIST, sizeof (FcValueList));
|
|
|
|
|
free (l);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-22 06:37:07 +02:00
|
|
|
|
FcBool
|
|
|
|
|
FcValueEqual (FcValue va, FcValue vb)
|
|
|
|
|
{
|
|
|
|
|
if (va.type != vb.type)
|
|
|
|
|
{
|
|
|
|
|
if (va.type == FcTypeInteger)
|
|
|
|
|
{
|
|
|
|
|
va.type = FcTypeDouble;
|
|
|
|
|
va.u.d = va.u.i;
|
|
|
|
|
}
|
|
|
|
|
if (vb.type == FcTypeInteger)
|
|
|
|
|
{
|
|
|
|
|
vb.type = FcTypeDouble;
|
|
|
|
|
vb.u.d = vb.u.i;
|
|
|
|
|
}
|
|
|
|
|
if (va.type != vb.type)
|
|
|
|
|
return FcFalse;
|
|
|
|
|
}
|
|
|
|
|
switch (va.type) {
|
|
|
|
|
case FcTypeVoid:
|
|
|
|
|
return FcTrue;
|
|
|
|
|
case FcTypeInteger:
|
|
|
|
|
return va.u.i == vb.u.i;
|
|
|
|
|
case FcTypeDouble:
|
|
|
|
|
return va.u.d == vb.u.d;
|
|
|
|
|
case FcTypeString:
|
|
|
|
|
return FcStrCmpIgnoreCase (va.u.s, vb.u.s) == 0;
|
|
|
|
|
case FcTypeBool:
|
|
|
|
|
return va.u.b == vb.u.b;
|
|
|
|
|
case FcTypeMatrix:
|
|
|
|
|
return FcMatrixEqual (va.u.m, vb.u.m);
|
|
|
|
|
case FcTypeCharSet:
|
|
|
|
|
return FcCharSetEqual (va.u.c, vb.u.c);
|
2002-06-01 01:21:25 +02:00
|
|
|
|
case FcTypeFTFace:
|
|
|
|
|
return va.u.f == vb.u.f;
|
2002-05-22 06:37:07 +02:00
|
|
|
|
}
|
|
|
|
|
return FcFalse;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-08 19:32:05 +02:00
|
|
|
|
static FcChar32
|
|
|
|
|
FcDoubleHash (double d)
|
|
|
|
|
{
|
|
|
|
|
if (d < 0)
|
|
|
|
|
d = -d;
|
|
|
|
|
if (d > 0xffffffff)
|
|
|
|
|
d = 0xffffffff;
|
|
|
|
|
return (FcChar32) d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static FcChar32
|
|
|
|
|
FcStringHash (const FcChar8 *s)
|
|
|
|
|
{
|
|
|
|
|
FcChar8 c;
|
|
|
|
|
FcChar32 h = 0;
|
|
|
|
|
|
|
|
|
|
if (s)
|
|
|
|
|
while ((c = *s++))
|
|
|
|
|
h = ((h << 1) | (h >> 31)) ^ c;
|
|
|
|
|
return h;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static FcChar32
|
|
|
|
|
FcValueHash (FcValue v)
|
|
|
|
|
{
|
|
|
|
|
switch (v.type) {
|
|
|
|
|
case FcTypeVoid:
|
|
|
|
|
return 0;
|
|
|
|
|
case FcTypeInteger:
|
|
|
|
|
return (FcChar32) v.u.i;
|
|
|
|
|
case FcTypeDouble:
|
|
|
|
|
return FcDoubleHash (v.u.d);
|
|
|
|
|
case FcTypeString:
|
|
|
|
|
return FcStringHash (v.u.s);
|
|
|
|
|
case FcTypeBool:
|
|
|
|
|
return (FcChar32) v.u.b;
|
|
|
|
|
case FcTypeMatrix:
|
|
|
|
|
return (FcDoubleHash (v.u.m->xx) ^
|
|
|
|
|
FcDoubleHash (v.u.m->xy) ^
|
|
|
|
|
FcDoubleHash (v.u.m->yx) ^
|
|
|
|
|
FcDoubleHash (v.u.m->yy));
|
|
|
|
|
case FcTypeCharSet:
|
|
|
|
|
return (FcChar32) v.u.c->num;
|
|
|
|
|
case FcTypeFTFace:
|
|
|
|
|
return FcStringHash ((const FcChar8 *) ((FT_Face) v.u.f)->family_name) ^
|
|
|
|
|
FcStringHash ((const FcChar8 *) ((FT_Face) v.u.f)->style_name);
|
|
|
|
|
}
|
|
|
|
|
return FcFalse;
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-22 06:37:07 +02:00
|
|
|
|
static FcBool
|
|
|
|
|
FcValueListEqual (FcValueList *la, FcValueList *lb)
|
|
|
|
|
{
|
|
|
|
|
while (la && lb)
|
|
|
|
|
{
|
|
|
|
|
if (!FcValueEqual (la->value, lb->value))
|
|
|
|
|
return FcFalse;
|
|
|
|
|
la = la->next;
|
|
|
|
|
lb = lb->next;
|
|
|
|
|
}
|
|
|
|
|
if (la || lb)
|
|
|
|
|
return FcFalse;
|
|
|
|
|
return FcTrue;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-08 19:32:05 +02:00
|
|
|
|
static FcChar32
|
|
|
|
|
FcValueListHash (FcValueList *l)
|
|
|
|
|
{
|
|
|
|
|
FcChar32 hash = 0;
|
|
|
|
|
|
|
|
|
|
while (l)
|
|
|
|
|
{
|
|
|
|
|
hash = ((hash << 1) | (hash >> 31)) ^ FcValueHash (l->value);
|
|
|
|
|
l = l->next;
|
|
|
|
|
}
|
|
|
|
|
return hash;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
|
void
|
|
|
|
|
FcPatternDestroy (FcPattern *p)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
2002-06-19 22:08:22 +02:00
|
|
|
|
if (--p->ref > 0)
|
|
|
|
|
return;
|
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
|
for (i = 0; i < p->num; i++)
|
|
|
|
|
FcValueListDestroy (p->elts[i].values);
|
|
|
|
|
|
|
|
|
|
p->num = 0;
|
|
|
|
|
if (p->elts)
|
|
|
|
|
{
|
|
|
|
|
FcMemFree (FC_MEM_PATELT, p->size * sizeof (FcPatternElt));
|
|
|
|
|
free (p->elts);
|
|
|
|
|
p->elts = 0;
|
|
|
|
|
}
|
|
|
|
|
p->size = 0;
|
|
|
|
|
FcMemFree (FC_MEM_PATTERN, sizeof (FcPattern));
|
|
|
|
|
free (p);
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-03 10:31:15 +02:00
|
|
|
|
static int
|
|
|
|
|
FcPatternPosition (const FcPattern *p, const char *object)
|
2002-02-15 00:34:13 +01:00
|
|
|
|
{
|
2002-06-03 10:31:15 +02:00
|
|
|
|
int low, high, mid, c;
|
2002-05-22 06:37:07 +02:00
|
|
|
|
|
|
|
|
|
low = 0;
|
2002-06-03 10:31:15 +02:00
|
|
|
|
high = p->num - 1;
|
|
|
|
|
c = 1;
|
|
|
|
|
mid = 0;
|
|
|
|
|
while (low <= high)
|
2002-02-15 00:34:13 +01:00
|
|
|
|
{
|
2002-06-03 10:31:15 +02:00
|
|
|
|
mid = (low + high) >> 1;
|
|
|
|
|
c = strcmp (p->elts[mid].object, object);
|
|
|
|
|
if (c == 0)
|
|
|
|
|
return mid;
|
|
|
|
|
if (c < 0)
|
|
|
|
|
low = mid + 1;
|
2002-05-22 06:37:07 +02:00
|
|
|
|
else
|
2002-06-03 10:31:15 +02:00
|
|
|
|
high = mid - 1;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
}
|
2002-06-03 10:31:15 +02:00
|
|
|
|
if (c < 0)
|
|
|
|
|
mid++;
|
|
|
|
|
return -(mid + 1);
|
|
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
|
|
2002-06-03 10:31:15 +02:00
|
|
|
|
FcPatternElt *
|
|
|
|
|
FcPatternFindElt (const FcPattern *p, const char *object)
|
|
|
|
|
{
|
|
|
|
|
int i = FcPatternPosition (p, object);
|
|
|
|
|
if (i < 0)
|
2002-05-22 06:37:07 +02:00
|
|
|
|
return 0;
|
2002-06-03 10:31:15 +02:00
|
|
|
|
return &p->elts[i];
|
|
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
|
|
2002-06-03 10:31:15 +02:00
|
|
|
|
FcPatternElt *
|
|
|
|
|
FcPatternInsertElt (FcPattern *p, const char *object)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
FcPatternElt *e;
|
|
|
|
|
|
|
|
|
|
i = FcPatternPosition (p, object);
|
|
|
|
|
if (i < 0)
|
2002-02-15 00:34:13 +01:00
|
|
|
|
{
|
2002-06-03 10:31:15 +02:00
|
|
|
|
i = -i - 1;
|
|
|
|
|
|
|
|
|
|
/* grow array */
|
|
|
|
|
if (p->num + 1 >= p->size)
|
2002-02-15 00:34:13 +01:00
|
|
|
|
{
|
2002-06-03 10:31:15 +02:00
|
|
|
|
int s = p->size + 16;
|
|
|
|
|
if (p->elts)
|
|
|
|
|
e = (FcPatternElt *) realloc (p->elts, s * sizeof (FcPatternElt));
|
|
|
|
|
else
|
|
|
|
|
e = (FcPatternElt *) malloc (s * sizeof (FcPatternElt));
|
|
|
|
|
if (!e)
|
|
|
|
|
return FcFalse;
|
|
|
|
|
p->elts = e;
|
|
|
|
|
if (p->size)
|
|
|
|
|
FcMemFree (FC_MEM_PATELT, p->size * sizeof (FcPatternElt));
|
|
|
|
|
FcMemAlloc (FC_MEM_PATELT, s * sizeof (FcPatternElt));
|
|
|
|
|
while (p->size < s)
|
|
|
|
|
{
|
|
|
|
|
p->elts[p->size].object = 0;
|
|
|
|
|
p->elts[p->size].values = 0;
|
|
|
|
|
p->size++;
|
|
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
|
}
|
2002-06-03 10:31:15 +02:00
|
|
|
|
|
|
|
|
|
/* move elts up */
|
|
|
|
|
memmove (p->elts + i + 1,
|
|
|
|
|
p->elts + i,
|
|
|
|
|
sizeof (FcPatternElt) *
|
|
|
|
|
(p->num - i));
|
|
|
|
|
|
|
|
|
|
/* bump count */
|
|
|
|
|
p->num++;
|
|
|
|
|
|
|
|
|
|
p->elts[i].object = object;
|
|
|
|
|
p->elts[i].values = 0;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return &p->elts[i];
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-22 06:37:07 +02:00
|
|
|
|
FcBool
|
2002-06-03 10:31:15 +02:00
|
|
|
|
FcPatternEqual (const FcPattern *pa, const FcPattern *pb)
|
2002-05-22 06:37:07 +02:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
2002-08-07 03:45:59 +02:00
|
|
|
|
if (pa == pb)
|
|
|
|
|
return FcTrue;
|
|
|
|
|
|
2002-05-22 06:37:07 +02:00
|
|
|
|
if (pa->num != pb->num)
|
|
|
|
|
return FcFalse;
|
|
|
|
|
for (i = 0; i < pa->num; i++)
|
|
|
|
|
{
|
2002-05-30 00:07:33 +02:00
|
|
|
|
if (strcmp (pa->elts[i].object, pb->elts[i].object) != 0)
|
2002-05-22 06:37:07 +02:00
|
|
|
|
return FcFalse;
|
|
|
|
|
if (!FcValueListEqual (pa->elts[i].values, pb->elts[i].values))
|
|
|
|
|
return FcFalse;
|
|
|
|
|
}
|
|
|
|
|
return FcTrue;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-08 19:32:05 +02:00
|
|
|
|
FcChar32
|
|
|
|
|
FcPatternHash (const FcPattern *p)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
FcChar32 h = 0;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < p->num; i++)
|
|
|
|
|
{
|
|
|
|
|
h = (((h << 1) | (h >> 31)) ^
|
|
|
|
|
FcStringHash ((const FcChar8 *) p->elts[i].object) ^
|
|
|
|
|
FcValueListHash (p->elts[i].values));
|
|
|
|
|
}
|
|
|
|
|
return h;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-03 10:31:15 +02:00
|
|
|
|
FcBool
|
|
|
|
|
FcPatternEqualSubset (const FcPattern *pa, const FcPattern *pb, const FcObjectSet *os)
|
|
|
|
|
{
|
|
|
|
|
FcPatternElt *ea, *eb;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < os->nobject; i++)
|
|
|
|
|
{
|
|
|
|
|
ea = FcPatternFindElt (pa, os->objects[i]);
|
|
|
|
|
eb = FcPatternFindElt (pb, os->objects[i]);
|
|
|
|
|
if (ea)
|
|
|
|
|
{
|
|
|
|
|
if (!eb)
|
|
|
|
|
return FcFalse;
|
|
|
|
|
if (!FcValueListEqual (ea->values, eb->values))
|
|
|
|
|
return FcFalse;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (eb)
|
|
|
|
|
return FcFalse;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return FcTrue;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
|
FcBool
|
2002-07-07 01:47:44 +02:00
|
|
|
|
FcPatternAddWithBinding (FcPattern *p,
|
|
|
|
|
const char *object,
|
|
|
|
|
FcValue value,
|
|
|
|
|
FcValueBinding binding,
|
|
|
|
|
FcBool append)
|
2002-02-15 00:34:13 +01:00
|
|
|
|
{
|
|
|
|
|
FcPatternElt *e;
|
|
|
|
|
FcValueList *new, **prev;
|
|
|
|
|
|
|
|
|
|
new = (FcValueList *) malloc (sizeof (FcValueList));
|
|
|
|
|
if (!new)
|
|
|
|
|
goto bail0;
|
|
|
|
|
|
|
|
|
|
FcMemAlloc (FC_MEM_VALLIST, sizeof (FcValueList));
|
|
|
|
|
/* dup string */
|
|
|
|
|
value = FcValueSave (value);
|
|
|
|
|
if (value.type == FcTypeVoid)
|
|
|
|
|
goto bail1;
|
|
|
|
|
|
|
|
|
|
new->value = value;
|
2002-07-07 01:47:44 +02:00
|
|
|
|
new->binding = binding;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
new->next = 0;
|
|
|
|
|
|
2002-06-03 10:31:15 +02:00
|
|
|
|
e = FcPatternInsertElt (p, object);
|
2002-02-15 00:34:13 +01:00
|
|
|
|
if (!e)
|
|
|
|
|
goto bail2;
|
|
|
|
|
|
|
|
|
|
if (append)
|
|
|
|
|
{
|
|
|
|
|
for (prev = &e->values; *prev; prev = &(*prev)->next);
|
|
|
|
|
*prev = new;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
new->next = e->values;
|
|
|
|
|
e->values = new;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return FcTrue;
|
|
|
|
|
|
|
|
|
|
bail2:
|
|
|
|
|
switch (value.type) {
|
|
|
|
|
case FcTypeString:
|
|
|
|
|
FcStrFree ((FcChar8 *) value.u.s);
|
|
|
|
|
break;
|
|
|
|
|
case FcTypeMatrix:
|
|
|
|
|
FcMatrixFree ((FcMatrix *) value.u.m);
|
|
|
|
|
break;
|
|
|
|
|
case FcTypeCharSet:
|
|
|
|
|
FcCharSetDestroy ((FcCharSet *) value.u.c);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
bail1:
|
|
|
|
|
FcMemFree (FC_MEM_VALLIST, sizeof (FcValueList));
|
|
|
|
|
free (new);
|
|
|
|
|
bail0:
|
|
|
|
|
return FcFalse;
|
|
|
|
|
}
|
|
|
|
|
|
2002-07-07 01:47:44 +02:00
|
|
|
|
FcBool
|
|
|
|
|
FcPatternAdd (FcPattern *p, const char *object, FcValue value, FcBool append)
|
|
|
|
|
{
|
|
|
|
|
return FcPatternAddWithBinding (p, object, value, FcValueBindingStrong, append);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
|
FcPatternAddWeak (FcPattern *p, const char *object, FcValue value, FcBool append)
|
|
|
|
|
{
|
|
|
|
|
return FcPatternAddWithBinding (p, object, value, FcValueBindingWeak, append);
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
|
FcBool
|
|
|
|
|
FcPatternDel (FcPattern *p, const char *object)
|
|
|
|
|
{
|
|
|
|
|
FcPatternElt *e;
|
|
|
|
|
int i;
|
|
|
|
|
|
2002-06-03 10:31:15 +02:00
|
|
|
|
e = FcPatternFindElt (p, object);
|
2002-02-15 00:34:13 +01:00
|
|
|
|
if (!e)
|
|
|
|
|
return FcFalse;
|
|
|
|
|
|
|
|
|
|
i = e - p->elts;
|
|
|
|
|
|
|
|
|
|
/* destroy value */
|
|
|
|
|
FcValueListDestroy (e->values);
|
|
|
|
|
|
|
|
|
|
/* shuffle existing ones down */
|
|
|
|
|
memmove (e, e+1, (p->elts + p->num - (e + 1)) * sizeof (FcPatternElt));
|
|
|
|
|
p->num--;
|
|
|
|
|
p->elts[p->num].object = 0;
|
|
|
|
|
p->elts[p->num].values = 0;
|
|
|
|
|
return FcTrue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
|
FcPatternAddInteger (FcPattern *p, const char *object, int i)
|
|
|
|
|
{
|
|
|
|
|
FcValue v;
|
|
|
|
|
|
|
|
|
|
v.type = FcTypeInteger;
|
|
|
|
|
v.u.i = i;
|
|
|
|
|
return FcPatternAdd (p, object, v, FcTrue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
|
FcPatternAddDouble (FcPattern *p, const char *object, double d)
|
|
|
|
|
{
|
|
|
|
|
FcValue v;
|
|
|
|
|
|
|
|
|
|
v.type = FcTypeDouble;
|
|
|
|
|
v.u.d = d;
|
|
|
|
|
return FcPatternAdd (p, object, v, FcTrue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FcBool
|
2002-02-15 07:01:28 +01:00
|
|
|
|
FcPatternAddString (FcPattern *p, const char *object, const FcChar8 *s)
|
2002-02-15 00:34:13 +01:00
|
|
|
|
{
|
|
|
|
|
FcValue v;
|
|
|
|
|
|
|
|
|
|
v.type = FcTypeString;
|
2002-02-15 07:01:28 +01:00
|
|
|
|
v.u.s = s;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
return FcPatternAdd (p, object, v, FcTrue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
|
FcPatternAddMatrix (FcPattern *p, const char *object, const FcMatrix *s)
|
|
|
|
|
{
|
|
|
|
|
FcValue v;
|
|
|
|
|
|
|
|
|
|
v.type = FcTypeMatrix;
|
|
|
|
|
v.u.m = (FcMatrix *) s;
|
|
|
|
|
return FcPatternAdd (p, object, v, FcTrue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
|
FcPatternAddBool (FcPattern *p, const char *object, FcBool b)
|
|
|
|
|
{
|
|
|
|
|
FcValue v;
|
|
|
|
|
|
|
|
|
|
v.type = FcTypeBool;
|
|
|
|
|
v.u.b = b;
|
|
|
|
|
return FcPatternAdd (p, object, v, FcTrue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
|
FcPatternAddCharSet (FcPattern *p, const char *object, const FcCharSet *c)
|
|
|
|
|
{
|
|
|
|
|
FcValue v;
|
|
|
|
|
|
|
|
|
|
v.type = FcTypeCharSet;
|
|
|
|
|
v.u.c = (FcCharSet *) c;
|
|
|
|
|
return FcPatternAdd (p, object, v, FcTrue);
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-01 01:21:25 +02:00
|
|
|
|
FcBool
|
|
|
|
|
FcPatternAddFTFace (FcPattern *p, const char *object, const FT_Face f)
|
|
|
|
|
{
|
|
|
|
|
FcValue v;
|
|
|
|
|
|
|
|
|
|
v.type = FcTypeFTFace;
|
|
|
|
|
v.u.f = (void *) f;
|
|
|
|
|
return FcPatternAdd (p, object, v, FcTrue);
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
|
FcResult
|
|
|
|
|
FcPatternGet (FcPattern *p, const char *object, int id, FcValue *v)
|
|
|
|
|
{
|
|
|
|
|
FcPatternElt *e;
|
|
|
|
|
FcValueList *l;
|
|
|
|
|
|
2002-06-03 10:31:15 +02:00
|
|
|
|
e = FcPatternFindElt (p, object);
|
2002-02-15 00:34:13 +01:00
|
|
|
|
if (!e)
|
|
|
|
|
return FcResultNoMatch;
|
|
|
|
|
for (l = e->values; l; l = l->next)
|
|
|
|
|
{
|
|
|
|
|
if (!id)
|
|
|
|
|
{
|
|
|
|
|
*v = l->value;
|
|
|
|
|
return FcResultMatch;
|
|
|
|
|
}
|
|
|
|
|
id--;
|
|
|
|
|
}
|
|
|
|
|
return FcResultNoId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcResult
|
|
|
|
|
FcPatternGetInteger (FcPattern *p, const char *object, int id, int *i)
|
|
|
|
|
{
|
|
|
|
|
FcValue v;
|
|
|
|
|
FcResult r;
|
|
|
|
|
|
|
|
|
|
r = FcPatternGet (p, object, id, &v);
|
|
|
|
|
if (r != FcResultMatch)
|
|
|
|
|
return r;
|
|
|
|
|
switch (v.type) {
|
|
|
|
|
case FcTypeDouble:
|
|
|
|
|
*i = (int) v.u.d;
|
|
|
|
|
break;
|
|
|
|
|
case FcTypeInteger:
|
|
|
|
|
*i = v.u.i;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return FcResultTypeMismatch;
|
|
|
|
|
}
|
|
|
|
|
return FcResultMatch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcResult
|
|
|
|
|
FcPatternGetDouble (FcPattern *p, const char *object, int id, double *d)
|
|
|
|
|
{
|
|
|
|
|
FcValue v;
|
|
|
|
|
FcResult r;
|
|
|
|
|
|
|
|
|
|
r = FcPatternGet (p, object, id, &v);
|
|
|
|
|
if (r != FcResultMatch)
|
|
|
|
|
return r;
|
|
|
|
|
switch (v.type) {
|
|
|
|
|
case FcTypeDouble:
|
|
|
|
|
*d = v.u.d;
|
|
|
|
|
break;
|
|
|
|
|
case FcTypeInteger:
|
|
|
|
|
*d = (double) v.u.i;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return FcResultTypeMismatch;
|
|
|
|
|
}
|
|
|
|
|
return FcResultMatch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcResult
|
2002-02-19 08:50:44 +01:00
|
|
|
|
FcPatternGetString (FcPattern *p, const char *object, int id, FcChar8 ** s)
|
2002-02-15 00:34:13 +01:00
|
|
|
|
{
|
|
|
|
|
FcValue v;
|
|
|
|
|
FcResult r;
|
|
|
|
|
|
|
|
|
|
r = FcPatternGet (p, object, id, &v);
|
|
|
|
|
if (r != FcResultMatch)
|
|
|
|
|
return r;
|
|
|
|
|
if (v.type != FcTypeString)
|
|
|
|
|
return FcResultTypeMismatch;
|
2002-02-19 08:50:44 +01:00
|
|
|
|
*s = (FcChar8 *) v.u.s;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
return FcResultMatch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcResult
|
|
|
|
|
FcPatternGetMatrix (FcPattern *p, const char *object, int id, FcMatrix **m)
|
|
|
|
|
{
|
|
|
|
|
FcValue v;
|
|
|
|
|
FcResult r;
|
|
|
|
|
|
|
|
|
|
r = FcPatternGet (p, object, id, &v);
|
|
|
|
|
if (r != FcResultMatch)
|
|
|
|
|
return r;
|
|
|
|
|
if (v.type != FcTypeMatrix)
|
|
|
|
|
return FcResultTypeMismatch;
|
|
|
|
|
*m = (FcMatrix *) v.u.m;
|
|
|
|
|
return FcResultMatch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FcResult
|
|
|
|
|
FcPatternGetBool (FcPattern *p, const char *object, int id, FcBool *b)
|
|
|
|
|
{
|
|
|
|
|
FcValue v;
|
|
|
|
|
FcResult r;
|
|
|
|
|
|
|
|
|
|
r = FcPatternGet (p, object, id, &v);
|
|
|
|
|
if (r != FcResultMatch)
|
|
|
|
|
return r;
|
|
|
|
|
if (v.type != FcTypeBool)
|
|
|
|
|
return FcResultTypeMismatch;
|
|
|
|
|
*b = v.u.b;
|
|
|
|
|
return FcResultMatch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcResult
|
|
|
|
|
FcPatternGetCharSet (FcPattern *p, const char *object, int id, FcCharSet **c)
|
|
|
|
|
{
|
|
|
|
|
FcValue v;
|
|
|
|
|
FcResult r;
|
|
|
|
|
|
|
|
|
|
r = FcPatternGet (p, object, id, &v);
|
|
|
|
|
if (r != FcResultMatch)
|
|
|
|
|
return r;
|
|
|
|
|
if (v.type != FcTypeCharSet)
|
|
|
|
|
return FcResultTypeMismatch;
|
|
|
|
|
*c = (FcCharSet *) v.u.c;
|
|
|
|
|
return FcResultMatch;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-01 01:21:25 +02:00
|
|
|
|
FcResult
|
|
|
|
|
FcPatternGetFTFace (FcPattern *p, const char *object, int id, FT_Face *f)
|
|
|
|
|
{
|
|
|
|
|
FcValue v;
|
|
|
|
|
FcResult r;
|
|
|
|
|
|
|
|
|
|
r = FcPatternGet (p, object, id, &v);
|
|
|
|
|
if (r != FcResultMatch)
|
|
|
|
|
return r;
|
|
|
|
|
if (v.type != FcTypeFTFace)
|
|
|
|
|
return FcResultTypeMismatch;
|
|
|
|
|
*f = (FT_Face) v.u.f;
|
|
|
|
|
return FcResultMatch;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
|
FcPattern *
|
|
|
|
|
FcPatternDuplicate (FcPattern *orig)
|
|
|
|
|
{
|
|
|
|
|
FcPattern *new;
|
|
|
|
|
int i;
|
|
|
|
|
FcValueList *l;
|
|
|
|
|
|
|
|
|
|
new = FcPatternCreate ();
|
|
|
|
|
if (!new)
|
|
|
|
|
goto bail0;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < orig->num; i++)
|
|
|
|
|
{
|
|
|
|
|
for (l = orig->elts[i].values; l; l = l->next)
|
|
|
|
|
if (!FcPatternAdd (new, orig->elts[i].object, l->value, FcTrue))
|
|
|
|
|
goto bail1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new;
|
|
|
|
|
|
|
|
|
|
bail1:
|
|
|
|
|
FcPatternDestroy (new);
|
|
|
|
|
bail0:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-19 22:08:22 +02:00
|
|
|
|
void
|
|
|
|
|
FcPatternReference (FcPattern *p)
|
|
|
|
|
{
|
|
|
|
|
p->ref++;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
|
FcPattern *
|
|
|
|
|
FcPatternVaBuild (FcPattern *orig, va_list va)
|
|
|
|
|
{
|
|
|
|
|
FcPattern *ret;
|
|
|
|
|
|
|
|
|
|
FcPatternVapBuild (ret, orig, va);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcPattern *
|
|
|
|
|
FcPatternBuild (FcPattern *orig, ...)
|
|
|
|
|
{
|
|
|
|
|
va_list va;
|
|
|
|
|
|
|
|
|
|
va_start (va, orig);
|
|
|
|
|
FcPatternVapBuild (orig, orig, va);
|
|
|
|
|
va_end (va);
|
|
|
|
|
return orig;
|
|
|
|
|
}
|