Bump java lib versions in preparation for 1.9.2
[fw/altos] / altoslib / AltosTelemetryFile.java
1 /*
2  * Copyright © 2013 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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 package org.altusmetrum.altoslib_14;
20
21 import java.io.*;
22 import java.util.*;
23 import java.text.*;
24
25 class AltosTelemetryNullListener extends AltosDataListener {
26         public void set_rssi(int rssi, int status) { }
27         public void set_received_time(long received_time) { }
28
29         public void set_acceleration(double accel) { }
30         public void set_pressure(double pa) { }
31         public void set_thrust(double N) { }
32
33         public void set_kalman(double height, double speed, double accel) { }
34
35         public void set_temperature(double deg_c) { }
36         public void set_battery_voltage(double volts) { }
37
38         public void set_apogee_voltage(double volts) { }
39         public void set_main_voltage(double volts) { }
40
41         public void set_gps(AltosGPS gps) { }
42
43         public void set_orient(double orient) { }
44         public void set_gyro(double roll, double pitch, double yaw) { }
45         public void set_accel_ground(double along, double across, double through) { }
46         public void set_accel(double along, double across, double through) { }
47         public void set_mag(double along, double across, double through) { }
48         public void set_pyro_voltage(double volts) { }
49         public void set_igniter_voltage(double[] voltage) { }
50         public void set_pyro_fired(int pyro_mask) { }
51         public void set_companion(AltosCompanion companion) { }
52
53         public boolean cal_data_complete() {
54                 /* All telemetry packets */
55                 AltosCalData cal_data = cal_data();
56
57                 if (cal_data.serial == AltosLib.MISSING)
58                         return false;
59
60                 if (cal_data.boost_tick == AltosLib.MISSING)
61                         return false;
62
63                 /*
64                  * TelemetryConfiguration:
65                  *
66                  * device_type, flight, config version, log max,
67                  * flight params, callsign and version
68                  */
69                 if (cal_data.device_type == AltosLib.MISSING)
70                         return false;
71
72                 /*
73                  * TelemetrySensor or TelemetryMegaData:
74                  *
75                  * ground_accel, accel+/-, ground pressure
76                  */
77                 if (cal_data.ground_pressure == AltosLib.MISSING)
78                         return false;
79
80                 /*
81                  * TelemetryLocation
82                  */
83                 if (AltosLib.has_gps(cal_data.device_type) && cal_data.gps_pad == null)
84                         return false;
85
86                 return true;
87         }
88
89         public AltosTelemetryNullListener(AltosCalData cal_data) {
90                 super(cal_data);
91         }
92 }
93
94 public class AltosTelemetryFile implements AltosRecordSet {
95
96         AltosTelemetryIterable  telems;
97         AltosCalData            cal_data;
98         int                     first_state;
99
100         public void write_comments(PrintStream out) {
101         }
102
103         public void write(PrintStream out) {
104         }
105
106         /* Construct cal data by walking through the telemetry data until we've found everything available */
107         public AltosCalData cal_data() {
108                 if (cal_data == null) {
109                         cal_data = new AltosCalData();
110                         AltosTelemetryNullListener l = new AltosTelemetryNullListener(cal_data);
111
112                         first_state = AltosLib.ao_flight_startup;
113                         for (AltosTelemetry telem : telems) {
114                                 telem.provide_data(l);
115                                 if (cal_data.state == AltosLib.ao_flight_pad)
116                                         first_state = cal_data.state;
117                                 if (l.cal_data_complete())
118                                         break;
119                         }
120                 }
121                 return cal_data;
122         }
123
124         public boolean valid() {
125                 return true;
126         }
127
128         public void capture_series(AltosDataListener listener) {
129                 cal_data();
130                 cal_data.reset();
131                 cal_data.state = first_state;
132                 for (AltosTelemetry telem : telems) {
133                         telem.provide_data(listener);
134                         if (listener.state() == AltosLib.ao_flight_landed)
135                                 break;
136                 }
137                 listener.finish();
138         }
139
140         public AltosTelemetryFile(FileInputStream input) throws IOException {
141                 telems = new AltosTelemetryIterable(input);
142         }
143 }