altos: Shrink ao_cmd_put16, ao_cmd_hex and ao_cmd
[fw/altos] / altosui / AltosEepromIterable.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.LinkedBlockingQueue;
30
31 /*
32  * AltosRecords with an index field so they can be sorted by tick while preserving
33  * the original ordering for elements with matching ticks
34  */
35 class AltosOrderedRecord extends AltosEepromRecord implements Comparable<AltosOrderedRecord> {
36
37         public int      index;
38
39         public AltosOrderedRecord(String line, int in_index, int prev_tick, boolean prev_tick_valid)
40                 throws ParseException {
41                 super(line);
42                 if (prev_tick_valid) {
43                         tick |= (prev_tick & ~0xffff);
44                         if (tick < prev_tick) {
45                                 if (prev_tick - tick > 0x8000)
46                                         tick += 0x10000;
47                         } else {
48                                 if (tick - prev_tick > 0x8000)
49                                         tick -= 0x10000;
50                         }
51                 }
52                 index = in_index;
53         }
54
55         public AltosOrderedRecord(int in_cmd, int in_tick, int in_a, int in_b, int in_index) {
56                 super(in_cmd, in_tick, in_a, in_b);
57                 index = in_index;
58         }
59
60         public String toString() {
61                 return String.format("%d.%d %04x %04x %04x",
62                                      cmd, index, tick, a, b);
63         }
64
65         public int compareTo(AltosOrderedRecord o) {
66                 int     tick_diff = tick - o.tick;
67                 if (tick_diff != 0)
68                         return tick_diff;
69                 return index - o.index;
70         }
71 }
72
73 public class AltosEepromIterable extends AltosRecordIterable {
74
75         static final int        seen_flight = 1;
76         static final int        seen_sensor = 2;
77         static final int        seen_temp_volt = 4;
78         static final int        seen_deploy = 8;
79         static final int        seen_gps_time = 16;
80         static final int        seen_gps_lat = 32;
81         static final int        seen_gps_lon = 64;
82
83         static final int        seen_basic = seen_flight|seen_sensor;
84
85         boolean                 has_accel;
86         boolean                 has_gps;
87         boolean                 has_ignite;
88
89         AltosEepromRecord       flight_record;
90         AltosEepromRecord       gps_date_record;
91
92         TreeSet<AltosOrderedRecord>     records;
93
94         LinkedList<AltosRecord> list;
95
96         class EepromState {
97                 int     seen;
98                 int     n_pad_samples;
99                 double  ground_pres;
100                 int     gps_tick;
101                 int     boost_tick;
102
103                 EepromState() {
104                         seen = 0;
105                         n_pad_samples = 0;
106                         ground_pres = 0.0;
107                         gps_tick = 0;
108                 }
109         }
110
111         void update_state(AltosRecord state, AltosEepromRecord record, EepromState eeprom) {
112                 state.tick = record.tick;
113                 switch (record.cmd) {
114                 case Altos.AO_LOG_FLIGHT:
115                         eeprom.seen |= seen_flight;
116                         state.ground_accel = record.a;
117                         state.flight_accel = record.a;
118                         state.flight = record.b;
119                         eeprom.boost_tick = record.tick;
120                         break;
121                 case Altos.AO_LOG_SENSOR:
122                         state.accel = record.a;
123                         state.pres = record.b;
124                         if (state.state < Altos.ao_flight_boost) {
125                                 eeprom.n_pad_samples++;
126                                 eeprom.ground_pres += state.pres;
127                                 state.ground_pres = (int) (eeprom.ground_pres / eeprom.n_pad_samples);
128                                 state.flight_pres = state.ground_pres;
129                         } else {
130                                 state.flight_pres = (state.flight_pres * 15 + state.pres) / 16;
131                                 state.flight_accel = (state.flight_accel * 15 + state.accel) / 16;
132                                 state.flight_vel += (state.accel_plus_g - state.accel);
133                         }
134                         eeprom.seen |= seen_sensor;
135                         has_accel = true;
136                         break;
137                 case Altos.AO_LOG_PRESSURE:
138                         state.pres = record.b;
139                         state.flight_pres = state.pres;
140                         if (eeprom.n_pad_samples == 0) {
141                                 eeprom.n_pad_samples++;
142                                 state.ground_pres = state.pres;
143                         }
144                         eeprom.seen |= seen_sensor;
145                         break;
146                 case Altos.AO_LOG_TEMP_VOLT:
147                         state.temp = record.a;
148                         state.batt = record.b;
149                         eeprom.seen |= seen_temp_volt;
150                         break;
151                 case Altos.AO_LOG_DEPLOY:
152                         state.drogue = record.a;
153                         state.main = record.b;
154                         eeprom.seen |= seen_deploy;
155                         has_ignite = true;
156                         break;
157                 case Altos.AO_LOG_STATE:
158                         state.state = record.a;
159                         break;
160                 case Altos.AO_LOG_GPS_TIME:
161                         eeprom.gps_tick = state.tick;
162                         AltosGPS old = state.gps;
163                         state.gps = new AltosGPS();
164
165                         /* GPS date doesn't get repeated through the file */
166                         if (old != null) {
167                                 state.gps.year = old.year;
168                                 state.gps.month = old.month;
169                                 state.gps.day = old.day;
170                         }
171                         state.gps.hour = (record.a & 0xff);
172                         state.gps.minute = (record.a >> 8);
173                         state.gps.second = (record.b & 0xff);
174
175                         int flags = (record.b >> 8);
176                         state.gps.connected = (flags & Altos.AO_GPS_RUNNING) != 0;
177                         state.gps.locked = (flags & Altos.AO_GPS_VALID) != 0;
178                         state.gps.nsat = (flags & Altos.AO_GPS_NUM_SAT_MASK) >>
179                                 Altos.AO_GPS_NUM_SAT_SHIFT;
180                         has_gps = true;
181                         break;
182                 case Altos.AO_LOG_GPS_LAT:
183                         int lat32 = record.a | (record.b << 16);
184                         state.gps.lat = (double) lat32 / 1e7;
185                         break;
186                 case Altos.AO_LOG_GPS_LON:
187                         int lon32 = record.a | (record.b << 16);
188                         state.gps.lon = (double) lon32 / 1e7;
189                         break;
190                 case Altos.AO_LOG_GPS_ALT:
191                         state.gps.alt = record.a;
192                         break;
193                 case Altos.AO_LOG_GPS_SAT:
194                         if (state.tick == eeprom.gps_tick) {
195                                 int svid = record.a;
196                                 int c_n0 = record.b >> 8;
197                                 state.gps.add_sat(svid, c_n0);
198                         }
199                         break;
200                 case Altos.AO_LOG_GPS_DATE:
201                         state.gps.year = (record.a & 0xff) + 2000;
202                         state.gps.month = record.a >> 8;
203                         state.gps.day = record.b & 0xff;
204                         break;
205
206                 case Altos.AO_LOG_CONFIG_VERSION:
207                         break;
208                 case Altos.AO_LOG_MAIN_DEPLOY:
209                         break;
210                 case Altos.AO_LOG_APOGEE_DELAY:
211                         break;
212                 case Altos.AO_LOG_RADIO_CHANNEL:
213                         break;
214                 case Altos.AO_LOG_CALLSIGN:
215                         state.callsign = record.data;
216                         break;
217                 case Altos.AO_LOG_ACCEL_CAL:
218                         state.accel_plus_g = record.a;
219                         state.accel_minus_g = record.b;
220                         break;
221                 case Altos.AO_LOG_RADIO_CAL:
222                         break;
223                 case Altos.AO_LOG_MANUFACTURER:
224                         break;
225                 case Altos.AO_LOG_PRODUCT:
226                         break;
227                 case Altos.AO_LOG_SERIAL_NUMBER:
228                         state.serial = record.a;
229                         break;
230                 case Altos.AO_LOG_SOFTWARE_VERSION:
231                         break;
232                 }
233                 state.seen |= eeprom.seen;
234         }
235
236         LinkedList<AltosRecord> make_list() {
237                 LinkedList<AltosRecord>         list = new LinkedList<AltosRecord>();
238                 Iterator<AltosOrderedRecord>    iterator = records.iterator();
239                 AltosOrderedRecord              record = null;
240                 AltosRecord                     state = new AltosRecord();
241                 boolean                         last_reported = false;
242                 EepromState                     eeprom = new EepromState();
243
244                 state.state = Altos.ao_flight_pad;
245                 state.accel_plus_g = 15758;
246                 state.accel_minus_g = 16294;
247
248                 /* Pull in static data from the flight and gps_date records */
249                 if (flight_record != null)
250                         update_state(state, flight_record, eeprom);
251                 if (gps_date_record != null)
252                         update_state(state, gps_date_record, eeprom);
253
254                 while (iterator.hasNext()) {
255                         record = iterator.next();
256                         if ((eeprom.seen & seen_basic) == seen_basic && record.tick != state.tick) {
257                                 AltosRecord r = new AltosRecord(state);
258                                 r.time = (r.tick - eeprom.boost_tick) / 100.0;
259                                 list.add(r);
260                         }
261                         update_state(state, record, eeprom);
262                 }
263                 AltosRecord r = new AltosRecord(state);
264                 r.time = (r.tick - eeprom.boost_tick) / 100.0;
265                 list.add(r);
266                 return list;
267         }
268
269         public Iterator<AltosRecord> iterator() {
270                 if (list == null)
271                         list = make_list();
272                 return list.iterator();
273         }
274
275         public boolean has_gps() { return has_gps; }
276         public boolean has_accel() { return has_accel; }
277         public boolean has_ignite() { return has_ignite; }
278
279         public void write_comments(PrintStream out) {
280                 Iterator<AltosOrderedRecord>    iterator = records.iterator();
281                 out.printf("# Comments\n");
282                 while (iterator.hasNext()) {
283                         AltosOrderedRecord      record = iterator.next();
284                         switch (record.cmd) {
285                         case Altos.AO_LOG_CONFIG_VERSION:
286                                 out.printf("# Config version: %s\n", record.data);
287                                 break;
288                         case Altos.AO_LOG_MAIN_DEPLOY:
289                                 out.printf("# Main deploy: %s\n", record.a);
290                                 break;
291                         case Altos.AO_LOG_APOGEE_DELAY:
292                                 out.printf("# Apogee delay: %s\n", record.a);
293                                 break;
294                         case Altos.AO_LOG_RADIO_CHANNEL:
295                                 out.printf("# Radio channel: %s\n", record.a);
296                                 break;
297                         case Altos.AO_LOG_CALLSIGN:
298                                 out.printf("# Callsign: %s\n", record.data);
299                                 break;
300                         case Altos.AO_LOG_ACCEL_CAL:
301                                 out.printf ("# Accel cal: %d %d\n", record.a, record.b);
302                                 break;
303                         case Altos.AO_LOG_RADIO_CAL:
304                                 out.printf ("# Radio cal: %d\n", record.a);
305                                 break;
306                         case Altos.AO_LOG_MAX_FLIGHT_LOG:
307                                 out.printf ("# Max flight log: %d\n", record.a);
308                                 break;
309                         case Altos.AO_LOG_MANUFACTURER:
310                                 out.printf ("# Manufacturer: %s\n", record.data);
311                                 break;
312                         case Altos.AO_LOG_PRODUCT:
313                                 out.printf ("# Product: %s\n", record.data);
314                                 break;
315                         case Altos.AO_LOG_SERIAL_NUMBER:
316                                 out.printf ("# Serial number: %d\n", record.a);
317                                 break;
318                         case Altos.AO_LOG_SOFTWARE_VERSION:
319                                 out.printf ("# Software version: %s\n", record.data);
320                                 break;
321                         }
322                 }
323         }
324
325         /*
326          * Given an AO_LOG_GPS_TIME record with correct time, and one
327          * missing time, rewrite the missing time values with the good
328          * ones, assuming that the difference between them is 'diff' seconds
329          */
330         void update_time(AltosOrderedRecord good, AltosOrderedRecord bad) {
331
332                 int diff = (bad.tick - good.tick + 50) / 100;
333
334                 int hour = (good.a & 0xff);
335                 int minute = (good.a >> 8);
336                 int second = (good.b & 0xff);
337                 int flags = (good.b >> 8);
338                 int seconds = hour * 3600 + minute * 60 + second;
339
340                 /* Make sure this looks like a good GPS value */
341                 if ((flags & Altos.AO_GPS_NUM_SAT_MASK) >> Altos.AO_GPS_NUM_SAT_SHIFT < 4)
342                         flags = (flags & ~Altos.AO_GPS_NUM_SAT_MASK) | (4 << Altos.AO_GPS_NUM_SAT_SHIFT);
343                 flags |= Altos.AO_GPS_RUNNING;
344                 flags |= Altos.AO_GPS_VALID;
345
346                 int new_seconds = seconds + diff;
347                 if (new_seconds < 0)
348                         new_seconds += 24 * 3600;
349                 int new_second = (new_seconds % 60);
350                 int new_minutes = (new_seconds / 60);
351                 int new_minute = (new_minutes % 60);
352                 int new_hours = (new_minutes / 60);
353                 int new_hour = (new_hours % 24);
354
355                 bad.a = new_hour + (new_minute << 8);
356                 bad.b = new_second + (flags << 8);
357         }
358
359         /*
360          * Read the whole file, dumping records into a RB tree so
361          * we can enumerate them in time order -- the eeprom data
362          * are sometimes out of order with GPS data getting timestamps
363          * matching the first packet out of the GPS unit but not
364          * written until the final GPS packet has been received.
365          */
366         public AltosEepromIterable (FileInputStream input) {
367                 records = new TreeSet<AltosOrderedRecord>();
368
369                 AltosOrderedRecord last_gps_time = null;
370
371                 int index = 0;
372                 int prev_tick = 0;
373                 boolean prev_tick_valid = false;
374                 boolean missing_time = false;
375
376                 try {
377                         for (;;) {
378                                 String line = AltosRecord.gets(input);
379                                 if (line == null)
380                                         break;
381                                 AltosOrderedRecord record = new AltosOrderedRecord(line, index++, prev_tick, prev_tick_valid);
382                                 if (record == null)
383                                         break;
384                                 if (record.cmd == Altos.AO_LOG_INVALID)
385                                         continue;
386                                 prev_tick = record.tick;
387                                 if (record.cmd < Altos.AO_LOG_CONFIG_VERSION)
388                                         prev_tick_valid = true;
389                                 if (record.cmd == Altos.AO_LOG_FLIGHT) {
390                                         flight_record = record;
391                                         continue;
392                                 }
393
394                                 /* Two firmware bugs caused the loss of some GPS data.
395                                  * The flight date would never be recorded, and often
396                                  * the flight time would get overwritten by another
397                                  * record. Detect the loss of the GPS date and fix up the
398                                  * missing time records
399                                  */
400                                 if (record.cmd == Altos.AO_LOG_GPS_DATE) {
401                                         gps_date_record = record;
402                                         continue;
403                                 }
404
405                                 /* go back and fix up any missing time values */
406                                 if (record.cmd == Altos.AO_LOG_GPS_TIME) {
407                                         last_gps_time = record;
408                                         if (missing_time) {
409                                                 Iterator<AltosOrderedRecord> iterator = records.iterator();
410                                                 while (iterator.hasNext()) {
411                                                         AltosOrderedRecord old = iterator.next();
412                                                         if (old.cmd == Altos.AO_LOG_GPS_TIME &&
413                                                             old.a == -1 && old.b == -1)
414                                                         {
415                                                                 update_time(record, old);
416                                                         }
417                                                 }
418                                                 missing_time = false;
419                                         }
420                                 }
421
422                                 if (record.cmd == Altos.AO_LOG_GPS_LAT) {
423                                         if (last_gps_time == null || last_gps_time.tick != record.tick) {
424                                                 AltosOrderedRecord add_gps_time = new AltosOrderedRecord(Altos.AO_LOG_GPS_TIME,
425                                                                                                          record.tick,
426                                                                                                          -1, -1, index-1);
427                                                 if (last_gps_time != null)
428                                                         update_time(last_gps_time, add_gps_time);
429                                                 else
430                                                         missing_time = true;
431
432                                                 records.add(add_gps_time);
433                                                 record.index = index++;
434                                         }
435                                 }
436                                 records.add(record);
437
438                                 /* Bail after reading the 'landed' record; we're all done */
439                                 if (record.cmd == Altos.AO_LOG_STATE &&
440                                     record.a == Altos.ao_flight_landed)
441                                         break;
442                         }
443                 } catch (IOException io) {
444                 } catch (ParseException pe) {
445                 }
446                 try {
447                         input.close();
448                 } catch (IOException ie) {
449                 }
450         }
451 }