altosui: switch channel selector to combo box. Shorten displayed device names
[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_channel(AltosPreferences.channel(device.getSerial()));
113                         serial_line.set_callsign(AltosPreferences.callsign());
114                         serial_line.printf("p\n");
115                         serial_line.flush_input();
116                 }
117         }
118
119         void stop_serial() throws InterruptedException {
120                 if (remote) {
121                         serial_line.printf("~");
122                         serial_line.flush_output();
123                 }
124         }
125
126         void get_data() throws InterruptedException, TimeoutException {
127                 try {
128                         start_serial();
129                         serial_line.printf("c s\nv\n");
130                         for (;;) {
131                                 String line = serial_line.get_reply(1000);
132                                 if (line == null)
133                                         throw new TimeoutException();
134                                 get_int(line, "serial-number", serial);
135                                 get_int(line, "Main deploy:", main_deploy);
136                                 get_int(line, "Apogee delay:", apogee_delay);
137                                 get_int(line, "Radio channel:", radio_channel);
138                                 get_int(line, "Radio cal:", radio_calibration);
139                                 get_string(line, "Callsign:", callsign);
140                                 get_string(line,"software-version", version);
141                                 get_string(line,"product", product);
142
143                                 /* signals the end of the version info */
144                                 if (line.startsWith("software-version"))
145                                         break;
146                         }
147                 } finally {
148                         stop_serial();
149                 }
150         }
151
152         void init_ui () throws InterruptedException, TimeoutException {
153                 config_ui = new AltosConfigUI(owner);
154                 config_ui.addActionListener(this);
155                 set_ui();
156         }
157
158         void abort() {
159                 JOptionPane.showMessageDialog(owner,
160                                               String.format("Connection to \"%s\" failed",
161                                                             device.toShortString()),
162                                               "Connection Failed",
163                                               JOptionPane.ERROR_MESSAGE);
164                 serial_line.close();
165                 serial_line = null;
166         }
167
168         void set_ui() throws InterruptedException, TimeoutException {
169                 if (serial_line != null)
170                         get_data();
171                 config_ui.set_serial(serial.get());
172                 config_ui.set_product(product.get());
173                 config_ui.set_version(version.get());
174                 config_ui.set_main_deploy(main_deploy.get());
175                 config_ui.set_apogee_delay(apogee_delay.get());
176                 config_ui.set_radio_channel(radio_channel.get());
177                 config_ui.set_radio_calibration(radio_calibration.get());
178                 config_ui.set_callsign(callsign.get());
179                 config_ui.set_clean();
180         }
181
182         void run_dialog() {
183         }
184
185         void save_data() {
186                 main_deploy.set(config_ui.main_deploy());
187                 apogee_delay.set(config_ui.apogee_delay());
188                 radio_channel.set(config_ui.radio_channel());
189                 radio_calibration.set(config_ui.radio_calibration());
190                 callsign.set(config_ui.callsign());
191                 try {
192                         start_serial();
193                         serial_line.printf("c m %d\n", main_deploy.get());
194                         serial_line.printf("c d %d\n", apogee_delay.get());
195                         serial_line.printf("c r %d\n", radio_channel.get());
196                         serial_line.printf("c f %d\n", radio_calibration.get());
197                         serial_line.printf("c c %s\n", callsign.get());
198                         serial_line.printf("c w\n");
199                 } catch (InterruptedException ie) {
200                 } finally {
201                         try {
202                                 stop_serial();
203                         } catch (InterruptedException ie) {
204                         }
205                 }
206         }
207
208         public void actionPerformed(ActionEvent e) {
209                 String  cmd = e.getActionCommand();
210                 try {
211                         if (cmd.equals("Save")) {
212                                 save_data();
213                                 set_ui();
214                         } else if (cmd.equals("Reset")) {
215                                 set_ui();
216                         } else if (cmd.equals("Reboot")) {
217                                 if (serial_line != null) {
218                                         start_serial();
219                                         serial_line.printf("r eboot\n");
220                                         serial_line.flush_output();
221                                         stop_serial();
222                                         serial_line.close();
223                                 }
224                         } else if (cmd.equals("Close")) {
225                                 if (serial_line != null)
226                                         serial_line.close();
227                         }
228                 } catch (InterruptedException ie) {
229                         abort();
230                 } catch (TimeoutException te) {
231                         abort();
232                 }
233         }
234
235         public void run () {
236                 try {
237                         init_ui();
238                         config_ui.make_visible();
239                 } catch (InterruptedException ie) {
240                         abort();
241                 } catch (TimeoutException te) {
242                         abort();
243                 }
244         }
245
246         public AltosConfig(JFrame given_owner) {
247                 owner = given_owner;
248
249                 serial = new int_ref(0);
250                 main_deploy = new int_ref(250);
251                 apogee_delay = new int_ref(0);
252                 radio_channel = new int_ref(0);
253                 radio_calibration = new int_ref(1186611);
254                 callsign = new string_ref("N0CALL");
255                 version = new string_ref("unknown");
256                 product = new string_ref("unknown");
257
258                 device = AltosDeviceDialog.show(owner, AltosDevice.product_any);
259                 if (device != null) {
260                         try {
261                                 serial_line = new AltosSerial(device);
262                                 if (!device.matchProduct(AltosDevice.product_telemetrum))
263                                         remote = true;
264                                 config_thread = new Thread(this);
265                                 config_thread.start();
266                         } catch (FileNotFoundException ee) {
267                                 JOptionPane.showMessageDialog(owner,
268                                                               String.format("Cannot open device \"%s\"",
269                                                                             device.toShortString()),
270                                                               "Cannot open target device",
271                                                               JOptionPane.ERROR_MESSAGE);
272                         } catch (AltosSerialInUseException si) {
273                                 JOptionPane.showMessageDialog(owner,
274                                                               String.format("Device \"%s\" already in use",
275                                                                             device.toShortString()),
276                                                               "Device in use",
277                                                               JOptionPane.ERROR_MESSAGE);
278                         } catch (IOException ee) {
279                                 JOptionPane.showMessageDialog(owner,
280                                                               device.toShortString(),
281                                                               ee.getLocalizedMessage(),
282                                                               JOptionPane.ERROR_MESSAGE);
283                         }
284                 }
285         }
286 }