f914f138f2fe7d2e2d116744a343910283ad8cc9
[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_1.*;
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 AltosRecordIterable 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 AltosEepromIterable(in);
52                                 } else if (filename.endsWith("telem")) {
53                                         FileInputStream in = new FileInputStream(file);
54                                         return new AltosTelemetryIterable(in);
55                                 } else if (filename.endsWith("mega")) {
56                                         FileInputStream in = new FileInputStream(file);
57                                         return new AltosEepromMegaIterable(in);
58                                 } else {
59                                         throw new FileNotFoundException();
60                                 }
61                         } catch (FileNotFoundException fe) {
62                                 JOptionPane.showMessageDialog(frame,
63                                                               fe.getMessage(),
64                                                               "Cannot open file",
65                                                               JOptionPane.ERROR_MESSAGE);
66                         }
67                 }
68                 return null;
69         }
70
71         public AltosDataChooser(JFrame in_frame) {
72                 frame = in_frame;
73                 setDialogTitle("Select Flight Record File");
74                 setFileFilter(new FileNameExtensionFilter("TeleMetrum eeprom file",
75                                                           "eeprom"));
76                 setFileFilter(new FileNameExtensionFilter("Telemetry file",
77                                                           "telem"));
78                 setFileFilter(new FileNameExtensionFilter("TeleMega eeprom file",
79                                                           "mega"));
80                 setFileFilter(new FileNameExtensionFilter("Flight data file",
81                                                           "telem", "eeprom", "mega"));
82                 setCurrentDirectory(AltosUIPreferences.logdir());
83         }
84 }