Initial Commit - Copy from Altus Metrum AltOS
This commit is contained in:
258
altosuilib/AltosEepromManage.java
Normal file
258
altosuilib/AltosEepromManage.java
Normal file
@@ -0,0 +1,258 @@
|
||||
/*
|
||||
* Copyright © 2011 Keith Packard <keithp@keithp.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
||||
*/
|
||||
|
||||
package org.altusmetrum.altosuilib_14;
|
||||
|
||||
import java.awt.event.*;
|
||||
import javax.swing.*;
|
||||
import java.io.*;
|
||||
import java.util.concurrent.*;
|
||||
import org.altusmetrum.altoslib_14.*;
|
||||
|
||||
public class AltosEepromManage implements ActionListener {
|
||||
|
||||
JFrame frame;
|
||||
boolean remote;
|
||||
AltosDevice device;
|
||||
AltosSerial serial_line;
|
||||
AltosEepromList flights;
|
||||
AltosEepromDownload download;
|
||||
AltosEepromDelete delete;
|
||||
AltosEepromGrapher grapher;
|
||||
|
||||
public void finish() {
|
||||
if (serial_line != null) {
|
||||
try {
|
||||
serial_line.flush_input();
|
||||
} catch (InterruptedException ie) {
|
||||
}
|
||||
serial_line.close();
|
||||
serial_line = null;
|
||||
}
|
||||
}
|
||||
|
||||
private int countDeletedFlights() {
|
||||
int count = 0;
|
||||
for (AltosEepromLog flight : flights) {
|
||||
if (flight.delete_selected)
|
||||
count++;
|
||||
}
|
||||
return count;
|
||||
}
|
||||
|
||||
private String showDeletedFlights() {
|
||||
String result = "";
|
||||
|
||||
for (AltosEepromLog flight : flights) {
|
||||
if (flight.delete_selected) {
|
||||
if (result.equals(""))
|
||||
result = String.format("%d", flight.flight);
|
||||
else
|
||||
result = String.format("%s, %d", result, flight.flight);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
public boolean delete_start() {
|
||||
|
||||
boolean any_selected = false;
|
||||
for (AltosEepromLog flight : flights)
|
||||
any_selected = any_selected || flight.delete_selected;
|
||||
if (any_selected) {
|
||||
delete = new AltosEepromDelete(frame,
|
||||
serial_line,
|
||||
remote,
|
||||
flights);
|
||||
delete.addActionListener(this);
|
||||
/*
|
||||
* Start flight log delete
|
||||
*/
|
||||
|
||||
delete.start();
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public void graph_start() {
|
||||
boolean any_selected = false;
|
||||
for (AltosEepromLog flight : flights) {
|
||||
if (!flight.download_selected)
|
||||
flight.graph_selected = false;
|
||||
any_selected = any_selected || flight.graph_selected;
|
||||
}
|
||||
if (any_selected && grapher != null)
|
||||
grapher.graph_flights(flights);
|
||||
}
|
||||
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
String cmd = e.getActionCommand();
|
||||
boolean success = e.getID() != 0;
|
||||
boolean running = false;
|
||||
|
||||
if (cmd.equals("download")) {
|
||||
if (success) {
|
||||
running = delete_start();
|
||||
if (!running)
|
||||
graph_start();
|
||||
}
|
||||
} else if (cmd.equals("delete")) {
|
||||
if (success) {
|
||||
JOptionPane.showMessageDialog(frame,
|
||||
String.format("%d flights erased: %s",
|
||||
countDeletedFlights(),
|
||||
showDeletedFlights()),
|
||||
serial_line.device.toShortString(),
|
||||
JOptionPane.INFORMATION_MESSAGE);
|
||||
graph_start();
|
||||
}
|
||||
}
|
||||
if (!running)
|
||||
finish();
|
||||
}
|
||||
|
||||
public void got_flights(AltosEepromList in_flights) {
|
||||
boolean running = false;;
|
||||
|
||||
flights = in_flights;
|
||||
try {
|
||||
if (flights.size() == 0) {
|
||||
JOptionPane.showMessageDialog(frame,
|
||||
String.format("No flights available on %d",
|
||||
device.getSerial()),
|
||||
serial_line.device.toShortString(),
|
||||
JOptionPane.INFORMATION_MESSAGE);
|
||||
} else {
|
||||
AltosEepromSelect select = new AltosEepromSelect(frame, flights, grapher != null);
|
||||
|
||||
if (select.run()) {
|
||||
boolean any_selected = false;
|
||||
for (AltosEepromLog flight : flights)
|
||||
any_selected = any_selected || flight.download_selected;
|
||||
if (any_selected) {
|
||||
AltosEepromMonitorUI monitor = new AltosEepromMonitorUI(frame);
|
||||
monitor.addActionListener(this);
|
||||
serial_line.set_frame(frame);
|
||||
download = new AltosEepromDownload(monitor,
|
||||
serial_line,
|
||||
remote,
|
||||
flights);
|
||||
/*
|
||||
* Start flight log download
|
||||
*/
|
||||
|
||||
download.start();
|
||||
running = true;
|
||||
} else {
|
||||
running = delete_start();
|
||||
if (!running)
|
||||
graph_start();
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!running)
|
||||
finish();
|
||||
} catch (Exception e) {
|
||||
got_exception(e);
|
||||
}
|
||||
}
|
||||
|
||||
public void got_exception(Exception e) {
|
||||
if (e instanceof IOException) {
|
||||
IOException ee = (IOException) e;
|
||||
JOptionPane.showMessageDialog(frame,
|
||||
device.toShortString(),
|
||||
ee.getLocalizedMessage(),
|
||||
JOptionPane.ERROR_MESSAGE);
|
||||
} else if (e instanceof TimeoutException) {
|
||||
//TimeoutException te = (TimeoutException) e;
|
||||
JOptionPane.showMessageDialog(frame,
|
||||
String.format("Communications failed with \"%s\"",
|
||||
device.toShortString()),
|
||||
"Cannot open target device",
|
||||
JOptionPane.ERROR_MESSAGE);
|
||||
}
|
||||
finish();
|
||||
}
|
||||
|
||||
class EepromGetList implements Runnable {
|
||||
|
||||
AltosEepromManage manage;
|
||||
|
||||
public void run () {
|
||||
Runnable r;
|
||||
try {
|
||||
flights = new AltosEepromList(serial_line, remote);
|
||||
r = new Runnable() {
|
||||
public void run() {
|
||||
got_flights(flights);
|
||||
}
|
||||
};
|
||||
} catch (Exception e) {
|
||||
final Exception f_e = e;
|
||||
r = new Runnable() {
|
||||
public void run() {
|
||||
got_exception(f_e);
|
||||
}
|
||||
};
|
||||
}
|
||||
SwingUtilities.invokeLater(r);
|
||||
}
|
||||
|
||||
public EepromGetList(AltosEepromManage in_manage) {
|
||||
manage = in_manage;
|
||||
}
|
||||
}
|
||||
|
||||
public AltosEepromManage(JFrame given_frame, AltosEepromGrapher grapher, int product) {
|
||||
|
||||
//boolean running = false;
|
||||
|
||||
frame = given_frame;
|
||||
this.grapher = grapher;
|
||||
device = AltosDeviceUIDialog.show(frame, product);
|
||||
|
||||
remote = false;
|
||||
|
||||
if (device != null) {
|
||||
try {
|
||||
serial_line = new AltosSerial(device);
|
||||
if (device.matchProduct(AltosLib.product_basestation))
|
||||
remote = true;
|
||||
|
||||
serial_line.set_frame(frame);
|
||||
|
||||
EepromGetList get_list = new EepromGetList(this);
|
||||
Thread t = new Thread(get_list);
|
||||
t.start();
|
||||
} catch (FileNotFoundException ee) {
|
||||
JOptionPane.showMessageDialog(frame,
|
||||
ee.getMessage(),
|
||||
"Cannot open target device",
|
||||
JOptionPane.ERROR_MESSAGE);
|
||||
} catch (AltosSerialInUseException si) {
|
||||
JOptionPane.showMessageDialog(frame,
|
||||
String.format("Device \"%s\" already in use",
|
||||
device.toShortString()),
|
||||
"Device in use",
|
||||
JOptionPane.ERROR_MESSAGE);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user