altoslib: Do data analysis on raw values rather than AltosState
[fw/altos] / altoslib / AltosFile.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; 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_11;
20
21 import java.io.File;
22 import java.util.*;
23
24 public class AltosFile extends File {
25
26         static String number(int n) {
27                 if (n == AltosLib.MISSING)
28                         return "unkn";
29                 else
30                         return String.format("%04d", n);
31         }
32
33         static String receiver(int receiver) {
34                 if (receiver == AltosLib.MISSING)
35                         return "";
36                 return String.format("-via-%04d", receiver);
37         }
38
39         public AltosFile(int year, int month, int day, int serial, int flight, int receiver, String extension) {
40                 super (AltosPreferences.logdir(),
41                        String.format("%04d-%02d-%02d-serial-%s-flight-%s%s.%s",
42                                      year, month, day, number(serial), number(flight), receiver(receiver), extension));
43         }
44
45         public AltosFile(int year, int month, int day, int serial, int flight, String extension) {
46                 this(year, month, day, serial, flight, AltosLib.MISSING, extension);
47         }
48
49         public AltosFile(int serial, int flight, int receiver, String extension) {
50                 this(Calendar.getInstance().get(Calendar.YEAR),
51                      Calendar.getInstance().get(Calendar.MONTH) + 1,
52                      Calendar.getInstance().get(Calendar.DAY_OF_MONTH),
53                      serial,
54                      flight,
55                      receiver,
56                      extension);
57         }
58
59         public AltosFile(int serial, int flight, String extension) {
60                 this(Calendar.getInstance().get(Calendar.YEAR),
61                      Calendar.getInstance().get(Calendar.MONTH) + 1,
62                      Calendar.getInstance().get(Calendar.DAY_OF_MONTH),
63                      serial,
64                      flight,
65                      AltosLib.MISSING,
66                      extension);
67         }
68
69         public AltosFile(AltosCalData cal_data) {
70                 this(cal_data.serial, cal_data.flight, cal_data.receiver_serial, "telem");
71         }
72 }