a24e82c0f0cbf9236c0da8f0f51d38d854462328
[fw/altos] / altosui / AltosEepromLog.java
1 /*
2  * Copyright © 2011 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 import org.altusmetrum.AltosLib.*;
31
32 import libaltosJNI.*;
33
34 /*
35  * Extract a bit of information from an eeprom-stored flight log.
36  */
37
38 public class AltosEepromLog {
39         int             serial;
40         boolean         has_flight;
41         int             flight;
42         int             start_block;
43         int             end_block;
44
45         int             year, month, day;
46
47         boolean         selected;
48
49         public AltosEepromLog(AltosConfigData config_data,
50                               AltosSerial serial_line,
51                               int in_flight, int in_start_block,
52                               int in_end_block)
53                 throws InterruptedException, TimeoutException {
54
55                 int             block;
56                 boolean         has_date = false;
57
58                 flight = in_flight;
59                 if (flight != 0)
60                         has_flight = true;
61                 start_block = in_start_block;
62                 end_block = in_end_block;
63                 serial = config_data.serial;
64
65                 /*
66                  * Select all flights for download
67                  */
68                 selected = true;
69
70                 /*
71                  * Look in TeleMetrum log data for date
72                  */
73                 if (config_data.log_format == Altos.AO_LOG_FORMAT_UNKNOWN ||
74                     config_data.log_format == Altos.AO_LOG_FORMAT_FULL)
75                 {
76                         /*
77                          * Only look in the first two blocks so that this
78                          * process doesn't take a long time
79                          */
80                         if (in_end_block > in_start_block + 2)
81                                 in_end_block = in_start_block + 2;
82
83                         for (block = in_start_block; block < in_end_block; block++) {
84                                 AltosEepromChunk eechunk = new AltosEepromChunk(serial_line, block, block == in_start_block);
85
86                                 for (int i = 0; i < eechunk.chunk_size; i += AltosEepromRecord.record_length) {
87                                         try {
88                                                 AltosEepromRecord r = new AltosEepromRecord(eechunk, i);
89
90                                                 if (r.cmd == Altos.AO_LOG_FLIGHT) {
91                                                         flight = r.b;
92                                                         has_flight = true;
93                                                 }
94                                                 if (r.cmd == Altos.AO_LOG_GPS_DATE) {
95                                                         year = 2000 + (r.a & 0xff);
96                                                         month = (r.a >> 8) & 0xff;
97                                                         day = (r.b & 0xff);
98                                                         has_date = true;
99                                                 }
100                                         } catch (ParseException pe) {
101                                         }
102                                 }
103                                 if (has_date && has_flight)
104                                         break;
105                         }
106                 }
107         }
108 }