]> git.street.me.uk Git - andy/viking.git/blob - src/googlesearch.c
[QA] Replace code by GObject macro (vikexttool)
[andy/viking.git] / src / googlesearch.c
1 /*
2  * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3  *
4  * Copyright (C) 2003-2005, Quy Tonthat <qtonthat@gmail.com>
5  * Copyright (C) 2009, 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 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif
24 #include <stdlib.h>
25 #include <stdio.h>
26 #include <string.h>
27 #include <glib.h>
28 #include <glib/gstdio.h>
29 #include <glib/gprintf.h>
30 #include <glib/gi18n.h>
31
32 #include "viking.h"
33 #include "util.h"
34 #include "curl_download.h"
35
36 #include "googlesearch.h"
37
38 #define GOOGLE_GOTO_URL_FMT "http://maps.google.com/maps?q=%s&output=js"
39 #define GOOGLE_GOTO_PATTERN_1 "{center:{lat:"
40 #define GOOGLE_GOTO_PATTERN_2 ",lng:"
41 #define GOOGLE_GOTO_NOT_FOUND "not understand the location"
42
43 static DownloadMapOptions googlesearch_options = { FALSE, FALSE, "http://maps.google.com/", 0, a_check_map_file };
44
45 static void google_goto_tool_finalize ( GObject *gob );
46
47 static gchar *google_goto_tool_get_url_format ( VikGotoTool *self );
48 static DownloadMapOptions *google_goto_tool_get_download_options ( VikGotoTool *self );
49 static gboolean google_goto_tool_parse_file_for_latlon(VikGotoTool *self, gchar *filename, struct LatLon *ll);
50
51 G_DEFINE_TYPE (GoogleGotoTool, google_goto_tool, VIK_GOTO_TOOL_TYPE)
52
53 static void google_goto_tool_class_init ( GoogleGotoToolClass *klass )
54 {
55   GObjectClass *object_class;
56   VikGotoToolClass *parent_class;
57
58   object_class = G_OBJECT_CLASS (klass);
59
60   object_class->finalize = google_goto_tool_finalize;
61
62   parent_class = VIK_GOTO_TOOL_CLASS (klass);
63
64   parent_class->get_url_format = google_goto_tool_get_url_format;
65   parent_class->get_download_options = google_goto_tool_get_download_options;
66   parent_class->parse_file_for_latlon = google_goto_tool_parse_file_for_latlon;
67 }
68
69 GoogleGotoTool *google_goto_tool_new ()
70 {
71   return GOOGLE_GOTO_TOOL ( g_object_new ( GOOGLE_GOTO_TOOL_TYPE, "label", "Google", NULL ) );
72 }
73
74 static void google_goto_tool_init ( GoogleGotoTool *vlp )
75 {
76 }
77
78 static void google_goto_tool_finalize ( GObject *gob )
79 {
80   G_OBJECT_GET_CLASS(gob)->finalize(gob);
81 }
82
83 static gboolean google_goto_tool_parse_file_for_latlon(VikGotoTool *self, gchar *file_name, struct LatLon *ll)
84 {
85   gchar *text, *pat;
86   GMappedFile *mf;
87   gsize len;
88   gboolean found = TRUE;
89   gchar lat_buf[32], lon_buf[32];
90   gchar *s;
91
92   lat_buf[0] = lon_buf[0] = '\0';
93
94   if ((mf = g_mapped_file_new(file_name, FALSE, NULL)) == NULL) {
95     g_critical(_("couldn't map temp file"));
96     return FALSE;
97   }
98   len = g_mapped_file_get_length(mf);
99   text = g_mapped_file_get_contents(mf);
100
101   if (g_strstr_len(text, len, GOOGLE_GOTO_NOT_FOUND) != NULL) {
102     found = FALSE;
103     goto done;
104   }
105
106   if ((pat = g_strstr_len(text, len, GOOGLE_GOTO_PATTERN_1)) == NULL) {
107     found = FALSE;
108     goto done;
109   }
110   pat += strlen(GOOGLE_GOTO_PATTERN_1);
111   s = lat_buf;
112   if (*pat == '-')
113     *s++ = *pat++;
114   while ((s < (lat_buf + sizeof(lat_buf))) && (pat < (text + len)) &&
115           (g_ascii_isdigit(*pat) || (*pat == '.')))
116     *s++ = *pat++;
117   *s = '\0';
118   if ((pat >= (text + len)) || (lat_buf[0] == '\0')) {
119     found = FALSE;
120     goto done;
121   }
122
123   if (strncmp(pat, GOOGLE_GOTO_PATTERN_2, strlen(GOOGLE_GOTO_PATTERN_2))) {
124       found = FALSE;
125       goto done;
126   }
127
128   pat += strlen(GOOGLE_GOTO_PATTERN_2);
129   s = lon_buf;
130
131   if (*pat == '-')
132     *s++ = *pat++;
133   while ((s < (lon_buf + sizeof(lon_buf))) && (pat < (text + len)) &&
134           (g_ascii_isdigit(*pat) || (*pat == '.')))
135     *s++ = *pat++;
136   *s = '\0';
137   if ((pat >= (text + len)) || (lon_buf[0] == '\0')) {
138     found = FALSE;
139     goto done;
140   }
141
142   ll->lat = g_ascii_strtod(lat_buf, NULL);
143   ll->lon = g_ascii_strtod(lon_buf, NULL);
144
145 done:
146   g_mapped_file_free(mf);
147   return (found);
148
149 }
150
151 static gchar *google_goto_tool_get_url_format ( VikGotoTool *self )
152 {
153   return GOOGLE_GOTO_URL_FMT;
154 }
155
156 DownloadMapOptions *google_goto_tool_get_download_options ( VikGotoTool *self )
157 {
158   return &googlesearch_options;
159 }