blob: ab707edd40b74c46d7fa6019b43d22b48a286b77 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/*
* Copyright © 2010 Keith Packard <keithp@keithp.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
package org.altusmetrum.altoslib;
import java.io.*;
import java.text.ParseException;
import java.util.concurrent.LinkedBlockingQueue;
/*
* This creates a thread to capture telemetry data and write it to
* a log file
*/
public class AltosLog implements Runnable {
LinkedBlockingQueue<AltosLine> input_queue;
LinkedBlockingQueue<String> pending_queue;
int serial;
int flight;
FileWriter log_file;
Thread log_thread;
AltosFile file;
private void close_log_file() {
if (log_file != null) {
try {
log_file.close();
} catch (IOException io) {
}
log_file = null;
}
}
public void close() {
close_log_file();
if (log_thread != null) {
log_thread.interrupt();
log_thread = null;
}
}
public File file() {
return file;
}
boolean open (AltosRecord telem) throws IOException {
AltosFile a = new AltosFile(telem);
log_file = new FileWriter(a, true);
if (log_file != null) {
while (!pending_queue.isEmpty()) {
try {
String s = pending_queue.take();
log_file.write(s);
log_file.write('\n');
} catch (InterruptedException ie) {
}
}
log_file.flush();
file = a;
}
return log_file != null;
}
public void run () {
try {
AltosRecord previous = null;
for (;;) {
AltosLine line = input_queue.take();
if (line.line == null)
continue;
try {
AltosRecord telem = AltosTelemetry.parse(line.line, previous);
if ((telem.seen & AltosRecord.seen_flight) != 0 &&
(telem.serial != serial || telem.flight != flight || log_file == null))
{
close_log_file();
serial = telem.serial;
flight = telem.flight;
open(telem);
}
previous = telem;
} catch (ParseException pe) {
} catch (AltosCRCException ce) {
}
if (log_file != null) {
log_file.write(line.line);
log_file.write('\n');
log_file.flush();
} else
pending_queue.put(line.line);
}
} catch (InterruptedException ie) {
} catch (IOException ie) {
}
close();
}
public AltosLog (AltosLink link) {
pending_queue = new LinkedBlockingQueue<String> ();
input_queue = new LinkedBlockingQueue<AltosLine> ();
link.add_monitor(input_queue);
serial = -1;
flight = -1;
log_file = null;
log_thread = new Thread(this);
log_thread.start();
}
}
|