Add Mini logging format. Use in EasyMini
[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 java.io.*;
24 import java.util.concurrent.*;
25 import org.altusmetrum.altoslib_1.*;
26 import org.altusmetrum.altosuilib_1.*;
27
28 public class AltosUI extends AltosUIFrame {
29         public AltosVoice voice = new AltosVoice();
30
31         public static boolean load_library(Frame frame) {
32                 if (!Altos.load_library()) {
33                         JOptionPane.showMessageDialog(frame,
34                                                       String.format("No AltOS library in \"%s\"",
35                                                                     System.getProperty("java.library.path","<undefined>")),
36                                                       "Cannot load device access library",
37                                                       JOptionPane.ERROR_MESSAGE);
38                         return false;
39                 }
40                 return true;
41         }
42
43         void telemetry_window(AltosDevice device) {
44                 try {
45                         AltosFlightReader reader = new AltosTelemetryReader(new AltosSerial(device));
46                         if (reader != null)
47                                 new AltosFlightUI(voice, reader, device.getSerial());
48                 } catch (FileNotFoundException ee) {
49                         JOptionPane.showMessageDialog(AltosUI.this,
50                                                       ee.getMessage(),
51                                                       String.format ("Cannot open %s", device.toShortString()),
52                                                       JOptionPane.ERROR_MESSAGE);
53                 } catch (AltosSerialInUseException si) {
54                         JOptionPane.showMessageDialog(AltosUI.this,
55                                                       String.format("Device \"%s\" already in use",
56                                                                     device.toShortString()),
57                                                       "Device in use",
58                                                       JOptionPane.ERROR_MESSAGE);
59                 } catch (IOException ee) {
60                         JOptionPane.showMessageDialog(AltosUI.this,
61                                                       String.format ("Unknown I/O error on %s", device.toShortString()),
62                                                       "Unknown I/O error",
63                                                       JOptionPane.ERROR_MESSAGE);
64                 } catch (TimeoutException te) {
65                         JOptionPane.showMessageDialog(this,
66                                                       String.format ("Timeout on %s", device.toShortString()),
67                                                       "Timeout error",
68                                                       JOptionPane.ERROR_MESSAGE);
69                 } catch (InterruptedException ie) {
70                         JOptionPane.showMessageDialog(this,
71                                                       String.format("Interrupted %s", device.toShortString()),
72                                                       "Interrupted exception",
73                                                       JOptionPane.ERROR_MESSAGE);
74                 }
75         }
76
77         Container       pane;
78         GridBagLayout   gridbag;
79
80         JButton addButton(int x, int y, String label) {
81                 GridBagConstraints      c;
82                 JButton                 b;
83
84                 c = new GridBagConstraints();
85                 c.gridx = x; c.gridy = y;
86                 c.fill = GridBagConstraints.BOTH;
87                 c.weightx = 1;
88                 c.weighty = 1;
89                 b = new JButton(label);
90
91                 //Dimension ps = b.getPreferredSize();
92
93                 gridbag.setConstraints(b, c);
94                 add(b, c);
95                 return b;
96         }
97
98         public AltosUI() {
99
100                 load_library(null);
101
102                 AltosUIPreferences.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.setToolTipText("Connect to TeleDongle and monitor telemetry");
117                 b = addButton(1, 0, "Save Flight Data");
118                 b.addActionListener(new ActionListener() {
119                                         public void actionPerformed(ActionEvent e) {
120                                                 SaveFlightData();
121                                         }
122                                 });
123                 b.setToolTipText("Download and/or delete flight data from an altimeter");
124                 b = addButton(2, 0, "Replay Flight");
125                 b.addActionListener(new ActionListener() {
126                                         public void actionPerformed(ActionEvent e) {
127                                                 Replay();
128                                         }
129                                 });
130                 b.setToolTipText("Watch an old flight in real-time");
131                 b = addButton(3, 0, "Graph Data");
132                 b.addActionListener(new ActionListener() {
133                                         public void actionPerformed(ActionEvent e) {
134                                                 GraphData();
135                                         }
136                                 });
137                 b.setToolTipText("Present flight data in a graph and table of statistics");
138                 b = addButton(4, 0, "Export Data");
139                 b.addActionListener(new ActionListener() {
140                                         public void actionPerformed(ActionEvent e) {
141                                                 ExportData();
142                                         }
143                                 });
144                 b.setToolTipText("Convert flight data for a spreadsheet or GoogleEarth");
145                 b = addButton(0, 1, "Configure Altimeter");
146                 b.addActionListener(new ActionListener() {
147                                         public void actionPerformed(ActionEvent e) {
148                                                 ConfigureTeleMetrum();
149                                         }
150                                 });
151                 b.setToolTipText("Set flight, storage and communication parameters");
152                 b = addButton(1, 1, "Configure AltosUI");
153                 b.addActionListener(new ActionListener() {
154                                 public void actionPerformed(ActionEvent e) {
155                                         ConfigureAltosUI();
156                                 }
157                         });
158                 b.setToolTipText("Global AltosUI settings");
159
160                 b = addButton(2, 1, "Configure Ground Station");
161                 b.addActionListener(new ActionListener() {
162                                 public void actionPerformed(ActionEvent e) {
163                                         ConfigureTeleDongle();
164                                 }
165                         });
166
167                 b = addButton(3, 1, "Flash Image");
168                 b.addActionListener(new ActionListener() {
169                                 public void actionPerformed(ActionEvent e) {
170                                         FlashImage();
171                                 }
172                         });
173                 b.setToolTipText("Replace the firmware in any AltusMetrum product");
174
175                 b = addButton(4, 1, "Fire Igniter");
176                 b.addActionListener(new ActionListener() {
177                                 public void actionPerformed(ActionEvent e) {
178                                         FireIgniter();
179                                 }
180                         });
181                 b.setToolTipText("Remote control of igniters for deployment testing");
182                 b = addButton(0, 2, "Scan Channels");
183                 b.addActionListener(new ActionListener() {
184                                 public void actionPerformed(ActionEvent e) {
185                                         ScanChannels();
186                                 }
187                         });
188                 b.setToolTipText("Find what channel an altimeter is sending telemetry on");
189                 b = addButton(1, 2, "Load Maps");
190                 b.addActionListener(new ActionListener() {
191                                 public void actionPerformed(ActionEvent e) {
192                                         LoadMaps();
193                                 }
194                         });
195                 b.setToolTipText("Download satellite images for off-line flight monitoring");
196                 b = addButton(2, 2, "Monitor Idle");
197                 b.addActionListener(new ActionListener() {
198                                 public void actionPerformed(ActionEvent e) {
199                                         IdleMonitor();
200                                 }
201                         });
202                 b.setToolTipText("Check flight readiness of altimeter in idle mode");
203
204 //              b = addButton(3, 2, "Launch Controller");
205 //              b.addActionListener(new ActionListener() {
206 //                              public void actionPerformed(ActionEvent e) {
207 //                                      LaunchController();
208 //                              }
209 //                      });
210
211                 b = addButton(4, 2, "Quit");
212                 b.addActionListener(new ActionListener() {
213                                 public void actionPerformed(ActionEvent e) {
214                                         System.exit(0);
215                                 }
216                         });
217                 b.setToolTipText("Close all active windows and terminate AltosUI");
218
219                 setTitle("AltOS");
220
221                 pane.doLayout();
222                 pane.validate();
223
224                 doLayout();
225                 validate();
226
227                 setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
228                 addWindowListener(new WindowAdapter() {
229                         @Override
230                         public void windowClosing(WindowEvent e) {
231                                 System.exit(0);
232                         }
233                 });
234
235                 setLocationByPlatform(false);
236                 
237                 /* Insets aren't set before the window is visible */
238                 setVisible(true);
239         }
240
241         private void ConnectToDevice() {
242                 AltosDevice     device = AltosDeviceUIDialog.show(AltosUI.this,
243                                                                 Altos.product_basestation);
244
245                 if (device != null)
246                         telemetry_window(device);
247         }
248
249         void ConfigureCallsign() {
250                 String  result;
251                 result = JOptionPane.showInputDialog(AltosUI.this,
252                                                      "Configure Callsign",
253                                                      AltosUIPreferences.callsign());
254                 if (result != null)
255                         AltosUIPreferences.set_callsign(result);
256         }
257
258         void ConfigureTeleMetrum() {
259                 new AltosConfig(AltosUI.this);
260         }
261
262         void ConfigureTeleDongle() {
263                 new AltosConfigTD(AltosUI.this);
264         }
265
266         void FlashImage() {
267                 AltosFlashUI.show(AltosUI.this);
268         }
269
270         void FireIgniter() {
271                 new AltosIgniteUI(AltosUI.this);
272         }
273
274         void ScanChannels() {
275                 new AltosScanUI(AltosUI.this);
276         }
277
278         void LoadMaps() {
279                 new AltosSiteMapPreload(AltosUI.this);
280         }
281
282         void LaunchController() {
283                 new AltosLaunchUI(AltosUI.this);
284         }
285
286         /*
287          * Replay a flight from telemetry data
288          */
289         private void Replay() {
290                 AltosDataChooser chooser = new AltosDataChooser(
291                         AltosUI.this);
292
293                 AltosRecordIterable iterable = chooser.runDialog();
294                 if (iterable != null) {
295                         AltosFlightReader reader = new AltosReplayReader(iterable.iterator(),
296                                                                          chooser.file());
297                         new AltosFlightUI(voice, reader);
298                 }
299         }
300
301         /* Connect to TeleMetrum, either directly or through
302          * a TeleDongle over the packet link
303          */
304         private void SaveFlightData() {
305                 new AltosEepromManage(AltosUI.this);
306         }
307
308         /* Load a flight log file and write out a CSV file containing
309          * all of the data in standard units
310          */
311
312         private void ExportData() {
313                 AltosDataChooser chooser;
314                 chooser = new AltosDataChooser(this);
315                 AltosRecordIterable record_reader = chooser.runDialog();
316                 if (record_reader == null)
317                         return;
318                 new AltosCSVUI(AltosUI.this, record_reader, chooser.file());
319         }
320
321         /* Load a flight log CSV file and display a pretty graph.
322          */
323
324         private void GraphData() {
325                 AltosDataChooser chooser;
326                 chooser = new AltosDataChooser(this);
327                 AltosRecordIterable record_reader = chooser.runDialog();
328                 if (record_reader == null)
329                         return;
330                 try {
331                         new AltosGraphUI(record_reader, chooser.file());
332                 } catch (InterruptedException ie) {
333                 } catch (IOException ie) {
334                 }
335         }
336
337         private void ConfigureAltosUI() {
338                 new AltosConfigureUI(AltosUI.this, voice);
339         }
340
341         private void IdleMonitor() {
342                 try {
343                         new AltosIdleMonitorUI(this);
344                 } catch (Exception e) {
345                 }
346         }
347
348         static AltosRecordIterable open_logfile(File file) {
349                 try {
350                         FileInputStream in;
351
352                         in = new FileInputStream(file);
353                         if (file.getName().endsWith("eeprom"))
354                                 return new AltosEepromIterable(in);
355                         else if (file.getName().endsWith("mega"))
356                                 return new AltosEepromMegaIterable(in);
357                         else if (file.getName().endsWith("mini"))
358                                 return new AltosEepromMiniIterable(in);
359                         else
360                                 return new AltosTelemetryIterable(in);
361                 } catch (FileNotFoundException fe) {
362                         System.out.printf("%s\n", fe.getMessage());
363                         return null;
364                 }
365         }
366
367         static AltosWriter open_csv(File file) {
368                 try {
369                         return new AltosCSV(file);
370                 } catch (FileNotFoundException fe) {
371                         System.out.printf("%s\n", fe.getMessage());
372                         return null;
373                 }
374         }
375
376         static AltosWriter open_kml(File file) {
377                 try {
378                         return new AltosKML(file);
379                 } catch (FileNotFoundException fe) {
380                         System.out.printf("%s\n", fe.getMessage());
381                         return null;
382                 }
383         }
384
385         static final int process_none = 0;
386         static final int process_csv = 1;
387         static final int process_kml = 2;
388         static final int process_graph = 3;
389         static final int process_replay = 4;
390         static final int process_summary = 5;
391
392         static boolean process_csv(File input) {
393                 AltosRecordIterable iterable = open_logfile(input);
394                 if (iterable == null)
395                         return false;
396
397                 File output = Altos.replace_extension(input,".csv");
398                 System.out.printf("Processing \"%s\" to \"%s\"\n", input, output);
399                 if (input.equals(output)) {
400                         System.out.printf("Not processing '%s'\n", input);
401                         return false;
402                 } else {
403                         AltosWriter writer = open_csv(output);
404                         if (writer == null)
405                                 return false;
406                         writer.write(iterable);
407                         writer.close();
408                 }
409                 return true;
410         }
411
412         static boolean process_kml(File input) {
413                 AltosRecordIterable iterable = open_logfile(input);
414                 if (iterable == null)
415                         return false;
416
417                 File output = Altos.replace_extension(input,".kml");
418                 System.out.printf("Processing \"%s\" to \"%s\"\n", input, output);
419                 if (input.equals(output)) {
420                         System.out.printf("Not processing '%s'\n", input);
421                         return false;
422                 } else {
423                         AltosWriter writer = open_kml(output);
424                         if (writer == null)
425                                 return false;
426                         writer.write(iterable);
427                         writer.close();
428                         return true;
429                 }
430         }
431
432         static AltosRecordIterable record_iterable(File file) {
433                 FileInputStream in;
434                 try {
435                         in = new FileInputStream(file);
436                 } catch (Exception e) {
437                         System.out.printf("Failed to open file '%s'\n", file);
438                         return null;
439                 }
440                 AltosRecordIterable recs;
441                 //AltosReplayReader reader;
442                 if (file.getName().endsWith("eeprom")) {
443                         recs = new AltosEepromIterable(in);
444                 } else if (file.getName().endsWith("mega")) {
445                         recs = new AltosEepromMegaIterable(in);
446                 } else if (file.getName().endsWith("mini")) {
447                         recs = new AltosEepromMiniIterable(in);
448                 } else {
449                         recs = new AltosTelemetryIterable(in);
450                 }
451                 return recs;
452         }
453
454         static AltosReplayReader replay_file(File file) {
455                 AltosRecordIterable recs = record_iterable(file);
456                 if (recs == null)
457                         return null;
458                 return new AltosReplayReader(recs.iterator(), file);
459         }
460
461         static boolean process_replay(File file) {
462                 AltosReplayReader reader = replay_file(file);
463                 if (reader == null)
464                         return false;
465                 AltosFlightUI flight_ui = new AltosFlightUI(new AltosVoice(), reader);
466                 flight_ui.set_exit_on_close();
467                 return true;
468         }
469
470         static boolean process_graph(File file) {
471                 AltosRecordIterable recs = record_iterable(file);
472                 if (recs == null)
473                         return false;
474                 try {
475                         new AltosGraphUI(recs, file);
476                         return true;
477                 } catch (InterruptedException ie) {
478                 } catch (IOException ie) {
479                 }
480                 return false;
481         }
482         
483         static boolean process_summary(File file) {
484                 AltosRecordIterable iterable = record_iterable(file);
485                 if (iterable == null)
486                         return false;
487                 try {
488                         AltosFlightStats stats = new AltosFlightStats(iterable);
489                         if (stats.serial > 0)
490                                 System.out.printf("Serial:       %5d\n", stats.serial);
491                         if (stats.flight > 0)
492                                 System.out.printf("Flight:       %5d\n", stats.flight);
493                         if (stats.year > 0)
494                                 System.out.printf("Date:    %04d-%02d-%02d\n",
495                                                   stats.year, stats.month, stats.day);
496                         if (stats.hour > 0)
497                                 System.out.printf("Time:      %02d:%02d:%02d UTC\n",
498                                                   stats.hour, stats.minute, stats.second);
499                         System.out.printf("Max height:  %6.0f m    %6.0f ft\n",
500                                           stats.max_height,
501                                           AltosConvert.meters_to_feet(stats.max_height));
502                         System.out.printf("Max speed:   %6.0f m/s  %6.0f ft/s  %6.4f Mach\n",
503                                           stats.max_speed,
504                                           AltosConvert.meters_to_feet(stats.max_speed),
505                                           AltosConvert.meters_to_mach(stats.max_speed));
506                         if (stats.max_acceleration != AltosRecord.MISSING) {
507                                 System.out.printf("Max accel:   %6.0f m/s² %6.0f ft/s² %6.2f g\n",
508                                                   stats.max_acceleration,
509                                                   AltosConvert.meters_to_feet(stats.max_acceleration),
510                                                   AltosConvert.meters_to_g(stats.max_acceleration));
511                         }
512                         System.out.printf("Drogue rate: %6.0f m/s  %6.0f ft/s\n",
513                                           stats.state_baro_speed[Altos.ao_flight_drogue],
514                                           AltosConvert.meters_to_feet(stats.state_baro_speed[Altos.ao_flight_drogue]));
515                         System.out.printf("Main rate:   %6.0f m/s  %6.0f ft/s\n",
516                                           stats.state_baro_speed[Altos.ao_flight_main],
517                                           AltosConvert.meters_to_feet(stats.state_baro_speed[Altos.ao_flight_main]));
518                         System.out.printf("Flight time: %6.0f s\n",
519                                           stats.state_end[Altos.ao_flight_main] -
520                                           stats.state_start[Altos.ao_flight_boost]);
521                         return true;
522                 } catch (InterruptedException ie) {
523                 } catch (IOException ie) {
524                 }
525                 return false;
526         }
527
528         public static void help(int code) {
529                 System.out.printf("Usage: altosui [OPTION]... [FILE]...\n");
530                 System.out.printf("  Options:\n");
531                 System.out.printf("    --fetchmaps <lat> <lon>\tpre-fetch maps for site map view\n");
532                 System.out.printf("    --replay <filename>\t\trelive the glory of past flights \n");
533                 System.out.printf("    --graph <filename>\t\tgraph a flight\n");
534                 System.out.printf("    --csv\tgenerate comma separated output for spreadsheets, etc\n");
535                 System.out.printf("    --kml\tgenerate KML output for use with Google Earth\n");
536                 System.exit(code);
537         }
538         
539         public static void main(final String[] args) {
540                 int     errors = 0;
541                 load_library(null);
542                 try {
543                         UIManager.setLookAndFeel(AltosUIPreferences.look_and_feel());
544                 } catch (Exception e) {
545                 }
546                 /* Handle batch-mode */
547                 if (args.length == 0) {
548                         AltosUI altosui = new AltosUI();
549
550                         java.util.List<AltosDevice> devices = AltosUSBDevice.list(Altos.product_basestation);
551                         for (AltosDevice device : devices)
552                                 altosui.telemetry_window(device);
553                 } else {
554                         int process = process_none;
555                         for (int i = 0; i < args.length; i++) {
556                                 if (args[i].equals("--help"))
557                                         help(0);
558                                 else if (args[i].equals("--fetchmaps")) {
559                                         if (args.length < i + 3) {
560                                                 help(1);
561                                         } else {
562                                                 double lat = Double.parseDouble(args[i+1]);
563                                                 double lon = Double.parseDouble(args[i+2]);
564                                                 AltosSiteMap.prefetchMaps(lat, lon, 5, 5);
565                                                 i += 2;
566                                         }
567                                 } else if (args[i].equals("--replay"))
568                                         process = process_replay;
569                                 else if (args[i].equals("--kml"))
570                                         process = process_kml;
571                                 else if (args[i].equals("--csv"))
572                                         process = process_csv;
573                                 else if (args[i].equals("--graph"))
574                                         process = process_graph;
575                                 else if (args[i].equals("--summary"))
576                                         process = process_summary;
577                                 else if (args[i].startsWith("--"))
578                                         help(1);
579                                 else {
580                                         File file = new File(args[i]);
581                                         switch (process) {
582                                         case process_none:
583                                         case process_graph:
584                                                 if (!process_graph(file))
585                                                         ++errors;
586                                                 break;
587                                         case process_replay:
588                                                 if (!process_replay(file))
589                                                         ++errors;
590                                                 break;
591                                         case process_kml:
592                                                 if (!process_kml(file))
593                                                         ++errors;
594                                                 break;
595                                         case process_csv:
596                                                 if (!process_csv(file))
597                                                         ++errors;
598                                                 break;
599                                         case process_summary:
600                                                 if (!process_summary(file))
601                                                         ++errors;
602                                                 break;
603                                         }
604                                 }
605                         }
606                 }
607                 if (errors != 0)
608                         System.exit(errors);
609         }
610 }