Reimplement FC_LANG as FcTypeLang, freeze patterns, other cleanup
[platform/upstream/fontconfig.git] / fc-lang / fc-lang.c
1 /*
2  * $XFree86: xc/lib/fontconfig/fc-lang/fc-lang.c,v 1.2 2002/07/07 19:18:51 keithp Exp $
3  *
4  * Copyright © 2002 Keith Packard, member of The XFree86 Project, Inc.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and its
7  * documentation for any purpose is hereby granted without fee, provided that
8  * the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of Keith Packard not be used in
11  * advertising or publicity pertaining to distribution of the software without
12  * specific, written prior permission.  Keith Packard makes no
13  * representations about the suitability of this software for any purpose.  It
14  * is provided "as is" without express or implied warranty.
15  *
16  * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18  * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22  * PERFORMANCE OF THIS SOFTWARE.
23  */
24
25 #include "fcint.h"
26
27 /*
28  * fc-lang
29  *
30  * Read a set of language orthographies and build C declarations for
31  * charsets which can then be used to identify which languages are
32  * supported by a given font.  Note that it would be nice if
33  * this could be done while compiling the library, but this
34  * code uses a number of routines from the library.  It's
35  * expediant to just ship the pre-built version along with the
36  * source orthographies.
37  */
38
39 static void 
40 fatal (char *file, int lineno, char *msg)
41 {
42     fprintf (stderr, "%s:%d: %s\n", file, lineno, msg);
43     exit (1);
44 }
45
46 static char *
47 get_line (FILE *f, char *line, int *lineno)
48 {
49     char    *hash;
50     if (!fgets (line, 1024, f))
51         return 0;
52     ++(*lineno);
53     hash = strchr (line, '#');
54     if (hash)
55         *hash = '\0';
56     if (line[0] == '\0' || line[0] == '\n' || line[0] == '\032' || line[0] == '\r')
57         return get_line (f, line, lineno);
58     return line;
59 }
60
61 /*
62  * build a single charset from a source file
63  *
64  * The file format is quite simple, either
65  * a single hex value or a pair separated with a dash
66  *
67  * Comments begin with '#'
68  */
69
70 static FcCharSet *
71 scan (FILE *f, char *file)
72 {
73     FcCharSet   *c = 0;
74     FcCharSet   *n;
75     int         start, end, ucs4;
76     char        line[1024];
77     int         lineno = 0;
78
79     while (get_line (f, line, &lineno))
80     {
81         if (!strncmp (line, "include", 7))
82         {
83             file = strchr (line, ' ');
84             while (*file == ' ')
85                 file++;
86             end = strlen (file);
87             if (file[end-1] == '\n')
88                 file[end-1] = '\0';
89             f = fopen (file, "r");
90             if (!f)
91                 fatal (file, 0, "can't open");
92             c = scan (f, file);
93             fclose (f);
94             return c;
95         }
96         if (strchr (line, '-'))
97         {
98             if (sscanf (line, "%x-%x", &start, &end) != 2)
99                 fatal (file, lineno, "parse error");
100         }
101         else
102         {
103             if (sscanf (line, "%x", &start) != 1)
104                 fatal (file, lineno, "parse error");
105             end = start;
106         }
107         if (!c)
108             c = FcCharSetCreate ();
109         for (ucs4 = start; ucs4 <= end; ucs4++)
110         {
111             if (!FcCharSetAddChar (c, ucs4))
112                 fatal (file, lineno, "out of memory");
113         }
114     }
115     n = FcCharSetFreeze (c);
116     FcCharSetDestroy (c);
117     return n;
118 }
119
120 /*
121  * Convert a file name into a name suitable for C declarations
122  */
123 static char *
124 get_name (char *file)
125 {
126     char    *name;
127     char    *dot;
128
129     dot = strchr (file, '.');
130     if (!dot)
131         dot = file + strlen(file);
132     name = malloc (dot - file + 1);
133     strncpy (name, file, dot - file);
134     name[dot-file] = '\0';
135     return name;
136 }
137
138 /*
139  * Convert a C name into a language name
140  */
141 static char *
142 get_lang (char *name)
143 {
144     char    *lang = malloc (strlen (name) + 1);
145     char    *l = lang;
146     char    c;
147
148     while ((c = *name++))
149     {
150         if (isupper (c))
151             c = tolower (c);
152         if (c == '_')
153             c = '-';
154         if (c == ' ')
155             continue;
156         *l++ = c;
157     }
158     *l++ = '\0';
159     return lang;
160 }
161
162 static int compare (const void *a, const void *b)
163 {
164     const FcChar8    *const *as = a, *const *bs = b;
165     return FcStrCmpIgnoreCase (*as, *bs);
166 }
167
168 int
169 main (int argc, char **argv)
170 {
171     char        *files[1024];
172     FcCharSet   *sets[1024];
173     int         duplicate[1024];
174     char        *names[1024];
175     FILE        *f;
176     int         i = 0;
177     FcCharLeaf  **leaves, **sleaves;
178     int         total_leaves = 0;
179     int         l, sl, tl;
180     char        line[1024];
181     
182     while (*++argv)
183         files[i++] = *argv;
184     files[i] = 0;
185     qsort (files, i, sizeof (char *), compare);
186     i = 0;
187     while (files[i])
188     {
189         f = fopen (files[i], "r");
190         if (!f)
191             fatal (files[i], 0, strerror (errno));
192         sets[i] = scan (f, files[i]);
193         names[i] = get_name (files[i]);
194         total_leaves += sets[i]->num;
195         i++;
196         fclose (f);
197     }
198     sets[i] = 0;
199     leaves = malloc (total_leaves * sizeof (FcCharLeaf *));
200     tl = 0;
201     /*
202      * Find unique leaves
203      */
204     for (i = 0; sets[i]; i++)
205     {
206         sleaves = sets[i]->leaves;
207         for (sl = 0; sl < sets[i]->num; sl++)
208         {
209             for (l = 0; l < tl; l++)
210                 if (leaves[l] == sleaves[sl])
211                     break;
212             if (l == tl)
213                 leaves[tl++] = sleaves[sl];
214         }
215     }
216
217     /*
218      * Scan the input until the marker is found
219      */
220     
221     while (fgets (line, sizeof (line), stdin))
222     {
223         if (!strncmp (line, "@@@", 3))
224             break;
225         fputs (line, stdout);
226     }
227     
228     printf ("/* total size: %d unique leaves: %d */\n\n",
229             total_leaves, tl);
230     /*
231      * Dump leaves
232      */
233     printf ("static const FcCharLeaf    leaves[%d] = {\n", tl);
234     for (l = 0; l < tl; l++)
235     {
236         printf ("    { { /* %d */", l);
237         for (i = 0; i < 256/32; i++)
238         {
239             if (i % 4 == 0)
240                 printf ("\n   ");
241             printf (" 0x%08x,", leaves[l]->map[i]);
242         }
243         printf ("\n    } },\n");
244     }
245     printf ("};\n\n");
246     printf ("#define L(n) ((FcCharLeaf *) &leaves[n])\n\n");
247
248     /*
249      * Find duplicate charsets
250      */
251     duplicate[0] = -1;
252     for (i = 1; sets[i]; i++)
253     {
254         int j;
255
256         duplicate[i] = -1;
257         for (j = 0; j < i; j++)
258             if (sets[j] == sets[i])
259             {
260                 duplicate[i] = j;
261                 break;
262             }
263     }
264
265     /*
266      * Dump arrays
267      */
268     for (i = 0; sets[i]; i++)
269     {
270         int n;
271         
272         if (duplicate[i] >= 0)
273             continue;
274         printf ("static const FcCharLeaf *leaves_%s[%d] = {\n",
275                 names[i], sets[i]->num);
276         for (n = 0; n < sets[i]->num; n++)
277         {
278             if (n % 8 == 0)
279                 printf ("   ");
280             for (l = 0; l < tl; l++)
281                 if (leaves[l] == sets[i]->leaves[n])
282                     break;
283             if (l == tl)
284                 fatal (names[i], 0, "can't find leaf");
285             printf (" L(%3d),", l);
286             if (n % 8 == 7)
287                 printf ("\n");
288         }
289         if (n % 8 != 0)
290             printf ("\n");
291         printf ("};\n\n");
292         
293
294         printf ("static const FcChar16 numbers_%s[%d] = {\n",
295                 names[i], sets[i]->num);
296         for (n = 0; n < sets[i]->num; n++)
297         {
298             if (n % 8 == 0)
299                 printf ("   ");
300             printf (" 0x%04x,", sets[i]->numbers[n]);
301             if (n % 8 == 7)
302                 printf ("\n");
303         }
304         if (n % 8 != 0)
305             printf ("\n");
306         printf ("};\n\n");
307     }
308     printf ("#undef L\n\n");
309     /*
310      * Dump sets
311      */
312     printf ("static const FcLangCharSet  fcLangCharSets[] = {\n");
313     for (i = 0; sets[i]; i++)
314     {
315         int     j = duplicate[i];
316         if (j < 0)
317             j = i;
318         printf ("    { (FcChar8 *) \"%s\",\n"
319                 "      { FC_REF_CONSTANT, %d, "
320                 "(FcCharLeaf **) leaves_%s, "
321                 "(FcChar16 *) numbers_%s } },\n",
322                 get_lang(names[i]),
323                 sets[j]->num, names[j], names[j]);
324     }
325     printf ("};\n\n");
326     while (fgets (line, sizeof (line), stdin))
327         fputs (line, stdout);
328     
329     fflush (stdout);
330     exit (ferror (stdout));
331 }