ao-tools: complain if st-flash is not available
[fw/altos] / altosui / AltosDataChooser.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 javax.swing.*;
21 import javax.swing.filechooser.FileNameExtensionFilter;
22 import java.io.*;
23 import org.altusmetrum.altoslib_2.*;
24 import org.altusmetrum.altosuilib_1.*;
25
26 public class AltosDataChooser extends JFileChooser {
27         JFrame  frame;
28         String  filename;
29         File    file;
30
31         public String filename() {
32                 return filename;
33         }
34
35         public File file() {
36                 return file;
37         }
38
39         public AltosStateIterable runDialog() {
40                 int     ret;
41
42                 ret = showOpenDialog(frame);
43                 if (ret == APPROVE_OPTION) {
44                         file = getSelectedFile();
45                         if (file == null)
46                                 return null;
47                         filename = file.getName();
48                         try {
49                                 if (filename.endsWith("eeprom")) {
50                                         FileInputStream in = new FileInputStream(file);
51                                         return new AltosEepromFile(in);
52                                 } else if (filename.endsWith("telem")) {
53                                         FileInputStream in = new FileInputStream(file);
54                                         return new AltosTelemetryFile(in);
55                                 } else {
56                                         throw new FileNotFoundException();
57                                 }
58                         } catch (FileNotFoundException fe) {
59                                 JOptionPane.showMessageDialog(frame,
60                                                               fe.getMessage(),
61                                                               "Cannot open file",
62                                                               JOptionPane.ERROR_MESSAGE);
63                         }
64                 }
65                 return null;
66         }
67
68         public AltosDataChooser(JFrame in_frame) {
69                 frame = in_frame;
70                 setDialogTitle("Select Flight Record File");
71                 setFileFilter(new FileNameExtensionFilter("TeleMetrum eeprom file",
72                                                           "eeprom"));
73                 setFileFilter(new FileNameExtensionFilter("Telemetry file",
74                                                           "telem"));
75                 setFileFilter(new FileNameExtensionFilter("TeleMega eeprom file",
76                                                           "mega"));
77                 setFileFilter(new FileNameExtensionFilter("EasyMini eeprom file",
78                                                           "mini"));
79                 setFileFilter(new FileNameExtensionFilter("Flight data file",
80                                                           "telem", "eeprom", "mega", "mini"));
81                 setCurrentDirectory(AltosUIPreferences.logdir());
82         }
83 }