altosui: Add EasyMini USB ids
[fw/altos] / altoslib / AltosLib.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 org.altusmetrum.altoslib_1;
19
20 import java.util.*;
21 import java.io.*;
22 import java.nio.charset.Charset;
23
24 public class AltosLib {
25         /* EEProm command letters */
26         public static final int AO_LOG_FLIGHT = 'F';
27         public static final int AO_LOG_SENSOR = 'A';
28         public static final int AO_LOG_TEMP_VOLT = 'T';
29         public static final int AO_LOG_DEPLOY = 'D';
30         public static final int AO_LOG_STATE = 'S';
31         public static final int AO_LOG_GPS_TIME = 'G';
32         public static final int AO_LOG_GPS_LAT = 'N';
33         public static final int AO_LOG_GPS_LON = 'W';
34         public static final int AO_LOG_GPS_ALT = 'H';
35         public static final int AO_LOG_GPS_SAT = 'V';
36         public static final int AO_LOG_GPS_DATE = 'Y';
37         public static final int AO_LOG_PRESSURE = 'P';
38
39         /* Added for header fields in eeprom files */
40         public static final int AO_LOG_CONFIG_VERSION = 1000;
41         public static final int AO_LOG_MAIN_DEPLOY = 1001;
42         public static final int AO_LOG_APOGEE_DELAY = 1002;
43         public static final int AO_LOG_RADIO_CHANNEL = 1003;
44         public static final int AO_LOG_CALLSIGN = 1004;
45         public static final int AO_LOG_ACCEL_CAL = 1005;
46         public static final int AO_LOG_RADIO_CAL = 1006;
47         public static final int AO_LOG_MAX_FLIGHT_LOG = 1007;
48         public static final int AO_LOG_MANUFACTURER = 2000;
49         public static final int AO_LOG_PRODUCT = 2001;
50         public static final int AO_LOG_SERIAL_NUMBER = 2002;
51         public static final int AO_LOG_LOG_FORMAT = 2003;
52
53         /* Added for header fields in telemega files */
54         public static final int AO_LOG_BARO_RESERVED = 3000;
55         public static final int AO_LOG_BARO_SENS = 3001;
56         public static final int AO_LOG_BARO_OFF = 3002;
57         public static final int AO_LOG_BARO_TCS = 3004;
58         public static final int AO_LOG_BARO_TCO = 3005;
59         public static final int AO_LOG_BARO_TREF = 3006;
60         public static final int AO_LOG_BARO_TEMPSENS = 3007;
61         public static final int AO_LOG_BARO_CRC = 3008;
62
63         public static final int AO_LOG_SOFTWARE_VERSION = 9999;
64
65         /* Added to flag invalid records */
66         public static final int AO_LOG_INVALID = -1;
67
68         /* Flight state numbers and names */
69         public static final int ao_flight_startup = 0;
70         public static final int ao_flight_idle = 1;
71         public static final int ao_flight_pad = 2;
72         public static final int ao_flight_boost = 3;
73         public static final int ao_flight_fast = 4;
74         public static final int ao_flight_coast = 5;
75         public static final int ao_flight_drogue = 6;
76         public static final int ao_flight_main = 7;
77         public static final int ao_flight_landed = 8;
78         public static final int ao_flight_invalid = 9;
79
80         /* USB product IDs */
81         public final static int vendor_altusmetrum = 0xfffe;
82
83         public final static int product_altusmetrum = 0x000a;
84         public final static int product_telemetrum = 0x000b;
85         public final static int product_teledongle = 0x000c;
86         public final static int product_teleterra = 0x000d;
87         public final static int product_telebt = 0x000e;
88         public final static int product_telelaunch = 0x000f;
89         public final static int product_telelco = 0x0010;
90         public final static int product_telescience = 0x0011;
91         public final static int product_telepyro =0x0012;
92         public final static int product_telemega = 0x0023;
93         public final static int product_megadongle = 0x0024;
94         public final static int product_telegps = 0x0025;
95         public final static int product_easymini = 0x0026;
96         public final static int product_telemini = 0x0027;
97         public final static int product_altusmetrum_min = 0x000a;
98         public final static int product_altusmetrum_max = 0x002c;
99
100         public final static int product_any = 0x10000;
101         public final static int product_basestation = 0x10000 + 1;
102         public final static int product_altimeter = 0x10000 + 2;
103
104         /* Bluetooth "identifier" (bluetooth sucks) */
105         public final static String bt_product_telebt = "TeleBT";
106
107         /* Telemetry modes */
108         public static final int ao_telemetry_off = 0;
109         public static final int ao_telemetry_min = 1;
110         public static final int ao_telemetry_standard = 1;
111         public static final int ao_telemetry_0_9 = 2;
112         public static final int ao_telemetry_0_8 = 3;
113         public static final int ao_telemetry_max = 3;
114
115         private static final String[] ao_telemetry_name = {
116                 "Off", "Standard Telemetry", "TeleMetrum v0.9", "TeleMetrum v0.8"
117         };
118
119         public static final String launch_sites_url = "http://www.altusmetrum.org/AltOS/launch-sites.txt";
120
121         public static final int ao_telemetry_standard_len = 32;
122         public static final int ao_telemetry_0_9_len = 95;
123         public static final int ao_telemetry_0_8_len = 94;
124
125         private static final int[] ao_telemetry_len = {
126                 0, 32, 95, 94
127         };
128
129         private static HashMap<String,Integer>  string_to_state = new HashMap<String,Integer>();
130
131         private static boolean map_initialized = false;
132
133         public static void initialize_map()
134         {
135                 string_to_state.put("startup", ao_flight_startup);
136                 string_to_state.put("idle", ao_flight_idle);
137                 string_to_state.put("pad", ao_flight_pad);
138                 string_to_state.put("boost", ao_flight_boost);
139                 string_to_state.put("fast", ao_flight_fast);
140                 string_to_state.put("coast", ao_flight_coast);
141                 string_to_state.put("drogue", ao_flight_drogue);
142                 string_to_state.put("apogee", ao_flight_coast);
143                 string_to_state.put("main", ao_flight_main);
144                 string_to_state.put("landed", ao_flight_landed);
145                 string_to_state.put("invalid", ao_flight_invalid);
146                 map_initialized = true;
147         }
148
149         public static int telemetry_len(int telemetry) {
150                 if (telemetry <= ao_telemetry_max)
151                         return ao_telemetry_len[telemetry];
152                 throw new IllegalArgumentException(String.format("Invalid telemetry %d",
153                                                                  telemetry));
154         }
155
156         public static String telemetry_name(int telemetry) {
157                 if (telemetry <= ao_telemetry_max)
158                         return ao_telemetry_name[telemetry];
159                 throw new IllegalArgumentException(String.format("Invalid telemetry %d",
160                                                                  telemetry));
161         }
162         
163         private static String[] state_to_string = {
164                 "startup",
165                 "idle",
166                 "pad",
167                 "boost",
168                 "fast",
169                 "coast",
170                 "drogue",
171                 "main",
172                 "landed",
173                 "invalid",
174         };
175
176         private static String[] state_to_string_capital = {
177                 "Startup",
178                 "Idle",
179                 "Pad",
180                 "Boost",
181                 "Fast",
182                 "Coast",
183                 "Drogue",
184                 "Main",
185                 "Landed",
186                 "Invalid",
187         };
188
189         public static int state(String state) {
190                 if (!map_initialized)
191                         initialize_map();
192                 if (string_to_state.containsKey(state))
193                         return string_to_state.get(state);
194                 return ao_flight_invalid;
195         }
196
197         public static String state_name(int state) {
198                 if (state < 0 || state_to_string.length <= state)
199                         return "invalid";
200                 return state_to_string[state];
201         }
202
203         public static String state_name_capital(int state) {
204                 if (state < 0 || state_to_string.length <= state)
205                         return "Invalid";
206                 return state_to_string_capital[state];
207         }
208
209         public static final int AO_GPS_VALID = (1 << 4);
210         public static final int AO_GPS_RUNNING = (1 << 5);
211         public static final int AO_GPS_DATE_VALID = (1 << 6);
212         public static final int AO_GPS_NUM_SAT_SHIFT = 0;
213         public static final int AO_GPS_NUM_SAT_MASK = 0xf;
214
215         public static final int AO_LOG_FORMAT_UNKNOWN = 0;
216         public static final int AO_LOG_FORMAT_FULL = 1;
217         public static final int AO_LOG_FORMAT_TINY = 2;
218         public static final int AO_LOG_FORMAT_TELEMETRY = 3;
219         public static final int AO_LOG_FORMAT_TELESCIENCE = 4;
220         public static final int AO_LOG_FORMAT_TELEMEGA = 5;
221         public static final int AO_LOG_FORMAT_MINI = 6;
222         public static final int AO_LOG_FORMAT_NONE = 127;
223
224         public static boolean isspace(int c) {
225                 switch (c) {
226                 case ' ':
227                 case '\t':
228                         return true;
229                 }
230                 return false;
231         }
232
233         public static boolean ishex(int c) {
234                 if ('0' <= c && c <= '9')
235                         return true;
236                 if ('a' <= c && c <= 'f')
237                         return true;
238                 if ('A' <= c && c <= 'F')
239                         return true;
240                 return false;
241         }
242
243         public static boolean ishex(String s) {
244                 for (int i = 0; i < s.length(); i++)
245                         if (!ishex(s.charAt(i)))
246                                 return false;
247                 return true;
248         }
249
250         public static int fromhex(int c) {
251                 if ('0' <= c && c <= '9')
252                         return c - '0';
253                 if ('a' <= c && c <= 'f')
254                         return c - 'a' + 10;
255                 if ('A' <= c && c <= 'F')
256                         return c - 'A' + 10;
257                 return -1;
258         }
259
260         public static int fromhex(String s) throws NumberFormatException {
261                 int c, v = 0;
262                 for (int i = 0; i < s.length(); i++) {
263                         c = s.charAt(i);
264                         if (!ishex(c)) {
265                                 if (i == 0)
266                                         throw new NumberFormatException(String.format("invalid hex \"%s\"", s));
267                                 return v;
268                         }
269                         v = v * 16 + fromhex(c);
270                 }
271                 return v;
272         }
273
274         public static boolean isdec(int c) {
275                 if ('0' <= c && c <= '9')
276                         return true;
277                 return false;
278         }
279
280         public static boolean isdec(String s) {
281                 for (int i = 0; i < s.length(); i++)
282                         if (!isdec(s.charAt(i)))
283                                 return false;
284                 return true;
285         }
286
287         public static int fromdec(int c) {
288                 if ('0' <= c && c <= '9')
289                         return c - '0';
290                 return -1;
291         }
292
293         public static int int8(int[] bytes, int i) {
294                 return (int) (byte) bytes[i];
295         }
296
297         public static int uint8(int[] bytes, int i) {
298                 return bytes[i];
299         }
300
301         public static int int16(int[] bytes, int i) {
302                 return (int) (short) (bytes[i] + (bytes[i+1] << 8));
303         }
304
305         public static int uint16(int[] bytes, int i) {
306                 return bytes[i] + (bytes[i+1] << 8);
307         }
308
309         public static int uint32(int[] bytes, int i) {
310                 return bytes[i] +
311                         (bytes[i+1] << 8) +
312                         (bytes[i+2] << 16) +
313                         (bytes[i+3] << 24);
314         }
315
316         public static int int32(int[] bytes, int i) {
317                 return (int) uint32(bytes, i);
318         }
319
320         public static final Charset     unicode_set = Charset.forName("UTF-8");
321
322         public static String string(int[] bytes, int s, int l) {
323                 if (s + l > bytes.length) {
324                         if (s > bytes.length) {
325                                 s = bytes.length;
326                                 l = 0;
327                         } else {
328                                 l = bytes.length - s;
329                         }
330                 }
331
332                 int i;
333                 for (i = l - 1; i >= 0; i--)
334                         if (bytes[s+i] != 0)
335                                 break;
336
337                 l = i + 1;
338                 byte[]  b = new byte[l];
339
340                 for (i = 0; i < l; i++)
341                         b[i] = (byte) bytes[s+i];
342                 String n = new String(b, unicode_set);
343                 return n;
344         }
345
346         public static int hexbyte(String s, int i) {
347                 int c0, c1;
348
349                 if (s.length() < i + 2)
350                         throw new NumberFormatException(String.format("invalid hex \"%s\"", s));
351                 c0 = s.charAt(i);
352                 if (!ishex(c0))
353                         throw new NumberFormatException(String.format("invalid hex \"%c\"", c0));
354                 c1 = s.charAt(i+1);
355                 if (!ishex(c1))
356                         throw new NumberFormatException(String.format("invalid hex \"%c\"", c1));
357                 return fromhex(c0) * 16 + fromhex(c1);
358         }
359
360         public static int[] hexbytes(String s) {
361                 int     n;
362                 int[]   r;
363                 int     i;
364
365                 if ((s.length() & 1) != 0)
366                         throw new NumberFormatException(String.format("invalid line \"%s\"", s));
367                 n = s.length() / 2;
368                 r = new int[n];
369                 for (i = 0; i < n; i++)
370                         r[i] = hexbyte(s, i * 2);
371                 return r;
372         }
373
374         public static int fromdec(String s) throws NumberFormatException {
375                 int c, v = 0;
376                 int sign = 1;
377                 for (int i = 0; i < s.length(); i++) {
378                         c = s.charAt(i);
379                         if (i == 0 && c == '-') {
380                                 sign = -1;
381                         } else if (!isdec(c)) {
382                                 if (i == 0)
383                                         throw new NumberFormatException(String.format("invalid number \"%s\"", s));
384                                 return v;
385                         } else
386                                 v = v * 10 + fromdec(c);
387                 }
388                 return v * sign;
389         }
390
391         public static String gets(FileInputStream s) throws IOException {
392                 int c;
393                 String  line = "";
394
395                 while ((c = s.read()) != -1) {
396                         if (c == '\r')
397                                 continue;
398                         if (c == '\n') {
399                                 return line;
400                         }
401                         line = line + (char) c;
402                 }
403                 return null;
404         }
405
406         public static String replace_extension(String input, String extension) {
407                 int dot = input.lastIndexOf(".");
408                 if (dot > 0)
409                         input = input.substring(0,dot);
410                 return input.concat(extension);
411         }
412
413         public static File replace_extension(File input, String extension) {
414                 return new File(replace_extension(input.getPath(), extension));
415         }
416 }