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