[go: up one dir, main page]

Menu

[2a4bad]: / src / mapcache.c  Maximize  Restore  History

Download this file

339 lines (296 with data), 9.9 kB

  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
/*
* viking -- GPS Data and Topo Analyzer, Explorer, and Manager
*
* Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <glib.h>
#include <glib/gi18n.h>
#include <string.h>
#include "globals.h"
#include "mapcache.h"
#include "preferences.h"
#include "vik_compat.h"
#define MC_KEY_SIZE 64
typedef struct _List {
struct _List *next;
gchar *key;
} List;
/* a circular linked list, a pointer to the tail, and the tail points to the head */
/* this is so we can free the last */
static List *queue_tail = NULL;
static int queue_count = 0;
static guint32 cache_size = 0;
static guint32 max_cache_size = VIK_CONFIG_MAPCACHE_SIZE * 1024 * 1024;
static GHashTable *cache = NULL;
typedef struct {
GdkPixbuf *pixbuf;
mapcache_extra_t extra;
} cache_item_t;
static GMutex *mc_mutex = NULL;
#define HASHKEY_FORMAT_STRING "%d-%d-%d-%d-%d-%d-%d-%.3f-%.3f"
#define HASHKEY_FORMAT_STRING_NOSHRINK_NOR_ALPHA "%d-%d-%d-%d-%d-%d-"
#define HASHKEY_FORMAT_STRING_TYPE "%d-"
static VikLayerParamScale params_scales[] = {
/* min, max, step, digits (decimal places) */
{ 1, 1024, 1, 0 },
};
static VikLayerParam prefs[] = {
{ VIK_LAYER_NUM_TYPES, VIKING_PREFERENCES_NAMESPACE "mapcache_size", VIK_LAYER_PARAM_UINT, VIK_LAYER_GROUP_NONE, N_("Map cache memory size (MB):"), VIK_LAYER_WIDGET_HSCALE, params_scales, NULL, NULL, NULL, NULL, NULL },
};
static void cache_item_free (cache_item_t *ci)
{
g_object_unref ( ci->pixbuf );
g_free ( ci );
}
void a_mapcache_init ()
{
VikLayerParamData tmp;
tmp.u = VIK_CONFIG_MAPCACHE_SIZE;
a_preferences_register(prefs, tmp, VIKING_PREFERENCES_GROUP_KEY);
mc_mutex = vik_mutex_new ();
cache = g_hash_table_new_full ( g_str_hash, g_str_equal, g_free, (GDestroyNotify) cache_item_free );
}
static void cache_add(gchar *key, GdkPixbuf *pixbuf, mapcache_extra_t extra)
{
cache_item_t *ci = g_malloc ( sizeof(cache_item_t) );
ci->pixbuf = pixbuf;
ci->extra = extra;
#if !GLIB_CHECK_VERSION(2,26,0)
// Only later versions of GLib actually return a value for this function
// Annoyingly the documentation doesn't say anything about this interface change :(
if ( g_hash_table_insert ( cache, key, ci ) )
#else
g_hash_table_insert ( cache, key, ci );
#endif
{
cache_size += gdk_pixbuf_get_rowstride(pixbuf) * gdk_pixbuf_get_height(pixbuf);
// ATM size of 'extra' data hardly worth trying to count (compared to pixbuf sizes)
// Not sure what this 100 represents anyway - probably a guess at an average pixbuf metadata size
cache_size += 100;
}
}
static void cache_remove(const gchar *key)
{
cache_item_t *ci = g_hash_table_lookup ( cache, key );
if (ci && ci->pixbuf) {
cache_size -= gdk_pixbuf_get_rowstride(ci->pixbuf) * gdk_pixbuf_get_height(ci->pixbuf);
cache_size -= 100;
g_hash_table_remove ( cache, key );
}
}
/* returns key from head, adds on newtailkey to tail. */
static gchar *list_shift_add_entry ( gchar *newtailkey )
{
gchar *oldheadkey = queue_tail->next->key;
queue_tail->next->key = newtailkey;
queue_tail = queue_tail->next;
return oldheadkey;
}
static gchar *list_shift ()
{
gchar *oldheadkey = queue_tail->next->key;
List *oldhead = queue_tail->next;
queue_tail->next = queue_tail->next->next;
g_free ( oldhead );
queue_count--;
return oldheadkey;
}
/* adds key to tail */
static void list_add_entry ( gchar *key )
{
List *newlist = g_malloc ( sizeof ( List ) );
newlist->key = key;
if ( queue_tail ) {
newlist->next = queue_tail->next;
queue_tail->next = newlist;
queue_tail = newlist;
} else {
newlist->next = newlist;
queue_tail = newlist;
}
queue_count++;
}
/**
* Function increments reference counter of pixbuf.
* Caller may (and should) decrease it's reference.
*/
void a_mapcache_add ( GdkPixbuf *pixbuf, mapcache_extra_t extra, gint x, gint y, gint z, guint16 type, gint zoom, guint8 alpha, gdouble xshrinkfactor, gdouble yshrinkfactor, const gchar* name )
{
if ( ! GDK_IS_PIXBUF(pixbuf) ) {
g_debug ( "Not caching corrupt pixbuf for maptype %d at %d %d %d %d", type, x, y, z, zoom );
return;
}
guint nn = name ? g_str_hash ( name ) : 0;
gchar *key = g_strdup_printf ( HASHKEY_FORMAT_STRING, type, x, y, z, zoom, nn, alpha, xshrinkfactor, yshrinkfactor );
g_mutex_lock(mc_mutex);
g_object_ref(pixbuf);
cache_add(key, pixbuf, extra);
// TODO: that should be done on preference change only...
max_cache_size = a_preferences_get(VIKING_PREFERENCES_NAMESPACE "mapcache_size")->u * 1024 * 1024;
if ( cache_size > max_cache_size ) {
if ( queue_tail ) {
gchar *oldkey = list_shift_add_entry ( key );
cache_remove(oldkey);
while ( cache_size > max_cache_size &&
(queue_tail->next != queue_tail) ) { /* make sure there's more than one thing to delete */
oldkey = list_shift ();
cache_remove(oldkey);
}
}
/* chop off 'start' etc */
} else {
list_add_entry ( key );
/* business as usual */
}
g_mutex_unlock(mc_mutex);
static int tmp = 0;
if ( (++tmp == 100 )) { g_debug("DEBUG: cache count=%d size=%u list count=%d\n", g_hash_table_size(cache), cache_size, queue_count ); tmp=0; }
}
/**
* Function increases reference counter of pixels buffer in behalf of caller.
* Caller have to decrease references counter, when buffer is no longer needed.
*/
GdkPixbuf *a_mapcache_get ( gint x, gint y, gint z, guint16 type, gint zoom, guint8 alpha, gdouble xshrinkfactor, gdouble yshrinkfactor, const gchar* name )
{
static char key[MC_KEY_SIZE];
guint nn = name ? g_str_hash ( name ) : 0;
g_snprintf ( key, sizeof(key), HASHKEY_FORMAT_STRING, type, x, y, z, zoom, nn, alpha, xshrinkfactor, yshrinkfactor );
g_mutex_lock(mc_mutex); /* prevent returning pixbuf when cache is being cleared */
cache_item_t *ci = g_hash_table_lookup ( cache, key );
if ( ci ) {
g_object_ref(ci->pixbuf);
g_mutex_unlock(mc_mutex);
return ci->pixbuf;
} else {
g_mutex_unlock(mc_mutex);
return NULL;
}
}
mapcache_extra_t a_mapcache_get_extra ( gint x, gint y, gint z, guint16 type, gint zoom, guint8 alpha, gdouble xshrinkfactor, gdouble yshrinkfactor, const gchar* name )
{
static char key[MC_KEY_SIZE];
guint nn = name ? g_str_hash ( name ) : 0;
g_snprintf ( key, sizeof(key), HASHKEY_FORMAT_STRING, type, x, y, z, zoom, nn, alpha, xshrinkfactor, yshrinkfactor );
cache_item_t *ci = g_hash_table_lookup ( cache, key );
if ( ci )
return ci->extra;
else
return (mapcache_extra_t) { 0.0 };
}
/**
* Common function to remove cache items for keys starting with the specified string
*/
static void flush_matching ( gchar *str )
{
g_mutex_lock(mc_mutex);
if ( queue_tail == NULL ) {
g_mutex_unlock(mc_mutex);
return;
}
// The 'loop' variable must be assigned within the mutex lock section,
// otherwise where it points to might not be valid anymore when the actual processing occurs
List *loop = queue_tail;
List *tmp;
gint len = strlen(str);
do {
tmp = loop->next;
if ( tmp ) {
if ( strncmp(tmp->key, str, len) == 0 )
{
cache_remove(tmp->key);
if ( tmp == loop ) /* we deleted the last thing in the queue! */
loop = queue_tail = NULL;
else {
loop->next = tmp->next;
if ( tmp == queue_tail )
queue_tail = tmp->next;
}
g_free ( tmp );
tmp = NULL;
queue_count--;
}
else
loop = tmp;
} else
loop = NULL;
} while ( loop && (loop != queue_tail || tmp == NULL) );
/* loop thru list, looking for the one, compare first whatever chars */
cache_remove(str);
g_mutex_unlock(mc_mutex);
}
/**
* Appears this is only used when redownloading tiles (i.e. to invalidate old images)
*/
void a_mapcache_remove_all_shrinkfactors ( gint x, gint y, gint z, guint16 type, gint zoom, const gchar* name )
{
char key[MC_KEY_SIZE];
guint nn = name ? g_str_hash ( name ) : 0;
g_snprintf ( key, sizeof(key), HASHKEY_FORMAT_STRING_NOSHRINK_NOR_ALPHA, type, x, y, z, zoom, nn );
flush_matching ( key );
}
void a_mapcache_flush ()
{
// Everything happens within the mutex lock section
g_mutex_lock(mc_mutex);
List *loop = queue_tail;
List *tmp;
while ( loop ) {
tmp = loop->next;
cache_remove(tmp->key);
if ( tmp == queue_tail ) /* we deleted the last thing in the queue */
loop = queue_tail = NULL;
else
loop->next = tmp->next;
g_free ( tmp );
tmp = NULL;
}
g_mutex_unlock(mc_mutex);
}
/**
* a_mapcache_flush_type:
* @type: Specified map type
*
* Just remove cache items for the specified map type
* i.e. all related xyz+zoom+alpha+etc...
*/
void a_mapcache_flush_type ( guint16 type )
{
char key[MC_KEY_SIZE];
g_snprintf ( key, sizeof(key), HASHKEY_FORMAT_STRING_TYPE, type );
flush_matching ( key );
}
void a_mapcache_uninit ()
{
g_hash_table_destroy ( cache );
/* free list */
cache = NULL;
vik_mutex_free (mc_mutex);
}
// Size of mapcache in memory
gint a_mapcache_get_size ()
{
return cache_size;
}
// Count of items in the mapcache
gint a_mapcache_get_count ()
{
return g_hash_table_size ( cache );
}