2008-12-30 02:00:26 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2008 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* Red Hat Author(s): Behdad Esfahbod
|
|
|
|
*
|
|
|
|
* 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 "fcint.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
message (const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
va_start (args, fmt);
|
2009-02-10 02:49:45 +01:00
|
|
|
fprintf (stderr, "Fontconfig: Pattern format error:");
|
2008-12-30 02:00:26 +01:00
|
|
|
vfprintf (stderr, fmt, args);
|
2009-02-10 02:49:45 +01:00
|
|
|
fprintf (stderr, ".\n");
|
2008-12-30 02:00:26 +01:00
|
|
|
va_end (args);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-10 01:13:07 +01:00
|
|
|
typedef struct _FcFormatContext
|
2008-12-30 02:00:26 +01:00
|
|
|
{
|
2009-02-10 01:13:07 +01:00
|
|
|
const FcChar8 *format_orig;
|
|
|
|
const FcChar8 *format;
|
|
|
|
int format_len;
|
|
|
|
FcChar8 *scratch;
|
|
|
|
} FcFormatContext;
|
2009-02-10 00:18:59 +01:00
|
|
|
|
2009-02-10 01:13:07 +01:00
|
|
|
static void
|
|
|
|
FcFormatContextInit (FcFormatContext *c,
|
|
|
|
const FcChar8 *format)
|
|
|
|
{
|
|
|
|
c->format_orig = c->format = format;
|
|
|
|
c->format_len = strlen ((const char *) format);
|
|
|
|
c->scratch = malloc (c->format_len + 1);
|
|
|
|
}
|
2009-02-10 00:18:59 +01:00
|
|
|
|
2009-02-10 01:13:07 +01:00
|
|
|
static void
|
|
|
|
FcFormatContextDone (FcFormatContext *c)
|
|
|
|
{
|
|
|
|
if (c)
|
|
|
|
{
|
|
|
|
free (c->scratch);
|
|
|
|
}
|
|
|
|
}
|
2009-02-10 00:18:59 +01:00
|
|
|
|
2009-02-10 01:13:07 +01:00
|
|
|
static FcBool
|
|
|
|
consume_char (FcFormatContext *c,
|
|
|
|
FcChar8 term)
|
|
|
|
{
|
|
|
|
if (*c->format != term)
|
2009-02-10 02:49:45 +01:00
|
|
|
return FcFalse;
|
|
|
|
|
|
|
|
c->format++;
|
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
|
|
|
|
static FcBool
|
|
|
|
expect_char (FcFormatContext *c,
|
|
|
|
FcChar8 term)
|
|
|
|
{
|
|
|
|
FcBool res = consume_char (c, term);
|
|
|
|
if (!res)
|
|
|
|
{
|
|
|
|
if (c->format == c->format_orig + c->format_len)
|
|
|
|
message ("format ended while expecting '%c'",
|
|
|
|
term);
|
|
|
|
else
|
|
|
|
message ("expected '%c' at %d",
|
|
|
|
term, c->format - c->format_orig + 1);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static FcBool
|
|
|
|
FcCharIsPunct (const FcChar8 c)
|
|
|
|
{
|
|
|
|
if (c < '0')
|
|
|
|
return FcTrue;
|
|
|
|
if (c <= '9')
|
|
|
|
return FcFalse;
|
|
|
|
if (c < 'A')
|
|
|
|
return FcTrue;
|
|
|
|
if (c <= 'Z')
|
|
|
|
return FcFalse;
|
|
|
|
if (c < 'a')
|
|
|
|
return FcTrue;
|
|
|
|
if (c <= 'z')
|
|
|
|
return FcFalse;
|
|
|
|
if (c <= '~')
|
|
|
|
return FcTrue;
|
|
|
|
return FcFalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
static FcBool
|
|
|
|
read_elt_name_to_scratch (FcFormatContext *c)
|
|
|
|
{
|
|
|
|
FcChar8 *p;
|
|
|
|
|
|
|
|
p = c->scratch;
|
|
|
|
|
|
|
|
while (*c->format)
|
|
|
|
{
|
|
|
|
if (*c->format == '\\')
|
|
|
|
{
|
|
|
|
c->format++;
|
|
|
|
if (*c->format)
|
|
|
|
c->format++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (FcCharIsPunct (*c->format))
|
|
|
|
break;
|
|
|
|
|
|
|
|
*p++ = *c->format++;
|
|
|
|
}
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
if (p == c->scratch)
|
2008-12-30 02:00:26 +01:00
|
|
|
{
|
2009-02-10 02:49:45 +01:00
|
|
|
message ("expected element name at %d",
|
|
|
|
c->format - c->format_orig + 1);
|
2009-02-10 01:13:07 +01:00
|
|
|
return FcFalse;
|
|
|
|
}
|
2008-12-30 02:00:26 +01:00
|
|
|
|
2009-02-10 01:13:07 +01:00
|
|
|
return FcTrue;
|
|
|
|
}
|
2008-12-30 02:00:26 +01:00
|
|
|
|
2009-02-10 02:49:45 +01:00
|
|
|
static void
|
|
|
|
interpret (FcFormatContext *c,
|
|
|
|
FcPattern *pat,
|
|
|
|
FcStrBuf *buf,
|
|
|
|
FcChar8 term);
|
|
|
|
|
2009-02-10 01:13:07 +01:00
|
|
|
static void
|
|
|
|
interpret_percent (FcFormatContext *c,
|
|
|
|
FcPattern *pat,
|
|
|
|
FcStrBuf *buf)
|
|
|
|
{
|
2009-02-10 02:49:45 +01:00
|
|
|
int width, before;
|
|
|
|
FcChar8 *p;
|
2009-02-10 01:13:07 +01:00
|
|
|
FcPatternElt *e;
|
2008-12-30 02:00:26 +01:00
|
|
|
|
2009-02-10 02:49:45 +01:00
|
|
|
FcPattern *subpat = pat;
|
|
|
|
FcBool add_colon = FcFalse;
|
|
|
|
FcBool add_elt_name = FcFalse;
|
|
|
|
|
|
|
|
if (!expect_char (c, '%'))
|
2009-02-10 01:13:07 +01:00
|
|
|
return;
|
|
|
|
|
2009-02-10 02:49:45 +01:00
|
|
|
if (consume_char (c, '%')) /* "%%" */
|
2009-02-10 01:13:07 +01:00
|
|
|
{
|
2009-02-10 02:49:45 +01:00
|
|
|
FcStrBufChar (buf, '%');
|
2009-02-10 01:13:07 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* parse an optional width specifier */
|
|
|
|
width = strtol ((const char *) c->format, (char **) &c->format, 10);
|
|
|
|
|
|
|
|
before = buf->len;
|
|
|
|
|
2009-02-10 02:49:45 +01:00
|
|
|
if (!expect_char (c, '{'))
|
|
|
|
goto bail;
|
2008-12-30 02:00:26 +01:00
|
|
|
|
2009-02-10 02:49:45 +01:00
|
|
|
if (consume_char (c, '{'))
|
2009-02-10 01:13:07 +01:00
|
|
|
{
|
2009-02-10 02:49:45 +01:00
|
|
|
/* it's just a subexpression. no tag involved */
|
|
|
|
interpret (c, pat, buf, '}');
|
|
|
|
expect_char (c, '}');
|
|
|
|
goto filter;
|
2008-12-30 02:00:26 +01:00
|
|
|
}
|
2009-02-10 01:13:07 +01:00
|
|
|
|
2009-02-10 02:49:45 +01:00
|
|
|
switch (*c->format) {
|
|
|
|
case ':':
|
|
|
|
add_colon = FcTrue;
|
|
|
|
consume_char (c, ':');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
parse_tag:
|
|
|
|
if (!read_elt_name_to_scratch (c))
|
|
|
|
goto bail;
|
|
|
|
|
|
|
|
if (consume_char (c, '='))
|
|
|
|
add_elt_name = FcTrue;
|
|
|
|
|
|
|
|
e = FcPatternObjectFindElt (pat,
|
|
|
|
FcObjectFromName ((const char *) c->scratch));
|
2009-02-10 01:13:07 +01:00
|
|
|
if (e)
|
|
|
|
{
|
|
|
|
FcValueListPtr l;
|
2009-02-10 02:49:45 +01:00
|
|
|
|
|
|
|
if (add_colon)
|
|
|
|
FcStrBufChar (buf, ':');
|
|
|
|
if (add_elt_name)
|
|
|
|
{
|
|
|
|
FcStrBufString (buf, c->scratch);
|
|
|
|
FcStrBufChar (buf, '=');
|
|
|
|
}
|
|
|
|
|
2009-02-10 01:13:07 +01:00
|
|
|
l = FcPatternEltValues(e);
|
|
|
|
FcNameUnparseValueList (buf, l, '\0');
|
2009-02-10 00:18:59 +01:00
|
|
|
}
|
|
|
|
|
2009-02-10 02:49:45 +01:00
|
|
|
filter:
|
2009-02-10 01:13:07 +01:00
|
|
|
/* handle filters, if any */
|
|
|
|
/* XXX */
|
|
|
|
|
2009-02-10 00:18:59 +01:00
|
|
|
/* align to width */
|
|
|
|
if (!buf->failed)
|
|
|
|
{
|
|
|
|
int after, len;
|
|
|
|
|
|
|
|
after = buf->len;
|
|
|
|
|
|
|
|
len = after - before;
|
|
|
|
|
|
|
|
if (len < -width)
|
|
|
|
{
|
|
|
|
/* left align */
|
|
|
|
while (len++ < -width)
|
|
|
|
FcStrBufChar (buf, ' ');
|
|
|
|
}
|
|
|
|
else if (len < width)
|
|
|
|
{
|
|
|
|
/* right align */
|
|
|
|
while (len++ < width)
|
|
|
|
FcStrBufChar (buf, ' ');
|
|
|
|
len = after - before;
|
|
|
|
memmove (buf->buf + buf->len - len,
|
|
|
|
buf->buf + buf->len - width,
|
|
|
|
len);
|
|
|
|
memset (buf->buf + buf->len - width,
|
|
|
|
' ',
|
|
|
|
width - len);
|
|
|
|
}
|
2008-12-30 02:00:26 +01:00
|
|
|
}
|
2009-02-10 00:18:59 +01:00
|
|
|
|
2009-02-10 02:49:45 +01:00
|
|
|
expect_char (c, '}');
|
|
|
|
|
|
|
|
bail:
|
|
|
|
if (subpat != pat)
|
|
|
|
FcPatternDestroy (subpat);
|
2008-12-30 02:00:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static char escaped_char(const char ch)
|
|
|
|
{
|
|
|
|
switch (ch) {
|
|
|
|
case 'a': return '\a';
|
|
|
|
case 'b': return '\b';
|
|
|
|
case 'f': return '\f';
|
|
|
|
case 'n': return '\n';
|
|
|
|
case 'r': return '\r';
|
|
|
|
case 't': return '\t';
|
|
|
|
case 'v': return '\v';
|
|
|
|
default: return ch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-10 01:13:07 +01:00
|
|
|
static void
|
|
|
|
interpret (FcFormatContext *c,
|
|
|
|
FcPattern *pat,
|
|
|
|
FcStrBuf *buf,
|
|
|
|
FcChar8 term)
|
2008-12-30 02:00:26 +01:00
|
|
|
{
|
2009-02-10 01:13:07 +01:00
|
|
|
for (; *c->format && *c->format != term;)
|
2008-12-30 02:00:26 +01:00
|
|
|
{
|
2009-02-10 01:13:07 +01:00
|
|
|
switch (*c->format)
|
2008-12-30 02:00:26 +01:00
|
|
|
{
|
|
|
|
case '\\':
|
2009-02-10 01:13:07 +01:00
|
|
|
c->format++; /* skip over '\\' */
|
|
|
|
if (*c->format)
|
|
|
|
FcStrBufChar (buf, escaped_char (*c->format++));
|
2008-12-30 02:00:26 +01:00
|
|
|
continue;
|
|
|
|
case '%':
|
2009-02-10 01:13:07 +01:00
|
|
|
interpret_percent (c, pat, buf);
|
2008-12-30 02:00:26 +01:00
|
|
|
continue;
|
|
|
|
}
|
2009-02-10 01:13:07 +01:00
|
|
|
FcStrBufChar (buf, *c->format++);
|
2008-12-30 02:00:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FcChar8 *
|
|
|
|
FcPatternFormat (FcPattern *pat, const FcChar8 *format)
|
|
|
|
{
|
|
|
|
FcStrBuf buf;
|
2009-02-10 01:13:07 +01:00
|
|
|
FcFormatContext c;
|
2008-12-30 02:00:26 +01:00
|
|
|
|
|
|
|
FcStrBufInit (&buf, 0, 0);
|
2009-02-10 01:13:07 +01:00
|
|
|
FcFormatContextInit (&c, format);
|
2008-12-30 02:00:26 +01:00
|
|
|
|
2009-02-10 01:13:07 +01:00
|
|
|
interpret (&c, pat, &buf, '\0');
|
2008-12-30 02:00:26 +01:00
|
|
|
|
2009-02-10 01:13:07 +01:00
|
|
|
FcFormatContextDone (&c);
|
2008-12-30 02:00:26 +01:00
|
|
|
return FcStrBufDone (&buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define __fcformat__
|
|
|
|
#include "fcaliastail.h"
|
|
|
|
#undef __fcformat__
|