altosui: Add Configure Ground Station dialog (trac #29)
[fw/altos] / altosui / AltosConfigTD.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 AltosConfigTD implements 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         int_ref         serial;
67         int_ref         radio_channel;
68         int_ref         radio_calibration;
69         int_ref         radio_setting;
70         int_ref         radio_frequency;
71         string_ref      config_version;
72         string_ref      version;
73         string_ref      product;
74         AltosConfigTDUI config_ui;
75         boolean         serial_started;
76         boolean         made_visible;
77
78         boolean get_int(String line, String label, int_ref x) {
79                 if (line.startsWith(label)) {
80                         try {
81                                 String tail = line.substring(label.length()).trim();
82                                 String[] tokens = tail.split("\\s+");
83                                 if (tokens.length > 0) {
84                                         int     i = Integer.parseInt(tokens[0]);
85                                         x.set(i);
86                                         return true;
87                                 }
88                         } catch (NumberFormatException ne) {
89                         }
90                 }
91                 return false;
92         }
93
94         boolean get_string(String line, String label, string_ref s) {
95                 if (line.startsWith(label)) {
96                         String  quoted = line.substring(label.length()).trim();
97
98                         if (quoted.startsWith("\""))
99                                 quoted = quoted.substring(1);
100                         if (quoted.endsWith("\""))
101                                 quoted = quoted.substring(0,quoted.length()-1);
102                         s.set(quoted);
103                         return true;
104                 } else {
105                         return false;
106                 }
107         }
108
109         void start_serial() throws InterruptedException, TimeoutException {
110                 serial_started = true;
111         }
112
113         void stop_serial() throws InterruptedException {
114                 if (!serial_started)
115                         return;
116                 serial_started = false;
117         }
118
119         void update_ui() {
120                 config_ui.set_serial(serial.get());
121                 config_ui.set_product(product.get());
122                 config_ui.set_version(version.get());
123                 config_ui.set_radio_frequency(frequency());
124                 config_ui.set_radio_calibration(radio_calibration.get());
125                 config_ui.set_clean();
126                 if (!made_visible) {
127                         made_visible = true;
128                         config_ui.make_visible();
129                 }
130         }
131
132         void process_line(String line) {
133                 if (line == null) {
134                         abort();
135                         return;
136                 }
137                 if (line.equals("all finished")) {
138                         if (serial_line != null)
139                                 update_ui();
140                         return;
141                 }
142                 get_string(line, "Config version", config_version);
143                 get_int(line, "serial-number", serial);
144                 get_int(line, "Radio channel:", radio_channel);
145                 if (get_int(line, "Radio cal:", radio_calibration))
146                         System.out.printf("got radio cal %d\n", radio_calibration.get());
147                 get_int(line, "Radio setting:", radio_setting);
148                 get_string(line,"software-version", version);
149                 get_string(line,"product", product);
150         }
151
152         final static int        serial_mode_read = 0;
153         final static int        serial_mode_save = 1;
154         final static int        serial_mode_reboot = 2;
155
156         class SerialData implements Runnable {
157                 AltosConfigTD   config;
158                 int             serial_mode;
159
160                 void process_line(String line) {
161                         config.process_line(line);
162                 }
163                 void callback(String in_line) {
164                         final String line = in_line;
165                         Runnable r = new Runnable() {
166                                         public void run() {
167                                                 process_line(line);
168                                         }
169                                 };
170                         SwingUtilities.invokeLater(r);
171                 }
172
173                 void reset_data() {
174                         serial.set(0);
175                         radio_channel.set(0);
176                         radio_setting.set(0);
177                         radio_frequency.set(0);
178                         radio_calibration.set(1186611);
179                         config_version.set("0.0");
180                         version.set("unknown");
181                         product.set("unknown");
182                 }
183
184                 void get_data() {
185                         try {
186                                 boolean been_there = false;
187                                 config.start_serial();
188                                 reset_data();
189
190                                 for (;;) {
191                                         config.serial_line.printf("c s\nf\nl\nv\n");
192                                         for (;;) {
193                                                 try {
194                                                         String line = config.serial_line.get_reply(5000);
195                                                         if (line == null)
196                                                                 stop_serial();
197                                                         callback(line);
198                                                         if (line.startsWith("software-version"))
199                                                                 break;
200                                                 } catch (Exception e) {
201                                                         break;
202                                                 }
203                                         }
204                                         System.out.printf("config_version %s\n", config_version.get());
205                                         if (been_there)
206                                                 break;
207                                         if (!config_version.get().equals("0.0"))
208                                                 break;
209                                         been_there = true;
210                                         config.serial_line.printf("C\n ");
211                                         config.serial_line.flush_input();
212                                 }
213                         } catch (InterruptedException ie) {
214                         } catch (TimeoutException te) {
215                         } finally {
216                                 try {
217                                         stop_serial();
218                                 } catch (InterruptedException ie) {
219                                 }
220                         }
221                         double  pref_frequency = AltosPreferences.frequency(serial.get());
222                         if (pref_frequency != 0)
223                                 radio_frequency.set((int) Math.floor (pref_frequency * 1000 + 0.5));
224                         callback("all finished");
225                 }
226
227                 void save_data() {
228                         double frequency = frequency();
229                         if (frequency != 0)
230                                 AltosPreferences.set_frequency(serial.get(),
231                                                                frequency);
232                 }
233
234                 public void run () {
235                         switch (serial_mode) {
236                         case serial_mode_save:
237                                 save_data();
238                                 /* fall through ... */
239                         case serial_mode_read:
240                                 get_data();
241                                 break;
242                         }
243                 }
244
245                 public SerialData(AltosConfigTD in_config, int in_serial_mode) {
246                         config = in_config;
247                         serial_mode = in_serial_mode;
248                 }
249         }
250
251         void run_serial_thread(int serial_mode) {
252                 SerialData      sd = new SerialData(this, serial_mode);
253                 Thread          st = new Thread(sd);
254                 st.start();
255         }
256
257         void init_ui () throws InterruptedException, TimeoutException {
258                 config_ui = new AltosConfigTDUI(owner);
259                 config_ui.addActionListener(this);
260                 serial_line.set_frame(owner);
261                 set_ui();
262         }
263
264         void abort() {
265                 serial_line.close();
266                 serial_line = null;
267                 JOptionPane.showMessageDialog(owner,
268                                               String.format("Connection to \"%s\" failed",
269                                                             device.toShortString()),
270                                               "Connection Failed",
271                                               JOptionPane.ERROR_MESSAGE);
272                 config_ui.setVisible(false);
273         }
274
275         void set_ui() throws InterruptedException, TimeoutException {
276                 if (serial_line != null)
277                         run_serial_thread(serial_mode_read);
278                 else
279                         update_ui();
280         }
281
282         double frequency() {
283                 return AltosConvert.radio_to_frequency(radio_frequency.get(),
284                                                        radio_setting.get(),
285                                                        radio_calibration.get(),
286                                                        radio_channel.get());
287         }
288
289         void set_frequency(double freq) {
290                 int     frequency = radio_frequency.get();
291                 int     setting = radio_setting.get();
292
293                 if (frequency > 0) {
294                         radio_frequency.set((int) Math.floor (freq * 1000 + 0.5));
295                 } else if (setting > 0) {
296                         radio_setting.set(AltosConvert.radio_frequency_to_setting(freq,
297                                                                                   radio_calibration.get()));
298                         radio_channel.set(0);
299                 } else {
300                         radio_channel.set(AltosConvert.radio_frequency_to_channel(freq));
301                 }
302         }
303
304         void save_data() {
305
306                 set_frequency(config_ui.radio_frequency());
307                 run_serial_thread(serial_mode_save);
308         }
309
310         public void actionPerformed(ActionEvent e) {
311                 String  cmd = e.getActionCommand();
312                 try {
313                         if (cmd.equals("Save")) {
314                                 save_data();
315                         } else if (cmd.equals("Reset")) {
316                                 set_ui();
317                         } else if (cmd.equals("Reboot")) {
318                                 if (serial_line != null)
319                                         run_serial_thread(serial_mode_reboot);
320                         } else if (cmd.equals("Close")) {
321                                 if (serial_line != null)
322                                         serial_line.close();
323                         }
324                 } catch (InterruptedException ie) {
325                         abort();
326                 } catch (TimeoutException te) {
327                         abort();
328                 }
329         }
330
331         public AltosConfigTD(JFrame given_owner) {
332                 owner = given_owner;
333
334                 serial = new int_ref(0);
335                 radio_channel = new int_ref(0);
336                 radio_setting = new int_ref(0);
337                 radio_frequency = new int_ref(0);
338                 radio_calibration = new int_ref(1186611);
339                 config_version = new string_ref("0.0");
340                 version = new string_ref("unknown");
341                 product = new string_ref("unknown");
342
343                 device = AltosDeviceDialog.show(owner, Altos.product_basestation);
344                 if (device != null) {
345                         try {
346                                 serial_line = new AltosSerial(device);
347                                 try {
348                                         init_ui();
349                                 } catch (InterruptedException ie) {
350                                         abort();
351                                 } catch (TimeoutException te) {
352                                         abort();
353                                 }
354                         } catch (FileNotFoundException ee) {
355                                 JOptionPane.showMessageDialog(owner,
356                                                               ee.getMessage(),
357                                                               "Cannot open target device",
358                                                               JOptionPane.ERROR_MESSAGE);
359                         } catch (AltosSerialInUseException si) {
360                                 JOptionPane.showMessageDialog(owner,
361                                                               String.format("Device \"%s\" already in use",
362                                                                             device.toShortString()),
363                                                               "Device in use",
364                                                               JOptionPane.ERROR_MESSAGE);
365                         } catch (IOException ee) {
366                                 JOptionPane.showMessageDialog(owner,
367                                                               device.toShortString(),
368                                                               ee.getLocalizedMessage(),
369                                                               JOptionPane.ERROR_MESSAGE);
370                         }
371                 }
372         }
373 }