]> git.street.me.uk Git - andy/viking.git/blob - src/download.h
[QA] Add ifdef macro for Google Directions related
[andy/viking.git] / src / download.h
1 /*
2  * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3  *
4  * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
5  * Copyright (C) 2007, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  */
22
23 #ifndef _VIKING_DOWNLOAD_H
24 #define _VIKING_DOWNLOAD_H
25
26 #include <stdio.h>
27
28 G_BEGIN_DECLS
29
30 /* File content check */
31 typedef gboolean (*VikFileContentCheckerFunc) (FILE*);
32 gboolean a_check_map_file(FILE*);
33 gboolean a_check_html_file(FILE*);
34 gboolean a_check_kml_file(FILE*);
35
36 typedef struct {
37   /**
38    * Check if the server has a more recent file than the one we have before downloading it
39    * This uses http header If-Modified-Since
40    */
41   gboolean check_file_server_time;
42
43   /**
44    * Set if the server handle ETag
45    */
46   gboolean use_etag;
47
48   /**
49    * The REFERER string to use.
50    * Could be NULL.
51    */
52   gchar *referer;
53
54   /**
55    * follow_location specifies the number of retries
56    * to follow a redirect while downloading a page.
57    */
58   glong follow_location;
59   
60   /**
61    * File content checker.
62    */
63   VikFileContentCheckerFunc check_file;
64
65 } DownloadMapOptions;
66
67 typedef struct {
68   /**
69    * Time sent to server on header If-Modified-Since
70    */
71   time_t time_condition;
72   /**
73    * Etag sent by server on previous download
74    */
75   char *etag;
76   /**
77    * Etag sent by server on this download
78    */
79   char *new_etag;
80
81 } DownloadFileOptions;
82
83 void a_download_init(void);
84
85 /* TODO: convert to Glib */
86 int a_http_download_get_url ( const char *hostname, const char *uri, const char *fn, DownloadMapOptions *opt, void *handle );
87 int a_ftp_download_get_url ( const char *hostname, const char *uri, const char *fn, DownloadMapOptions *opt, void *handle );
88 void *a_download_handle_init ();
89 void a_download_handle_cleanup ( void *handle );
90
91 /* Error messages returned by download functions */
92 enum { DOWNLOAD_NO_ERROR = 0,
93        DOWNLOAD_NO_NEWER_FILE,
94        DOWNLOAD_ERROR };
95
96 G_END_DECLS
97
98 #endif