altoslib: Call state.set_serial first for telemetry parsing
[fw/altos] / altoslib / 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 org.altusmetrum.altoslib_4;
19
20 import java.io.*;
21 import java.text.*;
22 import java.util.concurrent.*;
23
24 /*
25  * This creates a thread to capture telemetry data and write it to
26  * a log file
27  */
28 public class AltosLog implements Runnable {
29
30         LinkedBlockingQueue<AltosLine>  input_queue;
31         LinkedBlockingQueue<String>     pending_queue;
32         int                             serial;
33         int                             flight;
34         int                             receiver_serial;
35         FileWriter                      log_file;
36         Thread                          log_thread;
37         AltosFile                       file;
38         AltosLink                       link;
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         public void close() {
51                 close_log_file();
52                 if (log_thread != null) {
53                         log_thread.interrupt();
54                         log_thread = null;
55                 }
56         }
57
58         public File file() {
59                 return file;
60         }
61
62         boolean open (AltosState state) throws IOException, InterruptedException {
63                 AltosFile       a = new AltosFile(state);
64
65                 log_file = new FileWriter(a, true);
66                 if (log_file != null) {
67                         while (!pending_queue.isEmpty()) {
68                                 String s = pending_queue.take();
69                                 log_file.write(s);
70                                 log_file.write('\n');
71                         }
72                         log_file.flush();
73                         file = a;
74                 }
75                 return log_file != null;
76         }
77
78         public void run () {
79                 try {
80                         AltosState      state = new AltosState();
81                         AltosConfigData receiver_config = link.config_data();
82                         state.set_receiver_serial(receiver_config.serial);
83                         for (;;) {
84                                 AltosLine       line = input_queue.take();
85                                 if (line.line == null)
86                                         continue;
87                                 try {
88                                         AltosTelemetry  telem = AltosTelemetry.parse(line.line);
89                                         state = state.clone();
90                                         telem.update_state(state);
91                                         if (state.serial != serial || state.flight != flight || log_file == null)
92                                         {
93                                                 close_log_file();
94                                                 serial = state.serial;
95                                                 flight = state.flight;
96                                                 if (state.serial != AltosLib.MISSING && state.flight != AltosLib.MISSING)
97                                                         open(state);
98                                         }
99                                 } catch (ParseException pe) {
100                                 } catch (AltosCRCException ce) {
101                                 }
102                                 if (log_file != null) {
103                                         log_file.write(line.line);
104                                         log_file.write('\n');
105                                         log_file.flush();
106                                 } else
107                                         pending_queue.put(line.line);
108                         }
109                 } catch (InterruptedException ie) {
110                 } catch (TimeoutException te) {
111                 } catch (IOException ie) {
112                 }
113                 close();
114         }
115
116         public AltosLog (AltosLink link) {
117                 pending_queue = new LinkedBlockingQueue<String> ();
118                 input_queue = new LinkedBlockingQueue<AltosLine> ();
119                 link.add_monitor(input_queue);
120                 serial = -1;
121                 flight = -1;
122                 this.link = link;
123                 log_file = null;
124                 log_thread = new Thread(this);
125                 log_thread.start();
126         }
127 }