Mercurial > mplayer.hg
annotate libass/ass_cache.c @ 23074:109c80c869ac
Use standard GPL header.
author | diego |
---|---|
date | Mon, 23 Apr 2007 07:03:58 +0000 |
parents | ab0943242d1a |
children | d9b4bfea1093 |
rev | line source |
---|---|
20008
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
1 // -*- c-basic-offset: 8; indent-tabs-mode: t -*- |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
2 // vim:ts=8:sw=8:noet:ai: |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
3 /* |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
4 Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com> |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
5 |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
6 This program is free software; you can redistribute it and/or modify |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
7 it under the terms of the GNU General Public License as published by |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
8 the Free Software Foundation; either version 2 of the License, or |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
9 (at your option) any later version. |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
10 |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
11 This program is distributed in the hope that it will be useful, |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
12 but WITHOUT ANY WARRANTY; without even the implied warranty of |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
14 GNU General Public License for more details. |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
15 |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
16 You should have received a copy of the GNU General Public License |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
17 along with this program; if not, write to the Free Software |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
19 */ |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19965
diff
changeset
|
20 |
18937 | 21 #include "config.h" |
22 | |
22292 | 23 #include <inttypes.h> |
18937 | 24 #include <ft2build.h> |
25 #include FT_FREETYPE_H | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19545
diff
changeset
|
26 #include FT_GLYPH_H |
18937 | 27 |
28 #include <assert.h> | |
29 | |
21026
d138463e820b
Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents:
20637
diff
changeset
|
30 #include "mputils.h" |
21458
7af6c25a0cfc
Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents:
21348
diff
changeset
|
31 #include "ass.h" |
18937 | 32 #include "ass_fontconfig.h" |
21322 | 33 #include "ass_font.h" |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
19545
diff
changeset
|
34 #include "ass_bitmap.h" |
18937 | 35 #include "ass_cache.h" |
36 | |
23016 | 37 |
38 typedef struct hashmap_item_s { | |
39 void* key; | |
40 void* value; | |
41 struct hashmap_item_s* next; | |
42 } hashmap_item_t; | |
43 typedef hashmap_item_t* hashmap_item_p; | |
44 | |
45 struct hashmap_s { | |
46 int nbuckets; | |
47 size_t key_size, value_size; | |
48 hashmap_item_p* root; | |
49 hashmap_item_dtor_t item_dtor; // a destructor for hashmap key/value pairs | |
50 hashmap_key_compare_t key_compare; | |
51 hashmap_hash_t hash; | |
23019
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
52 // stats |
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
53 int hit_count; |
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
54 int miss_count; |
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
55 int count; |
23016 | 56 }; |
57 | |
58 #define FNV1_32A_INIT (unsigned)0x811c9dc5 | |
59 | |
60 static inline unsigned fnv_32a_buf(void* buf, size_t len, unsigned hval) | |
61 { | |
62 unsigned char *bp = buf; | |
63 unsigned char *be = bp + len; | |
64 while (bp < be) { | |
65 hval ^= (unsigned)*bp++; | |
66 hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24); | |
67 } | |
68 return hval; | |
69 } | |
70 static inline unsigned fnv_32a_str(char* str, unsigned hval) | |
71 { | |
72 unsigned char* s = (unsigned char*)str; | |
73 while (*s) { | |
74 hval ^= (unsigned)*s++; | |
75 hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24); | |
76 } | |
77 return hval; | |
78 } | |
79 | |
80 static unsigned hashmap_hash(void* buf, size_t len) | |
81 { | |
82 return fnv_32a_buf(buf, len, FNV1_32A_INIT); | |
83 } | |
84 | |
85 static int hashmap_key_compare(void* a, void* b, size_t size) | |
86 { | |
87 return (memcmp(a, b, size) == 0); | |
88 } | |
89 | |
90 static void hashmap_item_dtor(void* key, size_t key_size, void* value, size_t value_size) | |
91 { | |
92 free(key); | |
93 free(value); | |
94 } | |
18937 | 95 |
23016 | 96 hashmap_t* hashmap_init(size_t key_size, size_t value_size, int nbuckets, |
97 hashmap_item_dtor_t item_dtor, hashmap_key_compare_t key_compare, | |
98 hashmap_hash_t hash) | |
99 { | |
100 hashmap_t* map = calloc(1, sizeof(hashmap_t)); | |
101 map->nbuckets = nbuckets; | |
102 map->key_size = key_size; | |
103 map->value_size = value_size; | |
104 map->root = calloc(nbuckets, sizeof(hashmap_item_p)); | |
105 map->item_dtor = item_dtor ? item_dtor : hashmap_item_dtor; | |
106 map->key_compare = key_compare ? key_compare : hashmap_key_compare; | |
107 map->hash = hash ? hash : hashmap_hash; | |
108 return map; | |
109 } | |
110 | |
111 void hashmap_done(hashmap_t* map) | |
112 { | |
113 int i; | |
23019
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
114 // print stats |
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
115 if (map->count > 0 || map->hit_count + map->miss_count > 0) |
23020 | 116 mp_msg(MSGT_ASS, MSGL_V, "cache statistics: \n total accesses: %d\n hits: %d\n misses: %d\n object count: %d\n", |
23019
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
117 map->hit_count + map->miss_count, map->hit_count, map->miss_count, map->count); |
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
118 |
23016 | 119 for (i = 0; i < map->nbuckets; ++i) { |
120 hashmap_item_t* item = map->root[i]; | |
121 while (item) { | |
122 hashmap_item_t* next = item->next; | |
123 map->item_dtor(item->key, map->key_size, item->value, map->value_size); | |
124 free(item); | |
125 item = next; | |
126 } | |
127 } | |
128 free(map->root); | |
129 free(map); | |
130 } | |
18937 | 131 |
23016 | 132 // does nothing if key already exists |
133 void hashmap_insert(hashmap_t* map, void* key, void* value) | |
134 { | |
135 unsigned hash = map->hash(key, map->key_size); | |
136 hashmap_item_t** next = map->root + (hash % map->nbuckets); | |
137 while (*next) { | |
138 if (map->key_compare(key, (*next)->key, map->key_size)) | |
139 return; | |
140 next = &((*next)->next); | |
141 assert(next); | |
142 } | |
143 (*next) = malloc(sizeof(hashmap_item_t)); | |
144 (*next)->key = malloc(map->key_size); | |
145 (*next)->value = malloc(map->value_size); | |
146 memcpy((*next)->key, key, map->key_size); | |
147 memcpy((*next)->value, value, map->value_size); | |
148 (*next)->next = 0; | |
149 | |
150 map->count ++; | |
151 } | |
152 | |
153 void* hashmap_find(hashmap_t* map, void* key) | |
154 { | |
155 unsigned hash = map->hash(key, map->key_size); | |
156 hashmap_item_t* item = map->root[hash % map->nbuckets]; | |
157 while (item) { | |
158 if (map->key_compare(key, item->key, map->key_size)) { | |
23019
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
159 map->hit_count++; |
23016 | 160 return item->value; |
161 } | |
162 item = item->next; | |
163 } | |
23019
4934af4fdd0f
Collect hit/miss statistic in hash map, and print in -v mode.
eugeni
parents:
23018
diff
changeset
|
164 map->miss_count++; |
23016 | 165 return 0; |
166 } | |
167 | |
168 //--------------------------------- | |
169 // font cache | |
170 | |
171 hashmap_t* font_cache; | |
172 | |
173 static unsigned font_desc_hash(void* buf, size_t len) | |
174 { | |
175 ass_font_desc_t* desc = buf; | |
176 unsigned hval; | |
177 hval = fnv_32a_str(desc->family, FNV1_32A_INIT); | |
178 hval = fnv_32a_buf(&desc->bold, sizeof(desc->bold), hval); | |
179 hval = fnv_32a_buf(&desc->italic, sizeof(desc->italic), hval); | |
180 return hval; | |
181 } | |
182 | |
183 static int font_compare(void* key1, void* key2, size_t key_size) { | |
184 ass_font_desc_t* a = key1; | |
185 ass_font_desc_t* b = key2; | |
18937 | 186 if (strcmp(a->family, b->family) != 0) |
187 return 0; | |
188 if (a->bold != b->bold) | |
189 return 0; | |
190 if (a->italic != b->italic) | |
191 return 0; | |
192 return 1; | |
193 } | |
194 | |
23016 | 195 static void font_hash_dtor(void* key, size_t key_size, void* value, size_t value_size) |
196 { | |
197 ass_font_free(value); | |
198 free(key); | |
199 } | |
200 | |
21317 | 201 ass_font_t* ass_font_cache_find(ass_font_desc_t* desc) |
18937 | 202 { |
23016 | 203 return hashmap_find(font_cache, desc); |
21317 | 204 } |
18937 | 205 |
21317 | 206 /** |
207 * \brief Add a face struct to cache. | |
208 * \param font font struct | |
209 */ | |
210 void ass_font_cache_add(ass_font_t* font) | |
211 { | |
23016 | 212 hashmap_insert(font_cache, &(font->desc), font); |
18937 | 213 } |
214 | |
21265 | 215 void ass_font_cache_init(void) |
18937 | 216 { |
23016 | 217 font_cache = hashmap_init(sizeof(ass_font_desc_t), |
218 sizeof(ass_font_t), | |
219 1000, | |
220 font_hash_dtor, font_compare, font_desc_hash); | |
18937 | 221 } |
222 | |
21265 | 223 void ass_font_cache_done(void) |
18937 | 224 { |
23016 | 225 hashmap_done(font_cache); |
18937 | 226 } |
227 | |
228 //--------------------------------- | |
23017 | 229 // bitmap cache |
18937 | 230 |
23017 | 231 hashmap_t* bitmap_cache; |
18937 | 232 |
23017 | 233 static void bitmap_hash_dtor(void* key, size_t key_size, void* value, size_t value_size) |
23016 | 234 { |
23017 | 235 bitmap_hash_val_t* v = value; |
23016 | 236 if (v->bm) ass_free_bitmap(v->bm); |
237 if (v->bm_o) ass_free_bitmap(v->bm_o); | |
238 if (v->bm_s) ass_free_bitmap(v->bm_s); | |
239 free(key); | |
240 free(value); | |
18937 | 241 } |
242 | |
23017 | 243 void cache_add_bitmap(bitmap_hash_key_t* key, bitmap_hash_val_t* val) |
18937 | 244 { |
23017 | 245 hashmap_insert(bitmap_cache, key, val); |
18937 | 246 } |
247 | |
248 /** | |
23017 | 249 * \brief Get a bitmap from bitmap cache. |
18937 | 250 * \param key hash key |
251 * \return requested hash val or 0 if not found | |
252 */ | |
23017 | 253 bitmap_hash_val_t* cache_find_bitmap(bitmap_hash_key_t* key) |
18937 | 254 { |
23017 | 255 return hashmap_find(bitmap_cache, key); |
18937 | 256 } |
257 | |
23017 | 258 void ass_bitmap_cache_init(void) |
18937 | 259 { |
23017 | 260 bitmap_cache = hashmap_init(sizeof(bitmap_hash_key_t), |
261 sizeof(bitmap_hash_val_t), | |
23016 | 262 0xFFFF + 13, |
23017 | 263 bitmap_hash_dtor, NULL, NULL); |
18937 | 264 } |
265 | |
23017 | 266 void ass_bitmap_cache_done(void) |
18937 | 267 { |
23017 | 268 hashmap_done(bitmap_cache); |
18937 | 269 } |
270 | |
23017 | 271 void ass_bitmap_cache_reset(void) |
19539 | 272 { |
23017 | 273 ass_bitmap_cache_done(); |
274 ass_bitmap_cache_init(); | |
19539 | 275 } |
276 | |
23018 | 277 //--------------------------------- |
278 // glyph cache | |
279 | |
280 hashmap_t* glyph_cache; | |
281 | |
282 static void glyph_hash_dtor(void* key, size_t key_size, void* value, size_t value_size) | |
283 { | |
284 glyph_hash_val_t* v = value; | |
285 if (v->glyph) FT_Done_Glyph(v->glyph); | |
23025
ab0943242d1a
Store outline_glyph (glyph border) in glyph cache.
eugeni
parents:
23020
diff
changeset
|
286 if (v->outline_glyph) FT_Done_Glyph(v->outline_glyph); |
23018 | 287 free(key); |
288 free(value); | |
289 } | |
290 | |
291 void cache_add_glyph(glyph_hash_key_t* key, glyph_hash_val_t* val) | |
292 { | |
293 hashmap_insert(glyph_cache, key, val); | |
294 } | |
295 | |
296 /** | |
297 * \brief Get a glyph from glyph cache. | |
298 * \param key hash key | |
299 * \return requested hash val or 0 if not found | |
300 */ | |
301 glyph_hash_val_t* cache_find_glyph(glyph_hash_key_t* key) | |
302 { | |
303 return hashmap_find(glyph_cache, key); | |
304 } | |
305 | |
306 void ass_glyph_cache_init(void) | |
307 { | |
308 glyph_cache = hashmap_init(sizeof(glyph_hash_key_t), | |
309 sizeof(glyph_hash_val_t), | |
310 0xFFFF + 13, | |
311 glyph_hash_dtor, NULL, NULL); | |
312 } | |
313 | |
314 void ass_glyph_cache_done(void) | |
315 { | |
316 hashmap_done(glyph_cache); | |
317 } | |
318 | |
319 void ass_glyph_cache_reset(void) | |
320 { | |
321 ass_glyph_cache_done(); | |
322 ass_glyph_cache_init(); | |
323 } |