]> err.no Git - mapper/blob - src/utils.h
Remove old map sources
[mapper] / src / utils.h
1 /*
2  * This file is part of mapper
3  *
4  * Copyright (C) 2006-2007 John Costigan.
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 along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19  */
20
21 #ifndef _MAPPER_UTILS_H
22 #define _MAPPER_UTILS_H
23
24 #include "config.h"
25 #include <unistd.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <strings.h>
29 #include <stddef.h>
30 #include <locale.h>
31 #include <math.h>
32 #include <errno.h>
33 #include <sys/wait.h>
34 #include <glib/gstdio.h>
35 #include <glib/gi18n.h>
36 #include <gtk/gtk.h>
37 #include <curl/multi.h>
38 #include <gconf/gconf-client.h>
39
40 #include "mapper-types.h"
41 #include "gpsdata.h"
42
43 /****************************************************************************
44  * BELOW: DEFINES ***********************************************************
45  ****************************************************************************/
46
47 /* #define DEBUG */
48
49 #ifndef DEBUG
50 #define printf(...)
51 #endif
52
53 /* Set the below if to determine whether to get verbose output. */
54 #if 1
55 #define vprintf printf
56 #else
57 #define vprintf(...)
58 #endif
59
60 #define BOUND(x, a, b) { \
61     if((x) < (a)) \
62         (x) = (a); \
63     else if((x) > (b)) \
64         (x) = (b); \
65 }
66
67 #define SQR(s) ((s)*(s))
68
69 #define ARRAY_CHUNK_SIZE (1024)
70 #define BUFFER_SIZE (2048)
71
72 #define MACRO_PARSE_INT(tofill, str) { \
73     gchar *error_check; \
74     (tofill) = strtol((str), &error_check, 10); \
75     if(error_check == (str)) \
76     { \
77         g_printerr("Line %d: Failed to parse string as int: %s\n", __LINE__, str); \
78         return; \
79     } \
80 }
81 #define MACRO_PARSE_FLOAT(tofill, str) { \
82     gchar *error_check; \
83     (tofill) = g_ascii_strtod((str), &error_check); \
84     if(error_check == (str)) \
85     { \
86         g_printerr("Failed to parse string as float: %s\n", str); \
87         return; \
88     } \
89 }
90
91 #ifdef WITH_OSSO
92 #define KEEP_DISPLAY_ON() { \
93     /* Note that the flag means keep on ONLY when fullscreen. */ \
94     if(_always_keep_on || _fullscreen) \
95     { \
96         osso_display_state_on(_osso); \
97         osso_display_blanking_pause(_osso); \
98     } \
99 }
100 #else
101 #define KEEP_DISPLAY_ON()
102 #endif
103
104 #define TRACKS_MASK 0x00000001
105 #define ROUTES_MASK 0x00000002
106
107 #define g_timeout_add(I, F, D) g_timeout_add_full(G_PRIORITY_DEFAULT_IDLE, \
108           (I), (F), (D), NULL)
109
110 #define MACRO_CURL_EASY_INIT(C) { \
111     C = curl_easy_init(); \
112     curl_easy_setopt(C, CURLOPT_NOPROGRESS, 1); \
113     curl_easy_setopt(C, CURLOPT_FOLLOWLOCATION, 1); \
114     curl_easy_setopt(C, CURLOPT_MAXREDIRS, 20); \
115     curl_easy_setopt(C, CURLOPT_FAILONERROR, 1); \
116     curl_easy_setopt(C, CURLOPT_USERAGENT, \
117             "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060701 Firefox/1.5.0.4"); \
118     curl_easy_setopt(C, CURLOPT_TIMEOUT, 30); \
119     curl_easy_setopt(C, CURLOPT_CONNECTTIMEOUT, 10); \
120 }
121
122 #define MACRO_CURL_PROXY(C) { \
123 if (_http_proxy_host) { \
124         curl_easy_setopt(C, CURLOPT_PROXY, _http_proxy_host);\
125         if (_http_proxy_port) \
126                 curl_easy_setopt(C, CURLOPT_PROXYPORT, _http_proxy_port); \
127 } \
128 }
129
130 #ifdef WITH_HILDON
131 #define MACRO_BANNER_SHOW_INFO(A, S) { \
132     gchar *my_macro_buffer = g_markup_printf_escaped("<span size='%s'>%s</span>", \
133             INFO_FONT_TEXT[_info_font_size], (S)); \
134     hildon_banner_show_information_with_markup(A, NULL, my_macro_buffer); \
135     g_free(my_macro_buffer); \
136 }
137 #else
138 #define MACRO_BANNER_SHOW_INFO(A, S) { hildon_banner_show_information(A, NULL, S); }
139 #endif
140
141 void sound_noise(void);
142
143 #endif