altosui: Have single radio_to_frequency function
[fw/altos] / altosui / AltosTelemetryReader.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.lang.*;
21 import java.text.*;
22 import java.io.*;
23 import java.util.concurrent.*;
24
25 class AltosTelemetryReader extends AltosFlightReader {
26         AltosDevice     device;
27         AltosSerial     serial;
28         AltosLog        log;
29         AltosRecord     previous;
30         AltosConfigData config_data;
31         double          frequency;
32         int             telemetry;
33
34         LinkedBlockingQueue<AltosLine> telem;
35
36         AltosRecord read() throws InterruptedException, ParseException, AltosCRCException, IOException {
37                 AltosLine l = telem.take();
38                 if (l.line == null)
39                         throw new IOException("IO error");
40                 AltosRecord     next = AltosTelemetry.parse(l.line, previous);
41                 previous = next;
42                 return next;
43         }
44
45         void flush() {
46                 telem.clear();
47         }
48
49         void close(boolean interrupted) {
50                 serial.remove_monitor(telem);
51                 log.close();
52                 serial.close();
53         }
54
55         public void set_frequency(double in_frequency) throws InterruptedException, TimeoutException {
56                 frequency = in_frequency;
57                 serial.set_radio_frequency(frequency);
58         }
59
60         void save_frequency() {
61                 AltosPreferences.set_frequency(device.getSerial(), frequency);
62         }
63
64         void set_telemetry(int in_telemetry) {
65                 telemetry = in_telemetry;
66                 serial.set_telemetry(telemetry);
67         }
68
69         void save_telemetry() {
70                 AltosPreferences.set_telemetry(device.getSerial(), telemetry);
71         }
72
73         public AltosTelemetryReader (AltosDevice in_device)
74                 throws FileNotFoundException, AltosSerialInUseException, IOException, InterruptedException, TimeoutException {
75                 device = in_device;
76                 serial = new AltosSerial(device);
77                 log = new AltosLog(serial);
78                 name = device.toShortString();
79                 previous = null;
80
81                 telem = new LinkedBlockingQueue<AltosLine>();
82                 frequency = AltosPreferences.frequency(device.getSerial());
83                 set_frequency(frequency);
84                 telemetry = AltosPreferences.telemetry(device.getSerial());
85                 set_telemetry(telemetry);
86                 serial.set_callsign(AltosPreferences.callsign());
87                 serial.add_monitor(telem);
88         }
89 }