[go: up one dir, main page]

Menu

[e39a77]: / src / download.c  Maximize  Restore  History

Download this file

296 lines (256 with data), 8.0 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
/*
* viking -- GPS Data and Topo Analyzer, Explorer, and Manager
*
* Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
* Copyright (C) 2007, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
*
* 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 <stdio.h>
#include <ctype.h>
#include <errno.h>
#include <string.h>
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_UTIME_H
#include <utime.h>
#endif
#include <glib.h>
#include <glib/gstdio.h>
#include <glib/gi18n.h>
#include "download.h"
#include "curl_download.h"
#include "preferences.h"
#include "globals.h"
static gboolean check_file_first_line(FILE* f, gchar *patterns[])
{
gchar **s;
gchar *bp;
fpos_t pos;
gchar buf[33];
size_t nr;
memset(buf, 0, sizeof(buf));
fgetpos(f, &pos);
rewind(f);
nr = fread(buf, 1, sizeof(buf) - 1, f);
fsetpos(f, &pos);
for (bp = buf; (bp < (buf + sizeof(buf) - 1)) && (nr > (bp - buf)); bp++) {
if (!(isspace(*bp)))
break;
}
if ((bp >= (buf + sizeof(buf) -1)) || ((bp - buf) >= nr))
return FALSE;
for (s = patterns; *s; s++) {
if (strncasecmp(*s, bp, strlen(*s)) == 0)
return TRUE;
}
return FALSE;
}
gboolean a_check_html_file(FILE* f)
{
gchar * html_str[] = {
"<html",
"<!DOCTYPE html",
"<head",
"<title",
NULL
};
return check_file_first_line(f, html_str);
}
gboolean a_check_map_file(FILE* f)
{
/* FIXME no more true since a_check_kml_file */
return !a_check_html_file(f);
}
gboolean a_check_kml_file(FILE* f)
{
gchar * kml_str[] = {
"<?xml",
NULL
};
return check_file_first_line(f, kml_str);
}
static GList *file_list = NULL;
static GMutex *file_list_mutex = NULL;
/* spin button scales */
VikLayerParamScale params_scales[] = {
{1, 86400*7, 60, 0}, /* download_tile_age */
};
static VikLayerParam prefs[] = {
{ VIKING_PREFERENCES_NAMESPACE "download_tile_age", VIK_LAYER_PARAM_UINT, VIK_LAYER_GROUP_NONE, N_("Tile age (s):"), VIK_LAYER_WIDGET_SPINBUTTON, params_scales + 0, NULL },
};
void a_download_init (void)
{
VikLayerParamData tmp;
tmp.u = VIK_CONFIG_DEFAULT_TILE_AGE;
a_preferences_register(prefs, tmp, VIKING_PREFERENCES_GROUP_KEY);
file_list_mutex = g_mutex_new();
}
static gboolean lock_file(const char *fn)
{
gboolean locked = FALSE;
g_mutex_lock(file_list_mutex);
if (g_list_find_custom(file_list, fn, (GCompareFunc)g_strcmp0) == NULL)
{
// The filename is not yet locked
file_list = g_list_append(file_list, (gpointer)fn),
locked = TRUE;
}
g_mutex_unlock(file_list_mutex);
return locked;
}
static void unlock_file(const char *fn)
{
g_mutex_lock(file_list_mutex);
file_list = g_list_remove(file_list, (gconstpointer)fn);
g_mutex_unlock(file_list_mutex);
}
static int download( const char *hostname, const char *uri, const char *fn, DownloadMapOptions *options, gboolean ftp, void *handle)
{
FILE *f;
int ret;
gchar *tmpfilename;
gboolean failure = FALSE;
DownloadFileOptions file_options = {0, NULL, NULL};
/* Check file */
if ( g_file_test ( fn, G_FILE_TEST_EXISTS ) == TRUE )
{
if (options == NULL || (!options->check_file_server_time &&
!options->use_etag)) {
/* Nothing to do as file already exists and we don't want to check server */
return -3;
}
time_t tile_age = a_preferences_get(VIKING_PREFERENCES_NAMESPACE "download_tile_age")->u;
/* Get the modified time of this file */
struct stat buf;
g_stat ( fn, &buf );
time_t file_time = buf.st_mtime;
if ( (time(NULL) - file_time) < tile_age ) {
/* File cache is too recent, so return */
return -3;
}
if (options->check_file_server_time) {
file_options.time_condition = file_time;
}
if (options->use_etag) {
gchar *etag_filename = g_strdup_printf("%s.etag", fn);
gsize etag_length = 0;
g_file_get_contents (etag_filename, &(file_options.etag), &etag_length, NULL);
g_free (etag_filename);
etag_filename = NULL;
/* check if etag is short enough */
if (etag_length > 100) {
g_free(file_options.etag);
file_options.etag = NULL;
}
/* TODO: should check that etag is a valid string */
}
} else {
gchar *dir = g_path_get_dirname ( fn );
g_mkdir_with_parents ( dir , 0777 );
g_free ( dir );
}
tmpfilename = g_strdup_printf("%s.tmp", fn);
if (!lock_file ( tmpfilename ) )
{
g_debug("%s: Couldn't take lock on temporary file \"%s\"\n", __FUNCTION__, tmpfilename);
g_free ( tmpfilename );
if (options->use_etag)
g_free ( file_options.etag );
return -4;
}
f = g_fopen ( tmpfilename, "w+b" ); /* truncate file and open it */
if ( ! f ) {
g_warning("Couldn't open temporary file \"%s\": %s", tmpfilename, g_strerror(errno));
g_free ( tmpfilename );
if (options->use_etag)
g_free ( file_options.etag );
return -4;
}
/* Call the backend function */
ret = curl_download_get_url ( hostname, uri, f, options, ftp, &file_options, handle );
if (ret != DOWNLOAD_NO_ERROR && ret != DOWNLOAD_NO_NEWER_FILE) {
g_debug("%s: download failed: curl_download_get_url=%d", __FUNCTION__, ret);
failure = TRUE;
}
if (!failure && options != NULL && options->check_file != NULL && ! options->check_file(f)) {
g_debug("%s: file content checking failed", __FUNCTION__);
failure = TRUE;
}
fclose ( f );
f = NULL;
if (failure)
{
g_warning(_("Download error: %s"), fn);
g_remove ( tmpfilename );
unlock_file ( tmpfilename );
g_free ( tmpfilename );
if (options->use_etag) {
g_free ( file_options.etag );
g_free ( file_options.new_etag );
}
return -1;
}
if (options->use_etag) {
if (file_options.new_etag) {
/* server returned an etag value */
gchar *etag_filename = g_strdup_printf("%s.etag", fn);
g_file_set_contents (etag_filename, file_options.new_etag, -1, NULL);
g_free (etag_filename);
etag_filename = NULL;
}
}
if (ret == DOWNLOAD_NO_NEWER_FILE) {
g_remove ( tmpfilename );
#if GLIB_CHECK_VERSION(2,18,0)
g_utime ( fn, NULL ); /* update mtime of local copy */
#else
utimes ( fn, NULL ); /* update mtime of local copy */
#endif
} else {
g_rename ( tmpfilename, fn ); /* move completely-downloaded file to permanent location */
}
unlock_file ( tmpfilename );
g_free ( tmpfilename );
if (options->use_etag) {
g_free ( file_options.etag );
g_free ( file_options.new_etag );
}
return 0;
}
/* success = 0, -1 = couldn't connect, -2 HTTP error, -3 file exists, -4 couldn't write to file... */
/* uri: like "/uri.html?whatever" */
/* only reason for the "wrapper" is so we can do redirects. */
int a_http_download_get_url ( const char *hostname, const char *uri, const char *fn, DownloadMapOptions *opt, void *handle )
{
return download ( hostname, uri, fn, opt, FALSE, handle );
}
int a_ftp_download_get_url ( const char *hostname, const char *uri, const char *fn, DownloadMapOptions *opt, void *handle )
{
return download ( hostname, uri, fn, opt, TRUE, handle );
}
void * a_download_handle_init ()
{
return curl_download_handle_init ();
}
void a_download_handle_cleanup ( void *handle )
{
curl_download_handle_cleanup ( handle );
}