]> git.street.me.uk Git - andy/viking.git/blame - src/mapcache.c
Expose VikSlippyMapSource's private fields as properties
[andy/viking.git] / src / mapcache.c
CommitLineData
50a14534
EB
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
4 * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22#include <gtk/gtk.h>
23#include <string.h>
24#include "mapcache.h"
25
26#include "config.h"
27
28typedef struct _List {
29 struct _List *next;
30 gchar *key;
31} List;
32
33/* a circular linked list, a pointer to the tail, and the tail points to the head */
34/* this is so we can free the last */
35static List *queue_tail = NULL;
36static int queue_count = 0;
37
50a14534
EB
38static guint32 queue_size = 0;
39
40
41static GHashTable *cache = NULL;
42
9b79169d
QT
43static GMutex *mc_mutex = NULL;
44
50a14534 45#define HASHKEY_FORMAT_STRING "%d-%d-%d-%d-%d-%d-%.3f-%.3f"
1fe49af0 46#define HASHKEY_FORMAT_STRING_NOSHRINK_NOR_ALPHA "%d-%d-%d-%d-%d-"
50a14534
EB
47
48void a_mapcache_init ()
49{
9b79169d 50 mc_mutex = g_mutex_new();
50a14534
EB
51 cache = g_hash_table_new_full ( g_str_hash, g_str_equal, g_free, g_object_unref );
52}
53
fd4536cf
QT
54static void cache_add(gchar *key, GdkPixbuf *pixbuf)
55{
56 /* TODO: Check if already exists */
57 g_hash_table_insert ( cache, key, pixbuf );
58 queue_size += gdk_pixbuf_get_rowstride(pixbuf) * gdk_pixbuf_get_height(pixbuf);
59 queue_size += 100;
60 queue_count++;
61}
62
63static void cache_remove(const gchar *key)
64{
65 GdkPixbuf *buf = g_hash_table_lookup ( cache, key );
66 if (buf) {
67 queue_size -= gdk_pixbuf_get_rowstride(buf) * gdk_pixbuf_get_height(buf);
68 queue_size -= 100;
69 queue_count --;
70 g_hash_table_remove ( cache, key );
71 }
72}
73
50a14534
EB
74/* returns key from head, adds on newtailkey to tail. */
75static gchar *list_shift_add_entry ( gchar *newtailkey )
76{
77 gchar *oldheadkey = queue_tail->next->key;
78 queue_tail->next->key = newtailkey;
79 queue_tail = queue_tail->next;
80 return oldheadkey;
81}
82
83static gchar *list_shift ()
84{
85 gchar *oldheadkey = queue_tail->next->key;
86 List *oldhead = queue_tail->next;
87 queue_tail->next = queue_tail->next->next;
88 g_free ( oldhead );
89 return oldheadkey;
90}
91
92/* adds key to tail */
93static void list_add_entry ( gchar *key )
94{
95 List *newlist = g_malloc ( sizeof ( List ) );
96 newlist->key = key;
97 if ( queue_tail ) {
98 newlist->next = queue_tail->next;
99 queue_tail->next = newlist;
100 queue_tail = newlist;
101 } else {
102 newlist->next = newlist;
103 queue_tail = newlist;
104 }
105}
106
107void a_mapcache_add ( GdkPixbuf *pixbuf, gint x, gint y, gint z, guint8 type, guint zoom, guint8 alpha, gdouble xshrinkfactor, gdouble yshrinkfactor )
108{
109 gchar *key = g_strdup_printf ( HASHKEY_FORMAT_STRING, x, y, z, type, zoom, alpha, xshrinkfactor, yshrinkfactor );
110 static int tmp = 0;
111
9b79169d 112 g_mutex_lock(mc_mutex);
fd4536cf 113 cache_add(key, pixbuf);
50a14534
EB
114
115 if ( queue_size > VIK_CONFIG_MAPCACHE_SIZE ) {
116 gchar *oldkey = list_shift_add_entry ( key );
fd4536cf 117 cache_remove(oldkey);
1fe49af0 118
725c87e1
EB
119 while ( queue_size > VIK_CONFIG_MAPCACHE_SIZE &&
120 (queue_tail->next != queue_tail) ) { /* make sure there's more than one thing to delete */
50a14534 121 oldkey = list_shift ();
fd4536cf 122 cache_remove(oldkey);
50a14534
EB
123 }
124
125 /* chop off 'start' etc */
126 } else {
127 list_add_entry ( key );
128 /* business as usual */
129 }
9b79169d 130 g_mutex_unlock(mc_mutex);
50a14534 131
494eb388 132 if ( (++tmp == 100 )) { g_print("DEBUG: queue count=%d %u\n", queue_count, queue_size ); tmp=0; }
50a14534
EB
133}
134
135GdkPixbuf *a_mapcache_get ( gint x, gint y, gint z, guint8 type, guint zoom, guint8 alpha, gdouble xshrinkfactor, gdouble yshrinkfactor )
136{
137 static char key[48];
138 g_snprintf ( key, sizeof(key), HASHKEY_FORMAT_STRING, x, y, z, type, zoom, alpha, xshrinkfactor, yshrinkfactor );
139 return g_hash_table_lookup ( cache, key );
140}
141
e044ae9e 142void a_mapcache_remove_all_shrinkfactors ( gint x, gint y, gint z, guint8 type, guint zoom )
50a14534
EB
143{
144 char key[40];
145 List *loop = queue_tail;
146 List *tmp;
147 gint len;
148
149 if ( queue_tail == NULL )
150 return;
151
1fe49af0 152 g_snprintf ( key, sizeof(key), HASHKEY_FORMAT_STRING_NOSHRINK_NOR_ALPHA, x, y, z, type, zoom );
50a14534
EB
153 len = strlen(key);
154
9b79169d 155 g_mutex_lock(mc_mutex);
50a14534
EB
156 /* TODO: check logic here */
157 do {
158 tmp = loop->next;
159 if ( strncmp(tmp->key, key, len) == 0 )
160 {
fd4536cf 161 cache_remove(tmp->key);
093c5c71 162 if ( tmp == loop ) /* we deleted the last thing in the queue! */
50a14534 163 loop = queue_tail = NULL;
093c5c71 164 else {
50a14534 165 loop->next = tmp->next;
093c5c71
EB
166 if ( tmp == queue_tail )
167 queue_tail = tmp->next;
168 }
50a14534
EB
169 g_free ( tmp );
170 tmp = NULL;
171 }
172 else
173 loop = tmp;
174
175 } while ( loop && (loop != queue_tail || tmp == NULL) );
176
177 /* loop thru list, looking for the one, compare first whatever chars */
fd4536cf 178 cache_remove(key);
9b79169d 179 g_mutex_unlock(mc_mutex);
50a14534
EB
180}
181
182void a_mapcache_uninit ()
183{
184 g_hash_table_destroy ( cache );
185 /* free list */
186 cache = NULL;
187}
188
189