f7f646ae817b7792487607e585f40f70244e1753
[fw/altos] / aoview / aoview_monitor.c
1 /*
2  * Copyright © 2009 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include "aoview.h"
19
20 static struct aoview_serial *monitor_serial;
21
22 #define MONITOR_LEN     1024
23
24 static char     monitor_line[MONITOR_LEN + 1];
25 static int      monitor_pos;
26
27 void
28 aoview_monitor_disconnect(void)
29 {
30         if (monitor_serial) {
31                 aoview_serial_close(monitor_serial);
32                 monitor_serial = NULL;
33         }
34         aoview_log_new();
35 }
36
37 static void
38 aoview_parse_string(char *target, int len, char *source)
39 {
40         strncpy(target, source, len-1);
41         target[len-1] = '\0';
42 }
43
44 static void
45 aoview_parse_int(int *target, char *source)
46 {
47         *target = strtol(source, NULL, 0);
48 }
49
50 static void
51 aoview_parse_pos(double *target, char *source)
52 {
53         int     deg;
54         double  min;
55         char    dir;
56         double  r;
57
58         if (sscanf(source, "%d°%lf'%c", &deg, &min, &dir) != 3) {
59                 *target = 0;
60                 return;
61         }
62         r = deg + min / 60.0;
63         if (dir == 'S' || dir == 'W')
64                 r = -r;
65         *target = r;
66 }
67
68 static struct aostate   state;
69
70 gboolean
71 aoview_monitor_parse(char *line)
72 {
73         char *saveptr;
74         char *words[64];
75         int nword;
76
77         for (nword = 0; nword < 64; nword++) {
78                 words[nword] = strtok_r(line, " \t\n", &saveptr);
79                 line = NULL;
80                 if (words[nword] == NULL)
81                         break;
82         }
83         if (nword < 36)
84                 return FALSE;
85         if (strcmp(words[0], "CALL") != 0)
86                 return FALSE;
87         aoview_parse_string(state.callsign, sizeof (state.callsign), words[1]);
88         aoview_parse_int(&state.serial, words[3]);
89
90         aoview_parse_int(&state.rssi, words[5]);
91         aoview_parse_string(state.state, sizeof (state.state), words[9]);
92         aoview_parse_int(&state.tick, words[10]);
93         aoview_parse_int(&state.accel, words[12]);
94         aoview_parse_int(&state.pres, words[14]);
95         aoview_parse_int(&state.temp, words[16]);
96         aoview_parse_int(&state.batt, words[18]);
97         aoview_parse_int(&state.drogue, words[20]);
98         aoview_parse_int(&state.main, words[22]);
99         aoview_parse_int(&state.flight_accel, words[24]);
100         aoview_parse_int(&state.ground_accel, words[26]);
101         aoview_parse_int(&state.flight_vel, words[28]);
102         aoview_parse_int(&state.flight_pres, words[30]);
103         aoview_parse_int(&state.ground_pres, words[32]);
104         aoview_parse_int(&state.nsat, words[34]);
105         if (strcmp (words[36], "unlocked") != 0 && nword >= 40) {
106                 state.locked = 1;
107                 sscanf(words[36], "%d:%d:%d", &state.gps_time.hour, &state.gps_time.minute, &state.gps_time.second);
108                 aoview_parse_pos(&state.lat, words[37]);
109                 aoview_parse_pos(&state.lon, words[38]);
110                 sscanf(words[39], "%dm", &state.alt);
111         } else {
112                 state.locked = 0;
113                 state.gps_time.hour = state.gps_time.minute = state.gps_time.second = 0;
114                 state.lat = state.lon = 0;
115                 state.alt = 0;
116         }
117         if (nword >= 46) {
118                 sscanf(words[40], "%lfm/s", &state.ground_speed);
119                 sscanf(words[41], "%d", &state.course);
120                 sscanf(words[42], "%lfm/s", &state.climb_rate);
121                 sscanf(words[43], "%lf", &state.hdop);
122                 sscanf(words[44], "%d", &state.h_error);
123                 sscanf(words[45], "%d", &state.v_error);
124         } else {
125                 state.ground_speed = 0;
126                 state.course = 0;
127                 state.climb_rate = 0;
128                 state.hdop = 0;
129                 state.h_error = 0;
130                 state.v_error = 0;
131         }
132         aoview_state_notify(&state);
133         return TRUE;
134 }
135
136 void
137 aoview_monitor_reset(void)
138 {
139         memset(&state, '\0', sizeof (state));
140 }
141
142 static void
143 aoview_monitor_callback(gpointer user_data,
144                         struct aoview_serial *serial,
145                         gint revents)
146 {
147         int     c;
148
149         if (revents & (G_IO_HUP|G_IO_ERR)) {
150                 aoview_monitor_disconnect();
151                 return;
152         }
153         if (revents & G_IO_IN) {
154                 for (;;) {
155                         c = aoview_serial_getc(serial);
156                         if (c == -1)
157                                 break;
158                         if (c == '\r')
159                                 continue;
160                         if (c == '\n') {
161                                 monitor_line[monitor_pos] = '\0';
162                                 if (monitor_pos) {
163                                         if (aoview_monitor_parse(monitor_line)) {
164                                                 aoview_log_set_serial(state.serial);
165                                                 if (aoview_log_get_serial())
166                                                         aoview_log_printf ("%s\n", monitor_line);
167                                         }
168                                 }
169                                 monitor_pos = 0;
170                         } else if (monitor_pos < MONITOR_LEN)
171                                 monitor_line[monitor_pos++] = c;
172                 }
173         }
174 }
175
176 gboolean
177 aoview_monitor_connect(char *tty)
178 {
179         aoview_monitor_disconnect();
180         monitor_serial = aoview_serial_open(tty);
181         if (!monitor_serial)
182                 return FALSE;
183         aoview_table_clear();
184         aoview_monitor_reset();
185         aoview_serial_set_callback(monitor_serial,
186                                    aoview_monitor_callback,
187                                    monitor_serial,
188                                    NULL);
189         return TRUE;
190 }