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