]> git.street.me.uk Git - andy/viking.git/blob - src/download.c
Fix "corrupted tile" problem -- was really just that incomplete tiles were being...
[andy/viking.git] / src / download.c
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 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #include <stdio.h>
27 #include <errno.h>
28 #include <gtk/gtk.h>
29 #include <sys/stat.h>
30 #include <sys/types.h>
31
32 #include "download.h"
33
34 #ifdef HAVE_LIBCURL
35 #include "curl_download.h"
36 #else
37 #include "http.h"
38 #endif
39
40 #ifdef WINDOWS
41
42 #include <io.h>
43 #define access(a,b) _access(a,b)
44 #define close(a) closesocket(a)
45
46 char *dirname ( char * dir )
47 {
48   char *tmp = dir + strlen(dir) - 1;
49   while ( tmp != dir && *tmp != '\\' )
50     tmp--;
51   *tmp = '\0';
52   return dir;
53 }
54
55 #else
56
57 #include <unistd.h>
58 #include <sys/types.h>
59
60 /* dirname */
61 #include <libgen.h>
62
63 #endif 
64
65 static int download( const char *hostname, const char *uri, const char *fn, int sendhostname)
66 {
67   FILE *f;
68   int ret;
69   char *tmpfilename;
70
71   /* Check file */
72   if ( access ( fn, F_OK ) == 0 )
73   {
74     /* File exists: return */
75     return -3;
76   } else {
77     if ( errno == ENOENT)
78     {
79       char *tmp = g_strdup ( fn );
80 #ifdef WINDOWS
81       mkdir( dirname ( dirname ( tmp ) ) );
82       g_free ( tmp ); tmp = g_strdup ( fn );
83       mkdir( dirname ( tmp ) );
84 #else
85       mkdir( dirname ( dirname ( tmp ) ), 0777 );
86       g_free ( tmp ); tmp = g_strdup ( fn );
87       mkdir( dirname ( tmp ), 0777 );
88 #endif
89       g_free ( tmp );
90     }
91     /* create placeholder file */
92     if ( ! (f = fopen ( fn, "w+b" )) ) /* immediately open file so other threads won't -- prevents race condition */
93       return -4;
94     fclose ( f );
95   }
96
97   tmpfilename = g_strdup_printf("%s.tmp", fn);
98   f = fopen ( tmpfilename, "w+b" );
99   if ( ! f ) {
100     g_free ( tmpfilename );
101     remove ( fn ); /* couldn't create temporary. delete 0-byte file. */
102     return -4;
103   }
104
105   /* Call the backend function */
106 #ifdef HAVE_LIBCURL
107   ret = curl_download_get_url ( hostname, uri, f );
108 #else
109   ret = http_download_get_url ( hostname, uri, f, 0, sendhostname );
110 #endif
111
112   if (ret == -1 || ret == 1 || ret == -2)
113   {
114     fclose ( f );
115     remove ( tmpfilename );
116     g_free ( tmpfilename );
117     return -1;
118   }
119
120   fclose ( f );
121   rename ( tmpfilename, fn ); /* move completely-downloaded file to permanent location */
122   g_free ( tmpfilename );
123   return ret;
124 }
125
126 /* success = 0, -1 = couldn't connect, -2 HTTP error, -3 file exists, -4 couldn't write to file... */
127 /* uri: like "/uri.html?whatever" */
128 /* only reason for the "wrapper" is so we can do redirects. */
129 int a_http_download_get_url ( const char *hostname, const char *uri, const char *fn )
130 {
131   return download ( hostname, uri, fn, 1 );
132 }
133
134 int a_http_download_get_url_nohostname ( const char *hostname, const char *uri, const char *fn )
135 {
136   return download ( hostname, uri, fn, 0 );
137 }