]> err.no Git - mapper/blob - src/mapper.c
Merge branch 'master' of /home/milang/devel/mapper/
[mapper] / src / mapper.c
1 /*
2  * This file is part of mapper
3  *
4  * Copyright (C) 2007 Kaj-Michael Lang
5  * Copyright (C) 2006-2007 John Costigan.
6  *
7  * POI and GPS-Info code originally written by Cezary Jackiewicz.
8  *
9  * Default map data provided by http://www.openstreetmap.org/
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License along
22  * with this program; if not, write to the Free Software Foundation, Inc.,
23  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24  */
25
26 #define _GNU_SOURCE
27
28 #include <config.h>
29 #include <unistd.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <strings.h>
33 #include <stddef.h>
34 #include <math.h>
35 #include <errno.h>
36 #include <sys/wait.h>
37 #include <glib/gstdio.h>
38 #include <glib/gi18n.h>
39 #ifdef WITH_GST
40 #include <gst/gst.h>
41 #endif
42 #include <gtk/gtk.h>
43 #include <fcntl.h>
44 #include <gdk/gdkkeysyms.h>
45 #include <dbus/dbus.h>
46 #include <dbus/dbus-glib.h>
47 #include <libgnomevfs/gnome-vfs.h>
48 #include <curl/multi.h>
49 #include <gconf/gconf-client.h>
50 #include <libintl.h>
51 #include <locale.h>
52
53 #ifdef WITH_HILDON_DBUS_BT
54 #include <bt-dbus.h>
55 #endif
56
57 #include "hildon-mapper.h"
58
59 #include "utils.h"
60 #include "mapper-types.h"
61 #include "settings.h"
62 #include "gps.h"
63 #include "map.h"
64 #include "route.h"
65 #include "track.h"
66 #include "bt.h"
67 #include "ui-common.h"
68 #include "db.h"
69 #include "osm-db.h"
70 #include "cb.h"
71 #include "speak.h"
72 #include "gpx.h"
73 #include "config-gconf.h"
74
75 DBusConnection *dbus_conn;
76
77 gfloat UNITS_CONVERT[] = {1.85200,1.15077945,1.f,};
78
79 GdkColor COLORABLE_DEFAULT[COLORABLE_ENUM_COUNT] = {
80         {0, 0x0000, 0x0000, 0xc000}
81         ,                       /* COLORABLE_MARK */
82         {0, 0x6000, 0x6000, 0xf800}
83         ,                       /* COLORABLE_MARK_VELOCITY */
84         {0, 0x8000, 0x8000, 0x8000}
85         ,                       /* COLORABLE_MARK_OLD */
86         {0, 0xe000, 0x0000, 0x0000}
87         ,                       /* COLORABLE_TRACK */
88         {0, 0xa000, 0x0000, 0x0000}
89         ,                       /* COLORABLE_TRACK_MARK */
90         {0, 0x7000, 0x0000, 0x0000}
91         ,                       /* COLORABLE_TRACK_BREAK */
92         {0, 0x0000, 0xa000, 0x0000}
93         ,                       /* COLORABLE_ROUTE */
94         {0, 0x0000, 0x8000, 0x0000}
95         ,                       /* COLORABLE_ROUTE_WAY */
96         {0, 0x0000, 0x6000, 0x0000}
97         ,                       /* COLORABLE_ROUTE_BREAK */
98         {0, 0xa000, 0x0000, 0xa000}     /* COLORABLE_POI */
99 };
100
101 enum {
102         MAPPER_INIT_START=0,
103         MAPPER_INIT_MISC,
104         MAPPER_INIT_CONFIG,
105         MAPPER_INIT_GPS,
106         MAPPER_INIT_VOICE,
107         MAPPER_INIT_DB,
108         MAPPER_INIT_UI,
109         MAPPER_INIT_GOTO,
110         MAPPER_INIT_DONE
111 } mapper_init_state;
112
113 guint mis=MAPPER_INIT_START;
114
115 static GtkWidget *init_progress;
116 static GtkWidget *init_dialog;
117
118 /**
119  * Save state and destroy all non-UI elements created by this program in
120  * preparation for exiting.
121  */
122 static void 
123 mapper_destroy(void)
124 {
125 config_save();
126 config_save_repo();
127 rcvr_disconnect();
128 map_download_deinit();
129 if (_curl_sid) {
130         g_source_remove(_curl_sid);
131         _curl_sid = 0;
132 }
133 #if defined (WITH_GST) && defined (WITH_ESPEAK)
134 speak_deinit();
135 #endif
136 osm_deinit();
137 db_close(&_db);
138 track_deinit();
139 route_deinit();
140
141 gnome_vfs_shutdown();
142 #ifdef WITH_OSSO
143 osso_deinitialize(_osso);
144 #endif
145 curl_global_cleanup();
146 }
147
148 static gint 
149 mapper_osso_init(void)
150 {
151 #ifdef WITH_OSSO
152 /* Initialize _osso. */
153 _osso = osso_initialize("org.tal.mapper", VERSION, TRUE, NULL);
154 if (!_osso) {
155         g_printerr("osso_initialize failed.\n");
156         return 1;
157 }
158 #endif
159 return 0;
160 }
161
162 static gint 
163 mapper_osso_cb_init(void)
164 {
165 #ifdef WITH_OSSO
166 gchar *filter_string;
167
168 if (OSSO_OK != osso_rpc_set_default_cb_f(_osso, dbus_cb_default, NULL)) {
169         g_printerr("osso_rpc_set_default_cb_f failed.\n");
170         return 1;
171 }
172
173 filter_string = g_strdup_printf("interface=%s", ICD_DBUS_INTERFACE);
174 /* add match */
175 dbus_bus_add_match(dbus_conn, filter_string, NULL);
176 g_free(filter_string);
177 /* add the callback */
178 dbus_connection_add_filter(dbus_conn, get_connection_status_signal_cb, NULL, NULL);
179
180 osso_iap_cb(iap_callback);
181
182 #endif
183 return 0;
184 }
185
186 static void 
187 timezone_init(void)
188 {
189 time_t time1;
190 struct tm time2;
191
192 time1 = time(NULL);
193 localtime_r(&time1, &time2);
194 _gmtoffset = time2.tm_gmtoff;
195 }
196
197 static gboolean
198 mapper_init(gpointer data)
199 {
200 GError *error = NULL;
201 gboolean ret=TRUE;
202
203 switch (mis) {
204         case MAPPER_INIT_START:
205                 _conn_state = RCVR_OFF;
206                 curl_global_init(CURL_GLOBAL_NOTHING);
207                 gnome_vfs_init();
208                 timezone_init();
209                 gpx_init();
210                 mapper_init_variables();
211                 track_init();
212                 route_init();
213                 mis=MAPPER_INIT_CONFIG;
214         break;
215         case MAPPER_INIT_CONFIG:
216                 config_init();
217                 map_download_init();
218                 mis=MAPPER_INIT_GPS;
219         break;
220         case MAPPER_INIT_GPS:
221                 gps_init();
222                 mis=MAPPER_INIT_DB;
223         break;
224         case MAPPER_INIT_DB:
225                 osm_init();
226                 mis=MAPPER_INIT_VOICE;
227         break;
228         case MAPPER_INIT_VOICE:
229                 #if defined (WITH_GST) && defined (WITH_ESPEAK)
230                 speak_init("en",_voice_speed,_voice_pitch);
231                 #endif
232                 mis=MAPPER_INIT_MISC;
233         break;
234         case MAPPER_INIT_MISC:
235                 #ifdef WITH_OSSO
236                 osso_hw_set_event_cb(_osso, NULL, osso_cb_hw_state, NULL);
237                 #endif
238
239                 /* Initialize D-Bus. */
240                 if (NULL == (dbus_conn = dbus_g_bus_get(DBUS_BUS_SYSTEM, &error))) {
241                         g_printerr("Failed to open connection to D-Bus: %s.\n", error->message);
242                         error = NULL;
243                 }
244                 #ifdef WITH_HILDON_DBUS_BT
245                 if (NULL == (_rfcomm_req_proxy = dbus_g_proxy_new_for_name(dbus_conn, BTCOND_SERVICE, BTCOND_REQ_PATH, BTCOND_REQ_INTERFACE))) {
246                         g_printerr("Failed to open connection to %s.\n", BTCOND_REQ_INTERFACE);
247                 }
248                 #endif
249                 mis=MAPPER_INIT_UI;
250         break;
251         case MAPPER_INIT_UI:
252                 mapper_ui_init();
253                 mis=MAPPER_INIT_GOTO;
254         break;
255         case MAPPER_INIT_GOTO:
256                 if (map_goto_position(&_home)==FALSE)
257                         g_printf("Home is not set\n");
258                 mis=MAPPER_INIT_DONE;
259         break;
260         case MAPPER_INIT_DONE:
261                 progress_dialog_remove(init_dialog);
262                 return FALSE;
263         break;
264 }
265
266 gtk_progress_bar_pulse(GTK_PROGRESS(init_progress));
267 return ret;
268 }
269
270 gint 
271 main(gint argc, gchar * argv[])
272 {
273 /* Initialize localization. */
274 setlocale(LC_ALL, "");
275 bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
276 bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
277 textdomain(GETTEXT_PACKAGE);
278
279 g_thread_init(NULL);
280 g_type_init();
281 g_set_application_name("Mapper");
282 gtk_init(&argc, &argv);
283 if (mapper_osso_init()!=0)
284         return 1;
285 if (mapper_osso_cb_init()!=0)
286         return 1;
287 #if defined (WITH_GST)
288 gst_init(&argc, &argv);
289 #endif
290
291 init_progress=gtk_progress_bar_new();
292 init_dialog=progress_dialog("Mapper starting...",init_progress);
293 g_idle_add((GSourceFunc)mapper_init, NULL);
294 gtk_main();
295 mapper_destroy();
296
297 return 0;
298 }