2002-02-15 00:34:13 +01:00
|
|
|
|
/*
|
2003-03-05 06:51:27 +01:00
|
|
|
|
* $RCSId: xc/lib/fontconfig/src/fccharset.c,v 1.18 2002/08/22 07:36:44 keithp Exp $
|
2002-02-15 00:34:13 +01:00
|
|
|
|
*
|
2003-03-05 06:51:27 +01:00
|
|
|
|
* Copyright <EFBFBD> 2001 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 <stdlib.h>
|
|
|
|
|
#include "fcint.h"
|
|
|
|
|
|
|
|
|
|
/* #define CHECK */
|
|
|
|
|
|
2002-05-31 06:42:42 +02:00
|
|
|
|
/* #define CHATTY */
|
2002-02-15 00:34:13 +01:00
|
|
|
|
|
|
|
|
|
FcCharSet *
|
|
|
|
|
FcCharSetCreate (void)
|
|
|
|
|
{
|
|
|
|
|
FcCharSet *fcs;
|
|
|
|
|
|
|
|
|
|
fcs = (FcCharSet *) malloc (sizeof (FcCharSet));
|
|
|
|
|
if (!fcs)
|
|
|
|
|
return 0;
|
|
|
|
|
FcMemAlloc (FC_MEM_CHARSET, sizeof (FcCharSet));
|
|
|
|
|
fcs->ref = 1;
|
2002-05-31 06:42:42 +02:00
|
|
|
|
fcs->num = 0;
|
|
|
|
|
fcs->leaves = 0;
|
|
|
|
|
fcs->numbers = 0;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
return fcs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcCharSet *
|
|
|
|
|
FcCharSetNew (void);
|
|
|
|
|
|
|
|
|
|
FcCharSet *
|
|
|
|
|
FcCharSetNew (void)
|
|
|
|
|
{
|
|
|
|
|
return FcCharSetCreate ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FcCharSetDestroy (FcCharSet *fcs)
|
|
|
|
|
{
|
2002-08-22 09:36:45 +02:00
|
|
|
|
int i;
|
|
|
|
|
if (fcs->ref == FC_REF_CONSTANT)
|
|
|
|
|
return;
|
|
|
|
|
if (--fcs->ref > 0)
|
|
|
|
|
return;
|
|
|
|
|
for (i = 0; i < fcs->num; i++)
|
2002-02-15 00:34:13 +01:00
|
|
|
|
{
|
2002-08-22 09:36:45 +02:00
|
|
|
|
FcMemFree (FC_MEM_CHARLEAF, sizeof (FcCharLeaf));
|
|
|
|
|
free (fcs->leaves[i]);
|
|
|
|
|
}
|
|
|
|
|
if (fcs->leaves)
|
|
|
|
|
{
|
|
|
|
|
FcMemFree (FC_MEM_CHARSET, fcs->num * sizeof (FcCharLeaf *));
|
|
|
|
|
free (fcs->leaves);
|
2002-02-15 00:34:13 +01:00
|
|
|
|
}
|
2002-08-22 09:36:45 +02:00
|
|
|
|
if (fcs->numbers)
|
|
|
|
|
{
|
|
|
|
|
FcMemFree (FC_MEM_CHARSET, fcs->num * sizeof (FcChar16));
|
|
|
|
|
free (fcs->numbers);
|
|
|
|
|
}
|
|
|
|
|
FcMemFree (FC_MEM_CHARSET, sizeof (FcCharSet));
|
|
|
|
|
free (fcs);
|
2002-02-15 00:34:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
2002-05-31 06:42:42 +02:00
|
|
|
|
* Locate the leaf containing the specified char, return
|
|
|
|
|
* its index if it exists, otherwise return negative of
|
|
|
|
|
* the (position + 1) where it should be inserted
|
2002-02-15 00:34:13 +01:00
|
|
|
|
*/
|
|
|
|
|
|
2002-05-31 06:42:42 +02:00
|
|
|
|
static int
|
|
|
|
|
FcCharSetFindLeafPos (const FcCharSet *fcs, FcChar32 ucs4)
|
|
|
|
|
{
|
|
|
|
|
FcChar16 *numbers = fcs->numbers;
|
|
|
|
|
FcChar16 page;
|
|
|
|
|
int low = 0;
|
|
|
|
|
int high = fcs->num - 1;
|
|
|
|
|
|
|
|
|
|
if (!numbers)
|
|
|
|
|
return -1;
|
|
|
|
|
ucs4 >>= 8;
|
|
|
|
|
while (low <= high)
|
|
|
|
|
{
|
|
|
|
|
int mid = (low + high) >> 1;
|
|
|
|
|
page = numbers[mid];
|
|
|
|
|
if (page == ucs4)
|
|
|
|
|
return mid;
|
|
|
|
|
if (page < ucs4)
|
|
|
|
|
low = mid + 1;
|
|
|
|
|
else
|
|
|
|
|
high = mid - 1;
|
|
|
|
|
}
|
2002-07-09 04:28:29 +02:00
|
|
|
|
if (high < 0 || (high < fcs->num && numbers[high] < ucs4))
|
2002-05-31 06:42:42 +02:00
|
|
|
|
high++;
|
|
|
|
|
return -(high + 1);
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
|
static FcCharLeaf *
|
|
|
|
|
FcCharSetFindLeaf (const FcCharSet *fcs, FcChar32 ucs4)
|
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
int pos = FcCharSetFindLeafPos (fcs, ucs4);
|
|
|
|
|
if (pos >= 0)
|
|
|
|
|
return fcs->leaves[pos];
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
|
|
2002-05-31 06:42:42 +02:00
|
|
|
|
static FcBool
|
|
|
|
|
FcCharSetPutLeaf (FcCharSet *fcs,
|
|
|
|
|
FcChar32 ucs4,
|
|
|
|
|
FcCharLeaf *leaf,
|
|
|
|
|
int pos)
|
|
|
|
|
{
|
|
|
|
|
FcCharLeaf **leaves;
|
|
|
|
|
FcChar16 *numbers;
|
|
|
|
|
|
|
|
|
|
ucs4 >>= 8;
|
|
|
|
|
if (ucs4 >= 0x10000)
|
|
|
|
|
return FcFalse;
|
|
|
|
|
if (!fcs->leaves)
|
|
|
|
|
leaves = malloc (sizeof (FcCharLeaf *));
|
|
|
|
|
else
|
|
|
|
|
leaves = realloc (fcs->leaves, (fcs->num + 1) * sizeof (FcCharLeaf *));
|
|
|
|
|
if (!leaves)
|
|
|
|
|
return FcFalse;
|
2002-09-01 00:17:32 +02:00
|
|
|
|
if (fcs->num)
|
|
|
|
|
FcMemFree (FC_MEM_CHARSET, fcs->num * sizeof (FcCharLeaf *));
|
|
|
|
|
FcMemAlloc (FC_MEM_CHARSET, (fcs->num + 1) * sizeof (FcCharLeaf *));
|
2002-05-31 06:42:42 +02:00
|
|
|
|
fcs->leaves = leaves;
|
|
|
|
|
if (!fcs->numbers)
|
|
|
|
|
numbers = malloc (sizeof (FcChar16));
|
|
|
|
|
else
|
|
|
|
|
numbers = realloc (fcs->numbers, (fcs->num + 1) * sizeof (FcChar16));
|
|
|
|
|
if (!numbers)
|
|
|
|
|
return FcFalse;
|
2002-09-01 00:17:32 +02:00
|
|
|
|
if (fcs->num)
|
|
|
|
|
FcMemFree (FC_MEM_CHARSET, fcs->num * sizeof (FcChar16));
|
|
|
|
|
FcMemAlloc (FC_MEM_CHARSET, (fcs->num + 1) * sizeof (FcChar16));
|
2002-05-31 06:42:42 +02:00
|
|
|
|
fcs->numbers = numbers;
|
|
|
|
|
|
|
|
|
|
memmove (fcs->leaves + pos + 1, fcs->leaves + pos,
|
|
|
|
|
(fcs->num - pos) * sizeof (FcCharLeaf *));
|
|
|
|
|
memmove (fcs->numbers + pos + 1, fcs->numbers + pos,
|
|
|
|
|
(fcs->num - pos) * sizeof (FcChar16));
|
|
|
|
|
fcs->numbers[pos] = (FcChar16) ucs4;
|
|
|
|
|
fcs->leaves[pos] = leaf;
|
|
|
|
|
fcs->num++;
|
|
|
|
|
return FcTrue;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Locate the leaf containing the specified char, creating it
|
|
|
|
|
* if desired
|
|
|
|
|
*/
|
|
|
|
|
|
2003-02-06 18:46:06 +01:00
|
|
|
|
FcCharLeaf *
|
2002-02-15 00:34:13 +01:00
|
|
|
|
FcCharSetFindLeafCreate (FcCharSet *fcs, FcChar32 ucs4)
|
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
int pos;
|
|
|
|
|
FcCharLeaf *leaf;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
|
2002-05-31 06:42:42 +02:00
|
|
|
|
pos = FcCharSetFindLeafPos (fcs, ucs4);
|
|
|
|
|
if (pos >= 0)
|
|
|
|
|
return fcs->leaves[pos];
|
|
|
|
|
|
|
|
|
|
leaf = calloc (1, sizeof (FcCharLeaf));
|
|
|
|
|
if (!leaf)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
pos = -pos - 1;
|
|
|
|
|
if (!FcCharSetPutLeaf (fcs, ucs4, leaf, pos))
|
2002-02-15 00:34:13 +01:00
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
free (leaf);
|
|
|
|
|
return 0;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
}
|
2002-08-22 09:36:45 +02:00
|
|
|
|
FcMemAlloc (FC_MEM_CHARLEAF, sizeof (FcCharLeaf));
|
2002-05-31 06:42:42 +02:00
|
|
|
|
return leaf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static FcBool
|
|
|
|
|
FcCharSetInsertLeaf (FcCharSet *fcs, FcChar32 ucs4, FcCharLeaf *leaf)
|
|
|
|
|
{
|
|
|
|
|
int pos;
|
|
|
|
|
|
|
|
|
|
pos = FcCharSetFindLeafPos (fcs, ucs4);
|
|
|
|
|
if (pos >= 0)
|
2002-02-15 00:34:13 +01:00
|
|
|
|
{
|
2002-08-22 09:36:45 +02:00
|
|
|
|
FcMemFree (FC_MEM_CHARLEAF, sizeof (FcCharLeaf));
|
2002-05-31 06:42:42 +02:00
|
|
|
|
free (fcs->leaves[pos]);
|
|
|
|
|
fcs->leaves[pos] = leaf;
|
|
|
|
|
return FcTrue;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
}
|
2002-05-31 06:42:42 +02:00
|
|
|
|
pos = -pos - 1;
|
|
|
|
|
return FcCharSetPutLeaf (fcs, ucs4, leaf, pos);
|
2002-02-15 00:34:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
|
FcCharSetAddChar (FcCharSet *fcs, FcChar32 ucs4)
|
|
|
|
|
{
|
|
|
|
|
FcCharLeaf *leaf;
|
|
|
|
|
FcChar32 *b;
|
|
|
|
|
|
2002-08-22 09:36:45 +02:00
|
|
|
|
if (fcs->ref == FC_REF_CONSTANT)
|
2002-02-15 00:34:13 +01:00
|
|
|
|
return FcFalse;
|
|
|
|
|
leaf = FcCharSetFindLeafCreate (fcs, ucs4);
|
|
|
|
|
if (!leaf)
|
|
|
|
|
return FcFalse;
|
|
|
|
|
b = &leaf->map[(ucs4 & 0xff) >> 5];
|
|
|
|
|
*b |= (1 << (ucs4 & 0x1f));
|
|
|
|
|
return FcTrue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* An iterator for the leaves of a charset
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
typedef struct _fcCharSetIter {
|
|
|
|
|
FcCharLeaf *leaf;
|
|
|
|
|
FcChar32 ucs4;
|
2002-05-31 06:42:42 +02:00
|
|
|
|
int pos;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
} FcCharSetIter;
|
|
|
|
|
|
|
|
|
|
/*
|
2002-05-31 06:42:42 +02:00
|
|
|
|
* Set iter->leaf to the leaf containing iter->ucs4 or higher
|
2002-02-15 00:34:13 +01:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
FcCharSetIterSet (const FcCharSet *fcs, FcCharSetIter *iter)
|
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
int pos = FcCharSetFindLeafPos (fcs, iter->ucs4);
|
2002-05-29 10:21:33 +02:00
|
|
|
|
|
2002-05-31 06:42:42 +02:00
|
|
|
|
if (pos < 0)
|
2002-05-29 10:21:33 +02:00
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
pos = -pos - 1;
|
|
|
|
|
if (pos == fcs->num)
|
2002-05-29 10:21:33 +02:00
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
iter->ucs4 = ~0;
|
|
|
|
|
iter->leaf = 0;
|
|
|
|
|
return;
|
2002-05-29 10:21:33 +02:00
|
|
|
|
}
|
2002-05-31 06:42:42 +02:00
|
|
|
|
iter->ucs4 = (FcChar32) fcs->numbers[pos] << 8;
|
2002-05-29 10:21:33 +02:00
|
|
|
|
}
|
2002-05-31 06:42:42 +02:00
|
|
|
|
iter->leaf = fcs->leaves[pos];
|
|
|
|
|
iter->pos = pos;
|
|
|
|
|
#ifdef CHATTY
|
|
|
|
|
printf ("set %08x: %08x\n", iter->ucs4, (FcChar32) iter->leaf);
|
2002-05-29 10:21:33 +02:00
|
|
|
|
#endif
|
2002-02-15 00:34:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
FcCharSetIterNext (const FcCharSet *fcs, FcCharSetIter *iter)
|
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
int pos = iter->pos + 1;
|
|
|
|
|
if (pos >= fcs->num)
|
2002-05-29 10:21:33 +02:00
|
|
|
|
{
|
|
|
|
|
iter->ucs4 = ~0;
|
|
|
|
|
iter->leaf = 0;
|
|
|
|
|
}
|
2002-05-31 06:42:42 +02:00
|
|
|
|
else
|
2002-05-29 10:21:33 +02:00
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
iter->ucs4 = (FcChar32) fcs->numbers[pos] << 8;
|
|
|
|
|
iter->leaf = fcs->leaves[pos];
|
|
|
|
|
iter->pos = pos;
|
2002-05-29 10:21:33 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-31 06:42:42 +02:00
|
|
|
|
#ifdef CHATTY
|
2002-05-29 10:21:33 +02:00
|
|
|
|
static void
|
2002-05-31 06:42:42 +02:00
|
|
|
|
FcCharSetDump (const FcCharSet *fcs)
|
2002-05-29 10:21:33 +02:00
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
int pos;
|
|
|
|
|
|
|
|
|
|
printf ("fcs %08x:\n", (FcChar32) fcs);
|
|
|
|
|
for (pos = 0; pos < fcs->num; pos++)
|
2002-05-29 10:21:33 +02:00
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
FcCharLeaf *leaf = fcs->leaves[pos];
|
|
|
|
|
FcChar32 ucs4 = (FcChar32) fcs->numbers[pos] << 8;
|
|
|
|
|
|
|
|
|
|
printf (" %08x: %08x\n", ucs4, (FcChar32) leaf);
|
2002-05-29 10:21:33 +02:00
|
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
|
}
|
2002-05-29 10:21:33 +02:00
|
|
|
|
#endif
|
2002-02-15 00:34:13 +01:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
FcCharSetIterStart (const FcCharSet *fcs, FcCharSetIter *iter)
|
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
#ifdef CHATTY
|
|
|
|
|
FcCharSetDump (fcs);
|
2002-05-29 10:21:33 +02:00
|
|
|
|
#endif
|
2002-02-15 00:34:13 +01:00
|
|
|
|
iter->ucs4 = 0;
|
|
|
|
|
FcCharSetIterSet (fcs, iter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcCharSet *
|
|
|
|
|
FcCharSetCopy (FcCharSet *src)
|
|
|
|
|
{
|
2002-08-22 09:36:45 +02:00
|
|
|
|
if (src->ref != FC_REF_CONSTANT)
|
|
|
|
|
src->ref++;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
return src;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
|
FcCharSetEqual (const FcCharSet *a, const FcCharSet *b)
|
|
|
|
|
{
|
|
|
|
|
FcCharSetIter ai, bi;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (a == b)
|
|
|
|
|
return FcTrue;
|
|
|
|
|
for (FcCharSetIterStart (a, &ai), FcCharSetIterStart (b, &bi);
|
|
|
|
|
ai.leaf && bi.leaf;
|
|
|
|
|
FcCharSetIterNext (a, &ai), FcCharSetIterNext (b, &bi))
|
|
|
|
|
{
|
|
|
|
|
if (ai.ucs4 != bi.ucs4)
|
|
|
|
|
return FcFalse;
|
|
|
|
|
for (i = 0; i < 256/32; i++)
|
|
|
|
|
if (ai.leaf->map[i] != bi.leaf->map[i])
|
|
|
|
|
return FcFalse;
|
|
|
|
|
}
|
|
|
|
|
return ai.leaf == bi.leaf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static FcBool
|
|
|
|
|
FcCharSetAddLeaf (FcCharSet *fcs,
|
|
|
|
|
FcChar32 ucs4,
|
|
|
|
|
FcCharLeaf *leaf)
|
|
|
|
|
{
|
|
|
|
|
FcCharLeaf *new = FcCharSetFindLeafCreate (fcs, ucs4);
|
|
|
|
|
if (!new)
|
|
|
|
|
return FcFalse;
|
|
|
|
|
*new = *leaf;
|
|
|
|
|
return FcTrue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static FcCharSet *
|
|
|
|
|
FcCharSetOperate (const FcCharSet *a,
|
|
|
|
|
const FcCharSet *b,
|
|
|
|
|
FcBool (*overlap) (FcCharLeaf *result,
|
|
|
|
|
const FcCharLeaf *al,
|
|
|
|
|
const FcCharLeaf *bl),
|
|
|
|
|
FcBool aonly,
|
|
|
|
|
FcBool bonly)
|
|
|
|
|
{
|
|
|
|
|
FcCharSet *fcs;
|
|
|
|
|
FcCharSetIter ai, bi;
|
|
|
|
|
|
|
|
|
|
fcs = FcCharSetCreate ();
|
|
|
|
|
if (!fcs)
|
|
|
|
|
goto bail0;
|
|
|
|
|
FcCharSetIterStart (a, &ai);
|
|
|
|
|
FcCharSetIterStart (b, &bi);
|
2002-05-29 10:21:33 +02:00
|
|
|
|
while ((ai.leaf || (bonly && bi.leaf)) && (bi.leaf || (aonly && ai.leaf)))
|
2002-02-15 00:34:13 +01:00
|
|
|
|
{
|
|
|
|
|
if (ai.ucs4 < bi.ucs4)
|
|
|
|
|
{
|
|
|
|
|
if (aonly)
|
|
|
|
|
{
|
|
|
|
|
if (!FcCharSetAddLeaf (fcs, ai.ucs4, ai.leaf))
|
|
|
|
|
goto bail1;
|
|
|
|
|
FcCharSetIterNext (a, &ai);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ai.ucs4 = bi.ucs4;
|
|
|
|
|
FcCharSetIterSet (a, &ai);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (bi.ucs4 < ai.ucs4 )
|
|
|
|
|
{
|
|
|
|
|
if (bonly)
|
|
|
|
|
{
|
|
|
|
|
if (!FcCharSetAddLeaf (fcs, bi.ucs4, bi.leaf))
|
|
|
|
|
goto bail1;
|
|
|
|
|
FcCharSetIterNext (b, &bi);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
bi.ucs4 = ai.ucs4;
|
|
|
|
|
FcCharSetIterSet (b, &bi);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
FcCharLeaf leaf;
|
|
|
|
|
|
|
|
|
|
if ((*overlap) (&leaf, ai.leaf, bi.leaf))
|
|
|
|
|
{
|
|
|
|
|
if (!FcCharSetAddLeaf (fcs, ai.ucs4, &leaf))
|
|
|
|
|
goto bail1;
|
|
|
|
|
}
|
|
|
|
|
FcCharSetIterNext (a, &ai);
|
|
|
|
|
FcCharSetIterNext (b, &bi);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return fcs;
|
|
|
|
|
bail1:
|
|
|
|
|
FcCharSetDestroy (fcs);
|
|
|
|
|
bail0:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static FcBool
|
|
|
|
|
FcCharSetIntersectLeaf (FcCharLeaf *result,
|
|
|
|
|
const FcCharLeaf *al,
|
|
|
|
|
const FcCharLeaf *bl)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
FcBool nonempty = FcFalse;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < 256/32; i++)
|
|
|
|
|
if ((result->map[i] = al->map[i] & bl->map[i]))
|
|
|
|
|
nonempty = FcTrue;
|
|
|
|
|
return nonempty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcCharSet *
|
|
|
|
|
FcCharSetIntersect (const FcCharSet *a, const FcCharSet *b)
|
|
|
|
|
{
|
|
|
|
|
return FcCharSetOperate (a, b, FcCharSetIntersectLeaf, FcFalse, FcFalse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static FcBool
|
|
|
|
|
FcCharSetUnionLeaf (FcCharLeaf *result,
|
|
|
|
|
const FcCharLeaf *al,
|
|
|
|
|
const FcCharLeaf *bl)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < 256/32; i++)
|
|
|
|
|
result->map[i] = al->map[i] | bl->map[i];
|
|
|
|
|
return FcTrue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcCharSet *
|
|
|
|
|
FcCharSetUnion (const FcCharSet *a, const FcCharSet *b)
|
|
|
|
|
{
|
|
|
|
|
return FcCharSetOperate (a, b, FcCharSetUnionLeaf, FcTrue, FcTrue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static FcBool
|
|
|
|
|
FcCharSetSubtractLeaf (FcCharLeaf *result,
|
|
|
|
|
const FcCharLeaf *al,
|
|
|
|
|
const FcCharLeaf *bl)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
FcBool nonempty = FcFalse;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < 256/32; i++)
|
|
|
|
|
if ((result->map[i] = al->map[i] & ~bl->map[i]))
|
|
|
|
|
nonempty = FcTrue;
|
|
|
|
|
return nonempty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcCharSet *
|
|
|
|
|
FcCharSetSubtract (const FcCharSet *a, const FcCharSet *b)
|
|
|
|
|
{
|
|
|
|
|
return FcCharSetOperate (a, b, FcCharSetSubtractLeaf, FcTrue, FcFalse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
|
FcCharSetHasChar (const FcCharSet *fcs, FcChar32 ucs4)
|
|
|
|
|
{
|
|
|
|
|
FcCharLeaf *leaf = FcCharSetFindLeaf (fcs, ucs4);
|
|
|
|
|
if (!leaf)
|
|
|
|
|
return FcFalse;
|
|
|
|
|
return (leaf->map[(ucs4 & 0xff) >> 5] & (1 << (ucs4 & 0x1f))) != 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static FcChar32
|
|
|
|
|
FcCharSetPopCount (FcChar32 c1)
|
|
|
|
|
{
|
|
|
|
|
/* hackmem 169 */
|
|
|
|
|
FcChar32 c2 = (c1 >> 1) & 033333333333;
|
|
|
|
|
c2 = c1 - c2 - ((c2 >> 1) & 033333333333);
|
|
|
|
|
return (((c2 + (c2 >> 3)) & 030707070707) % 077);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcChar32
|
|
|
|
|
FcCharSetIntersectCount (const FcCharSet *a, const FcCharSet *b)
|
|
|
|
|
{
|
|
|
|
|
FcCharSetIter ai, bi;
|
|
|
|
|
FcChar32 count = 0;
|
|
|
|
|
|
|
|
|
|
FcCharSetIterStart (a, &ai);
|
|
|
|
|
FcCharSetIterStart (b, &bi);
|
|
|
|
|
while (ai.leaf && bi.leaf)
|
|
|
|
|
{
|
|
|
|
|
if (ai.ucs4 == bi.ucs4)
|
|
|
|
|
{
|
|
|
|
|
FcChar32 *am = ai.leaf->map;
|
|
|
|
|
FcChar32 *bm = bi.leaf->map;
|
|
|
|
|
int i = 256/32;
|
|
|
|
|
while (i--)
|
|
|
|
|
count += FcCharSetPopCount (*am++ & *bm++);
|
|
|
|
|
FcCharSetIterNext (a, &ai);
|
|
|
|
|
}
|
|
|
|
|
else if (ai.ucs4 < bi.ucs4)
|
|
|
|
|
{
|
|
|
|
|
ai.ucs4 = bi.ucs4;
|
|
|
|
|
FcCharSetIterSet (a, &ai);
|
|
|
|
|
}
|
|
|
|
|
if (bi.ucs4 < ai.ucs4)
|
|
|
|
|
{
|
|
|
|
|
bi.ucs4 = ai.ucs4;
|
|
|
|
|
FcCharSetIterSet (b, &bi);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcChar32
|
|
|
|
|
FcCharSetCount (const FcCharSet *a)
|
|
|
|
|
{
|
|
|
|
|
FcCharSetIter ai;
|
|
|
|
|
FcChar32 count = 0;
|
|
|
|
|
|
|
|
|
|
for (FcCharSetIterStart (a, &ai); ai.leaf; FcCharSetIterNext (a, &ai))
|
|
|
|
|
{
|
|
|
|
|
int i = 256/32;
|
|
|
|
|
FcChar32 *am = ai.leaf->map;
|
|
|
|
|
|
|
|
|
|
while (i--)
|
|
|
|
|
count += FcCharSetPopCount (*am++);
|
|
|
|
|
}
|
|
|
|
|
return count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcChar32
|
|
|
|
|
FcCharSetSubtractCount (const FcCharSet *a, const FcCharSet *b)
|
|
|
|
|
{
|
|
|
|
|
FcCharSetIter ai, bi;
|
|
|
|
|
FcChar32 count = 0;
|
|
|
|
|
|
|
|
|
|
FcCharSetIterStart (a, &ai);
|
|
|
|
|
FcCharSetIterStart (b, &bi);
|
|
|
|
|
while (ai.leaf)
|
|
|
|
|
{
|
|
|
|
|
if (ai.ucs4 <= bi.ucs4)
|
|
|
|
|
{
|
|
|
|
|
FcChar32 *am = ai.leaf->map;
|
|
|
|
|
int i = 256/32;
|
|
|
|
|
if (ai.ucs4 == bi.ucs4)
|
|
|
|
|
{
|
|
|
|
|
FcChar32 *bm = bi.leaf->map;;
|
|
|
|
|
while (i--)
|
|
|
|
|
count += FcCharSetPopCount (*am++ & ~*bm++);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
while (i--)
|
|
|
|
|
count += FcCharSetPopCount (*am++);
|
|
|
|
|
}
|
|
|
|
|
FcCharSetIterNext (a, &ai);
|
|
|
|
|
}
|
|
|
|
|
else if (bi.leaf)
|
|
|
|
|
{
|
|
|
|
|
bi.ucs4 = ai.ucs4;
|
|
|
|
|
FcCharSetIterSet (b, &bi);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return count;
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-29 10:21:33 +02:00
|
|
|
|
/*
|
|
|
|
|
* return FcTrue iff a is a subset of b
|
|
|
|
|
*/
|
|
|
|
|
FcBool
|
|
|
|
|
FcCharSetIsSubset (const FcCharSet *a, const FcCharSet *b)
|
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
int ai, bi;
|
|
|
|
|
FcChar16 an, bn;
|
|
|
|
|
|
|
|
|
|
if (a == b) return FcTrue;
|
|
|
|
|
bi = 0;
|
|
|
|
|
ai = 0;
|
|
|
|
|
while (ai < a->num && bi < b->num)
|
2002-05-30 00:07:33 +02:00
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
an = a->numbers[ai];
|
|
|
|
|
bn = b->numbers[bi];
|
2003-04-24 17:29:33 +02:00
|
|
|
|
/*
|
|
|
|
|
* Check matching pages
|
|
|
|
|
*/
|
2002-05-31 06:42:42 +02:00
|
|
|
|
if (an == bn)
|
2002-05-29 10:21:33 +02:00
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
FcChar32 *am = a->leaves[ai]->map;
|
|
|
|
|
FcChar32 *bm = b->leaves[bi]->map;
|
|
|
|
|
|
|
|
|
|
if (am != bm)
|
2002-05-30 00:07:33 +02:00
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
int i = 256/32;
|
2003-04-24 17:29:33 +02:00
|
|
|
|
/*
|
|
|
|
|
* Does am have any bits not in bm?
|
|
|
|
|
*/
|
2002-05-31 06:42:42 +02:00
|
|
|
|
while (i--)
|
|
|
|
|
if (*am++ & ~*bm++)
|
|
|
|
|
return FcFalse;
|
2002-05-30 00:07:33 +02:00
|
|
|
|
}
|
2002-05-31 06:42:42 +02:00
|
|
|
|
ai++;
|
|
|
|
|
bi++;
|
|
|
|
|
}
|
2003-04-24 17:29:33 +02:00
|
|
|
|
/*
|
|
|
|
|
* Does a have any pages not in b?
|
|
|
|
|
*/
|
2002-05-31 06:42:42 +02:00
|
|
|
|
else if (an < bn)
|
|
|
|
|
return FcFalse;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int low = bi + 1;
|
|
|
|
|
int high = b->num - 1;
|
|
|
|
|
|
2003-04-24 17:29:33 +02:00
|
|
|
|
/*
|
|
|
|
|
* Search for page 'an' in 'b'
|
|
|
|
|
*/
|
2002-05-31 06:42:42 +02:00
|
|
|
|
while (low <= high)
|
2002-05-30 00:07:33 +02:00
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
int mid = (low + high) >> 1;
|
|
|
|
|
bn = b->numbers[mid];
|
|
|
|
|
if (bn == an)
|
|
|
|
|
{
|
|
|
|
|
high = mid;
|
2002-05-30 00:07:33 +02:00
|
|
|
|
break;
|
2002-05-31 06:42:42 +02:00
|
|
|
|
}
|
|
|
|
|
if (bn < an)
|
|
|
|
|
low = mid + 1;
|
|
|
|
|
else
|
|
|
|
|
high = mid - 1;
|
2002-05-30 00:07:33 +02:00
|
|
|
|
}
|
2002-05-31 06:42:42 +02:00
|
|
|
|
bi = high;
|
|
|
|
|
while (bi < b->num && b->numbers[bi] < an)
|
|
|
|
|
bi++;
|
2002-05-29 10:21:33 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2003-04-24 17:29:33 +02:00
|
|
|
|
/*
|
|
|
|
|
* did we look at every page?
|
|
|
|
|
*/
|
2003-03-18 09:03:42 +01:00
|
|
|
|
return ai >= a->num;
|
2002-05-29 10:21:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-05-24 07:20:02 +02:00
|
|
|
|
/*
|
|
|
|
|
* These two functions efficiently walk the entire charmap for
|
|
|
|
|
* other software (like pango) that want their own copy
|
|
|
|
|
*/
|
|
|
|
|
|
2002-02-19 08:50:44 +01:00
|
|
|
|
FcChar32
|
2002-05-24 07:20:02 +02:00
|
|
|
|
FcCharSetNextPage (const FcCharSet *a,
|
|
|
|
|
FcChar32 map[FC_CHARSET_MAP_SIZE],
|
|
|
|
|
FcChar32 *next)
|
2002-02-19 08:50:44 +01:00
|
|
|
|
{
|
|
|
|
|
FcCharSetIter ai;
|
2002-05-24 07:20:02 +02:00
|
|
|
|
FcChar32 page;
|
2002-02-19 08:50:44 +01:00
|
|
|
|
|
2002-05-24 07:20:02 +02:00
|
|
|
|
ai.ucs4 = *next;
|
2002-02-19 08:50:44 +01:00
|
|
|
|
FcCharSetIterSet (a, &ai);
|
|
|
|
|
if (!ai.leaf)
|
2002-05-24 07:20:02 +02:00
|
|
|
|
return FC_CHARSET_DONE;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Save current information
|
|
|
|
|
*/
|
|
|
|
|
page = ai.ucs4;
|
|
|
|
|
memcpy (map, ai.leaf->map, sizeof (ai.leaf->map));
|
|
|
|
|
/*
|
|
|
|
|
* Step to next page
|
|
|
|
|
*/
|
|
|
|
|
FcCharSetIterNext (a, &ai);
|
|
|
|
|
*next = ai.ucs4;
|
|
|
|
|
|
2002-02-19 08:50:44 +01:00
|
|
|
|
return page;
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-24 07:20:02 +02:00
|
|
|
|
FcChar32
|
|
|
|
|
FcCharSetFirstPage (const FcCharSet *a,
|
|
|
|
|
FcChar32 map[FC_CHARSET_MAP_SIZE],
|
|
|
|
|
FcChar32 *next)
|
|
|
|
|
{
|
|
|
|
|
*next = 0;
|
|
|
|
|
return FcCharSetNextPage (a, map, next);
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-31 06:42:42 +02:00
|
|
|
|
/*
|
|
|
|
|
* old coverage API, rather hard to use correctly
|
|
|
|
|
*/
|
|
|
|
|
FcChar32
|
|
|
|
|
FcCharSetCoverage (const FcCharSet *a, FcChar32 page, FcChar32 *result);
|
|
|
|
|
|
|
|
|
|
FcChar32
|
|
|
|
|
FcCharSetCoverage (const FcCharSet *a, FcChar32 page, FcChar32 *result)
|
|
|
|
|
{
|
|
|
|
|
FcCharSetIter ai;
|
|
|
|
|
|
|
|
|
|
ai.ucs4 = page;
|
|
|
|
|
FcCharSetIterSet (a, &ai);
|
|
|
|
|
if (!ai.leaf)
|
|
|
|
|
{
|
|
|
|
|
memset (result, '\0', 256 / 8);
|
|
|
|
|
page = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
memcpy (result, ai.leaf->map, sizeof (ai.leaf->map));
|
|
|
|
|
FcCharSetIterNext (a, &ai);
|
|
|
|
|
page = ai.ucs4;
|
|
|
|
|
}
|
|
|
|
|
return page;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
|
/*
|
|
|
|
|
* ASCII representation of charsets.
|
|
|
|
|
*
|
|
|
|
|
* Each leaf is represented as 9 32-bit values, the code of the first character followed
|
|
|
|
|
* by 8 32 bit values for the leaf itself. Each value is encoded as 5 ASCII characters,
|
|
|
|
|
* only 85 different values are used to avoid control characters as well as the other
|
|
|
|
|
* characters used to encode font names. 85**5 > 2^32 so things work out, but
|
|
|
|
|
* it's not exactly human readable output. As a special case, 0 is encoded as a space
|
|
|
|
|
*/
|
|
|
|
|
|
2002-07-07 01:47:44 +02:00
|
|
|
|
static const unsigned char charToValue[256] = {
|
2002-02-15 00:34:13 +01:00
|
|
|
|
/* "" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\b" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\020" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\030" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* " " */ 0xff, 0x00, 0xff, 0x01, 0x02, 0x03, 0x04, 0xff,
|
|
|
|
|
/* "(" */ 0x05, 0x06, 0x07, 0x08, 0xff, 0xff, 0x09, 0x0a,
|
|
|
|
|
/* "0" */ 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12,
|
|
|
|
|
/* "8" */ 0x13, 0x14, 0xff, 0x15, 0x16, 0xff, 0x17, 0x18,
|
|
|
|
|
/* "@" */ 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,
|
|
|
|
|
/* "H" */ 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,
|
|
|
|
|
/* "P" */ 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30,
|
|
|
|
|
/* "X" */ 0x31, 0x32, 0x33, 0x34, 0xff, 0x35, 0x36, 0xff,
|
|
|
|
|
/* "`" */ 0xff, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d,
|
|
|
|
|
/* "h" */ 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45,
|
|
|
|
|
/* "p" */ 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d,
|
|
|
|
|
/* "x" */ 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0xff,
|
|
|
|
|
/* "\200" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\210" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\220" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\230" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\240" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\250" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\260" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\270" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\300" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\310" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\320" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\330" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\340" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\350" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\360" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
/* "\370" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
|
};
|
|
|
|
|
|
2002-07-07 01:47:44 +02:00
|
|
|
|
static const FcChar8 valueToChar[0x55] = {
|
2002-02-15 00:34:13 +01:00
|
|
|
|
/* 0x00 */ '!', '#', '$', '%', '&', '(', ')', '*',
|
|
|
|
|
/* 0x08 */ '+', '.', '/', '0', '1', '2', '3', '4',
|
|
|
|
|
/* 0x10 */ '5', '6', '7', '8', '9', ';', '<', '>',
|
|
|
|
|
/* 0x18 */ '?', '@', 'A', 'B', 'C', 'D', 'E', 'F',
|
|
|
|
|
/* 0x20 */ 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N',
|
|
|
|
|
/* 0x28 */ 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',
|
|
|
|
|
/* 0x30 */ 'W', 'X', 'Y', 'Z', '[', ']', '^', 'a',
|
|
|
|
|
/* 0x38 */ 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i',
|
|
|
|
|
/* 0x40 */ 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q',
|
|
|
|
|
/* 0x48 */ 'r', 's', 't', 'u', 'v', 'w', 'x', 'y',
|
|
|
|
|
/* 0x50 */ 'z', '{', '|', '}', '~',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static FcChar8 *
|
|
|
|
|
FcCharSetParseValue (FcChar8 *string, FcChar32 *value)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
FcChar32 v;
|
2002-02-15 07:01:28 +01:00
|
|
|
|
FcChar32 c;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
|
|
|
|
|
if (*string == ' ')
|
|
|
|
|
{
|
|
|
|
|
v = 0;
|
|
|
|
|
string++;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
v = 0;
|
|
|
|
|
for (i = 0; i < 5; i++)
|
|
|
|
|
{
|
2002-02-15 07:01:28 +01:00
|
|
|
|
if (!(c = (FcChar32) (unsigned char) *string++))
|
2002-02-15 00:34:13 +01:00
|
|
|
|
return 0;
|
|
|
|
|
c = charToValue[c];
|
|
|
|
|
if (c == 0xff)
|
|
|
|
|
return 0;
|
|
|
|
|
v = v * 85 + c;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
*value = v;
|
|
|
|
|
return string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static FcBool
|
2002-02-18 23:29:28 +01:00
|
|
|
|
FcCharSetUnparseValue (FcStrBuf *buf, FcChar32 value)
|
2002-02-15 00:34:13 +01:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
if (value == 0)
|
|
|
|
|
{
|
2002-02-18 23:29:28 +01:00
|
|
|
|
return FcStrBufChar (buf, ' ');
|
2002-02-15 00:34:13 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
FcChar8 string[6];
|
|
|
|
|
FcChar8 *s = string + 5;
|
|
|
|
|
string[5] = '\0';
|
|
|
|
|
for (i = 0; i < 5; i++)
|
|
|
|
|
{
|
|
|
|
|
*--s = valueToChar[value % 85];
|
|
|
|
|
value /= 85;
|
|
|
|
|
}
|
|
|
|
|
for (i = 0; i < 5; i++)
|
2002-02-18 23:29:28 +01:00
|
|
|
|
if (!FcStrBufChar (buf, *s++))
|
2002-02-15 00:34:13 +01:00
|
|
|
|
return FcFalse;
|
|
|
|
|
}
|
|
|
|
|
return FcTrue;
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-31 06:42:42 +02:00
|
|
|
|
typedef struct _FcCharLeafEnt FcCharLeafEnt;
|
|
|
|
|
|
|
|
|
|
struct _FcCharLeafEnt {
|
|
|
|
|
FcCharLeafEnt *next;
|
|
|
|
|
FcChar32 hash;
|
|
|
|
|
FcCharLeaf leaf;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define FC_CHAR_LEAF_BLOCK (4096 / sizeof (FcCharLeafEnt))
|
2003-08-15 21:45:20 +02:00
|
|
|
|
static FcCharLeafEnt **FcCharLeafBlocks;
|
|
|
|
|
static int FcCharLeafBlockCount;
|
2002-05-31 06:42:42 +02:00
|
|
|
|
|
|
|
|
|
static FcCharLeafEnt *
|
|
|
|
|
FcCharLeafEntCreate (void)
|
|
|
|
|
{
|
|
|
|
|
static FcCharLeafEnt *block;
|
|
|
|
|
static int remain;
|
|
|
|
|
|
|
|
|
|
if (!remain)
|
|
|
|
|
{
|
2003-08-15 21:45:20 +02:00
|
|
|
|
FcCharLeafEnt **newBlocks;
|
|
|
|
|
|
|
|
|
|
FcCharLeafBlockCount++;
|
|
|
|
|
newBlocks = realloc (FcCharLeafBlocks, FcCharLeafBlockCount * sizeof (FcCharLeafEnt *));
|
|
|
|
|
if (!newBlocks)
|
|
|
|
|
return 0;
|
|
|
|
|
FcCharLeafBlocks = newBlocks;
|
|
|
|
|
block = FcCharLeafBlocks[FcCharLeafBlockCount-1] = malloc (FC_CHAR_LEAF_BLOCK * sizeof (FcCharLeafEnt));
|
2002-05-31 06:42:42 +02:00
|
|
|
|
if (!block)
|
|
|
|
|
return 0;
|
2002-08-22 09:36:45 +02:00
|
|
|
|
FcMemAlloc (FC_MEM_CHARLEAF, FC_CHAR_LEAF_BLOCK * sizeof (FcCharLeafEnt));
|
2002-05-31 06:42:42 +02:00
|
|
|
|
remain = FC_CHAR_LEAF_BLOCK;
|
|
|
|
|
}
|
|
|
|
|
remain--;
|
|
|
|
|
return block++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define FC_CHAR_LEAF_HASH_SIZE 257
|
|
|
|
|
|
|
|
|
|
static FcChar32
|
|
|
|
|
FcCharLeafHash (FcCharLeaf *leaf)
|
|
|
|
|
{
|
|
|
|
|
FcChar32 hash = 0;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < 256/32; i++)
|
|
|
|
|
hash = ((hash << 1) | (hash >> 31)) ^ leaf->map[i];
|
|
|
|
|
return hash;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int FcCharLeafTotal;
|
|
|
|
|
static int FcCharLeafUsed;
|
|
|
|
|
|
2003-08-15 21:45:20 +02:00
|
|
|
|
static FcCharLeafEnt *FcCharLeafHashTable[FC_CHAR_LEAF_HASH_SIZE];
|
|
|
|
|
|
2002-05-31 06:42:42 +02:00
|
|
|
|
static FcCharLeaf *
|
2002-06-29 22:31:02 +02:00
|
|
|
|
FcCharSetFreezeLeaf (FcCharLeaf *leaf)
|
2002-05-31 06:42:42 +02:00
|
|
|
|
{
|
|
|
|
|
FcChar32 hash = FcCharLeafHash (leaf);
|
2003-08-15 21:45:20 +02:00
|
|
|
|
FcCharLeafEnt **bucket = &FcCharLeafHashTable[hash % FC_CHAR_LEAF_HASH_SIZE];
|
2002-05-31 06:42:42 +02:00
|
|
|
|
FcCharLeafEnt *ent;
|
|
|
|
|
|
|
|
|
|
FcCharLeafTotal++;
|
|
|
|
|
for (ent = *bucket; ent; ent = ent->next)
|
|
|
|
|
{
|
|
|
|
|
if (ent->hash == hash && !memcmp (&ent->leaf, leaf, sizeof (FcCharLeaf)))
|
|
|
|
|
return &ent->leaf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ent = FcCharLeafEntCreate();
|
|
|
|
|
if (!ent)
|
|
|
|
|
return 0;
|
|
|
|
|
FcCharLeafUsed++;
|
|
|
|
|
ent->leaf = *leaf;
|
|
|
|
|
ent->hash = hash;
|
|
|
|
|
ent->next = *bucket;
|
|
|
|
|
*bucket = ent;
|
|
|
|
|
return &ent->leaf;
|
|
|
|
|
}
|
|
|
|
|
|
2003-08-15 21:45:20 +02:00
|
|
|
|
static void
|
|
|
|
|
FcCharSetThawAllLeaf (void)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < FC_CHAR_LEAF_HASH_SIZE; i++)
|
|
|
|
|
FcCharLeafHashTable[i] = 0;
|
|
|
|
|
|
|
|
|
|
FcCharLeafTotal = 0;
|
|
|
|
|
FcCharLeafUsed = 0;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < FcCharLeafBlockCount; i++)
|
|
|
|
|
free (FcCharLeafBlocks[i]);
|
|
|
|
|
|
|
|
|
|
free (FcCharLeafBlocks);
|
|
|
|
|
FcCharLeafBlocks = 0;
|
|
|
|
|
FcCharLeafBlockCount = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-31 06:42:42 +02:00
|
|
|
|
typedef struct _FcCharSetEnt FcCharSetEnt;
|
|
|
|
|
|
|
|
|
|
struct _FcCharSetEnt {
|
|
|
|
|
FcCharSetEnt *next;
|
|
|
|
|
FcChar32 hash;
|
|
|
|
|
FcCharSet set;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define FC_CHAR_SET_HASH_SIZE 67
|
|
|
|
|
|
|
|
|
|
static FcChar32
|
|
|
|
|
FcCharSetHash (FcCharSet *fcs)
|
|
|
|
|
{
|
|
|
|
|
FcChar32 hash = 0;
|
|
|
|
|
FcChar32 *p;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
/* hash in leaves */
|
|
|
|
|
p = (FcChar32 *) fcs->leaves;
|
|
|
|
|
for (i = 0; i < fcs->num * sizeof (FcCharLeaf *) / sizeof (FcChar32); i++)
|
|
|
|
|
hash = ((hash << 1) | (hash >> 31)) ^ *p++;
|
|
|
|
|
/* hash in numbers */
|
|
|
|
|
for (i = 0; i < fcs->num; i++)
|
|
|
|
|
hash = ((hash << 1) | (hash >> 31)) ^ fcs->numbers[i];
|
|
|
|
|
return hash;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int FcCharSetTotal;
|
|
|
|
|
static int FcCharSetUsed;
|
|
|
|
|
static int FcCharSetTotalEnts, FcCharSetUsedEnts;
|
|
|
|
|
|
2003-08-15 21:45:20 +02:00
|
|
|
|
static FcCharSetEnt *FcCharSetHashTable[FC_CHAR_SET_HASH_SIZE];
|
|
|
|
|
|
2002-05-31 06:42:42 +02:00
|
|
|
|
static FcCharSet *
|
2002-06-29 22:31:02 +02:00
|
|
|
|
FcCharSetFreezeBase (FcCharSet *fcs)
|
2002-05-31 06:42:42 +02:00
|
|
|
|
{
|
|
|
|
|
FcChar32 hash = FcCharSetHash (fcs);
|
2003-08-15 21:45:20 +02:00
|
|
|
|
FcCharSetEnt **bucket = &FcCharSetHashTable[hash % FC_CHAR_SET_HASH_SIZE];
|
2002-05-31 06:42:42 +02:00
|
|
|
|
FcCharSetEnt *ent;
|
2002-08-22 09:36:45 +02:00
|
|
|
|
int size;
|
2002-05-31 06:42:42 +02:00
|
|
|
|
|
|
|
|
|
FcCharSetTotal++;
|
|
|
|
|
FcCharSetTotalEnts += fcs->num;
|
|
|
|
|
for (ent = *bucket; ent; ent = ent->next)
|
|
|
|
|
{
|
|
|
|
|
if (ent->hash == hash &&
|
|
|
|
|
ent->set.num == fcs->num &&
|
|
|
|
|
!memcmp (ent->set.leaves, fcs->leaves,
|
|
|
|
|
fcs->num * sizeof (FcCharLeaf *)) &&
|
|
|
|
|
!memcmp (ent->set.numbers, fcs->numbers,
|
|
|
|
|
fcs->num * sizeof (FcChar16)))
|
|
|
|
|
{
|
|
|
|
|
return &ent->set;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-22 09:36:45 +02:00
|
|
|
|
size = (sizeof (FcCharSetEnt) +
|
|
|
|
|
fcs->num * sizeof (FcCharLeaf *) +
|
|
|
|
|
fcs->num * sizeof (FcChar16));
|
|
|
|
|
ent = malloc (size);
|
2002-05-31 06:42:42 +02:00
|
|
|
|
if (!ent)
|
|
|
|
|
return 0;
|
2002-08-22 09:36:45 +02:00
|
|
|
|
FcMemAlloc (FC_MEM_CHARSET, size);
|
2002-05-31 06:42:42 +02:00
|
|
|
|
FcCharSetUsed++;
|
|
|
|
|
FcCharSetUsedEnts += fcs->num;
|
|
|
|
|
|
2002-08-22 09:36:45 +02:00
|
|
|
|
ent->set.ref = FC_REF_CONSTANT;
|
2002-05-31 06:42:42 +02:00
|
|
|
|
ent->set.num = fcs->num;
|
2002-06-27 00:56:51 +02:00
|
|
|
|
if (fcs->num)
|
|
|
|
|
{
|
|
|
|
|
ent->set.leaves = (FcCharLeaf **) (ent + 1);
|
|
|
|
|
ent->set.numbers = (FcChar16 *) (ent->set.leaves + fcs->num);
|
|
|
|
|
memcpy (ent->set.leaves, fcs->leaves, fcs->num * sizeof (FcCharLeaf *));
|
|
|
|
|
memcpy (ent->set.numbers, fcs->numbers, fcs->num * sizeof (FcChar16));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ent->set.leaves = 0;
|
|
|
|
|
ent->set.numbers = 0;
|
|
|
|
|
}
|
2002-05-31 06:42:42 +02:00
|
|
|
|
|
|
|
|
|
ent->hash = hash;
|
|
|
|
|
ent->next = *bucket;
|
|
|
|
|
*bucket = ent;
|
|
|
|
|
return &ent->set;
|
|
|
|
|
}
|
|
|
|
|
|
2003-08-15 21:45:20 +02:00
|
|
|
|
void
|
|
|
|
|
FcCharSetThawAll (void)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
FcCharSetEnt *ent, *next;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < FC_CHAR_SET_HASH_SIZE; i++)
|
|
|
|
|
{
|
|
|
|
|
for (ent = FcCharSetHashTable[i]; ent; ent = next)
|
|
|
|
|
{
|
|
|
|
|
next = ent->next;
|
|
|
|
|
free (ent);
|
|
|
|
|
}
|
|
|
|
|
FcCharSetHashTable[i] = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcCharSetTotal = 0;
|
|
|
|
|
FcCharSetTotalEnts = 0;
|
|
|
|
|
FcCharSetUsed = 0;
|
|
|
|
|
FcCharSetUsedEnts = 0;
|
|
|
|
|
|
|
|
|
|
FcCharSetThawAllLeaf ();
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-29 22:31:02 +02:00
|
|
|
|
FcCharSet *
|
|
|
|
|
FcCharSetFreeze (FcCharSet *fcs)
|
|
|
|
|
{
|
|
|
|
|
FcCharSet *b;
|
|
|
|
|
FcCharSet *n = 0;
|
|
|
|
|
FcCharLeaf *l;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
b = FcCharSetCreate ();
|
|
|
|
|
if (!b)
|
|
|
|
|
goto bail0;
|
|
|
|
|
for (i = 0; i < fcs->num; i++)
|
|
|
|
|
{
|
|
|
|
|
l = FcCharSetFreezeLeaf (fcs->leaves[i]);
|
|
|
|
|
if (!l)
|
|
|
|
|
goto bail1;
|
|
|
|
|
if (!FcCharSetInsertLeaf (b, fcs->numbers[i] << 8, l))
|
|
|
|
|
goto bail1;
|
|
|
|
|
}
|
|
|
|
|
n = FcCharSetFreezeBase (b);
|
|
|
|
|
bail1:
|
|
|
|
|
if (b->leaves)
|
2002-08-22 09:36:45 +02:00
|
|
|
|
{
|
|
|
|
|
FcMemFree (FC_MEM_CHARSET, b->num * sizeof (FcCharLeaf *));
|
2002-06-29 22:31:02 +02:00
|
|
|
|
free (b->leaves);
|
2002-08-22 09:36:45 +02:00
|
|
|
|
}
|
2002-06-29 22:31:02 +02:00
|
|
|
|
if (b->numbers)
|
2002-08-22 09:36:45 +02:00
|
|
|
|
{
|
|
|
|
|
FcMemFree (FC_MEM_CHARSET, b->num * sizeof (FcChar16));
|
2002-06-29 22:31:02 +02:00
|
|
|
|
free (b->numbers);
|
2002-08-22 09:36:45 +02:00
|
|
|
|
}
|
|
|
|
|
FcMemFree (FC_MEM_CHARSET, sizeof (FcCharSet));
|
2002-06-29 22:31:02 +02:00
|
|
|
|
free (b);
|
|
|
|
|
bail0:
|
|
|
|
|
return n;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
|
FcCharSet *
|
|
|
|
|
FcNameParseCharSet (FcChar8 *string)
|
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
FcCharSet *c, *n = 0;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
FcChar32 ucs4;
|
|
|
|
|
FcCharLeaf *leaf;
|
2002-05-31 06:42:42 +02:00
|
|
|
|
FcCharLeaf temp;
|
|
|
|
|
FcChar32 bits;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
c = FcCharSetCreate ();
|
|
|
|
|
if (!c)
|
|
|
|
|
goto bail0;
|
|
|
|
|
while (*string)
|
|
|
|
|
{
|
|
|
|
|
string = FcCharSetParseValue (string, &ucs4);
|
|
|
|
|
if (!string)
|
|
|
|
|
goto bail1;
|
2002-05-31 06:42:42 +02:00
|
|
|
|
bits = 0;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
for (i = 0; i < 256/32; i++)
|
|
|
|
|
{
|
2002-05-31 06:42:42 +02:00
|
|
|
|
string = FcCharSetParseValue (string, &temp.map[i]);
|
2002-02-15 00:34:13 +01:00
|
|
|
|
if (!string)
|
|
|
|
|
goto bail1;
|
2002-05-31 06:42:42 +02:00
|
|
|
|
bits |= temp.map[i];
|
|
|
|
|
}
|
|
|
|
|
if (bits)
|
|
|
|
|
{
|
2002-06-29 22:31:02 +02:00
|
|
|
|
leaf = FcCharSetFreezeLeaf (&temp);
|
2002-05-31 06:42:42 +02:00
|
|
|
|
if (!leaf)
|
|
|
|
|
goto bail1;
|
|
|
|
|
if (!FcCharSetInsertLeaf (c, ucs4, leaf))
|
|
|
|
|
goto bail1;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-05-31 06:42:42 +02:00
|
|
|
|
#ifdef CHATTY
|
|
|
|
|
printf (" %8s %8s %8s %8s\n", "total", "totalmem", "new", "newmem");
|
|
|
|
|
printf ("Leaves: %8d %8d %8d %8d\n",
|
|
|
|
|
FcCharLeafTotal, sizeof (FcCharLeaf) * FcCharLeafTotal,
|
|
|
|
|
FcCharLeafUsed, sizeof (FcCharLeaf) * FcCharLeafUsed);
|
|
|
|
|
printf ("Charsets: %8d %8d %8d %8d\n",
|
|
|
|
|
FcCharSetTotal, sizeof (FcCharSet) * FcCharSetTotal,
|
|
|
|
|
FcCharSetUsed, sizeof (FcCharSet) * FcCharSetUsed);
|
|
|
|
|
printf ("Tables: %8d %8d %8d %8d\n",
|
|
|
|
|
FcCharSetTotalEnts, FcCharSetTotalEnts * (sizeof (FcCharLeaf *) + sizeof (FcChar16)),
|
|
|
|
|
FcCharSetUsedEnts, FcCharSetUsedEnts * (sizeof (FcCharLeaf *) + sizeof (FcChar16)));
|
|
|
|
|
printf ("Total: %8s %8d %8s %8d\n",
|
|
|
|
|
"",
|
|
|
|
|
sizeof (FcCharLeaf) * FcCharLeafTotal +
|
|
|
|
|
sizeof (FcCharSet) * FcCharSetTotal +
|
|
|
|
|
FcCharSetTotalEnts * (sizeof (FcCharLeaf *) + sizeof (FcChar16)),
|
|
|
|
|
"",
|
|
|
|
|
sizeof (FcCharLeaf) * FcCharLeafUsed +
|
|
|
|
|
sizeof (FcCharSet) * FcCharSetUsed +
|
|
|
|
|
FcCharSetUsedEnts * (sizeof (FcCharLeaf *) + sizeof (FcChar16)));
|
|
|
|
|
#endif
|
2002-06-29 22:31:02 +02:00
|
|
|
|
n = FcCharSetFreezeBase (c);
|
2002-02-15 00:34:13 +01:00
|
|
|
|
bail1:
|
2002-05-31 06:42:42 +02:00
|
|
|
|
if (c->leaves)
|
2002-08-22 09:36:45 +02:00
|
|
|
|
{
|
|
|
|
|
FcMemFree (FC_MEM_CHARSET, c->num * sizeof (FcCharLeaf *));
|
2002-05-31 06:42:42 +02:00
|
|
|
|
free (c->leaves);
|
2002-08-22 09:36:45 +02:00
|
|
|
|
}
|
2002-05-31 06:42:42 +02:00
|
|
|
|
if (c->numbers)
|
2002-08-22 09:36:45 +02:00
|
|
|
|
{
|
|
|
|
|
FcMemFree (FC_MEM_CHARSET, c->num * sizeof (FcChar16));
|
2002-05-31 06:42:42 +02:00
|
|
|
|
free (c->numbers);
|
2002-08-22 09:36:45 +02:00
|
|
|
|
}
|
|
|
|
|
FcMemFree (FC_MEM_CHARSET, sizeof (FcCharSet));
|
2002-05-31 06:42:42 +02:00
|
|
|
|
free (c);
|
2002-02-15 00:34:13 +01:00
|
|
|
|
bail0:
|
2002-05-31 06:42:42 +02:00
|
|
|
|
return n;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FcBool
|
2002-02-18 23:29:28 +01:00
|
|
|
|
FcNameUnparseCharSet (FcStrBuf *buf, const FcCharSet *c)
|
2002-02-15 00:34:13 +01:00
|
|
|
|
{
|
|
|
|
|
FcCharSetIter ci;
|
|
|
|
|
int i;
|
|
|
|
|
#ifdef CHECK
|
|
|
|
|
int len = buf->len;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
for (FcCharSetIterStart (c, &ci);
|
|
|
|
|
ci.leaf;
|
|
|
|
|
FcCharSetIterNext (c, &ci))
|
|
|
|
|
{
|
|
|
|
|
if (!FcCharSetUnparseValue (buf, ci.ucs4))
|
|
|
|
|
return FcFalse;
|
|
|
|
|
for (i = 0; i < 256/32; i++)
|
|
|
|
|
if (!FcCharSetUnparseValue (buf, ci.leaf->map[i]))
|
|
|
|
|
return FcFalse;
|
|
|
|
|
}
|
|
|
|
|
#ifdef CHECK
|
|
|
|
|
{
|
|
|
|
|
FcCharSet *check;
|
|
|
|
|
FcChar32 missing;
|
|
|
|
|
FcCharSetIter ci, checki;
|
|
|
|
|
|
|
|
|
|
/* null terminate for parser */
|
2002-02-18 23:29:28 +01:00
|
|
|
|
FcStrBufChar (buf, '\0');
|
2002-02-15 00:34:13 +01:00
|
|
|
|
/* step back over null for life after test */
|
|
|
|
|
buf->len--;
|
|
|
|
|
check = FcNameParseCharSet (buf->buf + len);
|
|
|
|
|
FcCharSetIterStart (c, &ci);
|
|
|
|
|
FcCharSetIterStart (check, &checki);
|
|
|
|
|
while (ci.leaf || checki.leaf)
|
|
|
|
|
{
|
|
|
|
|
if (ci.ucs4 < checki.ucs4)
|
|
|
|
|
{
|
|
|
|
|
printf ("Missing leaf node at 0x%x\n", ci.ucs4);
|
|
|
|
|
FcCharSetIterNext (c, &ci);
|
|
|
|
|
}
|
|
|
|
|
else if (checki.ucs4 < ci.ucs4)
|
|
|
|
|
{
|
|
|
|
|
printf ("Extra leaf node at 0x%x\n", checki.ucs4);
|
|
|
|
|
FcCharSetIterNext (check, &checki);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int i = 256/32;
|
|
|
|
|
FcChar32 *cm = ci.leaf->map;
|
|
|
|
|
FcChar32 *checkm = checki.leaf->map;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < 256; i += 32)
|
|
|
|
|
{
|
|
|
|
|
if (*cm != *checkm)
|
|
|
|
|
printf ("Mismatching sets at 0x%08x: 0x%08x != 0x%08x\n",
|
|
|
|
|
ci.ucs4 + i, *cm, *checkm);
|
|
|
|
|
cm++;
|
|
|
|
|
checkm++;
|
|
|
|
|
}
|
|
|
|
|
FcCharSetIterNext (c, &ci);
|
|
|
|
|
FcCharSetIterNext (check, &checki);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ((missing = FcCharSetSubtractCount (c, check)))
|
|
|
|
|
printf ("%d missing in reparsed result\n", missing);
|
|
|
|
|
if ((missing = FcCharSetSubtractCount (check, c)))
|
|
|
|
|
printf ("%d extra in reparsed result\n", missing);
|
|
|
|
|
FcCharSetDestroy (check);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return FcTrue;
|
|
|
|
|
}
|