]> git.street.me.uk Git - andy/viking.git/blame - src/modules.c
Add Nominatim search engine
[andy/viking.git] / src / modules.c
CommitLineData
cdcaf41c
QT
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
4 * Copyright (C) 2006-2007, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
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
54b5d793
GB
26#include <glib.h>
27#include <glib/gstdio.h>
28#ifdef HAVE_UNISTD_H
29#include <unistd.h>
30#endif
31
cdcaf41c
QT
32#include "modules.h"
33
34#include "google.h"
cdcaf41c 35#include "terraserver.h"
cdcaf41c 36#include "expedia.h"
67209ca8 37#include "osm.h"
843b99df 38#include "osm-traces.h"
7363caa7
GB
39#include "bluemarble.h"
40#include "openaerial.h"
bf5cef41 41#include "geonames.h"
54b5d793 42#include "file.h"
df82a41c 43#include "vikmapslayer.h"
54b5d793
GB
44#include "vikexttools.h"
45#include "vikgobjectbuilder.h"
46
df82a41c 47#define VIKING_MAPS_FILE "maps.xml"
54b5d793
GB
48#define VIKING_EXTTOOLS_FILE "external_tools.xml"
49
df82a41c
GB
50static void
51modules_register_map_source(VikGobjectBuilder *self, GObject *object)
52{
53 g_debug (__FUNCTION__);
54 VikMapSource *mapsource = VIK_MAP_SOURCE (object);
55 /* FIXME label should be hosted by object */
56 maps_layer_register_map_source (mapsource);
57}
58
54b5d793
GB
59static void
60modules_register_exttools(VikGobjectBuilder *self, GObject *object)
61{
62 g_debug (__FUNCTION__);
63 VikExtTool *tool = VIK_EXT_TOOL (object);
64 vik_ext_tools_register (tool);
65}
66
67static void
68modules_load_config(void)
69{
df82a41c
GB
70 /* Maps sources */
71 gchar *maps = g_build_filename(a_get_viking_dir(), VIKING_MAPS_FILE, NULL);
72 if (g_access (maps, R_OK) == 0)
73 {
74 VikGobjectBuilder *builder = vik_gobject_builder_new ();
75 g_signal_connect (builder, "new-object", G_CALLBACK (modules_register_map_source), NULL);
76 vik_gobject_builder_parse (builder, maps);
77 g_object_unref (builder);
78 }
79
54b5d793
GB
80 /* External tools */
81 gchar *tools = g_build_filename(a_get_viking_dir(), VIKING_EXTTOOLS_FILE, NULL);
82 if (g_access (tools, R_OK) == 0)
83 {
84 VikGobjectBuilder *builder = vik_gobject_builder_new ();
85 g_signal_connect (builder, "new-object", G_CALLBACK (modules_register_exttools), NULL);
86 vik_gobject_builder_parse (builder, tools);
87 g_object_unref (builder);
88 }
89}
cdcaf41c
QT
90
91void modules_init()
92{
36c78d6d
QT
93#ifdef VIK_CONFIG_GOOGLE
94 google_init();
95#endif
cdcaf41c
QT
96#ifdef VIK_CONFIG_EXPEDIA
97 expedia_init();
98#endif
99#ifdef VIK_CONFIG_TERRASERVER
100 terraserver_init();
101#endif
ca9eb04a 102#ifdef VIK_CONFIG_OPENSTREETMAP
67209ca8 103 osm_init();
843b99df 104 osm_traces_init();
ca9eb04a 105#endif
7363caa7
GB
106#ifdef VIK_CONFIG_BLUEMARBLE
107 bluemarble_init();
108#endif
109#ifdef VIK_CONFIG_OPENAERIAL
110 openaerial_init();
111#endif
bf5cef41
GB
112#ifdef VIK_CONFIG_GEONAMES
113 geonames_init();
114#endif
54b5d793
GB
115
116 /* As modules are loaded, we can load configuration files */
117 modules_load_config ();
cdcaf41c
QT
118}
119