forked from MapServer/MapServer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
fontcache.c
291 lines (267 loc) · 9.87 KB
/
fontcache.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
/******************************************************************************
*
* Project: MapServer
* Purpose: Freetype Font helper functions
* Author: Thomas Bonfort and the MapServer team.
*
******************************************************************************
* Copyright (c) 1996-2013 Regents of the University of Minnesota.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies of this Software or works derived from this Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
#include "mapserver.h"
#include "mapthread.h"
#include "fontcache.h"
#include "dejavu-sans-condensed.h"
typedef struct {
FT_Library library;
face_element *face_cache;
glyph_element *bitmap_glyph_cache;
} ft_cache;
#ifdef USE_THREAD
typedef struct ft_thread_cache ft_thread_cache;
struct ft_thread_cache{
int thread_id;
ft_thread_cache *next;
ft_cache cache;
};
ft_thread_cache *ft_caches;
#else
ft_cache global_ft_cache;
#endif
void msInitFontCache(ft_cache *c) {
memset(c,0,sizeof(ft_cache));
FT_Init_FreeType(&c->library);
}
void msFreeFontCache(ft_cache *c) {
/* ... TODO ... */
face_element *cur_face,*tmp_face;
glyph_element *cur_bitmap, *tmp_bitmap;
UT_HASH_ITER(hh, c->face_cache, cur_face, tmp_face) {
index_element *cur_index,*tmp_index;
outline_element *cur_outline,*tmp_outline;
glyph_element *cur_glyph,*tmp_glyph;
UT_HASH_ITER(hh, cur_face->index_cache, cur_index, tmp_index) {
UT_HASH_DEL(cur_face->index_cache,cur_index);
free(cur_index);
}
UT_HASH_ITER(hh, cur_face->outline_cache, cur_outline, tmp_outline) {
UT_HASH_DEL(cur_face->outline_cache,cur_outline);
FT_Outline_Done(c->library,&cur_outline->outline);
free(cur_outline);
}
UT_HASH_ITER(hh, cur_face->glyph_cache, cur_glyph, tmp_glyph) {
UT_HASH_DEL(cur_face->glyph_cache,cur_glyph);
free(cur_glyph);
}
#ifdef USE_HARFBUZZ
if(cur_face->hbfont) {
hb_font_destroy(cur_face->hbfont->hbfont);
hb_font_destroy(cur_face->hbfont->hbparentfont);
hb_font_funcs_destroy(cur_face->hbfont->funcs);
free(cur_face->hbfont);
}
#endif
FT_Done_Face(cur_face->face);
UT_HASH_DEL(c->face_cache,cur_face);
free(cur_face);
}
FT_Done_FreeType(c->library);
UT_HASH_ITER(hh,c->bitmap_glyph_cache, cur_bitmap, tmp_bitmap) {
UT_HASH_DEL(c->bitmap_glyph_cache, cur_bitmap);
free(cur_bitmap);
}
}
ft_cache* msGetFontCache() {
#ifndef USE_THREAD
return &global_ft_cache;
#else
int nThreadId = msGetThreadId();
ft_thread_cache *prev = NULL, *cur = ft_caches;
if( cur != NULL && cur->thread_id == nThreadId )
return &cur->cache;
/* -------------------------------------------------------------------- */
/* Search for cache for this thread */
/* -------------------------------------------------------------------- */
msAcquireLock( TLOCK_TTF );
cur = ft_caches;
while( cur != NULL && cur->thread_id != nThreadId ) {
prev = cur;
cur = cur->next;
}
/* -------------------------------------------------------------------- */
/* If we found it, make sure it is pushed to the front of the */
/* link for faster finding next time, and return it. */
/* -------------------------------------------------------------------- */
if( cur != NULL ) {
if( prev != NULL ) {
prev->next = cur->next;
cur->next = ft_caches;
ft_caches = cur;
}
msReleaseLock( TLOCK_TTF );
return &cur->cache;
}
/* -------------------------------------------------------------------- */
/* Create a new context group for this thread. */
/* -------------------------------------------------------------------- */
cur = msSmallMalloc(sizeof(ft_thread_cache));
cur->next = NULL;
cur->thread_id = nThreadId;
msInitFontCache(&cur->cache);
cur->next = ft_caches;
ft_caches = cur;
msReleaseLock( TLOCK_TTF );
return &cur->cache;
#endif
}
void msFontCacheSetup() {
#ifndef USE_THREAD
ft_cache *c = msGetFontCache();
msInitFontCache(c);
#else
ft_caches = NULL;
#endif
}
void msFontCacheCleanup() {
#ifndef USE_THREAD
ft_cache *c = msGetFontCache();
msFreeFontCache(c);
#else
ft_thread_cache *cur,*next;
msAcquireLock( TLOCK_TTF );
cur = ft_caches;
while( cur != NULL ) {
msFreeFontCache(&cur->cache);
next = cur->next;
free(cur);
cur = next;
}
ft_caches = NULL;
msReleaseLock( TLOCK_TTF );
#endif
}
unsigned int msGetGlyphIndex(face_element *face, unsigned int unicode) {
index_element *ic;
if(face->face->charmap && face->face->charmap->encoding == FT_ENCODING_MS_SYMBOL) {
unicode |= 0xf000; /* why? */
}
UT_HASH_FIND_INT(face->index_cache,&unicode,ic);
if(!ic) {
ic = msSmallMalloc(sizeof(index_element));
ic->codepoint = FT_Get_Char_Index(face->face,unicode);
ic->unicode = unicode;
UT_HASH_ADD_INT(face->index_cache,unicode,ic);
}
return ic->codepoint;
}
#define MS_DEFAULT_FONT_KEY "_ms_default_"
face_element* msGetFontFace(char *key, fontSetObj *fontset) {
face_element *fc;
int error;
ft_cache *cache = msGetFontCache();
if(!key) {
key = MS_DEFAULT_FONT_KEY;
}
UT_HASH_FIND_STR(cache->face_cache,key,fc);
if(!fc) {
char *fontfile = NULL;
fc = msSmallCalloc(1,sizeof(face_element));
if(fontset && strcmp(key,MS_DEFAULT_FONT_KEY)) {
fontfile = msLookupHashTable(&(fontset->fonts),key);
if(!fontfile) {
msSetError(MS_MISCERR, "Could not find font with key \"%s\" in fontset", "msGetFontFace()", key);
free(fc);
return NULL;
}
error = FT_New_Face(cache->library,fontfile,0, &(fc->face));
} else {
error = FT_New_Memory_Face(cache->library,dejavu_sans_condensed_ttf, dejavu_sans_condensed_ttf_len , 0, &(fc->face));
}
if(error) {
msSetError(MS_MISCERR, "Freetype was unable to load font file \"%s\" for key \"%s\"", "msGetFontFace()", fontfile, key);
free(fc);
return NULL;
}
if(!fc->face->charmap) {
/* The font file has no unicode charmap, select an alternate one */
if( FT_Select_Charmap(fc->face, FT_ENCODING_MS_SYMBOL) )
FT_Select_Charmap(fc->face, FT_ENCODING_APPLE_ROMAN);
/* the previous calls may have failed, we ignore as there's nothing much left to do */
}
fc->font = key;
UT_HASH_ADD_KEYPTR(hh,cache->face_cache,fc->font, strlen(key), fc);
}
return fc;
}
glyph_element* msGetGlyphByIndex(face_element *face, unsigned int size, unsigned int codepoint) {
glyph_element *gc;
glyph_element_key key;
memset(&key,0,sizeof(glyph_element_key));
key.codepoint = codepoint;
key.size = size;
UT_HASH_FIND(hh,face->glyph_cache,&key,sizeof(glyph_element_key),gc);
if(!gc) {
FT_Error error;
gc = msSmallMalloc(sizeof(glyph_element));
if(MS_NINT(size * 96.0/72.0) != face->face->size->metrics.x_ppem) {
FT_Set_Pixel_Sizes(face->face,0,MS_NINT(size * 96/72.0));
}
error = FT_Load_Glyph(face->face,key.codepoint,FT_LOAD_DEFAULT|FT_LOAD_NO_BITMAP|FT_LOAD_NO_HINTING|FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH);
if(error) {
msSetError(MS_MISCERR, "unable to load glyph %ud for font \"%s\"", "msGetGlyphByIndex()",key.codepoint, face->font);
free(gc);
return NULL;
}
gc->metrics.minx = face->face->glyph->metrics.horiBearingX / 64.0;
gc->metrics.maxx = gc->metrics.minx + face->face->glyph->metrics.width / 64.0;
gc->metrics.maxy = face->face->glyph->metrics.horiBearingY / 64.0;
gc->metrics.miny = gc->metrics.maxy - face->face->glyph->metrics.height / 64.0;
gc->metrics.advance = face->face->glyph->metrics.horiAdvance / 64.0;
gc->key = key;
UT_HASH_ADD(hh,face->glyph_cache,key,sizeof(glyph_element_key), gc);
}
return gc;
}
outline_element* msGetGlyphOutline(face_element *face, glyph_element *glyph) {
outline_element *oc;
outline_element_key key;
ft_cache *cache = msGetFontCache();
memset(&key,0,sizeof(outline_element_key));
key.glyph = glyph;
UT_HASH_FIND(hh,face->outline_cache,&key, sizeof(outline_element_key),oc);
if(!oc) {
FT_Error error;
oc = msSmallMalloc(sizeof(outline_element));
if(MS_NINT(glyph->key.size * 96.0/72.0) != face->face->size->metrics.x_ppem) {
FT_Set_Pixel_Sizes(face->face,0,MS_NINT(glyph->key.size * 96/72.0));
}
error = FT_Load_Glyph(face->face,glyph->key.codepoint,FT_LOAD_DEFAULT/*|FT_LOAD_IGNORE_TRANSFORM*/|FT_LOAD_NO_HINTING|FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH);
if(error) {
msSetError(MS_MISCERR, "unable to load glyph %ud for font \"%s\"", "msGetGlyphByIndex()",glyph->key.codepoint, face->font);
return NULL;
}
error = FT_Outline_New(cache->library, face->face->glyph->outline.n_points,
face->face->glyph->outline.n_contours, &oc->outline);
FT_Outline_Copy(&face->face->glyph->outline, &oc->outline);
oc->key = key;
UT_HASH_ADD(hh,face->outline_cache,key,sizeof(outline_element_key), oc);
}
return oc;
}