Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
[fw/altos] / altosui / AltosEepromList.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 /*
34  * Temporary structure to hold the list of stored flights;
35  * each of these will be queried in turn to generate more
36  * complete information
37  */
38
39 class AltosEepromFlight {
40         int     flight;
41         int     start;
42         int     end;
43
44         public AltosEepromFlight(int in_flight, int in_start, int in_end) {
45                 flight = in_flight;
46                 start = in_start;
47                 end = in_end;
48         }
49 }
50
51 /*
52  * Construct a list of flights available in a connected device
53  */
54
55 public class AltosEepromList extends ArrayList<AltosEepromLog> {
56         AltosConfigData config_data;
57
58         public AltosEepromList (AltosSerial serial_line, boolean remote)
59                 throws IOException, InterruptedException, TimeoutException
60         {
61                 try {
62                         if (remote)
63                                 serial_line.start_remote();
64                         config_data = new AltosConfigData (serial_line);
65                         if (config_data.serial == 0)
66                                 throw new IOException("no serial number found");
67
68                         ArrayList<AltosEepromFlight> flights = new ArrayList<AltosEepromFlight>();
69
70                         if (config_data.flight_log_max != 0) {
71
72                                 /* Devices with newer firmware will support the 'l'
73                                  * command which will list the region of storage
74                                  * occupied by each available flight
75                                  */
76                                 serial_line.printf("l\n");
77                                 for (;;) {
78                                         String line = serial_line.get_reply(5000);
79                                         if (line == null)
80                                                 throw new TimeoutException();
81                                         if (line.contains("done"))
82                                                 break;
83                                         if (line.contains("Syntax"))
84                                                 continue;
85                                         String[] tokens = line.split("\\s+");
86                                         System.out.printf("got line %s (%d tokens)\n", line, tokens.length);
87                                         if (tokens.length < 6)
88                                                 break;
89
90                                         int     flight = -1, start = -1, end = -1;
91                                         try {
92                                                 if (tokens[0].equals("flight"))
93                                                         flight = AltosParse.parse_int(tokens[1]);
94                                                 if (tokens[2].equals("start"))
95                                                         start = AltosParse.parse_hex(tokens[3]);
96                                                 if (tokens[4].equals("end"))
97                                                         end = AltosParse.parse_hex(tokens[5]);
98                                                 System.out.printf("parsed flight %d %x %x\n", flight, start, end);
99                                                 if (flight > 0 && start >= 0 && end > 0)
100                                                         flights.add(new AltosEepromFlight(flight, start, end));
101                                         } catch (ParseException pe) { System.out.printf("Parse error %s\n", pe.toString()); }
102                                 }
103                         } else {
104
105                                 /* Older devices will hold only a single
106                                  * flight. This also assumes that any older
107                                  * device will have a 1MB flash device
108                                  */
109                                 flights.add(new AltosEepromFlight(0, 0, 0xfff));
110                         }
111
112                         /* With the list of flights collected, collect more complete
113                          * information on them by reading the first block or two of
114                          * data. This will add GPS coordinates and a date. For older
115                          * firmware, this will also extract the flight number.
116                          */
117                         for (AltosEepromFlight flight : flights) {
118                                 System.out.printf("Scanning flight %d %x %x\n", flight.flight, flight.start, flight.end);
119                                 add(new AltosEepromLog(serial_line, config_data.serial,
120                                                        flight.start, flight.end));
121                         }
122                 } finally {
123                         if (remote)
124                                 serial_line.stop_remote();
125                         serial_line.flush_output();
126                 }
127                 for (int i = 0; i < size(); i++) {
128                         AltosEepromLog  l = get(i);
129                         System.out.printf("Found flight %d at %x - %x\n", l.flight, l.start_block, l.end_block);
130                 }
131         }
132 }