altosui: Add idle monitor dialog
[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                 b = addButton(1, 2, "Load Maps");
184                 b.addActionListener(new ActionListener() {
185                                 public void actionPerformed(ActionEvent e) {
186                                         LoadMaps();
187                                 }
188                         });
189
190                 b = addButton(2, 2, "Monitor Idle");
191                 b.addActionListener(new ActionListener() {
192                                 public void actionPerformed(ActionEvent e) {
193                                         IdleMonitor();
194                                 }
195                         });
196
197                 setTitle("AltOS");
198
199                 pane.doLayout();
200                 pane.validate();
201
202                 doLayout();
203                 validate();
204
205                 setVisible(true);
206
207                 Insets i = getInsets();
208                 Dimension ps = rootPane.getPreferredSize();
209                 ps.width += i.left + i.right;
210                 ps.height += i.top + i.bottom;
211                 setPreferredSize(ps);
212                 setSize(ps);
213                 setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
214                 addWindowListener(new WindowAdapter() {
215                         @Override
216                         public void windowClosing(WindowEvent e) {
217                                 System.exit(0);
218                         }
219                 });
220         }
221
222         private void ConnectToDevice() {
223                 AltosDevice     device = AltosDeviceDialog.show(AltosUI.this,
224                                                                 Altos.product_basestation);
225
226                 if (device != null)
227                         telemetry_window(device);
228         }
229
230         void ConfigureCallsign() {
231                 String  result;
232                 result = JOptionPane.showInputDialog(AltosUI.this,
233                                                      "Configure Callsign",
234                                                      AltosPreferences.callsign());
235                 if (result != null)
236                         AltosPreferences.set_callsign(result);
237         }
238
239         void ConfigureTeleMetrum() {
240                 new AltosConfig(AltosUI.this);
241         }
242
243         void FlashImage() {
244                 AltosFlashUI.show(AltosUI.this);
245         }
246
247         void FireIgniter() {
248                 new AltosIgniteUI(AltosUI.this);
249         }
250
251         void ScanChannels() {
252                 new AltosScanUI(AltosUI.this);
253         }
254
255         void LoadMaps() {
256                 new AltosSiteMapPreload(AltosUI.this);
257         }
258
259         /*
260          * Replay a flight from telemetry data
261          */
262         private void Replay() {
263                 AltosDataChooser chooser = new AltosDataChooser(
264                         AltosUI.this);
265
266                 AltosRecordIterable iterable = chooser.runDialog();
267                 if (iterable != null) {
268                         AltosFlightReader reader = new AltosReplayReader(iterable.iterator(),
269                                                                          chooser.filename());
270                         new AltosFlightUI(voice, reader);
271                 }
272         }
273
274         /* Connect to TeleMetrum, either directly or through
275          * a TeleDongle over the packet link
276          */
277         private void SaveFlightData() {
278                 new AltosEepromManage(AltosUI.this);
279         }
280
281         /* Load a flight log file and write out a CSV file containing
282          * all of the data in standard units
283          */
284
285         private void ExportData() {
286                 AltosDataChooser chooser;
287                 chooser = new AltosDataChooser(this);
288                 AltosRecordIterable record_reader = chooser.runDialog();
289                 if (record_reader == null)
290                         return;
291                 new AltosCSVUI(AltosUI.this, record_reader, chooser.file());
292         }
293
294         /* Load a flight log CSV file and display a pretty graph.
295          */
296
297         private void GraphData() {
298                 AltosDataChooser chooser;
299                 chooser = new AltosDataChooser(this);
300                 AltosRecordIterable record_reader = chooser.runDialog();
301                 if (record_reader == null)
302                         return;
303                 new AltosGraphUI(record_reader);
304         }
305
306         private void ConfigureAltosUI() {
307                 new AltosConfigureUI(AltosUI.this, voice);
308         }
309
310         private void IdleMonitor() {
311                 try {
312                         new AltosIdleMonitorUI(this);
313                 } catch (Exception e) {
314                 }
315         }
316
317         static AltosRecordIterable open_logfile(String filename) {
318                 File file = new File (filename);
319                 try {
320                         FileInputStream in;
321
322                         in = new FileInputStream(file);
323                         if (filename.endsWith("eeprom"))
324                                 return new AltosEepromIterable(in);
325                         else
326                                 return new AltosTelemetryIterable(in);
327                 } catch (FileNotFoundException fe) {
328                         System.out.printf("Cannot open '%s'\n", filename);
329                         return null;
330                 }
331         }
332
333         static AltosWriter open_csv(String filename) {
334                 File file = new File (filename);
335                 try {
336                         return new AltosCSV(file);
337                 } catch (FileNotFoundException fe) {
338                         System.out.printf("Cannot open '%s'\n", filename);
339                         return null;
340                 }
341         }
342
343         static AltosWriter open_kml(String filename) {
344                 File file = new File (filename);
345                 try {
346                         return new AltosKML(file);
347                 } catch (FileNotFoundException fe) {
348                         System.out.printf("Cannot open '%s'\n", filename);
349                         return null;
350                 }
351         }
352
353         static final int process_csv = 1;
354         static final int process_kml = 2;
355
356         static void process_file(String input, int process) {
357                 AltosRecordIterable iterable = open_logfile(input);
358                 if (iterable == null)
359                         return;
360                 if (process == 0)
361                         process = process_csv;
362                 if ((process & process_csv) != 0) {
363                         String output = Altos.replace_extension(input,".csv");
364                         System.out.printf("Processing \"%s\" to \"%s\"\n", input, output);
365                         if (input.equals(output)) {
366                                 System.out.printf("Not processing '%s'\n", input);
367                         } else {
368                                 AltosWriter writer = open_csv("/dev/stdout");
369                                 if (writer != null) {
370                                         writer.write(iterable);
371                                         writer.close();
372                                 }
373                         }
374                 }
375                 if ((process & process_kml) != 0) {
376                         String output = Altos.replace_extension(input,".kml");
377                         System.out.printf("Processing \"%s\" to \"%s\"\n", input, output);
378                         if (input.equals(output)) {
379                                 System.out.printf("Not processing '%s'\n", input);
380                         } else {
381                                 AltosWriter writer = open_kml(output);
382                                 if (writer == null)
383                                         return;
384                                 writer.write(iterable);
385                                 writer.close();
386                         }
387                 }
388         }
389
390         public static void main(final String[] args) {
391                 int     process = 0;
392                 /* Handle batch-mode */
393         if (args.length == 1 && args[0].equals("--help")) {
394                 System.out.printf("Usage: altosui [OPTION]... [FILE]...\n");
395                 System.out.printf("  Options:\n");
396                 System.out.printf("    --fetchmaps <lat> <lon>\tpre-fetch maps for site map view\n");
397                 System.out.printf("    --replay <filename>\t\trelive the glory of past flights \n");
398                 System.out.printf("    --csv\tgenerate comma separated output for spreadsheets, etc\n");
399                 System.out.printf("    --kml\tgenerate KML output for use with Google Earth\n");
400         } else if (args.length == 3 && args[0].equals("--fetchmaps")) {
401             double lat = Double.parseDouble(args[1]);
402             double lon = Double.parseDouble(args[2]);
403             AltosSiteMap.prefetchMaps(lat, lon, 5, 5);
404         } else if (args.length == 2 && args[0].equals("--replay")) {
405                         String filename = args[1];
406                         FileInputStream in;
407                         try {
408                                 in = new FileInputStream(filename);
409                         } catch (Exception e) {
410                                 System.out.printf("Failed to open file '%s'\n", filename);
411                                 return;
412                         }
413                         AltosRecordIterable recs;
414                         AltosReplayReader reader;
415                         if (filename.endsWith("eeprom")) {
416                                 recs = new AltosEepromIterable(in);
417                         } else {
418                                 recs = new AltosTelemetryIterable(in);
419                         }
420                         reader = new AltosReplayReader(recs.iterator(), filename);
421                         AltosFlightUI flight_ui = new AltosFlightUI(new AltosVoice(), reader);
422                         flight_ui.set_exit_on_close();
423                         return;
424                 } else if (args.length > 0) {
425                         for (int i = 0; i < args.length; i++) {
426                                 if (args[i].equals("--kml"))
427                                         process |= process_kml;
428                                 else if (args[i].equals("--csv"))
429                                         process |= process_csv;
430                                 else
431                                         process_file(args[i], process);
432                         }
433                 } else {
434                         AltosUI altosui = new AltosUI();
435                         altosui.setVisible(true);
436
437                         java.util.List<AltosDevice> devices = AltosUSBDevice.list(Altos.product_basestation);
438                         for (AltosDevice device : devices)
439                                 altosui.telemetry_window(device);
440                 }
441         }
442 }