altosui: Report error message back from libaltos
[fw/altos] / altosui / AltosLog.java
1 /*
2  * Copyright © 2010 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 altosui;
19
20 import java.io.*;
21 import java.lang.*;
22 import java.util.*;
23 import java.text.ParseException;
24 import java.util.concurrent.LinkedBlockingQueue;
25
26 /*
27  * This creates a thread to capture telemetry data and write it to
28  * a log file
29  */
30 class AltosLog implements Runnable {
31
32         LinkedBlockingQueue<AltosLine>  input_queue;
33         LinkedBlockingQueue<String>     pending_queue;
34         int                             serial;
35         int                             flight;
36         FileWriter                      log_file;
37         Thread                          log_thread;
38         AltosFile                       file;
39
40         private void close_log_file() {
41                 if (log_file != null) {
42                         try {
43                                 log_file.close();
44                         } catch (IOException io) {
45                         }
46                         log_file = null;
47                 }
48         }
49
50         void close() {
51                 close_log_file();
52                 if (log_thread != null) {
53                         log_thread.interrupt();
54                         log_thread = null;
55                 }
56         }
57
58         File file() {
59                 return file;
60         }
61
62         boolean open (AltosRecord telem) throws IOException {
63                 AltosFile       a = new AltosFile(telem);
64
65                 System.out.printf("open %s\n", a.toString());
66                 log_file = new FileWriter(a, true);
67                 if (log_file != null) {
68                         while (!pending_queue.isEmpty()) {
69                                 try {
70                                         String s = pending_queue.take();
71                                         log_file.write(s);
72                                         log_file.write('\n');
73                                 } catch (InterruptedException ie) {
74                                 }
75                         }
76                         log_file.flush();
77                         file = a;
78                 }
79                 return log_file != null;
80         }
81
82         public void run () {
83                 try {
84                         AltosRecord     previous = null;
85                         for (;;) {
86                                 AltosLine       line = input_queue.take();
87                                 if (line.line == null)
88                                         continue;
89                                 try {
90                                         AltosRecord     telem = AltosTelemetry.parse(line.line, previous);
91                                         if (telem.serial != 0 && telem.flight != 0 &&
92                                             (telem.serial != serial || telem.flight != flight || log_file == null))
93                                         {
94                                                 close_log_file();
95                                                 serial = telem.serial;
96                                                 flight = telem.flight;
97                                                 open(telem);
98                                         }
99                                         previous = telem;
100                                 } catch (ParseException pe) {
101                                 } catch (AltosCRCException ce) {
102                                 }
103                                 if (log_file != null) {
104                                         log_file.write(line.line);
105                                         log_file.write('\n');
106                                         log_file.flush();
107                                 } else
108                                         pending_queue.put(line.line);
109                         }
110                 } catch (InterruptedException ie) {
111                 } catch (IOException ie) {
112                 }
113                 close();
114         }
115
116         public AltosLog (AltosSerial s) {
117                 pending_queue = new LinkedBlockingQueue<String> ();
118                 input_queue = new LinkedBlockingQueue<AltosLine> ();
119                 s.add_monitor(input_queue);
120                 serial = -1;
121                 flight = -1;
122                 log_file = null;
123                 log_thread = new Thread(this);
124                 log_thread.start();
125         }
126 }