Converting printf calls
[viking/gosmore.git] / src / babel.c
blob5fc0fb2853ec02ae83578f177d6f9ed40da159fa
1 /*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
4 * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
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.
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.
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
22 #include "viking.h"
23 #include "gpx.h"
24 #include "babel.h"
25 #include "sys/wait.h"
27 /* in the future we could have support for other shells (change command strings), or not use a shell at all */
28 #define BASH_LOCATION "/bin/bash"
30 gboolean a_babel_convert( VikTrwLayer *vt, const char *babelargs, BabelStatusFunc cb, gpointer user_data )
32 int fd_src;
33 FILE *f;
34 gchar *name_src;
35 gboolean ret = FALSE;
36 gchar *bargs = g_strconcat(babelargs, " -i gpx", NULL);
38 if ((fd_src = g_file_open_tmp("tmp-viking.XXXXXX", &name_src, NULL)) < 0) {
39 ret = FALSE;
40 } else {
41 f = fdopen(fd_src, "w");
42 a_gpx_write_file(vt, f);
43 fclose(f);
44 ret = a_babel_convert_from ( vt, bargs, cb, name_src, user_data );
47 g_free(bargs);
48 remove(name_src);
49 g_free(name_src);
50 return ret;
53 gboolean babel_general_convert_from( VikTrwLayer *vt, BabelStatusFunc cb, gchar **args, const gchar *name_dst, gpointer user_data )
55 gboolean ret;
56 GPid pid;
57 gint babel_stdin, babel_stdout, babel_stderr;
58 FILE *f;
61 if (!g_spawn_async_with_pipes (NULL, args, NULL, 0, NULL, NULL, &pid, &babel_stdin, &babel_stdout, &babel_stderr, NULL)) {
62 // if (!g_spawn_async_with_pipes (NULL, args, NULL, 0, NULL, NULL, NULL, &babel_stdin, &babel_stdout, NULL, NULL)) {
63 ret = FALSE;
64 } else {
65 gchar line[512];
66 FILE *diag;
67 diag = fdopen(babel_stdout, "r");
68 setvbuf(diag, NULL, _IONBF, 0);
70 while (fgets(line, sizeof(line), diag)) {
71 if ( cb )
72 cb(BABEL_DIAG_OUTPUT, line, user_data);
74 if ( cb )
75 cb(BABEL_DONE, NULL, user_data);
76 fclose(diag);
77 waitpid(pid, NULL, 0);
78 g_spawn_close_pid(pid);
80 f = fopen(name_dst, "r");
81 a_gpx_read_file ( vt, f );
82 fclose(f);
83 ret = TRUE;
86 return ret;
89 gboolean a_babel_convert_from( VikTrwLayer *vt, const char *babelargs, BabelStatusFunc cb, const char *from, gpointer user_data )
91 int fd_dst;
92 gchar *name_dst;
93 gchar *cmd;
94 gboolean ret = FALSE;
95 gchar **args;
97 if ((fd_dst = g_file_open_tmp("tmp-viking.XXXXXX", &name_dst, NULL)) < 0) {
98 ret = FALSE;
99 } else {
100 gchar *gpsbabel_loc;
101 close(fd_dst);
103 gpsbabel_loc = g_find_program_in_path("gpsbabel");
105 if (gpsbabel_loc ) {
106 gchar *unbuffer_loc = g_find_program_in_path("unbuffer");
107 cmd = g_strdup_printf ( "%s%s%s %s -o gpx %s %s",
108 unbuffer_loc ? unbuffer_loc : "",
109 unbuffer_loc ? " " : "",
110 gpsbabel_loc,
111 babelargs,
112 from,
113 name_dst );
115 if ( unbuffer_loc )
116 g_free ( unbuffer_loc );
118 args = g_strsplit(cmd, " ", 0);
119 ret = babel_general_convert_from ( vt, cb, args, name_dst, user_data );
120 g_strfreev(args);
121 g_free ( cmd );
125 remove(name_dst);
126 g_free(name_dst);
127 return ret;
130 gboolean a_babel_convert_from_shellcommand ( VikTrwLayer *vt, const char *input_cmd, const char *input_type, BabelStatusFunc cb, gpointer user_data )
132 int fd_dst;
133 gchar *name_dst;
134 gboolean ret = FALSE;
135 gchar **args;
137 if ((fd_dst = g_file_open_tmp("tmp-viking.XXXXXX", &name_dst, NULL)) < 0) {
138 ret = FALSE;
139 } else {
140 gchar *shell_command = g_strdup_printf("%s | gpsbabel -i %s -f - -o gpx -F %s", input_cmd, input_type, name_dst);
141 g_debug("%s", shell_command);
142 close(fd_dst);
144 args = g_malloc(sizeof(gchar *)*4);
145 args[0] = BASH_LOCATION;
146 args[1] = "-c";
147 args[2] = shell_command;
148 args[3] = NULL;
150 ret = babel_general_convert_from ( vt, cb, args, name_dst, user_data );
151 g_free ( args );
152 g_free ( shell_command );
155 remove(name_dst);
156 g_free(name_dst);
157 return ret;
160 gboolean babel_general_convert_to( VikTrwLayer *vt, BabelStatusFunc cb, gchar **args, const gchar *name_src, gpointer user_data )
162 gboolean ret;
163 GPid pid;
164 gint babel_stdin, babel_stdout, babel_stderr;
166 if (!a_file_export(vt, name_src, FILE_TYPE_GPX)) {
167 g_warning("babel_general_convert_to(): error exporting to %s\n", name_src);
168 return(FALSE);
171 if (!g_spawn_async_with_pipes (NULL, args, NULL, 0, NULL, NULL, &pid, &babel_stdin, &babel_stdout, &babel_stderr, NULL)) {
172 ret = FALSE;
173 } else {
174 gchar line[512];
175 FILE *diag;
176 diag = fdopen(babel_stdout, "r");
177 setvbuf(diag, NULL, _IONBF, 0);
179 while (fgets(line, sizeof(line), diag)) {
180 if ( cb )
181 cb(BABEL_DIAG_OUTPUT, line, user_data);
183 if ( cb )
184 cb(BABEL_DONE, NULL, user_data);
185 fclose(diag);
186 waitpid(pid, NULL, 0);
187 g_spawn_close_pid(pid);
189 ret = TRUE;
192 return ret;
195 gboolean a_babel_convert_to( VikTrwLayer *vt, const char *babelargs, BabelStatusFunc cb, const char *to, gpointer user_data )
197 int fd_src;
198 gchar *name_src;
199 gchar *cmd;
200 gboolean ret = FALSE;
201 gchar **args;
203 if ((fd_src = g_file_open_tmp("tmp-viking.XXXXXX", &name_src, NULL)) < 0) {
204 ret = FALSE;
205 } else {
206 gchar *gpsbabel_loc;
207 close(fd_src);
209 gpsbabel_loc = g_find_program_in_path("gpsbabel");
211 if (gpsbabel_loc ) {
212 gchar *unbuffer_loc = g_find_program_in_path("unbuffer");
213 cmd = g_strdup_printf ( "%s%s%s %s -i gpx %s %s",
214 unbuffer_loc ? unbuffer_loc : "",
215 unbuffer_loc ? " " : "",
216 gpsbabel_loc,
217 babelargs,
218 name_src,
219 to);
221 if ( unbuffer_loc )
222 g_free ( unbuffer_loc );
223 #ifdef DBG
224 g_debug("cmd=%s\n", cmd);
225 #endif /* DBG */
226 args = g_strsplit(cmd, " ", 0);
227 ret = babel_general_convert_to ( vt, cb, args, name_src, user_data );
228 g_strfreev(args);
229 g_free ( cmd );
233 remove(name_src);
234 g_free(name_src);
235 return ret;