summaryrefslogtreecommitdiff
path: root/ao-tools/altosui/AltosEepromReader.java
blob: 3f2d4c625671877e047b1d5d903a8c02b4415b3a (plain) (blame)
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
/*
 * 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.LinkedBlockingQueue;

import altosui.AltosRecord;
import altosui.AltosState;
import altosui.AltosDeviceDialog;
import altosui.AltosPreferences;
import altosui.AltosLog;
import altosui.AltosVoice;
import altosui.AltosEepromMonitor;

/*
 * AltosRecords with an index field so they can be sorted by tick while preserving
 * the original ordering for elements with matching ticks
 */
class AltosOrderedRecord extends AltosEepromRecord implements Comparable<AltosOrderedRecord> {

	int	index;

	public AltosOrderedRecord(String line, int in_index, int prev_tick)
		throws ParseException {
		super(line);
		int new_tick = tick | (prev_tick & ~0xffff);
		if (new_tick < prev_tick) {
			if (prev_tick - new_tick > 0x8000)
				new_tick += 0x10000;
		}
		tick = new_tick;
		index = in_index;
	}

	public int compareTo(AltosOrderedRecord o) {
		int	tick_diff = tick - o.tick;
		if (tick_diff != 0)
			return tick_diff;
		return index - o.index;
	}
}

public class AltosEepromReader extends AltosReader {

	static final int	seen_flight = 1;
	static final int	seen_sensor = 2;
	static final int	seen_temp_volt = 4;
	static final int	seen_deploy = 8;
	static final int	seen_gps_time = 16;
	static final int	seen_gps_lat = 32;
	static final int	seen_gps_lon = 64;

	static final int	seen_basic = seen_flight|seen_sensor|seen_temp_volt|seen_deploy;

	AltosRecord		state;
	AltosOrderedRecord	record;

	TreeSet<AltosOrderedRecord>	records;

	Iterator<AltosOrderedRecord>			record_iterator;

	int			seen;

	int			index;

	boolean			last_reported;

	double			ground_pres;
	double			ground_accel;

	int			n_pad_samples;

	int			gps_tick;

	boolean			saw_boost;

	int			boost_tick;

	public AltosRecord read() throws IOException, ParseException {
		for (;;) {
			if (record == null) {
				if (!record_iterator.hasNext()) {
					if (last_reported)
						return null;
					last_reported = true;
					return state;
				}
				record = record_iterator.next();

				if ((seen & seen_basic) == seen_basic && record.tick != state.tick) {
					AltosRecord r = new AltosRecord(state);
					r.time = (r.tick - boost_tick) / 100.0;
					return r;
				}
			}

			state.tick = record.tick;
			switch (record.cmd) {
			case Altos.AO_LOG_FLIGHT:
				state.ground_accel = record.a;
				state.flight = record.b;
				seen |= seen_flight;
				break;
			case Altos.AO_LOG_SENSOR:
				state.accel = record.a;
				state.pres = record.b;
				if (state.state < Altos.ao_flight_boost) {
					n_pad_samples++;
					ground_pres += state.pres;
					state.ground_pres = (int) (ground_pres / n_pad_samples);
					state.flight_pres = state.ground_pres;
					ground_accel += state.accel;
					state.ground_accel = (int) (ground_accel / n_pad_samples);
					state.flight_accel = state.ground_accel;
				} else {
					state.flight_pres = (state.flight_pres * 15 + state.pres) / 16;
					state.flight_accel = (state.flight_accel * 15 + state.accel) / 16;
					state.flight_vel += (state.accel_plus_g - state.accel);
				}
				seen |= seen_sensor;
				break;
			case Altos.AO_LOG_TEMP_VOLT:
				state.temp = record.a;
				state.batt = record.b;
				seen |= seen_temp_volt;
				break;
			case Altos.AO_LOG_DEPLOY:
				state.drogue = record.a;
				state.main = record.b;
				seen |= seen_deploy;
				break;
			case Altos.AO_LOG_STATE:
				state.state = record.a;
				break;
			case Altos.AO_LOG_GPS_TIME:
				gps_tick = state.tick;
				state.gps = new AltosGPS();
				state.gps.hour = (record.a & 0xff);
				state.gps.minute = (record.a >> 8);
				state.gps.second = (record.b & 0xff);
				int flags = (record.b >> 8);
				state.gps.connected = (flags & Altos.AO_GPS_RUNNING) != 0;
				state.gps.locked = (flags & Altos.AO_GPS_VALID) != 0;
				state.gps.date_valid = (flags & Altos.AO_GPS_DATE_VALID) != 0;
				state.gps.nsat = (flags & Altos.AO_GPS_NUM_SAT_MASK) >>
					Altos.AO_GPS_NUM_SAT_SHIFT;
				break;
			case Altos.AO_LOG_GPS_LAT:
				int lat32 = record.a | (record.b << 16);
				state.gps.lat = (double) lat32 / 1e7;
				break;
			case Altos.AO_LOG_GPS_LON:
				int lon32 = record.a | (record.b << 16);
				state.gps.lon = (double) lon32 / 1e7;
				break;
			case Altos.AO_LOG_GPS_ALT:
				state.gps.alt = record.a;
				break;
			case Altos.AO_LOG_GPS_SAT:
				if (state.tick == gps_tick) {
					int svid = record.a;
					int c_n0 = record.b >> 8;
					state.gps.add_sat(svid, c_n0);
				}
				break;
			case Altos.AO_LOG_GPS_DATE:
				state.gps.year = record.a & 0xff;
				state.gps.month = record.a >> 8;
				state.gps.day = record.b & 0xff;
				break;

			case Altos.AO_LOG_CONFIG_VERSION:
				break;
			case Altos.AO_LOG_MAIN_DEPLOY:
				break;
			case Altos.AO_LOG_APOGEE_DELAY:
				break;
			case Altos.AO_LOG_RADIO_CHANNEL:
				break;
			case Altos.AO_LOG_CALLSIGN:
				state.callsign = record.data;
				break;
			case Altos.AO_LOG_ACCEL_CAL:
				state.accel_plus_g = record.a;
				state.accel_minus_g = record.b;
				break;
			case Altos.AO_LOG_RADIO_CAL:
				break;
			case Altos.AO_LOG_MANUFACTURER:
				break;
			case Altos.AO_LOG_PRODUCT:
				break;
			case Altos.AO_LOG_SERIAL_NUMBER:
				state.serial = record.a;
				break;
			case Altos.AO_LOG_SOFTWARE_VERSION:
				break;
			}
			record = null;
		}
	}

	public void write_comments(PrintStream out) {
		Iterator<AltosOrderedRecord>	iterator = records.iterator();
		out.printf("# Comments\n");
		while (iterator.hasNext()) {
			AltosOrderedRecord	record = iterator.next();
			switch (record.cmd) {
			case Altos.AO_LOG_CONFIG_VERSION:
				out.printf("# Config version: %s\n", record.data);
				break;
			case Altos.AO_LOG_MAIN_DEPLOY:
				out.printf("# Main deploy: %s\n", record.a);
				break;
			case Altos.AO_LOG_APOGEE_DELAY:
				out.printf("# Apogee delay: %s\n", record.a);
				break;
			case Altos.AO_LOG_RADIO_CHANNEL:
				out.printf("# Radio channel: %s\n", record.a);
				break;
			case Altos.AO_LOG_CALLSIGN:
				out.printf("# Callsign: %s\n", record.data);
				break;
			case Altos.AO_LOG_ACCEL_CAL:
				out.printf ("# Accel cal: %d %d\n", record.a, record.b);
				break;
			case Altos.AO_LOG_RADIO_CAL:
				out.printf ("# Radio cal: %d\n", record.a);
				break;
			case Altos.AO_LOG_MANUFACTURER:
				out.printf ("# Manufacturer: %s\n", record.data);
				break;
			case Altos.AO_LOG_PRODUCT:
				out.printf ("# Product: %s\n", record.data);
				break;
			case Altos.AO_LOG_SERIAL_NUMBER:
				out.printf ("# Serial number: %d\n", record.a);
				break;
			case Altos.AO_LOG_SOFTWARE_VERSION:
				out.printf ("# Software version: %s\n", record.data);
				break;
			}
		}
	}

	/*
	 * Read the whole file, dumping records into a RB tree so
	 * we can enumerate them in time order -- the eeprom data
	 * are sometimes out of order with GPS data getting timestamps
	 * matching the first packet out of the GPS unit but not
	 * written until the final GPS packet has been received.
	 */
	public AltosEepromReader (FileInputStream input) {
		state = new AltosRecord();
		state.state = Altos.ao_flight_pad;
		state.accel_plus_g = 15758;
		state.accel_minus_g = 16294;
		seen = 0;
		records = new TreeSet<AltosOrderedRecord>();

		int index = 0;
		int tick = 0;

		try {
			for (;;) {
				String line = AltosRecord.gets(input);
				if (line == null)
					break;
				AltosOrderedRecord record = new AltosOrderedRecord(line, index++, tick);
				if (record == null)
					break;
				tick = record.tick;
				if (!saw_boost && record.cmd == Altos.AO_LOG_STATE &&
				    record.a >= Altos.ao_flight_boost)
				{
					saw_boost = true;
					boost_tick = tick;
				}
				records.add(record);
			}
		} catch (IOException io) {
		} catch (ParseException pe) {
		}
		record_iterator = records.iterator();
		try {
			input.close();
		} catch (IOException ie) {
		}
	}
}