Merge remote branch 'origin/master' into new-packet-format
[fw/altos] / ao-tools / altosui / AltosTelemetryReader.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.io.*;
21 import java.util.*;
22 import java.text.*;
23 import altosui.AltosTelemetry;
24
25 public class AltosTelemetryReader extends AltosReader {
26         LinkedList<AltosRecord> records;
27
28         Iterator<AltosRecord> record_iterator;
29
30         int     boost_tick;
31
32         public AltosRecord read() throws IOException, ParseException {
33                 AltosRecord     r;
34                 if (!record_iterator.hasNext())
35                         return null;
36
37                 r = record_iterator.next();
38                 r.time = (r.tick - boost_tick) / 100.0;
39                 return r;
40         }
41
42         public AltosTelemetryReader (FileInputStream input) {
43                 boolean saw_boost = false;
44
45                 records = new LinkedList<AltosRecord> ();
46
47                 try {
48                         for (;;) {
49                                 String line = AltosRecord.gets(input);
50                                 if (line == null) {
51                                         break;
52                                 }
53                                 try {
54                                         AltosTelemetry record = new AltosTelemetry(line);
55                                         if (record == null)
56                                                 break;
57                                         if (!saw_boost && record.state >= Altos.ao_flight_boost)
58                                         {
59                                                 saw_boost = true;
60                                                 boost_tick = record.tick;
61                                         }
62                                         records.add(record);
63                                 } catch (ParseException pe) {
64                                         System.out.printf("parse exception %s\n", pe.getMessage());
65                                 }
66                         }
67                 } catch (IOException io) {
68                         System.out.printf("io exception\n");
69                 }
70                 record_iterator = records.iterator();
71                 try {
72                         input.close();
73                 } catch (IOException ie) {
74                 }
75         }
76 }