forked from MapServer/MapServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fontcache.c
380 lines (352 loc) · 12.6 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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
/******************************************************************************
*
* 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"
#include "cpl_conv.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{
void* thread_id;
ft_thread_cache *next;
ft_cache cache;
};
ft_thread_cache *ft_caches;
int use_global_ft_cache;
#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);
free(cur_face->font);
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);
}
memset(c,0,sizeof(ft_cache));
}
ft_cache* msGetFontCache() {
#ifndef USE_THREAD
return &global_ft_cache;
#else
void* nThreadId = 0;
ft_thread_cache *prev = NULL, *cur = ft_caches;
if (!use_global_ft_cache)
nThreadId = msGetThreadId();
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
const char *use_global_cache = CPLGetConfigOption("MS_USE_GLOBAL_FT_CACHE", NULL);
if (use_global_cache)
use_global_ft_cache = atoi(use_global_cache);
else
use_global_ft_cache = 0;
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? */
}
#ifdef USE_THREAD
if (use_global_ft_cache)
msAcquireLock(TLOCK_TTF);
#endif
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);
}
#ifdef USE_THREAD
if (use_global_ft_cache)
msReleaseLock(TLOCK_TTF);
#endif
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;
}
#ifdef USE_THREAD
if (use_global_ft_cache)
msAcquireLock(TLOCK_TTF);
#endif
UT_HASH_FIND_STR(cache->face_cache,key,fc);
if(!fc) {
const 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);
#ifdef USE_THREAD
if (use_global_ft_cache)
msReleaseLock(TLOCK_TTF);
#endif
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);
#ifdef USE_THREAD
if (use_global_ft_cache)
msReleaseLock(TLOCK_TTF);
#endif
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 = msStrdup(key);
UT_HASH_ADD_KEYPTR(hh,cache->face_cache,fc->font, strlen(key), fc);
}
#ifdef USE_THREAD
if (use_global_ft_cache)
msReleaseLock(TLOCK_TTF);
#endif
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;
#ifdef USE_THREAD
if (use_global_ft_cache)
msAcquireLock(TLOCK_TTF);
#endif
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) {
msDebug("Unable to load glyph %u for font \"%s\". Using ? as fallback.\n", key.codepoint, face->font);
// If we can't find a glyph then try to fallback to a question mark.
unsigned int fallbackCodepoint = msGetGlyphIndex(face, 0x3F);
error = FT_Load_Glyph(face->face,fallbackCodepoint,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 %u for font \"%s\"", "msGetGlyphByIndex()",key.codepoint, face->font);
free(gc);
#ifdef USE_THREAD
if (use_global_ft_cache)
msReleaseLock(TLOCK_TTF);
#endif
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);
}
#ifdef USE_THREAD
if (use_global_ft_cache)
msReleaseLock(TLOCK_TTF);
#endif
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;
#ifdef USE_THREAD
if (use_global_ft_cache)
msAcquireLock(TLOCK_TTF);
#endif
UT_HASH_FIND(hh,face->outline_cache,&key, sizeof(outline_element_key),oc);
if(!oc) {
FT_Matrix matrix;
FT_Vector pen;
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));
}
matrix.xx = matrix.yy = 0x10000L;
matrix.xy = matrix.yx = 0x00000L;
pen.x = pen.y = 0;
FT_Set_Transform(face->face, &matrix, &pen);
error = FT_Load_Glyph(face->face,glyph->key.codepoint,FT_LOAD_DEFAULT|FT_LOAD_NO_BITMAP/*|FT_LOAD_IGNORE_TRANSFORM*/|FT_LOAD_NO_HINTING|FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH);
if (error) {
msDebug("Unable to load glyph %u for font \"%s\". Using ? as fallback.\n", glyph->key.codepoint, face->font);
// If we can't find a glyph then try to fallback to a question mark.
unsigned int fallbackCodepoint = msGetGlyphIndex(face, 0x3F);
error = FT_Load_Glyph(face->face,fallbackCodepoint,FT_LOAD_DEFAULT|FT_LOAD_NO_BITMAP/*|FT_LOAD_IGNORE_TRANSFORM*/|FT_LOAD_NO_HINTING|FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH);
}
if(error) {
msSetError(MS_MISCERR, "unable to load glyph %u for font \"%s\"", "msGetGlyphOutline()",glyph->key.codepoint, face->font);
#ifdef USE_THREAD
if (use_global_ft_cache)
msReleaseLock(TLOCK_TTF);
#endif
return NULL;
}
error = FT_Outline_New(cache->library, face->face->glyph->outline.n_points,
face->face->glyph->outline.n_contours, &oc->outline);
(void)error;
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);
}
#ifdef USE_THREAD
if (use_global_ft_cache)
msReleaseLock(TLOCK_TTF);
#endif
return oc;
}
int msIsGlyphASpace(glyphObj *glyph) {
/* space or tab, for now */
unsigned int space,tab;
space = msGetGlyphIndex(glyph->face,0x20);
tab = msGetGlyphIndex(glyph->face,0x9);
return glyph->glyph->key.codepoint == space || glyph->glyph->key.codepoint == tab;
}