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