altoslib: Move CSV/KML output code to altoslib
[fw/altos] / altoslib / AltosLink.java
1 /*
2  * Copyright © 2011 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 package org.altusmetrum.altoslib_3;
19
20 import java.io.*;
21 import java.util.concurrent.*;
22 import java.util.*;
23
24 public abstract class AltosLink implements Runnable {
25
26         public final static int ERROR = -1;
27         public final static int TIMEOUT = -2;
28
29         public abstract int getchar() throws InterruptedException;
30         public abstract void print(String data) throws InterruptedException;
31         public abstract void putchar(byte c);
32         public abstract void close() throws InterruptedException;
33
34         public static boolean debug = false;
35         public static void set_debug(boolean in_debug) { debug = in_debug; }
36
37         public boolean has_error;
38
39         LinkedList<String> pending_output = new LinkedList<String>();
40
41         public LinkedList<LinkedBlockingQueue<AltosLine>> monitors = new LinkedList<LinkedBlockingQueue<AltosLine>> ();;
42         public LinkedBlockingQueue<AltosLine> reply_queue = new LinkedBlockingQueue<AltosLine>();
43         public LinkedBlockingQueue<byte[]> binary_queue = new LinkedBlockingQueue<byte[]>();
44
45         public synchronized void add_monitor(LinkedBlockingQueue<AltosLine> q) {
46                 set_monitor(true);
47                 monitors.add(q);
48         }
49
50         public synchronized void remove_monitor(LinkedBlockingQueue<AltosLine> q) {
51                 monitors.remove(q);
52                 if (monitors.isEmpty())
53                         set_monitor(false);
54         }
55
56         public void printf(String format, Object ... arguments) {
57                 String  line = String.format(format, arguments);
58                 if (debug)
59                         pending_output.add(line);
60                 try {
61                         print(line);
62                 } catch (InterruptedException ie) {
63
64                 }
65         }
66
67         public String get_reply_no_dialog(int timeout) throws InterruptedException, TimeoutException {
68                 flush_output();
69                 AltosLine line = reply_queue.poll(timeout, TimeUnit.MILLISECONDS);
70                 if (line != null)
71                         return line.line;
72                 return null;
73         }
74
75         public String get_reply() throws InterruptedException {
76                 return get_reply(5000);
77         }
78
79
80         public abstract boolean can_cancel_reply();
81         public abstract boolean show_reply_timeout();
82         public abstract void hide_reply_timeout();
83
84         public boolean  reply_abort;
85         public int      in_reply;
86
87         boolean         reply_timeout_shown = false;
88
89         private boolean check_reply_timeout() {
90                 if (!reply_timeout_shown)
91                         reply_timeout_shown = show_reply_timeout();
92                 return reply_abort;
93         }
94
95         private void cleanup_reply_timeout() {
96                 if (reply_timeout_shown) {
97                         reply_timeout_shown = false;
98                         hide_reply_timeout();
99                 }
100         }
101
102         private int     len_read = 0;
103
104         public void run () {
105                 int c;
106                 byte[] line_bytes = null;
107                 int line_count = 0;
108
109                 try {
110                         for (;;) {
111                                 c = getchar();
112                                 if (Thread.interrupted()) {
113                                         break;
114                                 }
115                                 if (c == ERROR) {
116                                         if (debug)
117                                                 System.out.printf("ERROR\n");
118                                         has_error = true;
119                                         add_telem (new AltosLine());
120                                         add_reply (new AltosLine());
121                                         break;
122                                 }
123                                 if (c == TIMEOUT) {
124                                         if (debug)
125                                                 System.out.printf("TIMEOUT\n");
126                                         continue;
127                                 }
128                                 if (c == '\r' && len_read == 0)
129                                         continue;
130                                 synchronized(this) {
131                                         if (c == '\n' && len_read == 0) {
132                                                 if (line_count != 0) {
133                                                         add_bytes(line_bytes, line_count);
134                                                         line_count = 0;
135                                                 }
136                                         } else {
137                                                 if (line_bytes == null) {
138                                                         line_bytes = new byte[256];
139                                                 } else if (line_count == line_bytes.length) {
140                                                         byte[] new_line_bytes = new byte[line_count * 2];
141                                                         System.arraycopy(line_bytes, 0, new_line_bytes, 0, line_count);
142                                                         line_bytes = new_line_bytes;
143                                                 }
144                                                 line_bytes[line_count] = (byte) c;
145                                                 line_count++;
146                                                 if (len_read !=0 && line_count == len_read) {
147                                                         add_binary(line_bytes, line_count);
148                                                         line_count = 0;
149                                                         len_read = 0;
150                                                 }
151                                         }
152                                 }
153                         }
154                 } catch (InterruptedException e) {
155                 }
156         }
157
158
159         public String get_reply(int timeout) throws InterruptedException {
160                 boolean can_cancel = can_cancel_reply();
161                 String  reply = null;
162
163                 if (!can_cancel && remote)
164                         System.out.printf("Uh-oh, reading remote serial device from swing thread\n");
165
166                 if (remote && can_cancel)
167                         timeout = 500;
168                 try {
169                         ++in_reply;
170
171                         flush_output();
172
173                         reply_abort = false;
174                         reply_timeout_shown = false;
175                         for (;;) {
176                                 AltosLine line = reply_queue.poll(timeout, TimeUnit.MILLISECONDS);
177                                 if (line != null) {
178                                         cleanup_reply_timeout();
179                                         reply = line.line;
180                                         break;
181                                 }
182                                 if (!remote || !can_cancel || check_reply_timeout()) {
183                                         reply = null;
184                                         break;
185                                 }
186                         }
187                 } finally {
188                         --in_reply;
189                 }
190                 return reply;
191         }
192
193         public byte[] get_binary_reply(int timeout, int len) throws InterruptedException {
194                 boolean can_cancel = can_cancel_reply();
195                 byte[] bytes = null;
196
197                 synchronized(this) {
198                         len_read = len;
199                 }
200                 try {
201                         ++in_reply;
202
203                         flush_output();
204
205                         reply_abort = false;
206                         reply_timeout_shown = false;
207                         for (;;) {
208                                 bytes = binary_queue.poll(timeout, TimeUnit.MILLISECONDS);
209                                 if (bytes != null) {
210                                         cleanup_reply_timeout();
211                                         break;
212                                 }
213                                 if (!remote || !can_cancel || check_reply_timeout()) {
214                                         bytes = null;
215                                         break;
216                                 }
217                         }
218
219                 } finally {
220                         --in_reply;
221                 }
222                 return bytes;
223         }
224
225         public void add_telem(AltosLine line) throws InterruptedException {
226                 for (int e = 0; e < monitors.size(); e++) {
227                         LinkedBlockingQueue<AltosLine> q = monitors.get(e);
228                         q.put(line);
229                 }
230         }
231
232         public void add_reply(AltosLine line) throws InterruptedException {
233                 reply_queue.put (line);
234         }
235
236         public void abort_reply() {
237                 try {
238                         add_telem (new AltosLine());
239                         add_reply (new AltosLine());
240                 } catch (InterruptedException ie) {
241                 }
242         }
243
244         public void add_string(String line) throws InterruptedException {
245                 if (line.startsWith("TELEM") || line.startsWith("VERSION") || line.startsWith("CRC")) {
246                         add_telem(new AltosLine(line));
247                 } else {
248                         add_reply(new AltosLine(line));
249                 }
250         }
251
252         public void add_bytes(byte[] bytes, int len) throws InterruptedException {
253                 String  line;
254                 line = new String(bytes, 0, len, AltosLib.unicode_set);
255                 if (debug)
256                         System.out.printf("\t\t\t\t\t%s\n", line);
257                 add_string(line);
258         }
259
260         public void add_binary(byte[] bytes, int len) throws InterruptedException {
261                 byte[] dup = new byte[len];
262
263                 if (debug)
264                         System.out.printf ("\t\t\t\t\t%d:", len);
265                 for(int i = 0; i < len; i++) {
266                         dup[i] = bytes[i];
267                         if (debug)
268                                 System.out.printf(" %02x", dup[i]);
269                 }
270                 if (debug)
271                         System.out.printf("\n");
272
273                 binary_queue.put(dup);
274         }
275
276         public void flush_output() {
277                 for (String s : pending_output)
278                         System.out.print(s);
279                 pending_output.clear();
280         }
281
282         public void flush_input(int timeout) throws InterruptedException {
283                 flush_output();
284                 boolean got_some;
285
286                 do {
287                         Thread.sleep(timeout);
288                         got_some = !reply_queue.isEmpty();
289                         reply_queue.clear();
290                 } while (got_some);
291         }
292
293
294         public void flush_input() throws InterruptedException {
295                 if (remote)
296                         flush_input(500);
297                 else
298                         flush_input(100);
299         }
300
301
302         /*
303          * Various command-level operations on
304          * the link
305          */
306         public boolean monitor_mode = false;
307         public int telemetry = AltosLib.ao_telemetry_standard;
308         public double frequency;
309         public String callsign;
310         AltosConfigData config_data;
311
312         private Object config_data_lock = new Object();
313
314         private int telemetry_len() {
315                 return AltosLib.telemetry_len(telemetry);
316         }
317
318         private void set_radio_freq(int frequency) {
319                 if (monitor_mode)
320                         printf("m 0\nc F %d\nm %x\n",
321                                frequency, telemetry_len());
322                 else
323                         printf("c F %d\n", frequency);
324                 flush_output();
325         }
326
327         public void set_radio_frequency(double frequency,
328                                         boolean has_frequency,
329                                         boolean has_setting,
330                                         int cal) {
331                 if (debug)
332                         System.out.printf("set_radio_frequency %7.3f (freq %b) (set %b) %d\n", frequency, has_frequency, has_setting, cal);
333                 if (frequency == 0)
334                         return;
335                 if (has_frequency)
336                         set_radio_freq((int) Math.floor (frequency * 1000));
337                 else if (has_setting)
338                         set_radio_setting(AltosConvert.radio_frequency_to_setting(frequency, cal));
339                 else
340                         set_channel(AltosConvert.radio_frequency_to_channel(frequency));
341         }
342
343         public void set_radio_frequency(double in_frequency) throws InterruptedException, TimeoutException {
344                 frequency = in_frequency;
345                 config_data();
346                 set_radio_frequency(frequency,
347                                     config_data.radio_frequency > 0,
348                                     config_data.radio_setting > 0,
349                                     config_data.radio_calibration);
350         }
351
352         public void set_telemetry(int in_telemetry) {
353                 telemetry = in_telemetry;
354                 if (monitor_mode)
355                         printf("m 0\nm %x\n", telemetry_len());
356                 flush_output();
357         }
358
359         public void set_monitor(boolean monitor) {
360                 monitor_mode = monitor;
361                 if (monitor)
362                         printf("m %x\n", telemetry_len());
363                 else
364                         printf("m 0\n");
365                 flush_output();
366         }
367
368         private void set_channel(int channel) {
369                 if (monitor_mode)
370                         printf("m 0\nc r %d\nm %x\n",
371                                channel, telemetry_len());
372                 else
373                         printf("c r %d\n", channel);
374                 flush_output();
375         }
376
377         private void set_radio_setting(int setting) {
378                 if (monitor_mode)
379                         printf("m 0\nc R %d\nm %x\n",
380                                setting, telemetry_len());
381                 else
382                         printf("c R %d\n", setting);
383                 flush_output();
384         }
385
386         public AltosConfigData config_data() throws InterruptedException, TimeoutException {
387                 synchronized(config_data_lock) {
388                         if (config_data == null)
389                                 config_data = new AltosConfigData(this);
390                         return config_data;
391                 }
392         }
393
394         public void set_callsign(String callsign) {
395                 this.callsign = callsign;
396                 printf ("c c %s\n", callsign);
397                 flush_output();
398         }
399
400         public boolean is_loader() throws InterruptedException {
401                 boolean ret = false;
402                 printf("v\n");
403                 for (;;) {
404                         String line = get_reply();
405
406                         if (line == null)
407                                 return false;
408                         if (line.startsWith("software-version"))
409                                 break;
410                         if (line.startsWith("altos-loader"))
411                                 ret = true;
412                 }
413                 return ret;
414         }
415
416         public void to_loader() throws InterruptedException {
417                 printf("X\n");
418                 flush_output();
419                 close();
420                 Thread.sleep(1000);
421         }
422
423         public boolean remote;
424         public int serial;
425         public String name;
426
427         public void start_remote() throws TimeoutException, InterruptedException {
428                 if (frequency == 0.0)
429                         frequency = AltosPreferences.frequency(serial);
430                 if (debug)
431                         System.out.printf("start remote %7.3f\n", frequency);
432                 set_radio_frequency(frequency);
433                 set_callsign(AltosPreferences.callsign());
434                 printf("p\nE 0\n");
435                 flush_input();
436                 remote = true;
437         }
438
439         public void stop_remote() throws InterruptedException {
440                 if (debug)
441                         System.out.printf("stop remote\n");
442                 try {
443                         flush_input();
444                 } finally {
445                         printf ("~\n");
446                         flush_output();
447                 }
448                 remote = false;
449         }
450
451         public int rssi() throws TimeoutException, InterruptedException {
452                 if (remote)
453                         return 0;
454                 printf("s\n");
455                 String line = get_reply_no_dialog(5000);
456                 if (line == null)
457                         throw new TimeoutException();
458                 String[] items = line.split("\\s+");
459                 if (items.length < 2)
460                         return 0;
461                 if (!items[0].equals("RSSI:"))
462                         return 0;
463                 int rssi = Integer.parseInt(items[1]);
464                 return rssi;
465         }
466
467         public String[] adc() throws TimeoutException, InterruptedException {
468                 printf("a\n");
469                 for (;;) {
470                         String line = get_reply_no_dialog(5000);
471                         if (line == null) {
472                                 throw new TimeoutException();
473                         }
474                         if (!line.startsWith("tick:"))
475                                 continue;
476                         String[] items = line.split("\\s+");
477                         return items;
478                 }
479         }
480
481         public boolean has_monitor_battery() {
482                 return config_data.has_monitor_battery();
483         }
484
485         public double monitor_battery() throws InterruptedException {
486                 int monitor_batt = AltosLib.MISSING;
487
488                 if (config_data.has_monitor_battery()) {
489                         try {
490                         String[] items = adc();
491                         for (int i = 0; i < items.length;) {
492                                 if (items[i].equals("batt")) {
493                                         monitor_batt = Integer.parseInt(items[i+1]);
494                                         i += 2;
495                                         continue;
496                                 }
497                                 i++;
498                         }
499                         } catch (TimeoutException te) {
500                         }
501                 }
502                 if (monitor_batt == AltosLib.MISSING)
503                         return AltosLib.MISSING;
504                 return AltosConvert.cc_battery_to_voltage(monitor_batt);
505         }
506
507         public AltosLink() {
508                 callsign = "";
509                 has_error = false;
510         }
511 }