fe1db9c7dd62742ac93d86927765cf7d5f0ec6b5
[fw/altos] / altosui / AltosEepromManage.java
1 /*
2  * Copyright © 2011 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.*;
30
31 import libaltosJNI.*;
32
33 public class AltosEepromManage implements ActionListener {
34
35         JFrame                  frame;
36         boolean                 remote;
37         AltosDevice             device;
38         AltosSerial             serial_line;
39         AltosEepromList         flights;
40         AltosEepromDownload     download;
41         AltosEepromDelete       delete;
42         boolean                 any_download;
43         boolean                 any_delete;
44
45         public void finish() {
46                 if (serial_line != null) {
47                         serial_line.flush_input();
48                         serial_line.close();
49                         serial_line = null;
50                 }
51         }
52
53         private String showDeletedFlights() {
54                 String  result = "";
55
56                 for (AltosEepromLog flight : flights) {
57                         if (flight.delete) {
58                                 if (result.equals(""))
59                                         result = String.format("%d", flight.flight);
60                                 else
61                                         result = String.format("%s, %d", result, flight.flight);
62                         }
63                 }
64                 return result;
65         }
66
67         public void actionPerformed(ActionEvent e) {
68                 String  cmd = e.getActionCommand();
69                 boolean success = e.getID() != 0;
70                 boolean running = false;
71
72                 if (cmd.equals("download")) {
73                         if (success) {
74                                 if (any_delete) {
75                                         delete.start();
76                                         running = true;
77                                 }
78                         }
79                 } else if (cmd.equals("delete")) {
80                         if (success) {
81                                 JOptionPane.showMessageDialog(frame,
82                                                               String.format("Flights erased: %s",
83                                                                             showDeletedFlights()),
84                                                               serial_line.device.toShortString(),
85                                                               JOptionPane.INFORMATION_MESSAGE);
86                         }
87                 }
88                 if (!running)
89                         finish();
90         }
91
92         public AltosEepromManage(JFrame given_frame) {
93
94                 boolean running = false;
95
96                 frame = given_frame;
97                 device = AltosDeviceDialog.show(frame, AltosDevice.product_any);
98
99                 remote = false;
100                 any_download = false;
101                 any_delete = false;
102
103                 if (device != null) {
104                         try {
105                                 serial_line = new AltosSerial(device);
106                                 if (!device.matchProduct(AltosDevice.product_telemetrum))
107                                         remote = true;
108
109                                 serial_line.set_frame(frame);
110
111                                 flights = new AltosEepromList(serial_line, remote);
112
113                                 if (flights.size() == 0) {
114                                         JOptionPane.showMessageDialog(frame,
115                                                                       String.format("No flights available on %d",
116                                                                                     device.getSerial()),
117                                                                       serial_line.device.toShortString(),
118                                                 JOptionPane.INFORMATION_MESSAGE);
119                                 } else {
120                                         AltosEepromSelect       select = new AltosEepromSelect(frame, flights);
121
122                                         if (select.run()) {
123                                                 for (AltosEepromLog flight : flights) {
124                                                         any_download = any_download || flight.download;
125                                                         any_delete = any_delete || flight.delete;
126                                                 }
127                                                 if (any_download) {
128                                                         download = new AltosEepromDownload(frame,
129                                                                                            serial_line,
130                                                                                            remote,
131                                                                                            flights);
132                                                         download.addActionListener(this);
133                                                 }
134
135                                                 if (any_delete) {
136                                                         delete = new AltosEepromDelete(frame,
137                                                                                        serial_line,
138                                                                                        remote,
139                                                                                        flights);
140                                                         delete.addActionListener(this);
141                                                 }
142
143                                                 /*
144                                                  * Start flight log download
145                                                  */
146
147                                                 if (any_download) {
148                                                         download.start();
149                                                         running = true;
150                                                 }
151                                                 else if (any_delete) {
152                                                         delete.start();
153                                                         running = true;
154                                                 }
155                                         }
156                                 }
157                         } catch (FileNotFoundException ee) {
158                                 JOptionPane.showMessageDialog(frame,
159                                                               String.format("Cannot open device \"%s\"",
160                                                                             device.toShortString()),
161                                                               "Cannot open target device",
162                                                               JOptionPane.ERROR_MESSAGE);
163                         } catch (AltosSerialInUseException si) {
164                                 JOptionPane.showMessageDialog(frame,
165                                                               String.format("Device \"%s\" already in use",
166                                                                             device.toShortString()),
167                                                               "Device in use",
168                                                               JOptionPane.ERROR_MESSAGE);
169                         } catch (IOException ee) {
170                                 JOptionPane.showMessageDialog(frame,
171                                                               device.toShortString(),
172                                                               ee.getLocalizedMessage(),
173                                                               JOptionPane.ERROR_MESSAGE);
174                         } catch (TimeoutException te) {
175                                 JOptionPane.showMessageDialog(frame,
176                                                               String.format("Communications failed with \"%s\"",
177                                                                             device.toShortString()),
178                                                               "Cannot open target device",
179                                                               JOptionPane.ERROR_MESSAGE);
180                         } catch (InterruptedException ie) {
181                         }
182                         if (!running)
183                                 finish();
184                 }
185         }
186 }