]> Pileus Git - grits/blob - src/data/gis-data.h
7c8a72834be5b6dc5eea3cfdb9d62a26ecae30f9
[grits] / src / data / gis-data.h
1 /*
2  * Copyright (C) 2009-2010 Andy Spencer <andy753421@gmail.com>
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 #ifndef __GIS_DATA_H__
19 #define __GIS_DATA_H__
20
21 #include <glib.h>
22
23 /**
24  * Various ways to cach a file
25  */
26 typedef enum {
27         GIS_LOCAL,   // Only return local files (for offline mode)
28         GIS_ONCE,    // Download the file only if it does not exist
29         GIS_UPDATE,  // Update the file to be like the server
30         GIS_REFRESH, // Delete the existing file and fetch a new copy
31 } GisCacheType;
32
33 /**
34  * Function called when part of a file is fetched
35  * Used for updating progress bars, etc
36  */
37 typedef void (*GisChunkCallback)(gchar *file, goffset cur,
38                 goffset total, gpointer user_data);
39
40 /**
41  * Open a file and create the parent directory if necessasairy
42  */
43 FILE *fopen_p(const gchar *path, const gchar *mode);
44
45 #endif