]> Pileus Git - grits/blob - src/gis-wms.c
Fix misc bugs and bump version to 0.3
[grits] / src / gis-wms.c
1 /*
2  * Copyright (C) 2009 Andy Spencer <spenceal@rose-hulman.edu>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 /**
19  * http://www.nasa.network.com/elev?
20  * SERVICE=WMS&
21  * VERSION=1.1.0&
22  * REQUEST=GetMap&
23  * LAYERS=bmng200406&
24  * STYLES=&
25  * SRS=EPSG:4326&
26  * BBOX=-180,-90,180,90&
27  * FORMAT=image/jpeg&
28  * WIDTH=600&
29  * HEIGHT=300
30  *
31  * http://www.nasa.network.com/elev?
32  * SERVICE=WMS&
33  * VERSION=1.1.0&
34  * REQUEST=GetMap&
35  * LAYERS=srtm30&
36  * STYLES=&
37  * SRS=EPSG:4326&
38  * BBOX=-180,-90,180,90&
39  * FORMAT=application/bil32&
40  * WIDTH=600&
41  * HEIGHT=300
42  */
43
44 #include <config.h>
45 #include <stdio.h>
46 #include <glib.h>
47
48 #include "gis-wms.h"
49
50 static gchar *_make_uri(GisWms *wms, GisTile *tile)
51 {
52         return g_strdup_printf(
53                 "%s?"
54                 "SERVICE=WMS&"
55                 "VERSION=1.1.0&"
56                 "REQUEST=GetMap&"
57                 "LAYERS=%s&"
58                 "STYLES=&"
59                 "SRS=EPSG:4326&"
60                 "FORMAT=%s&"
61                 "WIDTH=%d&"
62                 "HEIGHT=%d&"
63                 "BBOX=%f,%f,%f,%f",
64                 wms->uri_prefix,
65                 wms->uri_layer,
66                 wms->uri_format,
67                 wms->width,
68                 wms->height,
69                 tile->edge.w,
70                 tile->edge.s,
71                 tile->edge.e,
72                 tile->edge.n);
73 }
74
75 void gis_wms_soup_chunk_cb(SoupMessage *message, SoupBuffer *chunk, gpointer _file)
76 {
77         FILE *file = _file;
78         if (!SOUP_STATUS_IS_SUCCESSFUL(message->status_code))
79                 return;
80         goffset total = soup_message_headers_get_content_length(message->response_headers);
81         if (fwrite(chunk->data, chunk->length, 1, file) != 1)
82                 g_warning("GisWms: soup_chunk_cb - eror writing data");
83 }
84
85 char *gis_wms_make_local(GisWms *self, GisTile *tile)
86 {
87         /* Get file path */
88         gchar *tile_path = gis_tile_get_path(tile);
89         gchar *path = g_strdup_printf("%s/%s/%s%s%s",
90                 g_get_user_cache_dir(), PACKAGE,
91                 self->cache_prefix, tile_path, self->cache_ext);
92         g_free(tile_path);
93
94         /* Return if it already exists */
95         if (g_file_test(path, G_FILE_TEST_EXISTS))
96                 return path;
97
98         /* Open temp file for writing */
99         gchar *tmp_path = g_strconcat(path, ".part", NULL);
100         gchar *dirname = g_path_get_dirname(tmp_path);
101         g_mkdir_with_parents(dirname, 0755);
102         g_free(dirname);
103         FILE *file = fopen(tmp_path, "a");
104
105         /* Download file */
106         gchar *uri = _make_uri(self, tile);
107         SoupMessage *message = soup_message_new("GET", uri);
108         g_signal_connect(message, "got-chunk", G_CALLBACK(gis_wms_soup_chunk_cb), file);
109         soup_message_headers_set_range(message->request_headers, ftell(file), -1);
110         int status = soup_session_send_message(self->soup, message);
111         g_free(uri);
112
113         /* Clean up */
114         fclose(file);
115         rename(tmp_path, path);
116         g_free(tmp_path);
117         return path;
118 }
119
120 GisWms *gis_wms_new(
121         gchar *uri_prefix, gchar *uri_layer, gchar *uri_format,
122         gchar *cache_prefix, gchar *cache_ext,
123         gint width, gint height)
124 {
125         GisWms *self = g_new0(GisWms, 1);
126         self->uri_prefix   = uri_prefix;
127         self->uri_layer    = uri_layer;
128         self->uri_format   = uri_format;
129         self->cache_prefix = cache_prefix;
130         self->cache_ext    = cache_ext;
131         self->width        = width;
132         self->height       = height;
133         self->soup         = soup_session_sync_new();
134         return self;
135 }
136
137 void gis_wms_free(GisWms *self)
138 {
139         g_object_unref(self->soup);
140         g_free(self);
141 }