altosui: Disable radio configation over packet link.
[fw/altos] / ao-tools / altosui / AltosConfig.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.awt.*;
21 import java.awt.event.*;
22 import javax.swing.*;
23 import javax.swing.filechooser.FileNameExtensionFilter;
24 import javax.swing.table.*;
25 import java.io.*;
26 import java.util.*;
27 import java.text.*;
28 import java.util.prefs.*;
29 import java.util.concurrent.*;
30
31 import libaltosJNI.*;
32
33 public class AltosConfig implements Runnable, ActionListener {
34
35         class int_ref {
36                 int     value;
37
38                 public int get() {
39                         return value;
40                 }
41                 public void set(int i) {
42                         value = i;
43                 }
44                 public int_ref(int i) {
45                         value = i;
46                 }
47         }
48
49         class string_ref {
50                 String  value;
51
52                 public String get() {
53                         return value;
54                 }
55                 public void set(String i) {
56                         value = i;
57                 }
58                 public string_ref(String i) {
59                         value = i;
60                 }
61         }
62
63         JFrame          owner;
64         AltosDevice     device;
65         AltosSerial     serial_line;
66         boolean         remote;
67         Thread          config_thread;
68         int_ref         serial;
69         int_ref         main_deploy;
70         int_ref         apogee_delay;
71         int_ref         radio_channel;
72         int_ref         radio_calibration;
73         string_ref      version;
74         string_ref      product;
75         string_ref      callsign;
76         AltosConfigUI   config_ui;
77
78
79         boolean get_int(String line, String label, int_ref x) {
80                 if (line.startsWith(label)) {
81                         try {
82                                 String tail = line.substring(label.length()).trim();
83                                 String[] tokens = tail.split("\\s+");
84                                 if (tokens.length > 0) {
85                                         int     i = Integer.parseInt(tokens[0]);
86                                         x.set(i);
87                                         return true;
88                                 }
89                         } catch (NumberFormatException ne) {
90                         }
91                 }
92                 return false;
93         }
94
95         boolean get_string(String line, String label, string_ref s) {
96                 if (line.startsWith(label)) {
97                         String  quoted = line.substring(label.length()).trim();
98
99                         if (quoted.startsWith("\""))
100                                 quoted = quoted.substring(1);
101                         if (quoted.endsWith("\""))
102                                 quoted = quoted.substring(0,quoted.length()-1);
103                         s.set(quoted);
104                         return true;
105                 } else {
106                         return false;
107                 }
108         }
109
110         void start_serial() throws InterruptedException {
111                 if (remote) {
112                         serial_line.set_radio();
113                         serial_line.printf("p\nE 0\n");
114                         serial_line.flush_input();
115                 }
116         }
117
118         void stop_serial() throws InterruptedException {
119                 if (remote) {
120                         serial_line.printf("~");
121                         serial_line.flush_output();
122                 }
123         }
124
125         void get_data() throws InterruptedException, TimeoutException {
126                 try {
127                         start_serial();
128                         serial_line.printf("c s\nv\n");
129                         for (;;) {
130                                 String line = serial_line.get_reply(5000);
131                                 if (line == null)
132                                         throw new TimeoutException();
133                                 get_int(line, "serial-number", serial);
134                                 get_int(line, "Main deploy:", main_deploy);
135                                 get_int(line, "Apogee delay:", apogee_delay);
136                                 get_int(line, "Radio channel:", radio_channel);
137                                 get_int(line, "Radio cal:", radio_calibration);
138                                 get_string(line, "Callsign:", callsign);
139                                 get_string(line,"software-version", version);
140                                 get_string(line,"product", product);
141
142                                 /* signals the end of the version info */
143                                 if (line.startsWith("software-version"))
144                                         break;
145                         }
146                 } finally {
147                         stop_serial();
148                 }
149         }
150
151         void init_ui () throws InterruptedException, TimeoutException {
152                 config_ui = new AltosConfigUI(owner, remote);
153                 config_ui.addActionListener(this);
154                 set_ui();
155         }
156
157         void abort() {
158                 JOptionPane.showMessageDialog(owner,
159                                               String.format("Connection to \"%s\" failed",
160                                                             device.toShortString()),
161                                               "Connection Failed",
162                                               JOptionPane.ERROR_MESSAGE);
163                 serial_line.close();
164                 serial_line = null;
165         }
166
167         void set_ui() throws InterruptedException, TimeoutException {
168                 if (serial_line != null)
169                         get_data();
170                 config_ui.set_serial(serial.get());
171                 config_ui.set_product(product.get());
172                 config_ui.set_version(version.get());
173                 config_ui.set_main_deploy(main_deploy.get());
174                 config_ui.set_apogee_delay(apogee_delay.get());
175                 config_ui.set_radio_channel(radio_channel.get());
176                 config_ui.set_radio_calibration(radio_calibration.get());
177                 config_ui.set_callsign(callsign.get());
178                 config_ui.set_clean();
179         }
180
181         void run_dialog() {
182         }
183
184         void save_data() {
185                 main_deploy.set(config_ui.main_deploy());
186                 apogee_delay.set(config_ui.apogee_delay());
187                 radio_channel.set(config_ui.radio_channel());
188                 radio_calibration.set(config_ui.radio_calibration());
189                 callsign.set(config_ui.callsign());
190                 try {
191                         start_serial();
192                         serial_line.printf("c m %d\n", main_deploy.get());
193                         serial_line.printf("c d %d\n", apogee_delay.get());
194                         if (!remote) {
195                                 serial_line.printf("c r %d\n", radio_channel.get());
196                                 serial_line.printf("c f %d\n", radio_calibration.get());
197                         }
198                         serial_line.printf("c c %s\n", callsign.get());
199                         serial_line.printf("c w\n");
200                 } catch (InterruptedException ie) {
201                 } finally {
202                         try {
203                                 stop_serial();
204                         } catch (InterruptedException ie) {
205                         }
206                 }
207         }
208
209         public void actionPerformed(ActionEvent e) {
210                 String  cmd = e.getActionCommand();
211                 try {
212                         if (cmd.equals("Save")) {
213                                 save_data();
214                                 set_ui();
215                         } else if (cmd.equals("Reset")) {
216                                 set_ui();
217                         } else if (cmd.equals("Reboot")) {
218                                 if (serial_line != null) {
219                                         start_serial();
220                                         serial_line.printf("r eboot\n");
221                                         serial_line.flush_output();
222                                         stop_serial();
223                                         serial_line.close();
224                                 }
225                         } else if (cmd.equals("Close")) {
226                                 if (serial_line != null)
227                                         serial_line.close();
228                         }
229                 } catch (InterruptedException ie) {
230                         abort();
231                 } catch (TimeoutException te) {
232                         abort();
233                 }
234         }
235
236         public void run () {
237                 try {
238                         init_ui();
239                         config_ui.make_visible();
240                 } catch (InterruptedException ie) {
241                         abort();
242                 } catch (TimeoutException te) {
243                         abort();
244                 }
245         }
246
247         public AltosConfig(JFrame given_owner) {
248                 owner = given_owner;
249
250                 serial = new int_ref(0);
251                 main_deploy = new int_ref(250);
252                 apogee_delay = new int_ref(0);
253                 radio_channel = new int_ref(0);
254                 radio_calibration = new int_ref(1186611);
255                 callsign = new string_ref("N0CALL");
256                 version = new string_ref("unknown");
257                 product = new string_ref("unknown");
258
259                 device = AltosDeviceDialog.show(owner, AltosDevice.product_any);
260                 if (device != null) {
261                         try {
262                                 serial_line = new AltosSerial(device);
263                                 if (!device.matchProduct(AltosDevice.product_telemetrum))
264                                         remote = true;
265                                 config_thread = new Thread(this);
266                                 config_thread.start();
267                         } catch (FileNotFoundException ee) {
268                                 JOptionPane.showMessageDialog(owner,
269                                                               String.format("Cannot open device \"%s\"",
270                                                                             device.toShortString()),
271                                                               "Cannot open target device",
272                                                               JOptionPane.ERROR_MESSAGE);
273                         } catch (AltosSerialInUseException si) {
274                                 JOptionPane.showMessageDialog(owner,
275                                                               String.format("Device \"%s\" already in use",
276                                                                             device.toShortString()),
277                                                               "Device in use",
278                                                               JOptionPane.ERROR_MESSAGE);
279                         } catch (IOException ee) {
280                                 JOptionPane.showMessageDialog(owner,
281                                                               device.toShortString(),
282                                                               ee.getLocalizedMessage(),
283                                                               JOptionPane.ERROR_MESSAGE);
284                         }
285                 }
286         }
287 }