2 * Copyright © 2011 Keith Packard <keithp@keithp.com>
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.
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.
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.
20 import java.awt.event.*;
23 import java.util.concurrent.*;
24 import org.altusmetrum.AltosLib.*;
26 public class AltosEepromManage implements ActionListener {
31 AltosSerial serial_line;
32 AltosEepromList flights;
33 AltosEepromDownload download;
34 AltosEepromDelete delete;
36 public void finish() {
37 if (serial_line != null) {
39 serial_line.flush_input();
40 } catch (InterruptedException ie) {
47 private String showDeletedFlights() {
50 for (AltosEepromLog flight : flights) {
51 if (flight.selected) {
52 if (result.equals(""))
53 result = String.format("%d", flight.flight);
55 result = String.format("%s, %d", result, flight.flight);
61 public boolean download_done() {
62 AltosEepromSelect select = new AltosEepromSelect(frame, flights, "Delete");
65 boolean any_selected = false;
66 for (AltosEepromLog flight : flights)
67 any_selected = any_selected || flight.selected;
69 delete = new AltosEepromDelete(frame,
73 delete.addActionListener(this);
75 * Start flight log delete
85 public void actionPerformed(ActionEvent e) {
86 String cmd = e.getActionCommand();
87 boolean success = e.getID() != 0;
88 boolean running = false;
90 if (cmd.equals("download")) {
92 running = download_done();
93 } else if (cmd.equals("delete")) {
95 JOptionPane.showMessageDialog(frame,
96 String.format("Flights erased: %s",
97 showDeletedFlights()),
98 serial_line.device.toShortString(),
99 JOptionPane.INFORMATION_MESSAGE);
106 public void got_flights(AltosEepromList in_flights) {
107 boolean running = false;;
109 flights = in_flights;
111 if (flights.size() == 0) {
112 JOptionPane.showMessageDialog(frame,
113 String.format("No flights available on %d",
115 serial_line.device.toShortString(),
116 JOptionPane.INFORMATION_MESSAGE);
118 AltosEepromSelect select = new AltosEepromSelect(frame, flights, "Download");
121 boolean any_selected = false;
122 for (AltosEepromLog flight : flights)
123 any_selected = any_selected || flight.selected;
125 download = new AltosEepromDownload(frame,
129 download.addActionListener(this);
131 * Start flight log download
137 running = download_done();
143 } catch (Exception e) {
148 public void got_exception(Exception e) {
149 if (e instanceof IOException) {
150 IOException ee = (IOException) e;
151 JOptionPane.showMessageDialog(frame,
152 device.toShortString(),
153 ee.getLocalizedMessage(),
154 JOptionPane.ERROR_MESSAGE);
155 } else if (e instanceof TimeoutException) {
156 //TimeoutException te = (TimeoutException) e;
157 JOptionPane.showMessageDialog(frame,
158 String.format("Communications failed with \"%s\"",
159 device.toShortString()),
160 "Cannot open target device",
161 JOptionPane.ERROR_MESSAGE);
166 class EepromGetList implements Runnable {
168 AltosEepromManage manage;
173 flights = new AltosEepromList(serial_line, remote);
176 got_flights(flights);
179 } catch (Exception e) {
180 final Exception f_e = e;
187 SwingUtilities.invokeLater(r);
190 public EepromGetList(AltosEepromManage in_manage) {
195 public AltosEepromManage(JFrame given_frame) {
197 //boolean running = false;
200 device = AltosDeviceDialog.show(frame, Altos.product_any);
204 if (device != null) {
206 serial_line = new AltosSerial(device);
207 if (device.matchProduct(Altos.product_basestation))
210 serial_line.set_frame(frame);
212 EepromGetList get_list = new EepromGetList(this);
213 Thread t = new Thread(get_list);
215 } catch (FileNotFoundException ee) {
216 JOptionPane.showMessageDialog(frame,
218 "Cannot open target device",
219 JOptionPane.ERROR_MESSAGE);
220 } catch (AltosSerialInUseException si) {
221 JOptionPane.showMessageDialog(frame,
222 String.format("Device \"%s\" already in use",
223 device.toShortString()),
225 JOptionPane.ERROR_MESSAGE);