2 * Copyright © 2010 Keith Packard <keithp@keithp.com>
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.
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.
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.
23 import java.text.ParseException;
24 import java.util.concurrent.LinkedBlockingQueue;
27 * This creates a thread to capture telemetry data and write it to
30 class AltosLog implements Runnable {
32 LinkedBlockingQueue<AltosLine> input_queue;
33 LinkedBlockingQueue<String> pending_queue;
40 private void close_log_file() {
41 if (log_file != null) {
44 } catch (IOException io) {
52 if (log_thread != null) {
53 log_thread.interrupt();
62 boolean open (AltosRecord telem) throws IOException {
63 AltosFile a = new AltosFile(telem);
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()) {
70 String s = pending_queue.take();
73 } catch (InterruptedException ie) {
79 return log_file != null;
84 AltosRecord previous = null;
86 AltosLine line = input_queue.take();
87 if (line.line == null)
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))
95 serial = telem.serial;
96 flight = telem.flight;
100 } catch (ParseException pe) {
101 } catch (AltosCRCException ce) {
103 if (log_file != null) {
104 log_file.write(line.line);
105 log_file.write('\n');
108 pending_queue.put(line.line);
110 } catch (InterruptedException ie) {
111 } catch (IOException ie) {
116 public AltosLog (AltosSerial s) {
117 pending_queue = new LinkedBlockingQueue<String> ();
118 input_queue = new LinkedBlockingQueue<AltosLine> ();
119 s.add_monitor(input_queue);
123 log_thread = new Thread(this);