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