Make FC_DBG_OBJTYPES debug messages into warnings
[platform/upstream/fontconfig.git] / src / fcint.h
1 /*
2  * fontconfig/src/fcint.h
3  *
4  * Copyright © 2000 Keith Packard
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 the author(s) not be used in
11  * advertising or publicity pertaining to distribution of the software without
12  * specific, written prior permission.  The authors make 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  * THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18  * EVENT SHALL THE AUTHOR(S) 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 #ifndef _FCINT_H_
26 #define _FCINT_H_
27
28 #ifdef HAVE_CONFIG_H
29 #include <config.h>
30 #endif
31
32 #include "fcstdint.h"
33
34 #include <stdlib.h>
35 #include <stdio.h>
36 #include <string.h>
37 #include <ctype.h>
38 #include <errno.h>
39 #include <unistd.h>
40 #include <stddef.h>
41 #include <sys/types.h>
42 #include <sys/stat.h>
43 #include <time.h>
44 #include <fontconfig/fontconfig.h>
45 #include <fontconfig/fcprivate.h>
46 #include "fcdeprecate.h"
47
48 #ifndef FC_CONFIG_PATH
49 #define FC_CONFIG_PATH "fonts.conf"
50 #endif
51
52 #ifdef _WIN32
53 #  ifndef _WIN32_WINNT
54 #    define _WIN32_WINNT 0x0500
55 #  endif
56 #  define WIN32_LEAN_AND_MEAN
57 #  define STRICT
58 #  include <windows.h>
59 typedef UINT (WINAPI *pfnGetSystemWindowsDirectory)(LPSTR, UINT);
60 typedef HRESULT (WINAPI *pfnSHGetFolderPathA)(HWND, int, HANDLE, DWORD, LPSTR);
61 extern pfnGetSystemWindowsDirectory pGetSystemWindowsDirectory;
62 extern pfnSHGetFolderPathA pSHGetFolderPathA;
63 #  define FC_SEARCH_PATH_SEPARATOR ';'
64 #  define FC_DIR_SEPARATOR         '\\'
65 #  define FC_DIR_SEPARATOR_S       "\\"
66 #else
67 #  define FC_SEARCH_PATH_SEPARATOR ':'
68 #  define FC_DIR_SEPARATOR         '/'
69 #  define FC_DIR_SEPARATOR_S       "/"
70 #endif
71
72 #if __GNUC__ >= 4
73 #define FC_UNUSED       __attribute__((unused))
74 #else
75 #define FC_UNUSED
76 #endif
77
78 #define FC_DBG_MATCH    1
79 #define FC_DBG_MATCHV   2
80 #define FC_DBG_EDIT     4
81 #define FC_DBG_FONTSET  8
82 #define FC_DBG_CACHE    16
83 #define FC_DBG_CACHEV   32
84 #define FC_DBG_PARSE    64
85 #define FC_DBG_SCAN     128
86 #define FC_DBG_SCANV    256
87 #define FC_DBG_CONFIG   1024
88 #define FC_DBG_LANGSET  2048
89
90 #define _FC_ASSERT_STATIC1(_line, _cond) typedef int _static_assert_on_line_##_line##_failed[(_cond)?1:-1]
91 #define _FC_ASSERT_STATIC0(_line, _cond) _FC_ASSERT_STATIC1 (_line, (_cond))
92 #define FC_ASSERT_STATIC(_cond) _FC_ASSERT_STATIC0 (__LINE__, (_cond))
93
94 #define FC_MIN(a,b) ((a) < (b) ? (a) : (b))
95 #define FC_MAX(a,b) ((a) > (b) ? (a) : (b))
96 #define FC_ABS(a)   ((a) < 0 ? -(a) : (a))
97
98 /* slim_internal.h */
99 #if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)) && defined(__ELF__) && !defined(__sun)
100 #define FcPrivate               __attribute__((__visibility__("hidden")))
101 #define HAVE_GNUC_ATTRIBUTE 1
102 #include "fcalias.h"
103 #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
104 #define FcPrivate               __hidden
105 #else /* not gcc >= 3.3 and not Sun Studio >= 8 */
106 #define FcPrivate
107 #endif
108
109 typedef enum _FcValueBinding {
110     FcValueBindingWeak, FcValueBindingStrong, FcValueBindingSame
111 } FcValueBinding;
112
113 /*
114  * Serialized data structures use only offsets instead of pointers
115  * A low bit of 1 indicates an offset.
116  */
117
118 /* Is the provided pointer actually an offset? */
119 #define FcIsEncodedOffset(p)    ((((intptr_t) (p)) & 1) != 0)
120
121 /* Encode offset in a pointer of type t */
122 #define FcOffsetEncode(o,t)     ((t *) ((o) | 1))
123
124 /* Decode a pointer into an offset */
125 #define FcOffsetDecode(p)       (((intptr_t) (p)) & ~1)
126
127 /* Compute pointer offset */
128 #define FcPtrToOffset(b,p)      ((intptr_t) (p) - (intptr_t) (b))
129
130 /* Given base address, offset and type, return a pointer */
131 #define FcOffsetToPtr(b,o,t)    ((t *) ((intptr_t) (b) + (o)))
132
133 /* Given base address, encoded offset and type, return a pointer */
134 #define FcEncodedOffsetToPtr(b,p,t) FcOffsetToPtr(b,FcOffsetDecode(p),t)
135
136 /* Given base address, pointer and type, return an encoded offset */
137 #define FcPtrToEncodedOffset(b,p,t) FcOffsetEncode(FcPtrToOffset(b,p),t)
138
139 /* Given a structure, offset member and type, return pointer */
140 #define FcOffsetMember(s,m,t)       FcOffsetToPtr(s,(s)->m,t)
141
142 /* Given a structure, encoded offset member and type, return pointer to member */
143 #define FcEncodedOffsetMember(s,m,t) FcOffsetToPtr(s,FcOffsetDecode((s)->m), t)
144
145 /* Given a structure, member and type, convert the member to a pointer */
146 #define FcPointerMember(s,m,t)  (FcIsEncodedOffset((s)->m) ? \
147                                  FcEncodedOffsetMember (s,m,t) : \
148                                  (s)->m)
149
150 /*
151  * Serialized values may hold strings, charsets and langsets as pointers,
152  * unfortunately FcValue is an exposed type so we can't just always use
153  * offsets
154  */
155 #define FcValueString(v)        FcPointerMember(v,u.s,FcChar8)
156 #define FcValueCharSet(v)       FcPointerMember(v,u.c,const FcCharSet)
157 #define FcValueLangSet(v)       FcPointerMember(v,u.l,const FcLangSet)
158
159 typedef struct _FcValueList *FcValueListPtr;
160
161 typedef struct _FcValueList {
162     struct _FcValueList *next;
163     FcValue             value;
164     FcValueBinding      binding;
165 } FcValueList;
166
167 #define FcValueListNext(vl)     FcPointerMember(vl,next,FcValueList)
168                         
169 typedef int FcObject;
170
171 typedef struct _FcPatternElt *FcPatternEltPtr;
172
173 /*
174  * Pattern elts are stuck in a structure connected to the pattern,
175  * so they get moved around when the pattern is resized. Hence, the
176  * values field must be a pointer/offset instead of just an offset
177  */
178 typedef struct _FcPatternElt {
179     FcObject            object;
180     FcValueList         *values;
181 } FcPatternElt;
182
183 #define FcPatternEltValues(pe)  FcPointerMember(pe,values,FcValueList)
184
185 struct _FcPattern {
186     int             num;
187     int             size;
188     intptr_t        elts_offset;
189     int             ref;
190 };
191
192 #define FcPatternElts(p)        FcOffsetMember(p,elts_offset,FcPatternElt)
193
194 #define FcFontSetFonts(fs)      FcPointerMember(fs,fonts,FcPattern *)
195
196 #define FcFontSetFont(fs,i)     (FcIsEncodedOffset((fs)->fonts) ? \
197                                  FcEncodedOffsetToPtr(fs, \
198                                                       FcFontSetFonts(fs)[i], \
199                                                       FcPattern) : \
200                                  fs->fonts[i])
201                                                 
202 typedef enum _FcOp {
203     FcOpInteger, FcOpDouble, FcOpString, FcOpMatrix, FcOpRange, FcOpBool, FcOpCharSet, FcOpLangSet,
204     FcOpNil,
205     FcOpField, FcOpConst,
206     FcOpAssign, FcOpAssignReplace,
207     FcOpPrependFirst, FcOpPrepend, FcOpAppend, FcOpAppendLast,
208     FcOpQuest,
209     FcOpOr, FcOpAnd, FcOpEqual, FcOpNotEqual,
210     FcOpContains, FcOpListing, FcOpNotContains,
211     FcOpLess, FcOpLessEqual, FcOpMore, FcOpMoreEqual,
212     FcOpPlus, FcOpMinus, FcOpTimes, FcOpDivide,
213     FcOpNot, FcOpComma, FcOpFloor, FcOpCeil, FcOpRound, FcOpTrunc,
214     FcOpInvalid
215 } FcOp;
216
217 typedef enum _FcOpFlags {
218         FcOpFlagIgnoreBlanks = 1 << 0
219 } FcOpFlags;
220
221 #define FC_OP_GET_OP(_x_)       ((_x_) & 0xffff)
222 #define FC_OP_GET_FLAGS(_x_)    (((_x_) & 0xffff0000) >> 16)
223 #define FC_OP(_x_,_f_)          (FC_OP_GET_OP (_x_) | ((_f_) << 16))
224
225 typedef struct _FcExprMatrix {
226   struct _FcExpr *xx, *xy, *yx, *yy;
227 } FcExprMatrix;
228
229 typedef struct _FcExprName {
230   FcObject      object;
231   FcMatchKind   kind;
232 } FcExprName;
233
234
235 typedef struct _FcExpr {
236     FcOp   op;
237     union {
238         int         ival;
239         double      dval;
240         const FcChar8       *sval;
241         FcExprMatrix *mexpr;
242         FcBool      bval;
243         FcCharSet   *cval;
244         FcLangSet   *lval;
245
246         FcExprName  name;
247         const FcChar8       *constant;
248         struct {
249             struct _FcExpr *left, *right;
250         } tree;
251     } u;
252 } FcExpr;
253
254 typedef struct _FcExprPage FcExprPage;
255
256 struct _FcExprPage {
257   FcExprPage *next_page;
258   FcExpr *next;
259   FcExpr exprs[(1024 - 2/* two pointers */ - 2/* malloc overhead */) * sizeof (void *) / sizeof (FcExpr)];
260   FcExpr end[FLEXIBLE_ARRAY_MEMBER];
261 };
262
263 typedef enum _FcQual {
264     FcQualAny, FcQualAll, FcQualFirst, FcQualNotFirst
265 } FcQual;
266
267 #define FcMatchDefault  ((FcMatchKind) -1)
268
269 typedef struct _FcTest {
270     struct _FcTest      *next;
271     FcMatchKind         kind;
272     FcQual              qual;
273     FcObject            object;
274     FcOp                op;
275     FcExpr              *expr;
276 } FcTest;
277
278 typedef struct _FcEdit {
279     struct _FcEdit *next;
280     FcObject        object;
281     FcOp            op;
282     FcExpr          *expr;
283     FcValueBinding  binding;
284 } FcEdit;
285
286 typedef struct _FcSubst {
287     struct _FcSubst     *next;
288     FcTest              *test;
289     FcEdit              *edit;
290 } FcSubst;
291
292 typedef struct _FcCharLeaf {
293     FcChar32    map[256/32];
294 } FcCharLeaf;
295
296 #define FC_REF_CONSTANT     -1
297
298 struct _FcCharSet {
299     int             ref;        /* reference count */
300     int             num;        /* size of leaves and numbers arrays */
301     intptr_t        leaves_offset;
302     intptr_t        numbers_offset;
303 };
304
305 #define FcCharSetLeaves(c)      FcOffsetMember(c,leaves_offset,intptr_t)
306 #define FcCharSetLeaf(c,i)      (FcOffsetToPtr(FcCharSetLeaves(c), \
307                                                FcCharSetLeaves(c)[i], \
308                                                FcCharLeaf))
309 #define FcCharSetNumbers(c)     FcOffsetMember(c,numbers_offset,FcChar16)
310
311 struct _FcStrSet {
312     int             ref;        /* reference count */
313     int             num;
314     int             size;
315     FcChar8         **strs;
316 };
317
318 struct _FcStrList {
319     FcStrSet        *set;
320     int             n;
321 };
322
323 typedef struct _FcStrBuf {
324     FcChar8 *buf;
325     FcBool  allocated;
326     FcBool  failed;
327     int     len;
328     int     size;
329     FcChar8 buf_static[16 * sizeof (void *)];
330 } FcStrBuf;
331
332 struct _FcCache {
333     unsigned int magic;              /* FC_CACHE_MAGIC_MMAP or FC_CACHE_ALLOC */
334     int         version;            /* FC_CACHE_CONTENT_VERSION */
335     intptr_t    size;               /* size of file */
336     intptr_t    dir;                /* offset to dir name */
337     intptr_t    dirs;               /* offset to subdirs */
338     int         dirs_count;         /* number of subdir strings */
339     intptr_t    set;                /* offset to font set */
340     int         checksum;           /* checksum of directory state */
341 };
342
343 #undef FcCacheDir
344 #undef FcCacheSubdir
345 #define FcCacheDir(c)   FcOffsetMember(c,dir,FcChar8)
346 #define FcCacheDirs(c)  FcOffsetMember(c,dirs,intptr_t)
347 #define FcCacheSet(c)   FcOffsetMember(c,set,FcFontSet)
348 #define FcCacheSubdir(c,i)  FcOffsetToPtr (FcCacheDirs(c),\
349                                            FcCacheDirs(c)[i], \
350                                            FcChar8)
351
352 /*
353  * Used while constructing a directory cache object
354  */
355
356 #define FC_SERIALIZE_HASH_SIZE  8191
357
358 typedef union _FcAlign {
359     double      d;
360     int         i;
361     intptr_t    ip;
362     FcBool      b;
363     void        *p;
364 } FcAlign;
365
366 typedef struct _FcSerializeBucket {
367     struct _FcSerializeBucket *next;
368     const void  *object;
369     intptr_t    offset;
370 } FcSerializeBucket;
371
372 typedef struct _FcCharSetFreezer FcCharSetFreezer;
373
374 typedef struct _FcSerialize {
375     intptr_t            size;
376     FcCharSetFreezer    *cs_freezer;
377     void                *linear;
378     FcSerializeBucket   *buckets[FC_SERIALIZE_HASH_SIZE];
379 } FcSerialize;
380
381 /*
382  * To map adobe glyph names to unicode values, a precomputed hash
383  * table is used
384  */
385
386 typedef struct _FcGlyphName {
387     FcChar32    ucs;            /* unicode value */
388     FcChar8     name[1];        /* name extends beyond struct */
389 } FcGlyphName;
390
391 /*
392  * To perform case-insensitive string comparisons, a table
393  * is used which holds three different kinds of folding data.
394  *
395  * The first is a range of upper case values mapping to a range
396  * of their lower case equivalents.  Within each range, the offset
397  * between upper and lower case is constant.
398  *
399  * The second is a range of upper case values which are interleaved
400  * with their lower case equivalents.
401  *
402  * The third is a set of raw unicode values mapping to a list
403  * of unicode values for comparison purposes.  This allows conversion
404  * of ß to "ss" so that SS, ss and ß all match.  A separate array
405  * holds the list of unicode values for each entry.
406  *
407  * These are packed into a single table.  Using a binary search,
408  * the appropriate entry can be located.
409  */
410
411 #define FC_CASE_FOLD_RANGE          0
412 #define FC_CASE_FOLD_EVEN_ODD       1
413 #define FC_CASE_FOLD_FULL           2
414
415 typedef struct _FcCaseFold {
416     FcChar32    upper;
417     FcChar16    method : 2;
418     FcChar16    count : 14;
419     short       offset;     /* lower - upper for RANGE, table id for FULL */
420 } FcCaseFold;
421
422 #define FC_MAX_FILE_LEN     4096
423
424 #define FC_CACHE_MAGIC_MMAP         0xFC02FC04
425 #define FC_CACHE_MAGIC_ALLOC        0xFC02FC05
426 #define FC_CACHE_CONTENT_VERSION    3
427
428 struct _FcAtomic {
429     FcChar8     *file;          /* original file name */
430     FcChar8     *new;           /* temp file name -- write data here */
431     FcChar8     *lck;           /* lockfile name (used for locking) */
432     FcChar8     *tmp;           /* tmpfile name (used for locking) */
433 };
434
435 struct _FcBlanks {
436     int         nblank;
437     int         sblank;
438     FcChar32    *blanks;
439 };
440
441 struct _FcConfig {
442     /*
443      * File names loaded from the configuration -- saved here as the
444      * cache file must be consulted before the directories are scanned,
445      * and those directives may occur in any order
446      */
447     FcStrSet    *configDirs;        /* directories to scan for fonts */
448     /*
449      * Set of allowed blank chars -- used to
450      * trim fonts of bogus glyphs
451      */
452     FcBlanks    *blanks;
453     /*
454      * List of directories containing fonts,
455      * built by recursively scanning the set
456      * of configured directories
457      */
458     FcStrSet    *fontDirs;
459     /*
460      * List of directories containing cache files.
461      */
462     FcStrSet    *cacheDirs;
463     /*
464      * Names of all of the configuration files used
465      * to create this configuration
466      */
467     FcStrSet    *configFiles;       /* config files loaded */
468     /*
469      * Substitution instructions for patterns and fonts;
470      * maxObjects is used to allocate appropriate intermediate storage
471      * while performing a whole set of substitutions
472      */
473     FcSubst     *substPattern;      /* substitutions for patterns */
474     FcSubst     *substFont;         /* substitutions for fonts */
475     FcSubst     *substScan;         /* substitutions for scanned fonts */
476     int         maxObjects;         /* maximum number of tests in all substs */
477     /*
478      * List of patterns used to control font file selection
479      */
480     FcStrSet    *acceptGlobs;
481     FcStrSet    *rejectGlobs;
482     FcFontSet   *acceptPatterns;
483     FcFontSet   *rejectPatterns;
484     /*
485      * The set of fonts loaded from the listed directories; the
486      * order within the set does not determine the font selection,
487      * except in the case of identical matches in which case earlier fonts
488      * match preferrentially
489      */
490     FcFontSet   *fonts[FcSetApplication + 1];
491     /*
492      * Fontconfig can periodically rescan the system configuration
493      * and font directories.  This rescanning occurs when font
494      * listing requests are made, but no more often than rescanInterval
495      * seconds apart.
496      */
497     time_t      rescanTime;         /* last time information was scanned */
498     int         rescanInterval;     /* interval between scans */
499
500     int         ref;                /* reference count */
501
502     FcExprPage *expr_pool;          /* pool of FcExpr's */
503 };
504
505 extern FcPrivate FcConfig       *_fcConfig;
506
507 typedef struct _FcFileTime {
508     time_t  time;
509     FcBool  set;
510 } FcFileTime;
511
512 typedef struct _FcCharMap FcCharMap;
513
514 typedef struct _FcRange     FcRange;
515
516 struct _FcRange {
517     FcChar32 begin;
518     FcChar32 end;
519 };
520
521 typedef struct _FcStatFS    FcStatFS;
522
523 struct _FcStatFS {
524     FcBool is_remote_fs;
525     FcBool is_mtime_broken;
526 };
527
528 /* fcblanks.c */
529
530 /* fccache.c */
531
532 FcPrivate FcCache *
533 FcDirCacheScan (const FcChar8 *dir, FcConfig *config);
534
535 FcPrivate FcCache *
536 FcDirCacheBuild (FcFontSet *set, const FcChar8 *dir, struct stat *dir_stat, FcStrSet *dirs);
537
538 FcPrivate FcBool
539 FcDirCacheWrite (FcCache *cache, FcConfig *config);
540
541 FcPrivate FcBool
542 FcDirCacheCreateTagFile (const FcChar8 *cache_dir);
543
544 FcPrivate void
545 FcCacheObjectReference (void *object);
546
547 FcPrivate void
548 FcCacheObjectDereference (void *object);
549
550 FcPrivate void
551 FcCacheFini (void);
552
553 FcPrivate void
554 FcDirCacheReference (FcCache *cache, int nref);
555
556 /* fccfg.c */
557
558 FcPrivate FcChar8 *
559 FcConfigXdgCacheHome (void);
560
561 FcPrivate FcChar8 *
562 FcConfigXdgConfigHome (void);
563
564 FcPrivate FcChar8 *
565 FcConfigXdgDataHome (void);
566
567 FcPrivate FcExpr *
568 FcConfigAllocExpr (FcConfig *config);
569
570 FcPrivate FcBool
571 FcConfigAddConfigDir (FcConfig      *config,
572                       const FcChar8 *d);
573
574 FcPrivate FcBool
575 FcConfigAddFontDir (FcConfig        *config,
576                     const FcChar8   *d);
577
578 FcPrivate FcBool
579 FcConfigAddDir (FcConfig        *config,
580                 const FcChar8   *d);
581
582 FcPrivate FcBool
583 FcConfigAddCacheDir (FcConfig       *config,
584                      const FcChar8  *d);
585
586 FcPrivate FcBool
587 FcConfigAddConfigFile (FcConfig         *config,
588                        const FcChar8    *f);
589
590 FcPrivate FcBool
591 FcConfigAddBlank (FcConfig      *config,
592                   FcChar32      blank);
593
594 FcPrivate FcBool
595 FcConfigAddEdit (FcConfig       *config,
596                  FcTest         *test,
597                  FcEdit         *edit,
598                  FcMatchKind    kind);
599
600 FcPrivate void
601 FcConfigSetFonts (FcConfig      *config,
602                   FcFontSet     *fonts,
603                   FcSetName     set);
604
605 FcPrivate FcBool
606 FcConfigCompareValue (const FcValue *m,
607                       FcOp          op,
608                       const FcValue *v);
609
610 FcPrivate FcBool
611 FcConfigGlobAdd (FcConfig       *config,
612                  const FcChar8  *glob,
613                  FcBool         accept);
614
615 FcPrivate FcBool
616 FcConfigAcceptFilename (FcConfig        *config,
617                         const FcChar8   *filename);
618
619 FcPrivate FcBool
620 FcConfigPatternsAdd (FcConfig   *config,
621                      FcPattern  *pattern,
622                      FcBool     accept);
623
624 FcPrivate FcBool
625 FcConfigAcceptFont (FcConfig        *config,
626                     const FcPattern *font);
627
628 FcPrivate FcFileTime
629 FcConfigModifiedTime (FcConfig *config);
630
631 FcPrivate FcBool
632 FcConfigAddCache (FcConfig *config, FcCache *cache,
633                   FcSetName set, FcStrSet *dirSet);
634
635 /* fcserialize.c */
636 FcPrivate intptr_t
637 FcAlignSize (intptr_t size);
638
639 FcPrivate FcSerialize *
640 FcSerializeCreate (void);
641
642 FcPrivate void
643 FcSerializeDestroy (FcSerialize *serialize);
644
645 FcPrivate FcBool
646 FcSerializeAlloc (FcSerialize *serialize, const void *object, int size);
647
648 FcPrivate intptr_t
649 FcSerializeReserve (FcSerialize *serialize, int size);
650
651 FcPrivate intptr_t
652 FcSerializeOffset (FcSerialize *serialize, const void *object);
653
654 FcPrivate void *
655 FcSerializePtr (FcSerialize *serialize, const void *object);
656
657 FcPrivate FcBool
658 FcLangSetSerializeAlloc (FcSerialize *serialize, const FcLangSet *l);
659
660 FcPrivate FcLangSet *
661 FcLangSetSerialize(FcSerialize *serialize, const FcLangSet *l);
662
663 /* fccharset.c */
664 FcPrivate void
665 FcLangCharSetPopulate (void);
666
667 FcPrivate FcCharSetFreezer *
668 FcCharSetFreezerCreate (void);
669
670 FcPrivate const FcCharSet *
671 FcCharSetFreeze (FcCharSetFreezer *freezer, const FcCharSet *fcs);
672
673 FcPrivate void
674 FcCharSetFreezerDestroy (FcCharSetFreezer *freezer);
675
676 FcPrivate FcBool
677 FcNameUnparseCharSet (FcStrBuf *buf, const FcCharSet *c);
678
679 FcPrivate FcCharSet *
680 FcNameParseCharSet (FcChar8 *string);
681
682 FcPrivate FcBool
683 FcNameUnparseValue (FcStrBuf    *buf,
684                     FcValue     *v0,
685                     FcChar8     *escape);
686
687 FcPrivate FcBool
688 FcNameUnparseValueList (FcStrBuf        *buf,
689                         FcValueListPtr  v,
690                         FcChar8         *escape);
691
692 FcPrivate FcCharLeaf *
693 FcCharSetFindLeafCreate (FcCharSet *fcs, FcChar32 ucs4);
694
695 FcPrivate FcBool
696 FcCharSetSerializeAlloc(FcSerialize *serialize, const FcCharSet *cs);
697
698 FcPrivate FcCharSet *
699 FcCharSetSerialize(FcSerialize *serialize, const FcCharSet *cs);
700
701 FcPrivate FcChar16 *
702 FcCharSetGetNumbers(const FcCharSet *c);
703
704 /* fcdbg.c */
705
706 FcPrivate void
707 FcValuePrintFile (FILE *f, const FcValue v);
708
709 FcPrivate void
710 FcValuePrintWithPosition (const FcValue v, FcBool show_pos_mark);
711
712 FcPrivate void
713 FcValueListPrintWithPosition (FcValueListPtr l, const FcValueListPtr pos);
714
715 FcPrivate void
716 FcValueListPrint (FcValueListPtr l);
717
718 FcPrivate void
719 FcLangSetPrint (const FcLangSet *ls);
720
721 FcPrivate void
722 FcOpPrint (FcOp op);
723
724 FcPrivate void
725 FcTestPrint (const FcTest *test);
726
727 FcPrivate void
728 FcExprPrint (const FcExpr *expr);
729
730 FcPrivate void
731 FcEditPrint (const FcEdit *edit);
732
733 FcPrivate void
734 FcSubstPrint (const FcSubst *subst);
735
736 FcPrivate void
737 FcCharSetPrint (const FcCharSet *c);
738
739 extern FcPrivate int FcDebugVal;
740
741 #define FcDebug() (FcDebugVal)
742
743 FcPrivate void
744 FcInitDebug (void);
745
746 /* fcdefault.c */
747 FcPrivate FcChar8 *
748 FcGetDefaultLang (void);
749
750 /* fcdir.c */
751
752 FcPrivate FcBool
753 FcFileIsLink (const FcChar8 *file);
754
755 FcPrivate FcBool
756 FcFileScanConfig (FcFontSet     *set,
757                   FcStrSet      *dirs,
758                   FcBlanks      *blanks,
759                   const FcChar8 *file,
760                   FcConfig      *config);
761
762 FcPrivate FcBool
763 FcDirScanConfig (FcFontSet      *set,
764                  FcStrSet       *dirs,
765                  FcBlanks       *blanks,
766                  const FcChar8  *dir,
767                  FcBool         force,
768                  FcConfig       *config);
769
770 /* fcfont.c */
771 FcPrivate int
772 FcFontDebug (void);
773
774 /* fcfs.c */
775
776 FcPrivate FcBool
777 FcFontSetSerializeAlloc (FcSerialize *serialize, const FcFontSet *s);
778
779 FcPrivate FcFontSet *
780 FcFontSetSerialize (FcSerialize *serialize, const FcFontSet * s);
781
782 /* fcxml.c */
783 FcPrivate void
784 FcTestDestroy (FcTest *test);
785
786 FcPrivate void
787 FcEditDestroy (FcEdit *e);
788
789 /* fclang.c */
790 FcPrivate FcLangSet *
791 FcFreeTypeLangSet (const FcCharSet  *charset,
792                    const FcChar8    *exclusiveLang);
793
794 FcPrivate FcChar8 *
795 FcLangNormalize (const FcChar8 *lang);
796
797 FcPrivate FcLangResult
798 FcLangCompare (const FcChar8 *s1, const FcChar8 *s2);
799
800 FcPrivate FcLangSet *
801 FcLangSetPromote (const FcChar8 *lang);
802
803 FcPrivate FcLangSet *
804 FcNameParseLangSet (const FcChar8 *string);
805
806 FcPrivate FcBool
807 FcNameUnparseLangSet (FcStrBuf *buf, const FcLangSet *ls);
808
809 FcPrivate FcChar8 *
810 FcNameUnparseEscaped (FcPattern *pat, FcBool escape);
811
812 /* fclist.c */
813
814 FcPrivate FcBool
815 FcListPatternMatchAny (const FcPattern *p,
816                        const FcPattern *font);
817
818 /* fcmatch.c */
819
820 /* fcname.c */
821
822 /*
823  * NOTE -- this ordering is part of the cache file format.
824  * It must also match the ordering in fcname.c
825  */
826
827 #define FC_FAMILY_OBJECT        1
828 #define FC_FAMILYLANG_OBJECT    2
829 #define FC_STYLE_OBJECT         3
830 #define FC_STYLELANG_OBJECT     4
831 #define FC_FULLNAME_OBJECT      5
832 #define FC_FULLNAMELANG_OBJECT  6
833 #define FC_SLANT_OBJECT         7
834 #define FC_WEIGHT_OBJECT        8
835 #define FC_WIDTH_OBJECT         9
836 #define FC_SIZE_OBJECT          10
837 #define FC_ASPECT_OBJECT        11
838 #define FC_PIXEL_SIZE_OBJECT    12
839 #define FC_SPACING_OBJECT       13
840 #define FC_FOUNDRY_OBJECT       14
841 #define FC_ANTIALIAS_OBJECT     15
842 #define FC_HINT_STYLE_OBJECT    16
843 #define FC_HINTING_OBJECT       17
844 #define FC_VERTICAL_LAYOUT_OBJECT       18
845 #define FC_AUTOHINT_OBJECT      19
846 #define FC_GLOBAL_ADVANCE_OBJECT        20      /* deprecated */
847 #define FC_FILE_OBJECT          21
848 #define FC_INDEX_OBJECT         22
849 #define FC_RASTERIZER_OBJECT    23
850 #define FC_OUTLINE_OBJECT       24
851 #define FC_SCALABLE_OBJECT      25
852 #define FC_DPI_OBJECT           26
853 #define FC_RGBA_OBJECT          27
854 #define FC_SCALE_OBJECT         28
855 #define FC_MINSPACE_OBJECT      29
856 #define FC_CHAR_WIDTH_OBJECT    30
857 #define FC_CHAR_HEIGHT_OBJECT   31
858 #define FC_MATRIX_OBJECT        32
859 #define FC_CHARSET_OBJECT       33
860 #define FC_LANG_OBJECT          34
861 #define FC_FONTVERSION_OBJECT   35
862 #define FC_CAPABILITY_OBJECT    36
863 #define FC_FONTFORMAT_OBJECT    37
864 #define FC_EMBOLDEN_OBJECT      38
865 #define FC_EMBEDDED_BITMAP_OBJECT       39
866 #define FC_DECORATIVE_OBJECT    40
867 #define FC_LCD_FILTER_OBJECT    41
868 #define FC_NAMELANG_OBJECT      42
869 #define FC_MAX_BASE_OBJECT      FC_NAMELANG_OBJECT
870
871 FcPrivate FcBool
872 FcNameBool (const FcChar8 *v, FcBool *result);
873
874 FcPrivate FcBool
875 FcObjectValidType (FcObject object, FcType type);
876
877 FcPrivate FcObject
878 FcObjectFromName (const char * name);
879
880 FcPrivate const char *
881 FcObjectName (FcObject object);
882
883 FcPrivate FcObjectSet *
884 FcObjectGetSet (void);
885
886 FcPrivate FcBool
887 FcObjectInit (void);
888
889 FcPrivate void
890 FcObjectFini (void);
891
892 #define FcObjectCompare(a, b)   ((int) a - (int) b)
893
894 /* fcpat.c */
895
896 FcPrivate FcValue
897 FcValueCanonicalize (const FcValue *v);
898
899 FcPrivate FcValueListPtr
900 FcValueListCreate (void);
901
902 FcPrivate void
903 FcValueListDestroy (FcValueListPtr l);
904
905 FcPrivate FcValueListPtr
906 FcValueListPrepend (FcValueListPtr vallist,
907                     FcValue        value,
908                     FcValueBinding binding);
909
910 FcPrivate FcValueListPtr
911 FcValueListAppend (FcValueListPtr vallist,
912                    FcValue        value,
913                    FcValueBinding binding);
914
915 FcPrivate FcValueListPtr
916 FcValueListDuplicate(FcValueListPtr orig);
917
918 FcPrivate FcPatternElt *
919 FcPatternObjectFindElt (const FcPattern *p, FcObject object);
920
921 FcPrivate FcPatternElt *
922 FcPatternObjectInsertElt (FcPattern *p, FcObject object);
923
924 FcPrivate FcBool
925 FcPatternObjectListAdd (FcPattern       *p,
926                         FcObject        object,
927                         FcValueListPtr  list,
928                         FcBool          append);
929
930 FcPrivate FcBool
931 FcPatternObjectAddWithBinding  (FcPattern       *p,
932                                 FcObject        object,
933                                 FcValue         value,
934                                 FcValueBinding  binding,
935                                 FcBool          append);
936
937 FcPrivate FcBool
938 FcPatternObjectAdd (FcPattern *p, FcObject object, FcValue value, FcBool append);
939
940 FcPrivate FcBool
941 FcPatternObjectAddWeak (FcPattern *p, FcObject object, FcValue value, FcBool append);
942
943 FcPrivate FcResult
944 FcPatternObjectGet (const FcPattern *p, FcObject object, int id, FcValue *v);
945
946 FcPrivate FcBool
947 FcPatternObjectDel (FcPattern *p, FcObject object);
948
949 FcPrivate FcBool
950 FcPatternObjectRemove (FcPattern *p, FcObject object, int id);
951
952 FcPrivate FcBool
953 FcPatternObjectAddInteger (FcPattern *p, FcObject object, int i);
954
955 FcPrivate FcBool
956 FcPatternObjectAddDouble (FcPattern *p, FcObject object, double d);
957
958 FcPrivate FcBool
959 FcPatternObjectAddString (FcPattern *p, FcObject object, const FcChar8 *s);
960
961 FcPrivate FcBool
962 FcPatternObjectAddMatrix (FcPattern *p, FcObject object, const FcMatrix *s);
963
964 FcPrivate FcBool
965 FcPatternObjectAddCharSet (FcPattern *p, FcObject object, const FcCharSet *c);
966
967 FcPrivate FcBool
968 FcPatternObjectAddBool (FcPattern *p, FcObject object, FcBool b);
969
970 FcPrivate FcBool
971 FcPatternObjectAddLangSet (FcPattern *p, FcObject object, const FcLangSet *ls);
972
973 FcPrivate FcResult
974 FcPatternObjectGetInteger (const FcPattern *p, FcObject object, int n, int *i);
975
976 FcPrivate FcResult
977 FcPatternObjectGetDouble (const FcPattern *p, FcObject object, int n, double *d);
978
979 FcPrivate FcResult
980 FcPatternObjectGetString (const FcPattern *p, FcObject object, int n, FcChar8 ** s);
981
982 FcPrivate FcResult
983 FcPatternObjectGetMatrix (const FcPattern *p, FcObject object, int n, FcMatrix **s);
984
985 FcPrivate FcResult
986 FcPatternObjectGetCharSet (const FcPattern *p, FcObject object, int n, FcCharSet **c);
987
988 FcPrivate FcResult
989 FcPatternObjectGetBool (const FcPattern *p, FcObject object, int n, FcBool *b);
990
991 FcPrivate FcResult
992 FcPatternObjectGetLangSet (const FcPattern *p, FcObject object, int n, FcLangSet **ls);
993
994 FcPrivate FcBool
995 FcPatternAppend (FcPattern *p, FcPattern *s);
996
997 FcPrivate const FcChar8 *
998 FcSharedStr (const FcChar8 *name);
999
1000 FcPrivate FcBool
1001 FcSharedStrFree (const FcChar8 *name);
1002
1003 FcPrivate FcChar32
1004 FcStringHash (const FcChar8 *s);
1005
1006 FcPrivate FcBool
1007 FcPatternSerializeAlloc (FcSerialize *serialize, const FcPattern *pat);
1008
1009 FcPrivate FcPattern *
1010 FcPatternSerialize (FcSerialize *serialize, const FcPattern *pat);
1011
1012 FcPrivate FcBool
1013 FcValueListSerializeAlloc (FcSerialize *serialize, const FcValueList *pat);
1014
1015 FcPrivate FcValueList *
1016 FcValueListSerialize (FcSerialize *serialize, const FcValueList *pat);
1017
1018 /* fcrender.c */
1019
1020 /* fcmatrix.c */
1021
1022 extern FcPrivate const FcMatrix    FcIdentityMatrix;
1023
1024 FcPrivate void
1025 FcMatrixFree (FcMatrix *mat);
1026
1027 /* fcstat.c */
1028
1029 FcPrivate int
1030 FcStat (const FcChar8 *file, struct stat *statb);
1031
1032 FcPrivate int
1033 FcStatChecksum (const FcChar8 *file, struct stat *statb);
1034
1035 FcPrivate FcBool
1036 FcIsFsMmapSafe (int fd);
1037
1038 FcPrivate FcBool
1039 FcIsFsMtimeBroken (const FcChar8 *dir);
1040
1041 /* fcstr.c */
1042 FcPrivate FcBool
1043 FcStrSetAddLangs (FcStrSet *strs, const char *languages);
1044
1045 FcPrivate void
1046 FcStrSetSort (FcStrSet * set);
1047
1048 FcPrivate void
1049 FcStrBufInit (FcStrBuf *buf, FcChar8 *init, int size);
1050
1051 FcPrivate void
1052 FcStrBufDestroy (FcStrBuf *buf);
1053
1054 FcPrivate FcChar8 *
1055 FcStrBufDone (FcStrBuf *buf);
1056
1057 FcPrivate FcChar8 *
1058 FcStrBufDoneStatic (FcStrBuf *buf);
1059
1060 FcPrivate FcBool
1061 FcStrBufChar (FcStrBuf *buf, FcChar8 c);
1062
1063 FcPrivate FcBool
1064 FcStrBufString (FcStrBuf *buf, const FcChar8 *s);
1065
1066 FcPrivate FcBool
1067 FcStrBufData (FcStrBuf *buf, const FcChar8 *s, int len);
1068
1069 FcPrivate int
1070 FcStrCmpIgnoreBlanksAndCase (const FcChar8 *s1, const FcChar8 *s2);
1071
1072 FcPrivate FcBool
1073 FcStrRegexCmp (const FcChar8 *s, const FcChar8 *regex);
1074
1075 FcPrivate FcBool
1076 FcStrRegexCmpIgnoreCase (const FcChar8 *s, const FcChar8 *regex);
1077
1078 FcPrivate const FcChar8 *
1079 FcStrContainsIgnoreBlanksAndCase (const FcChar8 *s1, const FcChar8 *s2);
1080
1081 FcPrivate const FcChar8 *
1082 FcStrContainsIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
1083
1084 FcPrivate const FcChar8 *
1085 FcStrContainsWord (const FcChar8 *s1, const FcChar8 *s2);
1086
1087 FcPrivate FcBool
1088 FcStrUsesHome (const FcChar8 *s);
1089
1090 FcPrivate FcChar8 *
1091 FcStrLastSlash (const FcChar8  *path);
1092
1093 FcPrivate FcChar32
1094 FcStrHashIgnoreCase (const FcChar8 *s);
1095
1096 FcPrivate FcChar8 *
1097 FcStrCanonFilename (const FcChar8 *s);
1098
1099 FcPrivate FcBool
1100 FcStrSerializeAlloc (FcSerialize *serialize, const FcChar8 *str);
1101
1102 FcPrivate FcChar8 *
1103 FcStrSerialize (FcSerialize *serialize, const FcChar8 *str);
1104
1105 #endif /* _FC_INT_H_ */