altosui: Start adding support for scanning radio for available devices
[fw/altos] / altosui / AltosUI.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.LinkedBlockingQueue;
30
31 import libaltosJNI.*;
32
33 public class AltosUI extends JFrame {
34         public AltosVoice voice = new AltosVoice();
35
36         public static boolean load_library(Frame frame) {
37                 if (!Altos.load_library()) {
38                         JOptionPane.showMessageDialog(frame,
39                                                       String.format("No AltOS library in \"%s\"",
40                                                                     System.getProperty("java.library.path","<undefined>")),
41                                                       "Cannot load device access library",
42                                                       JOptionPane.ERROR_MESSAGE);
43                         return false;
44                 }
45                 return true;
46         }
47
48         void telemetry_window(AltosDevice device) {
49                 try {
50                         AltosFlightReader reader = new AltosTelemetryReader(device);
51                         if (reader != null)
52                                 new AltosFlightUI(voice, reader, device.getSerial());
53                 } catch (FileNotFoundException ee) {
54                         JOptionPane.showMessageDialog(AltosUI.this,
55                                                       String.format("Cannot open device \"%s\"",
56                                                                     device.toShortString()),
57                                                       "Cannot open target device",
58                                                       JOptionPane.ERROR_MESSAGE);
59                 } catch (AltosSerialInUseException si) {
60                         JOptionPane.showMessageDialog(AltosUI.this,
61                                                       String.format("Device \"%s\" already in use",
62                                                                     device.toShortString()),
63                                                       "Device in use",
64                                                       JOptionPane.ERROR_MESSAGE);
65                 } catch (IOException ee) {
66                         JOptionPane.showMessageDialog(AltosUI.this,
67                                                       device.toShortString(),
68                                                       "Unkonwn I/O error",
69                                                       JOptionPane.ERROR_MESSAGE);
70                 }
71         }
72
73         Container       pane;
74         GridBagLayout   gridbag;
75
76         JButton addButton(int x, int y, String label) {
77                 GridBagConstraints      c;
78                 JButton                 b;
79
80                 c = new GridBagConstraints();
81                 c.gridx = x; c.gridy = y;
82                 c.fill = GridBagConstraints.BOTH;
83                 c.weightx = 1;
84                 c.weighty = 1;
85                 b = new JButton(label);
86
87                 Dimension ps = b.getPreferredSize();
88
89                 gridbag.setConstraints(b, c);
90                 add(b, c);
91                 return b;
92         }
93
94         public AltosUI() {
95
96                 load_library(null);
97
98                 java.net.URL imgURL = AltosUI.class.getResource("/altus-metrum-16x16.jpg");
99                 if (imgURL != null)
100                         setIconImage(new ImageIcon(imgURL).getImage());
101
102                 AltosPreferences.set_component(this);
103
104                 pane = getContentPane();
105                 gridbag = new GridBagLayout();
106                 pane.setLayout(gridbag);
107
108                 JButton b;
109
110                 b = addButton(0, 0, "Monitor Flight");
111                 b.addActionListener(new ActionListener() {
112                                         public void actionPerformed(ActionEvent e) {
113                                                 ConnectToDevice();
114                                         }
115                                 });
116                 b = addButton(1, 0, "Save Flight Data");
117                 b.addActionListener(new ActionListener() {
118                                         public void actionPerformed(ActionEvent e) {
119                                                 SaveFlightData();
120                                         }
121                                 });
122                 b = addButton(2, 0, "Replay Flight");
123                 b.addActionListener(new ActionListener() {
124                                         public void actionPerformed(ActionEvent e) {
125                                                 Replay();
126                                         }
127                                 });
128                 b = addButton(3, 0, "Graph Data");
129                 b.addActionListener(new ActionListener() {
130                                         public void actionPerformed(ActionEvent e) {
131                                                 GraphData();
132                                         }
133                                 });
134                 b = addButton(4, 0, "Export Data");
135                 b.addActionListener(new ActionListener() {
136                                         public void actionPerformed(ActionEvent e) {
137                                                 ExportData();
138                                         }
139                                 });
140                 b = addButton(0, 1, "Configure TeleMetrum");
141                 b.addActionListener(new ActionListener() {
142                                         public void actionPerformed(ActionEvent e) {
143                                                 ConfigureTeleMetrum();
144                                         }
145                                 });
146
147                 b = addButton(1, 1, "Configure AltosUI");
148                 b.addActionListener(new ActionListener() {
149                                 public void actionPerformed(ActionEvent e) {
150                                         ConfigureAltosUI();
151                                 }
152                         });
153
154                 b = addButton(2, 1, "Flash Image");
155                 b.addActionListener(new ActionListener() {
156                                 public void actionPerformed(ActionEvent e) {
157                                         FlashImage();
158                                 }
159                         });
160
161                 b = addButton(3, 1, "Fire Igniter");
162                 b.addActionListener(new ActionListener() {
163                                 public void actionPerformed(ActionEvent e) {
164                                         FireIgniter();
165                                 }
166                         });
167
168                 b = addButton(4, 1, "Quit");
169                 b.addActionListener(new ActionListener() {
170                                 public void actionPerformed(ActionEvent e) {
171                                         System.exit(0);
172                                 }
173                         });
174
175
176                 b = addButton(0, 2, "Scan Channels");
177                 b.addActionListener(new ActionListener() {
178                                 public void actionPerformed(ActionEvent e) {
179                                         ScanChannels();
180                                 }
181                         });
182
183                 setTitle("AltOS");
184
185                 pane.doLayout();
186                 pane.validate();
187
188                 doLayout();
189                 validate();
190
191                 setVisible(true);
192
193                 Insets i = getInsets();
194                 Dimension ps = rootPane.getPreferredSize();
195                 ps.width += i.left + i.right;
196                 ps.height += i.top + i.bottom;
197                 setPreferredSize(ps);
198                 setSize(ps);
199                 setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
200                 addWindowListener(new WindowAdapter() {
201                         @Override
202                         public void windowClosing(WindowEvent e) {
203                                 System.exit(0);
204                         }
205                 });
206         }
207
208         private void ConnectToDevice() {
209                 AltosDevice     device = AltosDeviceDialog.show(AltosUI.this,
210                                                                 Altos.product_basestation);
211
212                 if (device != null)
213                         telemetry_window(device);
214         }
215
216         void ConfigureCallsign() {
217                 String  result;
218                 result = JOptionPane.showInputDialog(AltosUI.this,
219                                                      "Configure Callsign",
220                                                      AltosPreferences.callsign());
221                 if (result != null)
222                         AltosPreferences.set_callsign(result);
223         }
224
225         void ConfigureTeleMetrum() {
226                 new AltosConfig(AltosUI.this);
227         }
228
229         void FlashImage() {
230                 AltosFlashUI.show(AltosUI.this);
231         }
232
233         void FireIgniter() {
234                 new AltosIgniteUI(AltosUI.this);
235         }
236
237         void ScanChannels() {
238                 new AltosScanUI(AltosUI.this);
239         }
240
241         /*
242          * Replay a flight from telemetry data
243          */
244         private void Replay() {
245                 AltosDataChooser chooser = new AltosDataChooser(
246                         AltosUI.this);
247
248                 AltosRecordIterable iterable = chooser.runDialog();
249                 if (iterable != null) {
250                         AltosFlightReader reader = new AltosReplayReader(iterable.iterator(),
251                                                                          chooser.filename());
252                         new AltosFlightUI(voice, reader);
253                 }
254         }
255
256         /* Connect to TeleMetrum, either directly or through
257          * a TeleDongle over the packet link
258          */
259         private void SaveFlightData() {
260                 new AltosEepromManage(AltosUI.this);
261         }
262
263         /* Load a flight log file and write out a CSV file containing
264          * all of the data in standard units
265          */
266
267         private void ExportData() {
268                 AltosDataChooser chooser;
269                 chooser = new AltosDataChooser(this);
270                 AltosRecordIterable record_reader = chooser.runDialog();
271                 if (record_reader == null)
272                         return;
273                 new AltosCSVUI(AltosUI.this, record_reader, chooser.file());
274         }
275
276         /* Load a flight log CSV file and display a pretty graph.
277          */
278
279         private void GraphData() {
280                 AltosDataChooser chooser;
281                 chooser = new AltosDataChooser(this);
282                 AltosRecordIterable record_reader = chooser.runDialog();
283                 if (record_reader == null)
284                         return;
285                 new AltosGraphUI(record_reader);
286         }
287
288         private void ConfigureAltosUI() {
289                 new AltosConfigureUI(AltosUI.this, voice);
290         }
291
292         static AltosRecordIterable open_logfile(String filename) {
293                 File file = new File (filename);
294                 try {
295                         FileInputStream in;
296
297                         in = new FileInputStream(file);
298                         if (filename.endsWith("eeprom"))
299                                 return new AltosEepromIterable(in);
300                         else
301                                 return new AltosTelemetryIterable(in);
302                 } catch (FileNotFoundException fe) {
303                         System.out.printf("Cannot open '%s'\n", filename);
304                         return null;
305                 }
306         }
307
308         static AltosWriter open_csv(String filename) {
309                 File file = new File (filename);
310                 try {
311                         return new AltosCSV(file);
312                 } catch (FileNotFoundException fe) {
313                         System.out.printf("Cannot open '%s'\n", filename);
314                         return null;
315                 }
316         }
317
318         static AltosWriter open_kml(String filename) {
319                 File file = new File (filename);
320                 try {
321                         return new AltosKML(file);
322                 } catch (FileNotFoundException fe) {
323                         System.out.printf("Cannot open '%s'\n", filename);
324                         return null;
325                 }
326         }
327
328         static final int process_csv = 1;
329         static final int process_kml = 2;
330
331         static void process_file(String input, int process) {
332                 AltosRecordIterable iterable = open_logfile(input);
333                 if (iterable == null)
334                         return;
335                 if (process == 0)
336                         process = process_csv;
337                 if ((process & process_csv) != 0) {
338                         String output = Altos.replace_extension(input,".csv");
339                         System.out.printf("Processing \"%s\" to \"%s\"\n", input, output);
340                         if (input.equals(output)) {
341                                 System.out.printf("Not processing '%s'\n", input);
342                         } else {
343                                 AltosWriter writer = open_csv("/dev/stdout");
344                                 if (writer != null) {
345                                         writer.write(iterable);
346                                         writer.close();
347                                 }
348                         }
349                 }
350                 if ((process & process_kml) != 0) {
351                         String output = Altos.replace_extension(input,".kml");
352                         System.out.printf("Processing \"%s\" to \"%s\"\n", input, output);
353                         if (input.equals(output)) {
354                                 System.out.printf("Not processing '%s'\n", input);
355                         } else {
356                                 AltosWriter writer = open_kml(output);
357                                 if (writer == null)
358                                         return;
359                                 writer.write(iterable);
360                                 writer.close();
361                         }
362                 }
363         }
364
365         public static void main(final String[] args) {
366                 int     process = 0;
367                 /* Handle batch-mode */
368         if (args.length == 1 && args[0].equals("--help")) {
369                 System.out.printf("Usage: altosui [OPTION]... [FILE]...\n");
370                 System.out.printf("  Options:\n");
371                 System.out.printf("    --fetchmaps <lat> <lon>\tpre-fetch maps for site map view\n");
372                 System.out.printf("    --replay <filename>\t\trelive the glory of past flights \n");
373                 System.out.printf("    --csv\tgenerate comma separated output for spreadsheets, etc\n");
374                 System.out.printf("    --kml\tgenerate KML output for use with Google Earth\n");
375         } else if (args.length == 3 && args[0].equals("--fetchmaps")) {
376             double lat = Double.parseDouble(args[1]);
377             double lon = Double.parseDouble(args[2]);
378             AltosSiteMap.prefetchMaps(lat, lon, 5, 5);
379         } else if (args.length == 2 && args[0].equals("--replay")) {
380                         String filename = args[1];
381                         FileInputStream in;
382                         try {
383                                 in = new FileInputStream(filename);
384                         } catch (Exception e) {
385                                 System.out.printf("Failed to open file '%s'\n", filename);
386                                 return;
387                         }
388                         AltosRecordIterable recs;
389                         AltosReplayReader reader;
390                         if (filename.endsWith("eeprom")) {
391                                 recs = new AltosEepromIterable(in);
392                         } else {
393                                 recs = new AltosTelemetryIterable(in);
394                         }
395                         reader = new AltosReplayReader(recs.iterator(), filename);
396                         AltosFlightUI flight_ui = new AltosFlightUI(new AltosVoice(), reader);
397                         flight_ui.set_exit_on_close();
398                         return;
399                 } else if (args.length > 0) {
400                         for (int i = 0; i < args.length; i++) {
401                                 if (args[i].equals("--kml"))
402                                         process |= process_kml;
403                                 else if (args[i].equals("--csv"))
404                                         process |= process_csv;
405                                 else
406                                         process_file(args[i], process);
407                         }
408                 } else {
409                         AltosUI altosui = new AltosUI();
410                         altosui.setVisible(true);
411
412                         java.util.List<AltosDevice> devices = AltosUSBDevice.list(Altos.product_basestation);
413                         for (AltosDevice device : devices)
414                                 altosui.telemetry_window(device);
415                 }
416         }
417 }