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