]> git.street.me.uk Git - andy/viking.git/blame - src/vikmapsource.c
[QA] Shift Gtk dependent utility functions into separate file.
[andy/viking.git] / src / vikmapsource.c
CommitLineData
820c59f4
GB
1/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2/*
3 * viking
82aa018d 4 * Copyright (C) 2009-2010, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
820c59f4
GB
5 *
6 * viking is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * viking is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14 * See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
aa69d106
GB
19
20 /**
21 * SECTION:vikmapsource
22 * @short_description: the base class to describe map source
23 *
24 * The #VikMapSource class is both the interface and the base class
25 * for the hierarchie of map source.
26 */
820c59f4
GB
27#ifdef HAVE_CONFIG_H
28#include "config.h"
29#endif
30
31#include "vikviewport.h"
32#include "vikcoord.h"
33#include "mapcoord.h"
4e815e90 34#include "download.h"
820c59f4
GB
35#include "vikmapsource.h"
36
37static void vik_map_source_init (VikMapSource *object);
38static void vik_map_source_finalize (GObject *object);
39static void vik_map_source_class_init (VikMapSourceClass *klass);
40
c81ded98 41static gboolean _supports_download_only_new (VikMapSource *object);
0f08bd0d 42
d840e6de 43G_DEFINE_ABSTRACT_TYPE (VikMapSource, vik_map_source, G_TYPE_OBJECT);
820c59f4 44
820c59f4
GB
45static void
46vik_map_source_init (VikMapSource *object)
47{
48 /* TODO: Add initialization code here */
49}
50
51static void
52vik_map_source_finalize (GObject *object)
53{
54 /* TODO: Add deinitalization code here */
55
56 G_OBJECT_CLASS (vik_map_source_parent_class)->finalize (object);
57}
58
59static void
60vik_map_source_class_init (VikMapSourceClass *klass)
61{
62 GObjectClass* object_class = G_OBJECT_CLASS (klass);
63
82aa018d 64 klass->get_copyright = NULL;
53ac8302
GB
65 klass->get_license = NULL;
66 klass->get_license_url = NULL;
26336cf0 67 klass->get_logo = NULL;
820c59f4 68 klass->get_uniq_id = NULL;
db03733a 69 klass->get_label = NULL;
820c59f4
GB
70 klass->get_tilesize_x = NULL;
71 klass->get_tilesize_y = NULL;
72 klass->get_drawmode = NULL;
2673b29d 73 klass->is_direct_file_access = NULL;
0fb11294 74 klass->is_mbtiles = NULL;
c81ded98 75 klass->supports_download_only_new = _supports_download_only_new;
820c59f4
GB
76 klass->coord_to_mapcoord = NULL;
77 klass->mapcoord_to_center_coord = NULL;
78 klass->download = NULL;
825413ba
SW
79 klass->download_handle_init = NULL;
80 klass->download_handle_cleanup = NULL;
820c59f4
GB
81
82 object_class->finalize = vik_map_source_finalize;
83}
84
e8cf3d97 85gboolean
c81ded98 86_supports_download_only_new (VikMapSource *self)
0f08bd0d
GB
87{
88 // Default feature: does not support
89 return FALSE;
90}
820c59f4 91
68b1d6c0
GB
92/**
93 * vik_map_source_get_copyright:
94 * @self: the VikMapSource of interest.
95 * @bbox: bounding box of interest.
96 * @zoom: the zoom level of interest.
97 * @fct: the callback function to use to return matching copyrights.
98 * @data: the user data to use to call the callbaack function.
99 *
17281ebd 100 * Retrieve copyright(s) for the corresponding bounding box and zoom level.
68b1d6c0
GB
101 */
102void
551ee033 103vik_map_source_get_copyright (VikMapSource *self, LatLonBBox bbox, gdouble zoom, void (*fct)(VikViewport*,const gchar*), void *data)
82aa018d
GB
104{
105 VikMapSourceClass *klass;
68b1d6c0
GB
106 g_return_if_fail (self != NULL);
107 g_return_if_fail (VIK_IS_MAP_SOURCE (self));
82aa018d
GB
108 klass = VIK_MAP_SOURCE_GET_CLASS(self);
109
68b1d6c0 110 g_return_if_fail (klass->get_copyright != NULL);
82aa018d 111
68b1d6c0 112 (*klass->get_copyright)(self, bbox, zoom, fct, data);
82aa018d
GB
113}
114
53ac8302
GB
115const gchar *
116vik_map_source_get_license (VikMapSource *self)
117{
118 VikMapSourceClass *klass;
119 g_return_val_if_fail (self != NULL, NULL);
120 g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), NULL);
121 klass = VIK_MAP_SOURCE_GET_CLASS(self);
122
123 g_return_val_if_fail (klass->get_license != NULL, NULL);
124
125 return (*klass->get_license)(self);
126}
127
128const gchar *
129vik_map_source_get_license_url (VikMapSource *self)
130{
131 VikMapSourceClass *klass;
132 g_return_val_if_fail (self != NULL, NULL);
133 g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), NULL);
134 klass = VIK_MAP_SOURCE_GET_CLASS(self);
135
136 g_return_val_if_fail (klass->get_license_url != NULL, NULL);
137
138 return (*klass->get_license_url)(self);
139}
140
26336cf0
GB
141const GdkPixbuf *
142vik_map_source_get_logo (VikMapSource *self)
143{
144 VikMapSourceClass *klass;
145 g_return_val_if_fail (self != NULL, NULL);
146 g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), NULL);
147 klass = VIK_MAP_SOURCE_GET_CLASS(self);
148
149 g_return_val_if_fail (klass->get_logo != NULL, NULL);
150
151 return (*klass->get_logo)(self);
152}
153
d7e495b2 154guint16
820c59f4
GB
155vik_map_source_get_uniq_id (VikMapSource *self)
156{
157 VikMapSourceClass *klass;
d7e495b2
RN
158 g_return_val_if_fail (self != NULL, (guint16 )0);
159 g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), (guint16 )0);
820c59f4
GB
160 klass = VIK_MAP_SOURCE_GET_CLASS(self);
161
d7e495b2 162 g_return_val_if_fail (klass->get_uniq_id != NULL, (guint16 )0);
820c59f4
GB
163
164 return (*klass->get_uniq_id)(self);
165}
166
db03733a
GB
167const gchar *
168vik_map_source_get_label (VikMapSource *self)
169{
170 VikMapSourceClass *klass;
171 g_return_val_if_fail (self != NULL, NULL);
172 g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), NULL);
173 klass = VIK_MAP_SOURCE_GET_CLASS(self);
174
175 g_return_val_if_fail (klass->get_label != NULL, NULL);
176
177 return (*klass->get_label)(self);
178}
179
820c59f4
GB
180guint16
181vik_map_source_get_tilesize_x (VikMapSource *self)
182{
183 VikMapSourceClass *klass;
184 g_return_val_if_fail (self != NULL, (guint16 )0);
185 g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), (guint16 )0);
186 klass = VIK_MAP_SOURCE_GET_CLASS(self);
187
188 g_return_val_if_fail (klass->get_tilesize_x != NULL, (guint16 )0);
189
190 return (*klass->get_tilesize_x)(self);
191}
192
193guint16
194vik_map_source_get_tilesize_y (VikMapSource *self)
195{
196 VikMapSourceClass *klass;
197 g_return_val_if_fail (self != NULL, (guint16 )0);
198 g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), (guint16 )0);
199 klass = VIK_MAP_SOURCE_GET_CLASS(self);
200
201 g_return_val_if_fail (klass->get_tilesize_y != NULL, (guint16 )0);
202
203 return (*klass->get_tilesize_y)(self);
204}
205
206VikViewportDrawMode
207vik_map_source_get_drawmode (VikMapSource *self)
208{
209 VikMapSourceClass *klass;
210 g_return_val_if_fail (self != NULL, (VikViewportDrawMode )0);
211 g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), (VikViewportDrawMode )0);
212 klass = VIK_MAP_SOURCE_GET_CLASS(self);
213
214 g_return_val_if_fail (klass->get_drawmode != NULL, (VikViewportDrawMode )0);
215
216 return (*klass->get_drawmode)(self);
217}
218
2673b29d
RN
219/**
220 * vik_map_source_is_direct_file_access:
221 * @self: the VikMapSource of interest.
222 *
223 * Return true when we can bypass all this download malarky
0314a439 224 * Treat the files as a pre generated data set in OSM tile server layout: tiledir/%d/%d/%d.png
2673b29d
RN
225 */
226gboolean
227vik_map_source_is_direct_file_access (VikMapSource * self)
228{
229 VikMapSourceClass *klass;
230 g_return_val_if_fail (self != NULL, 0);
231 g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), 0);
232 klass = VIK_MAP_SOURCE_GET_CLASS(self);
233
234 g_return_val_if_fail (klass->is_direct_file_access != NULL, 0);
235
236 return (*klass->is_direct_file_access)(self);
237}
238
0fb11294
RN
239/**
240 * vik_map_source_is_mbtiles:
241 * @self: the VikMapSource of interest.
242 *
243 * Return true when the map is in an MB Tiles format.
244 * See http://github.com/mapbox/mbtiles-spec
245 * (Read Only ATM)
246 */
247gboolean
248vik_map_source_is_mbtiles (VikMapSource * self)
249{
250 VikMapSourceClass *klass;
251 g_return_val_if_fail (self != NULL, 0);
252 g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), 0);
253 klass = VIK_MAP_SOURCE_GET_CLASS(self);
254
255 g_return_val_if_fail (klass->is_mbtiles != NULL, 0);
256
257 return (*klass->is_mbtiles)(self);
258}
259
0f08bd0d 260gboolean
c81ded98 261vik_map_source_supports_download_only_new (VikMapSource * self)
0f08bd0d
GB
262{
263 VikMapSourceClass *klass;
264 g_return_val_if_fail (self != NULL, 0);
265 g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), 0);
266 klass = VIK_MAP_SOURCE_GET_CLASS(self);
267
c81ded98 268 g_return_val_if_fail (klass->supports_download_only_new != NULL, 0);
0f08bd0d 269
c81ded98 270 return (*klass->supports_download_only_new)(self);
0f08bd0d
GB
271}
272
820c59f4
GB
273gboolean
274vik_map_source_coord_to_mapcoord (VikMapSource *self, const VikCoord *src, gdouble xzoom, gdouble yzoom, MapCoord *dest )
275{
276 VikMapSourceClass *klass;
277 g_return_val_if_fail (self != NULL, FALSE);
278 g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), FALSE);
279 klass = VIK_MAP_SOURCE_GET_CLASS(self);
280
281 g_return_val_if_fail (klass->coord_to_mapcoord != NULL, FALSE);
282
283 return (*klass->coord_to_mapcoord)(self, src, xzoom, yzoom, dest);
284}
285
286void
287vik_map_source_mapcoord_to_center_coord (VikMapSource *self, MapCoord *src, VikCoord *dest)
288{
289 VikMapSourceClass *klass;
290 g_return_if_fail (self != NULL);
291 g_return_if_fail (VIK_IS_MAP_SOURCE (self));
292 klass = VIK_MAP_SOURCE_GET_CLASS(self);
293
294 g_return_if_fail (klass->mapcoord_to_center_coord != NULL);
295
41810542 296 (*klass->mapcoord_to_center_coord)(self, src, dest);
820c59f4
GB
297}
298
4e815e90
RN
299/**
300 * vik_map_source_download:
301 * @self: The VikMapSource of interest.
302 * @src: The map location to download
303 * @dest_fn: The filename to save the result in
304 * @handle: Potential reusable Curl Handle (may be NULL)
305 *
306 * Returns: How successful the download was as per the type #DownloadResult_t
307 */
308DownloadResult_t
825413ba 309vik_map_source_download (VikMapSource * self, MapCoord * src, const gchar * dest_fn, void *handle)
820c59f4
GB
310{
311 VikMapSourceClass *klass;
312 g_return_val_if_fail (self != NULL, 0);
313 g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), 0);
314 klass = VIK_MAP_SOURCE_GET_CLASS(self);
315
316 g_return_val_if_fail (klass->download != NULL, 0);
317
825413ba
SW
318 return (*klass->download)(self, src, dest_fn, handle);
319}
320
321void *
322vik_map_source_download_handle_init (VikMapSource *self)
323{
324 VikMapSourceClass *klass;
325 g_return_val_if_fail (self != NULL, 0);
326 g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), 0);
327 klass = VIK_MAP_SOURCE_GET_CLASS(self);
328
329 g_return_val_if_fail (klass->download_handle_init != NULL, 0);
330
331 return (*klass->download_handle_init)(self);
332}
333
334void
335vik_map_source_download_handle_cleanup (VikMapSource * self, void * handle)
336{
337 VikMapSourceClass *klass;
2949dd77
GB
338 g_return_if_fail (self != NULL);
339 g_return_if_fail (VIK_IS_MAP_SOURCE (self));
825413ba
SW
340 klass = VIK_MAP_SOURCE_GET_CLASS(self);
341
2949dd77 342 g_return_if_fail (klass->download_handle_cleanup != NULL);
825413ba 343
2949dd77 344 (*klass->download_handle_cleanup)(self, handle);
820c59f4 345}