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