altosui: New AltosSerial.set_radio function sets channel/call
[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);
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                         serial_line.printf("c r %d\n", radio_channel.get());
195                         serial_line.printf("c f %d\n", radio_calibration.get());
196                         serial_line.printf("c c %s\n", callsign.get());
197                         serial_line.printf("c w\n");
198                 } catch (InterruptedException ie) {
199                 } finally {
200                         try {
201                                 stop_serial();
202                         } catch (InterruptedException ie) {
203                         }
204                 }
205         }
206
207         public void actionPerformed(ActionEvent e) {
208                 String  cmd = e.getActionCommand();
209                 try {
210                         if (cmd.equals("Save")) {
211                                 save_data();
212                                 set_ui();
213                         } else if (cmd.equals("Reset")) {
214                                 set_ui();
215                         } else if (cmd.equals("Reboot")) {
216                                 if (serial_line != null) {
217                                         start_serial();
218                                         serial_line.printf("r eboot\n");
219                                         serial_line.flush_output();
220                                         stop_serial();
221                                         serial_line.close();
222                                 }
223                         } else if (cmd.equals("Close")) {
224                                 if (serial_line != null)
225                                         serial_line.close();
226                         }
227                 } catch (InterruptedException ie) {
228                         abort();
229                 } catch (TimeoutException te) {
230                         abort();
231                 }
232         }
233
234         public void run () {
235                 try {
236                         init_ui();
237                         config_ui.make_visible();
238                 } catch (InterruptedException ie) {
239                         abort();
240                 } catch (TimeoutException te) {
241                         abort();
242                 }
243         }
244
245         public AltosConfig(JFrame given_owner) {
246                 owner = given_owner;
247
248                 serial = new int_ref(0);
249                 main_deploy = new int_ref(250);
250                 apogee_delay = new int_ref(0);
251                 radio_channel = new int_ref(0);
252                 radio_calibration = new int_ref(1186611);
253                 callsign = new string_ref("N0CALL");
254                 version = new string_ref("unknown");
255                 product = new string_ref("unknown");
256
257                 device = AltosDeviceDialog.show(owner, AltosDevice.product_any);
258                 if (device != null) {
259                         try {
260                                 serial_line = new AltosSerial(device);
261                                 if (!device.matchProduct(AltosDevice.product_telemetrum))
262                                         remote = true;
263                                 config_thread = new Thread(this);
264                                 config_thread.start();
265                         } catch (FileNotFoundException ee) {
266                                 JOptionPane.showMessageDialog(owner,
267                                                               String.format("Cannot open device \"%s\"",
268                                                                             device.toShortString()),
269                                                               "Cannot open target device",
270                                                               JOptionPane.ERROR_MESSAGE);
271                         } catch (AltosSerialInUseException si) {
272                                 JOptionPane.showMessageDialog(owner,
273                                                               String.format("Device \"%s\" already in use",
274                                                                             device.toShortString()),
275                                                               "Device in use",
276                                                               JOptionPane.ERROR_MESSAGE);
277                         } catch (IOException ee) {
278                                 JOptionPane.showMessageDialog(owner,
279                                                               device.toShortString(),
280                                                               ee.getLocalizedMessage(),
281                                                               JOptionPane.ERROR_MESSAGE);
282                         }
283                 }
284         }
285 }