]> git.wh0rd.org - fontconfig.git/blame_incremental - src/fcfs.c
Replace FcObjectStaticName by FcStrStaticName. Implement serialization of
[fontconfig.git] / src / fcfs.c
... / ...
CommitLineData
1/*
2 * $RCSId: $
3 *
4 * Copyright © 2000 Keith Packard
5 *
6 * Permission to use, copy, modify, distribute, and sell this software and its
7 * documentation for any purpose is hereby granted without fee, provided that
8 * the above copyright notice appear in all copies and that both that
9 * copyright notice and this permission notice appear in supporting
10 * documentation, and that the name of 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#include <stdlib.h>
26#include "fcint.h"
27
28FcFontSet *
29FcFontSetCreate (void)
30{
31 FcFontSet *s;
32
33 s = (FcFontSet *) malloc (sizeof (FcFontSet));
34 if (!s)
35 return 0;
36 FcMemAlloc (FC_MEM_FONTSET, sizeof (FcFontSet));
37 s->nfont = 0;
38 s->sfont = 0;
39 s->fonts = 0;
40 return s;
41}
42
43void
44FcFontSetDestroy (FcFontSet *s)
45{
46 int i;
47
48 for (i = 0; i < s->nfont; i++)
49 FcPatternDestroy (s->fonts[i]);
50 if (s->fonts)
51 {
52 FcMemFree (FC_MEM_FONTPTR, s->sfont * sizeof (FcPattern *));
53 free (s->fonts);
54 }
55 FcMemFree (FC_MEM_FONTSET, sizeof (FcFontSet));
56 free (s);
57}
58
59FcBool
60FcFontSetAdd (FcFontSet *s, FcPattern *font)
61{
62 FcPattern **f;
63 int sfont;
64
65 if (s->nfont == s->sfont)
66 {
67 sfont = s->sfont + 32;
68 if (s->fonts)
69 f = (FcPattern **) realloc (s->fonts, sfont * sizeof (FcPattern *));
70 else
71 f = (FcPattern **) malloc (sfont * sizeof (FcPattern *));
72 if (!f)
73 return FcFalse;
74 if (s->sfont)
75 FcMemFree (FC_MEM_FONTPTR, s->sfont * sizeof (FcPattern *));
76 FcMemAlloc (FC_MEM_FONTPTR, sfont * sizeof (FcPattern *));
77 s->sfont = sfont;
78 s->fonts = f;
79 }
80 s->fonts[s->nfont++] = font;
81 return FcTrue;
82}
83
84static int * fcfs_pat_count;
85
86void
87FcFontSetNewBank (void)
88{
89 FcPatternNewBank();
90}
91
92int
93FcFontSetNeededBytes (FcFontSet *s)
94{
95 int i, c, cum = 0;
96
97 for (i = 0; i < s->nfont; i++)
98 {
99 c = FcPatternNeededBytes(s->fonts[i]);
100 if (c < 0)
101 return c;
102 cum += c;
103 }
104
105 if (cum > 0)
106 return cum + sizeof(int) + FcObjectNeededBytes();
107 else
108 return 0;
109}
110
111void *
112FcFontSetDistributeBytes (FcCache * metadata, void * block_ptr)
113{
114 fcfs_pat_count = (int *)block_ptr;
115 block_ptr = (int *)block_ptr + 1;
116 // we don't consume any bytes for the fontset itself,
117 // since we don't allocate it statically.
118 block_ptr = FcPatternDistributeBytes (metadata, block_ptr);
119
120 // for good measure, write out the object ids used for
121 // this bank to the file.
122 return FcObjectDistributeBytes (metadata, block_ptr);
123}
124
125FcBool
126FcFontSetSerialize (int bank, FcFontSet * s)
127{
128 int i;
129 FcPattern * p;
130 *fcfs_pat_count = s->nfont;
131
132 for (i = 0; i < s->nfont; i++)
133 {
134 p = FcPatternSerialize (bank, s->fonts[i]);
135 if (!p) return FcFalse;
136 FcPatternDestroy (s->fonts[i]);
137
138 s->fonts[i] = p;
139 }
140 FcObjectSerialize();
141
142 return FcTrue;
143}
144
145FcBool
146FcFontSetUnserialize(FcCache metadata, FcFontSet * s, void * block_ptr)
147{
148 int nfont;
149 int i, n;
150
151 nfont = *(int *)block_ptr;
152 block_ptr = (int *)block_ptr + 1;
153
154 if (s->sfont < s->nfont + nfont)
155 {
156 int sfont = s->nfont + nfont;
157 FcPattern ** pp;
158 pp = realloc (s->fonts, sfont * sizeof (FcPattern));
159 if (!pp)
160 return FcFalse;
161 s->fonts = pp;
162 s->sfont = sfont;
163 }
164 n = s->nfont;
165 s->nfont += nfont;
166
167 if (nfont > 0)
168 {
169 FcPattern * p = (FcPattern *)block_ptr;
170 block_ptr = FcPatternUnserialize (metadata, block_ptr);
171 for (i = 0; i < nfont; i++)
172 s->fonts[n + i] = p+i;
173
174 block_ptr = FcObjectUnserialize (metadata, block_ptr);
175 }
176
177 return block_ptr != 0;
178}