altosui: Split eeprom download code apart
[fw/altos] / altosui / AltosEepromRecord.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.*;
30
31 import libaltosJNI.*;
32
33 public class AltosEepromRecord {
34         public int      cmd;
35         public int      tick;
36         public int      a;
37         public int      b;
38         public String   data;
39         public boolean  tick_valid;
40
41         int[] ParseHex(String line) {
42                 String[] tokens = line.split("\\s+");
43                 int[] array = new int[tokens.length];
44
45                 for (int i = 0; i < tokens.length; i++)
46                         try {
47                                 array[i] = Integer.parseInt(tokens[i], 16);
48                         } catch (NumberFormatException ne) {
49                                 return null;
50                         }
51                 return array;
52         }
53
54         int checksum(int[] line) {
55                 int     csum = 0x5a;
56                 for (int i = 1; i < line.length; i++)
57                         csum += line[i];
58                 return csum & 0xff;
59         }
60
61         public AltosEepromRecord (AltosSerial serial_line, int addr)
62                 throws TimeoutException, ParseException, InterruptedException {
63                 String  line = serial_line.get_reply(5000);
64                 if (line == null)
65                         throw new TimeoutException();
66                 int[] values = ParseHex(line);
67
68                 if (values == null)
69                         throw new ParseException(String.format("invalid line %s", line), 0);
70                 if (values[0] != (addr & 0xff))
71                         throw new ParseException(String.format("data address out of sync at 0x%x",
72                                                                addr), 0);
73                 if (checksum(values) != 0)
74                         throw new ParseException(String.format("invalid checksum at 0x%x", addr), 0);
75
76                 cmd = values[1];
77                 tick = values[3] + (values[4] << 8);
78                 a = values[5] + (values[6] << 8);
79                 b = values[7] + (values[8] << 8);
80                 data = null;
81                 tick_valid = true;
82         }
83
84         public AltosEepromRecord (String line) {
85                 tick_valid = false;
86                 tick = 0;
87                 a = 0;
88                 b = 0;
89                 data = null;
90                 if (line == null) {
91                         cmd = Altos.AO_LOG_INVALID;
92                         data = "";
93                 } else {
94                         try {
95                                 String[] tokens = line.split("\\s+");
96
97                                 if (tokens[0].length() == 1) {
98                                         if (tokens.length != 4) {
99                                                 cmd = Altos.AO_LOG_INVALID;
100                                                 data = line;
101                                         } else {
102                                                 cmd = tokens[0].codePointAt(0);
103                                                 tick = Integer.parseInt(tokens[1],16);
104                                                 tick_valid = true;
105                                                 a = Integer.parseInt(tokens[2],16);
106                                                 b = Integer.parseInt(tokens[3],16);
107                                         }
108                                 } else if (tokens[0].equals("Config") && tokens[1].equals("version:")) {
109                                         cmd = Altos.AO_LOG_CONFIG_VERSION;
110                                         data = tokens[2];
111                                 } else if (tokens[0].equals("Main") && tokens[1].equals("deploy:")) {
112                                         cmd = Altos.AO_LOG_MAIN_DEPLOY;
113                                         a = Integer.parseInt(tokens[2]);
114                                 } else if (tokens[0].equals("Apogee") && tokens[1].equals("delay:")) {
115                                         cmd = Altos.AO_LOG_APOGEE_DELAY;
116                                         a = Integer.parseInt(tokens[2]);
117                                 } else if (tokens[0].equals("Radio") && tokens[1].equals("channel:")) {
118                                         cmd = Altos.AO_LOG_RADIO_CHANNEL;
119                                         a = Integer.parseInt(tokens[2]);
120                                 } else if (tokens[0].equals("Callsign:")) {
121                                         cmd = Altos.AO_LOG_CALLSIGN;
122                                         data = tokens[1].replaceAll("\"","");
123                                 } else if (tokens[0].equals("Accel") && tokens[1].equals("cal")) {
124                                         cmd = Altos.AO_LOG_ACCEL_CAL;
125                                         a = Integer.parseInt(tokens[3]);
126                                         b = Integer.parseInt(tokens[5]);
127                                 } else if (tokens[0].equals("Radio") && tokens[1].equals("cal:")) {
128                                         cmd = Altos.AO_LOG_RADIO_CAL;
129                                         a = Integer.parseInt(tokens[2]);
130                                 } else if (tokens[0].equals("manufacturer")) {
131                                         cmd = Altos.AO_LOG_MANUFACTURER;
132                                         data = tokens[1];
133                                 } else if (tokens[0].equals("product")) {
134                                         cmd = Altos.AO_LOG_PRODUCT;
135                                         data = tokens[1];
136                                 } else if (tokens[0].equals("serial-number")) {
137                                         cmd = Altos.AO_LOG_SERIAL_NUMBER;
138                                         a = Integer.parseInt(tokens[1]);
139                                 } else if (tokens[0].equals("software-version")) {
140                                         cmd = Altos.AO_LOG_SOFTWARE_VERSION;
141                                         data = tokens[1];
142                                 } else {
143                                         cmd = Altos.AO_LOG_INVALID;
144                                         data = line;
145                                 }
146                         } catch (NumberFormatException ne) {
147                                 cmd = Altos.AO_LOG_INVALID;
148                                 data = line;
149                         }
150                 }
151         }
152
153         public AltosEepromRecord(int in_cmd, int in_tick, int in_a, int in_b) {
154                 tick_valid = true;
155                 cmd = in_cmd;
156                 tick = in_tick;
157                 a = in_a;
158                 b = in_b;
159         }
160 }