1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
|
/*
* Copyright © 2010 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; version 2 of the License.
*
* 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 altosui;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.filechooser.FileNameExtensionFilter;
import javax.swing.table.*;
import java.io.*;
import java.util.*;
import java.text.*;
import java.util.prefs.*;
import java.util.concurrent.*;
import org.altusmetrum.AltosLib.*;
import libaltosJNI.*;
public class AltosEepromDownload implements Runnable {
JFrame frame;
AltosSerial serial_line;
boolean remote;
Thread eeprom_thread;
AltosEepromMonitor monitor;
int flight;
int serial;
int year, month, day;
boolean want_file;
FileWriter eeprom_file;
LinkedList<String> eeprom_pending;
AltosEepromList flights;
ActionListener listener;
boolean success;
ParseException parse_exception;
String extension;
private void FlushPending() throws IOException {
for (String s : flights.config_data) {
eeprom_file.write(s);
eeprom_file.write('\n');
}
for (String s : eeprom_pending)
eeprom_file.write(s);
}
private void CheckFile(boolean force) throws IOException {
if (eeprom_file != null)
return;
if (force || (flight != 0 && want_file)) {
AltosFile eeprom_name;
if (extension == null)
extension = "data";
if (year != 0 && month != 0 && day != 0)
eeprom_name = new AltosFile(year, month, day, serial, flight, extension);
else
eeprom_name = new AltosFile(serial, flight, extension);
eeprom_file = new FileWriter(eeprom_name);
if (eeprom_file != null) {
monitor.set_file(eeprom_name.getName());
FlushPending();
eeprom_pending = null;
}
}
}
void Log(AltosEepromRecord r) throws IOException {
if (r.cmd != Altos.AO_LOG_INVALID) {
String log_line = String.format("%c %4x %4x %4x\n",
r.cmd, r.tick, r.a, r.b);
if (eeprom_file != null)
eeprom_file.write(log_line);
else
eeprom_pending.add(log_line);
}
}
void set_serial(int in_serial) {
serial = in_serial;
monitor.set_serial(serial);
}
void set_flight(int in_flight) {
flight = in_flight;
monitor.set_flight(flight);
}
boolean done;
int state;
void CaptureFull(AltosEepromChunk eechunk) throws IOException {
boolean any_valid = false;
extension = "eeprom";
set_serial(flights.config_data.serial);
for (int i = 0; i < eechunk.chunk_size && !done; i += AltosEepromRecord.record_length) {
try {
AltosEepromRecord r = new AltosEepromRecord(eechunk, i);
if (r.cmd == Altos.AO_LOG_FLIGHT)
set_flight(r.b);
/* Monitor state transitions to update display */
if (r.cmd == Altos.AO_LOG_STATE && r.a <= Altos.ao_flight_landed) {
state = r.a;
if (state > Altos.ao_flight_pad)
want_file = true;
}
if (r.cmd == Altos.AO_LOG_GPS_DATE) {
year = 2000 + (r.a & 0xff);
month = (r.a >> 8) & 0xff;
day = (r.b & 0xff);
want_file = true;
}
if (r.cmd == Altos.AO_LOG_STATE && r.a == Altos.ao_flight_landed)
done = true;
any_valid = true;
Log(r);
} catch (ParseException pe) {
if (parse_exception == null)
parse_exception = pe;
}
}
if (!any_valid)
done = true;
CheckFile(false);
}
boolean start;
int tiny_tick;
void CaptureTiny (AltosEepromChunk eechunk) throws IOException {
boolean any_valid = false;
extension = "eeprom";
set_serial(flights.config_data.serial);
for (int i = 0; i < eechunk.data.length && !done; i += 2) {
int v = eechunk.data16(i);
AltosEepromRecord r;
if (i == 0 && start) {
tiny_tick = 0;
start = false;
set_flight(v);
r = new AltosEepromRecord(Altos.AO_LOG_FLIGHT, tiny_tick, 0, v);
any_valid = true;
} else {
int s = v ^ 0x8000;
if (Altos.ao_flight_startup <= s && s <= Altos.ao_flight_invalid) {
state = s;
r = new AltosEepromRecord(Altos.AO_LOG_STATE, tiny_tick, state, 0);
if (state == Altos.ao_flight_landed)
done = true;
state = s;
any_valid = true;
} else {
if (v != 0xffff)
any_valid = true;
r = new AltosEepromRecord(Altos.AO_LOG_PRESSURE, tiny_tick, 0, v);
/*
* The flight software records ascent data every 100ms, and descent
* data every 1s.
*/
if (state < Altos.ao_flight_drogue)
tiny_tick += 10;
else
tiny_tick += 100;
}
}
Log(r);
}
CheckFile(false);
if (!any_valid)
done = true;
}
void LogTeleScience(AltosEepromTeleScience r) throws IOException {
if (r.type != Altos.AO_LOG_INVALID) {
String log_line = String.format("%c %4x %4x %d %5d %5d %5d %5d %5d %5d %5d %5d %5d %5d %5d %5d\n",
r.type, r.tick, r.tm_tick, r.tm_state,
r.data[0], r.data[1], r.data[2], r.data[3],
r.data[4], r.data[5], r.data[6], r.data[7],
r.data[8], r.data[9], r.data[10], r.data[11]);
if (eeprom_file != null)
eeprom_file.write(log_line);
else
eeprom_pending.add(log_line);
}
}
boolean telescience_start;
void CaptureTeleScience (AltosEepromChunk eechunk) throws IOException {
boolean any_valid = false;
extension = "science";
for (int i = 0; i < eechunk.chunk_size && !done; i += AltosEepromTeleScience.record_length) {
try {
AltosEepromTeleScience r = new AltosEepromTeleScience(eechunk, i);
if (r.type == AltosEepromTeleScience.AO_LOG_TELESCIENCE_START) {
if (telescience_start) {
done = true;
break;
}
set_serial(r.data[0]);
set_flight(r.data[1]);
telescience_start = true;
} else {
if (!telescience_start)
break;
}
state = r.tm_state;
want_file =true;
any_valid = true;
LogTeleScience(r);
} catch (ParseException pe) {
if (parse_exception == null)
parse_exception = pe;
}
}
CheckFile(false);
if (!any_valid)
done = true;
}
void LogMega(AltosEepromMega r) throws IOException {
if (r.cmd != Altos.AO_LOG_INVALID) {
String log_line = String.format("%c %4x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x\n",
r.cmd, r.tick,
r.data8[0], r.data8[1], r.data8[2], r.data8[3],
r.data8[4], r.data8[5], r.data8[6], r.data8[7],
r.data8[8], r.data8[9], r.data8[10], r.data8[11],
r.data8[12], r.data8[13], r.data8[14], r.data8[15],
r.data8[16], r.data8[17], r.data8[18], r.data8[19],
r.data8[20], r.data8[21], r.data8[22], r.data8[23],
r.data8[24], r.data8[25], r.data8[26], r.data8[27]);
if (eeprom_file != null)
eeprom_file.write(log_line);
else
eeprom_pending.add(log_line);
}
}
void CaptureMega(AltosEepromChunk eechunk) throws IOException {
boolean any_valid = false;
extension = "mega";
set_serial(flights.config_data.serial);
for (int i = 0; i < eechunk.chunk_size && !done; i += AltosEepromMega.record_length) {
try {
AltosEepromMega r = new AltosEepromMega(eechunk, i);
if (r.cmd == Altos.AO_LOG_FLIGHT)
set_flight(r.data16(0));
/* Monitor state transitions to update display */
if (r.cmd == Altos.AO_LOG_STATE && r.data16(0) <= Altos.ao_flight_landed) {
state = r.data16(0);
if (state > Altos.ao_flight_pad)
want_file = true;
}
if (r.cmd == Altos.AO_LOG_GPS_TIME) {
year = 2000 + r.data8(14);
month = r.data8(15);
day = r.data8(14);
want_file = true;
}
if (r.cmd == Altos.AO_LOG_STATE && r.data16(0) == Altos.ao_flight_landed)
done = true;
any_valid = true;
LogMega(r);
} catch (ParseException pe) {
if (parse_exception == null)
parse_exception = pe;
}
}
if (!any_valid)
done = true;
CheckFile(false);
}
void CaptureTelemetry(AltosEepromChunk eechunk) throws IOException {
}
void CaptureLog(AltosEepromLog log) throws IOException, InterruptedException, TimeoutException {
int block, state_block = 0;
int log_format = flights.config_data.log_format;
state = 0;
done = false;
start = true;
if (flights.config_data.serial == 0)
throw new IOException("no serial number found");
/* Reset per-capture variables */
flight = 0;
year = 0;
month = 0;
day = 0;
want_file = false;
eeprom_file = null;
eeprom_pending = new LinkedList<String>();
/* Set serial number in the monitor dialog window */
/* Now scan the eeprom, reading blocks of data and converting to .eeprom file form */
state = 0; state_block = log.start_block;
for (block = log.start_block; !done && block < log.end_block; block++) {
monitor.set_value(AltosLib.state_name(state), state, block - state_block);
AltosEepromChunk eechunk = new AltosEepromChunk(serial_line, block, block == log.start_block);
/*
* Guess what kind of data is there if the device
* didn't tell us
*/
if (log_format == Altos.AO_LOG_FORMAT_UNKNOWN) {
if (block == log.start_block) {
if (eechunk.data(0) == Altos.AO_LOG_FLIGHT)
log_format = Altos.AO_LOG_FORMAT_FULL;
else
log_format = Altos.AO_LOG_FORMAT_TINY;
}
}
switch (log_format) {
case AltosLib.AO_LOG_FORMAT_FULL:
extension = "eeprom";
CaptureFull(eechunk);
break;
case AltosLib.AO_LOG_FORMAT_TINY:
extension = "eeprom";
CaptureTiny(eechunk);
break;
case AltosLib.AO_LOG_FORMAT_TELEMETRY:
extension = "telem";
CaptureTelemetry(eechunk);
break;
case AltosLib.AO_LOG_FORMAT_TELESCIENCE:
extension = "science";
CaptureTeleScience(eechunk);
break;
case AltosLib.AO_LOG_FORMAT_MEGAMETRUM:
extension = "mega";
CaptureMega(eechunk);
}
}
CheckFile(true);
if (eeprom_file != null) {
eeprom_file.flush();
eeprom_file.close();
}
}
private void show_message_internal(String message, String title, int message_type) {
JOptionPane.showMessageDialog(frame,
message,
title,
message_type);
}
private void show_message(String in_message, String in_title, int in_message_type) {
final String message = in_message;
final String title = in_title;
final int message_type = in_message_type;
Runnable r = new Runnable() {
public void run() {
try {
show_message_internal(message, title, message_type);
} catch (Exception ex) {
}
}
};
SwingUtilities.invokeLater(r);
}
public void run () {
try {
boolean failed = false;
if (remote)
serial_line.start_remote();
for (AltosEepromLog log : flights) {
parse_exception = null;
if (log.selected) {
monitor.reset();
CaptureLog(log);
}
if (parse_exception != null) {
failed = true;
show_message(String.format("Flight %d download error\n%s\nValid log data saved",
log.flight,
parse_exception.getMessage()),
serial_line.device.toShortString(),
JOptionPane.WARNING_MESSAGE);
}
}
success = !failed;
} catch (IOException ee) {
show_message(ee.getLocalizedMessage(),
serial_line.device.toShortString(),
JOptionPane.ERROR_MESSAGE);
} catch (InterruptedException ie) {
System.out.printf("download interrupted\n");
} catch (TimeoutException te) {
show_message(String.format("Connection to \"%s\" failed",
serial_line.device.toShortString()),
"Connection Failed",
JOptionPane.ERROR_MESSAGE);
} finally {
if (remote) {
try {
serial_line.stop_remote();
} catch (InterruptedException ie) {
}
}
serial_line.flush_output();
}
monitor.done();
if (listener != null) {
Runnable r = new Runnable() {
public void run() {
try {
listener.actionPerformed(new ActionEvent(this,
success ? 1 : 0,
"download"));
} catch (Exception ex) {
}
}
};
SwingUtilities.invokeLater(r);
}
}
public void start() {
eeprom_thread = new Thread(this);
eeprom_thread.start();
}
public void addActionListener(ActionListener l) {
listener = l;
}
public AltosEepromDownload(JFrame given_frame,
AltosSerial given_serial_line,
boolean given_remote,
AltosEepromList given_flights) {
frame = given_frame;
serial_line = given_serial_line;
serial_line.set_frame(frame);
remote = given_remote;
flights = given_flights;
success = false;
monitor = new AltosEepromMonitor(frame, Altos.ao_flight_boost, Altos.ao_flight_landed);
monitor.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (eeprom_thread != null)
eeprom_thread.interrupt();
}
});
}
}
|