altos: Clean up serial initialization
[fw/altos] / altosui / AltosEepromDownload.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 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 AltosEepromDownload implements Runnable {
34
35         JFrame                  frame;
36         AltosSerial             serial_line;
37         boolean                 remote;
38         Thread                  eeprom_thread;
39         AltosEepromMonitor      monitor;
40
41         int                     flight;
42         int                     year, month, day;
43         boolean                 want_file;
44         FileWriter              eeprom_file;
45         LinkedList<String>      eeprom_pending;
46
47         AltosEepromList         flights;
48         ActionListener          listener;
49         boolean                 success;
50         ParseException          parse_exception;
51
52         private void FlushPending() throws IOException {
53                 for (String s : flights.config_data) {
54                         eeprom_file.write(s);
55                         eeprom_file.write('\n');
56                 }
57
58                 for (String s : eeprom_pending)
59                         eeprom_file.write(s);
60         }
61
62         private void CheckFile(boolean force) throws IOException {
63                 if (eeprom_file != null)
64                         return;
65                 if (force || (flight != 0 && want_file)) {
66                         AltosFile               eeprom_name;
67                         if (year != 0 && month != 0 && day != 0)
68                                 eeprom_name = new AltosFile(year, month, day, flights.config_data.serial, flight, "eeprom");
69                         else
70                                 eeprom_name = new AltosFile(flights.config_data.serial, flight, "eeprom");
71
72                         eeprom_file = new FileWriter(eeprom_name);
73                         if (eeprom_file != null) {
74                                 monitor.set_file(eeprom_name.getName());
75                                 FlushPending();
76                                 eeprom_pending = null;
77                         }
78                 }
79         }
80
81         void Log(AltosEepromRecord r) throws IOException {
82                 if (r.cmd != Altos.AO_LOG_INVALID) {
83                         String log_line = String.format("%c %4x %4x %4x\n",
84                                                         r.cmd, r.tick, r.a, r.b);
85                         if (eeprom_file != null)
86                                 eeprom_file.write(log_line);
87                         else
88                                 eeprom_pending.add(log_line);
89                 }
90         }
91
92         static final int        log_full = 1;
93         static final int        log_tiny = 2;
94
95         boolean                 done;
96         int                     state;
97
98         void CaptureFull(AltosEepromChunk eechunk) throws IOException {
99                 boolean any_valid = false;
100                 for (int i = 0; i < eechunk.chunk_size && !done; i += AltosEepromRecord.record_length) {
101                         try {
102                                 AltosEepromRecord r = new AltosEepromRecord(eechunk, i);
103                                 if (r.cmd == Altos.AO_LOG_FLIGHT) {
104                                         flight = r.b;
105                                         monitor.set_flight(flight);
106                                 }
107
108                                 /* Monitor state transitions to update display */
109                                 if (r.cmd == Altos.AO_LOG_STATE && r.a <= Altos.ao_flight_landed) {
110                                         state = r.a;
111                                         if (state > Altos.ao_flight_pad)
112                                                 want_file = true;
113                                 }
114
115                                 if (r.cmd == Altos.AO_LOG_GPS_DATE) {
116                                         year = 2000 + (r.a & 0xff);
117                                         month = (r.a >> 8) & 0xff;
118                                         day = (r.b & 0xff);
119                                         want_file = true;
120                                 }
121                                 if (r.cmd == Altos.AO_LOG_STATE && r.a == Altos.ao_flight_landed)
122                                         done = true;
123                                 any_valid = true;
124                                 Log(r);
125                         } catch (ParseException pe) {
126                                 if (parse_exception == null)
127                                         parse_exception = pe;
128                         }
129                 }
130
131                 if (!any_valid)
132                         done = true;
133
134                 CheckFile(false);
135         }
136
137         boolean start;
138         int     tiny_tick;
139
140         void CaptureTiny (AltosEepromChunk eechunk) throws IOException {
141                 boolean any_valid = false;
142
143                 for (int i = 0; i < eechunk.data.length && !done; i += 2) {
144                         int                     v = eechunk.data16(i);
145                         AltosEepromRecord       r;
146
147                         if (i == 0 && start) {
148                                 tiny_tick = 0;
149                                 start = false;
150                                 flight = v;
151                                 monitor.set_flight(flight);
152                                 r = new AltosEepromRecord(Altos.AO_LOG_FLIGHT, tiny_tick, 0, v);
153                                 any_valid = true;
154                         } else {
155                                 int     s = v ^ 0x8000;
156
157                                 if (Altos.ao_flight_startup <= s && s <= Altos.ao_flight_invalid) {
158                                         r = new AltosEepromRecord(Altos.AO_LOG_STATE, tiny_tick, s, 0);
159                                         if (s == Altos.ao_flight_landed)
160                                                 done = true;
161                                         any_valid = true;
162                                 } else {
163                                         if (v != 0xffff)
164                                                 any_valid = true;
165                                         r = new AltosEepromRecord(Altos.AO_LOG_HEIGHT, tiny_tick, v, 0);
166
167                                         /*
168                                          * The flight software records ascent data every 100ms, and descent
169                                          * data every 1s.
170                                          */
171                                         if (state < Altos.ao_flight_drogue)
172                                                 tiny_tick += 10;
173                                         else
174                                                 tiny_tick += 100;
175                                 }
176                         }
177                         Log(r);
178                 }
179                 CheckFile(false);
180                 if (!any_valid)
181                         done = true;
182         }
183
184         void CaptureLog(AltosEepromLog log) throws IOException, InterruptedException, TimeoutException {
185                 int                     block, state_block = 0;
186                 int                     log_style = 0;
187
188                 state = 0;
189                 done = false;
190                 start = true;
191
192                 if (flights.config_data.serial == 0)
193                         throw new IOException("no serial number found");
194
195                 /* Reset per-capture variables */
196                 flight = 0;
197                 year = 0;
198                 month = 0;
199                 day = 0;
200                 want_file = false;
201                 eeprom_file = null;
202                 eeprom_pending = new LinkedList<String>();
203
204                 /* Set serial number in the monitor dialog window */
205                 monitor.set_serial(flights.config_data.serial);
206                 /* Now scan the eeprom, reading blocks of data and converting to .eeprom file form */
207
208                 state = 0; state_block = log.start_block;
209                 for (block = log.start_block; !done && block < log.end_block; block++) {
210                         monitor.set_value(Altos.state_to_string[state], state, block - state_block);
211
212                         AltosEepromChunk        eechunk = new AltosEepromChunk(serial_line, block);
213
214                         /*
215                          * Figure out what kind of data is there
216                          */
217
218                         if (block == log.start_block) {
219                                 if (eechunk.data(0) == Altos.AO_LOG_FLIGHT)
220                                         log_style = log_full;
221                                 else
222                                         log_style = log_tiny;
223                         }
224
225                         switch (log_style) {
226                         case log_full:
227                                 CaptureFull(eechunk);
228                                 break;
229                         case log_tiny:
230                                 CaptureTiny(eechunk);
231                                 break;
232                         }
233                 }
234                 CheckFile(true);
235                 if (eeprom_file != null) {
236                         eeprom_file.flush();
237                         eeprom_file.close();
238                 }
239         }
240
241         private void show_message_internal(String message, String title, int message_type) {
242                 JOptionPane.showMessageDialog(frame,
243                                               message,
244                                               title,
245                                               message_type);
246         }
247
248         private void show_message(String in_message, String in_title, int in_message_type) {
249                 final String message = in_message;
250                 final String title = in_title;
251                 final int message_type = in_message_type;
252                 Runnable r = new Runnable() {
253                                 public void run() {
254                                         try {
255                                                 show_message_internal(message, title, message_type);
256                                         } catch (Exception ex) {
257                                         }
258                                 }
259                         };
260                 SwingUtilities.invokeLater(r);
261         }
262
263         public void run () {
264                 if (remote)
265                         serial_line.start_remote();
266
267                 try {
268                         boolean failed = false;
269                         for (AltosEepromLog log : flights) {
270                                 parse_exception = null;
271                                 if (log.download) {
272                                         monitor.reset();
273                                         CaptureLog(log);
274                                 }
275                                 if (parse_exception != null) {
276                                         failed = true;
277                                         show_message(String.format("Flight %d download error\n%s\nValid log data saved",
278                                                                    log.flight,
279                                                                    parse_exception.getMessage()),
280                                                      serial_line.device.toShortString(),
281                                                      JOptionPane.WARNING_MESSAGE);
282                                 }
283                         }
284                         success = !failed;
285                 } catch (IOException ee) {
286                         show_message(ee.getLocalizedMessage(),
287                                      serial_line.device.toShortString(),
288                                      JOptionPane.ERROR_MESSAGE);
289                 } catch (InterruptedException ie) {
290                 } catch (TimeoutException te) {
291                         show_message(String.format("Connection to \"%s\" failed",
292                                                    serial_line.device.toShortString()),
293                                      "Connection Failed",
294                                      JOptionPane.ERROR_MESSAGE);
295                 }
296                 if (remote)
297                         serial_line.stop_remote();
298                 monitor.done();
299                 serial_line.flush_output();
300                 if (listener != null) {
301                         Runnable r = new Runnable() {
302                                         public void run() {
303                                                 try {
304                                                         listener.actionPerformed(new ActionEvent(this,
305                                                                                                  success ? 1 : 0,
306                                                                                                  "download"));
307                                                 } catch (Exception ex) {
308                                                 }
309                                         }
310                                 };
311                         SwingUtilities.invokeLater(r);
312                 }
313         }
314
315         public void start() {
316                 eeprom_thread = new Thread(this);
317                 eeprom_thread.start();
318         }
319
320         public void addActionListener(ActionListener l) {
321                 listener = l;
322         }
323
324         public AltosEepromDownload(JFrame given_frame,
325                                    AltosSerial given_serial_line,
326                                    boolean given_remote,
327                                    AltosEepromList given_flights) {
328
329                 frame = given_frame;
330                 serial_line = given_serial_line;
331                 serial_line.set_frame(frame);
332                 remote = given_remote;
333                 flights = given_flights;
334                 success = false;
335
336                 monitor = new AltosEepromMonitor(frame, Altos.ao_flight_boost, Altos.ao_flight_landed);
337                 monitor.addActionListener(new ActionListener() {
338                                 public void actionPerformed(ActionEvent e) {
339                                         if (eeprom_thread != null)
340                                                 eeprom_thread.interrupt();
341                                 }
342                         });
343         }
344 }