296 lines
6.7 KiB
C
296 lines
6.7 KiB
C
/*
|
|
* $XFree86$
|
|
*
|
|
* Copyright © 2002 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 "fcint.h"
|
|
|
|
/*
|
|
* fc-lang
|
|
*
|
|
* Read a set of language orthographies and build C declarations for
|
|
* charsets which can then be used to identify which languages are
|
|
* supported by a given font. Note that it would be nice if
|
|
* this could be done while compiling the library, but this
|
|
* code uses a number of routines from the library. It's
|
|
* expediant to just ship the pre-built version along with the
|
|
* source orthographies.
|
|
*/
|
|
|
|
static void
|
|
fatal (char *file, int lineno, char *msg)
|
|
{
|
|
fprintf (stderr, "%s:%d: %s\n", file, lineno, msg);
|
|
exit (1);
|
|
}
|
|
|
|
static char *
|
|
get_line (FILE *f, char *line, int *lineno)
|
|
{
|
|
char *hash;
|
|
if (!fgets (line, 1024, f))
|
|
return 0;
|
|
++(*lineno);
|
|
hash = strchr (line, '#');
|
|
if (hash)
|
|
*hash = '\0';
|
|
if (line[0] == '\0' || line[0] == '\n' || line[0] == '\032' || line[0] == '\r')
|
|
return get_line (f, line, lineno);
|
|
return line;
|
|
}
|
|
|
|
/*
|
|
* build a single charset from a source file
|
|
*
|
|
* The file format is quite simple, either
|
|
* a single hex value or a pair separated with a dash
|
|
*
|
|
* Comments begin with '#'
|
|
*/
|
|
|
|
static FcCharSet *
|
|
scan (FILE *f, char *file)
|
|
{
|
|
FcCharSet *c = 0;
|
|
FcCharSet *n;
|
|
int start, end, ucs4;
|
|
char line[1024];
|
|
int lineno = 0;
|
|
|
|
while (get_line (f, line, &lineno))
|
|
{
|
|
if (!strncmp (line, "include", 7))
|
|
{
|
|
file = strchr (line, ' ');
|
|
while (*file == ' ')
|
|
file++;
|
|
end = strlen (file);
|
|
if (file[end-1] == '\n')
|
|
file[end-1] = '\0';
|
|
f = fopen (file, "r");
|
|
if (!f)
|
|
fatal (file, 0, "can't open");
|
|
c = scan (f, file);
|
|
fclose (f);
|
|
return c;
|
|
}
|
|
if (strchr (line, '-'))
|
|
{
|
|
if (sscanf (line, "%x-%x", &start, &end) != 2)
|
|
fatal (file, lineno, "parse error");
|
|
}
|
|
else
|
|
{
|
|
if (sscanf (line, "%x", &start) != 1)
|
|
fatal (file, lineno, "parse error");
|
|
end = start;
|
|
}
|
|
if (!c)
|
|
c = FcCharSetCreate ();
|
|
for (ucs4 = start; ucs4 <= end; ucs4++)
|
|
{
|
|
if (!FcCharSetAddChar (c, ucs4))
|
|
fatal (file, lineno, "out of memory");
|
|
}
|
|
}
|
|
n = FcCharSetFreeze (c);
|
|
FcCharSetDestroy (c);
|
|
return n;
|
|
}
|
|
|
|
/*
|
|
* Convert a file name into a name suitable for C declarations
|
|
*/
|
|
static char *
|
|
get_name (char *file)
|
|
{
|
|
char *name;
|
|
char *dot;
|
|
|
|
dot = strchr (file, '.');
|
|
if (!dot)
|
|
dot = file + strlen(file);
|
|
name = malloc (dot - file + 1);
|
|
strncpy (name, file, dot - file);
|
|
name[dot-file] = '\0';
|
|
return name;
|
|
}
|
|
|
|
/*
|
|
* Convert a C name into a language name
|
|
*/
|
|
static char *
|
|
get_lang (char *name)
|
|
{
|
|
char *lang = malloc (strlen (name) + 1);
|
|
char *l = lang;
|
|
char c;
|
|
|
|
while ((c = *name++))
|
|
{
|
|
if (isupper (c))
|
|
c = tolower (c);
|
|
if (c == '_')
|
|
c = '-';
|
|
if (c == ' ')
|
|
continue;
|
|
*l++ = c;
|
|
}
|
|
*l++ = '\0';
|
|
return lang;
|
|
}
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
FcCharSet *sets[1024];
|
|
char *names[1024];
|
|
FILE *f;
|
|
int i = 0;
|
|
FcCharLeaf **leaves, **sleaves;
|
|
int total_leaves = 0;
|
|
int l, sl, tl;
|
|
char line[1024];
|
|
|
|
while (*++argv)
|
|
{
|
|
f = fopen (*argv, "r");
|
|
if (!f)
|
|
fatal (*argv, 0, strerror (errno));
|
|
sets[i] = scan (f, *argv);
|
|
names[i] = get_name (*argv);
|
|
total_leaves += sets[i]->num;
|
|
i++;
|
|
fclose (f);
|
|
}
|
|
sets[i] = 0;
|
|
leaves = malloc (total_leaves * sizeof (FcCharLeaf *));
|
|
tl = 0;
|
|
/*
|
|
* Find unique leaves
|
|
*/
|
|
for (i = 0; sets[i]; i++)
|
|
{
|
|
sleaves = sets[i]->leaves;
|
|
for (sl = 0; sl < sets[i]->num; sl++)
|
|
{
|
|
for (l = 0; l < tl; l++)
|
|
if (leaves[l] == sleaves[sl])
|
|
break;
|
|
if (l == tl)
|
|
leaves[tl++] = sleaves[sl];
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Scan the input until the marker is found
|
|
*/
|
|
|
|
while (fgets (line, sizeof (line), stdin))
|
|
{
|
|
if (!strncmp (line, "@@@", 3))
|
|
break;
|
|
fputs (line, stdout);
|
|
}
|
|
|
|
printf ("/* total size: %d unique leaves: %d */\n\n",
|
|
total_leaves, tl);
|
|
/*
|
|
* Dump leaves
|
|
*/
|
|
printf ("static const FcCharLeaf leaves[%d] = {\n", tl);
|
|
for (l = 0; l < tl; l++)
|
|
{
|
|
printf (" { { /* %d */", l);
|
|
for (i = 0; i < 256/32; i++)
|
|
{
|
|
if (i % 4 == 0)
|
|
printf ("\n ");
|
|
printf (" 0x%08x,", leaves[l]->map[i]);
|
|
}
|
|
printf ("\n } },\n");
|
|
}
|
|
printf ("};\n\n");
|
|
printf ("#define L(n) ((FcCharLeaf *) &leaves[n])\n\n");
|
|
/*
|
|
* Dump arrays
|
|
*/
|
|
for (i = 0; sets[i]; i++)
|
|
{
|
|
int n;
|
|
|
|
printf ("static const FcCharLeaf *leaves_%s[%d] = {\n",
|
|
names[i], sets[i]->num);
|
|
for (n = 0; n < sets[i]->num; n++)
|
|
{
|
|
if (n % 8 == 0)
|
|
printf (" ");
|
|
for (l = 0; l < tl; l++)
|
|
if (leaves[l] == sets[i]->leaves[n])
|
|
break;
|
|
if (l == tl)
|
|
fatal (names[i], 0, "can't find leaf");
|
|
printf (" L(%3d),", l);
|
|
if (n % 8 == 7)
|
|
printf ("\n");
|
|
}
|
|
if (n % 8 != 0)
|
|
printf ("\n");
|
|
printf ("};\n\n");
|
|
|
|
|
|
printf ("static const FcChar16 numbers_%s[%d] = {\n",
|
|
names[i], sets[i]->num);
|
|
for (n = 0; n < sets[i]->num; n++)
|
|
{
|
|
if (n % 8 == 0)
|
|
printf (" ");
|
|
printf (" 0x%04x,", sets[i]->numbers[n]);
|
|
if (n % 8 == 7)
|
|
printf ("\n");
|
|
}
|
|
if (n % 8 != 0)
|
|
printf ("\n");
|
|
printf ("};\n\n");
|
|
}
|
|
printf ("#undef L\n\n");
|
|
/*
|
|
* Dump sets
|
|
*/
|
|
printf ("static const FcLangCharSet fcLangCharSets[] = {\n");
|
|
for (i = 0; sets[i]; i++)
|
|
{
|
|
printf (" { (FcChar8 *) \"%s\",\n"
|
|
" { 1, FcTrue, %d, "
|
|
"(FcCharLeaf **) leaves_%s, "
|
|
"(FcChar16 *) numbers_%s } },\n",
|
|
get_lang(names[i]),
|
|
sets[i]->num, names[i], names[i]);
|
|
}
|
|
printf ("};\n\n");
|
|
while (fgets (line, sizeof (line), stdin))
|
|
fputs (line, stdout);
|
|
|
|
fflush (stdout);
|
|
exit (ferror (stdout));
|
|
}
|