2 * Copyright © 2010 Keith Packard <keithp@keithp.com>
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.
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.
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.
19 package org.altusmetrum.altoslib_14;
24 public class AltosFile extends File {
26 static String number(int n) {
27 if (n == AltosLib.MISSING)
30 return String.format("%04d", n);
33 static String receiver(int receiver) {
34 if (receiver == AltosLib.MISSING)
36 return String.format("-via-%04d", receiver);
39 static private String label(int flight) {
46 static private int flight(int flight) {
52 public AltosFile(int year, int month, int day, int serial, int flight, int receiver, String extension) {
53 super (AltosPreferences.logdir(),
54 String.format("%04d-%02d-%02d-serial-%s-%s-%s%s.%s",
55 year, month, day, number(serial), label(flight), number(flight(flight)), receiver(receiver), extension));
58 public AltosFile(int year, int month, int day, int serial, int flight, String extension) {
59 this(year, month, day, serial, flight, AltosLib.MISSING, extension);
62 public AltosFile(int serial, int flight, int receiver, String extension) {
63 this(Calendar.getInstance().get(Calendar.YEAR),
64 Calendar.getInstance().get(Calendar.MONTH) + 1,
65 Calendar.getInstance().get(Calendar.DAY_OF_MONTH),
72 public AltosFile(int serial, int flight, String extension) {
73 this(Calendar.getInstance().get(Calendar.YEAR),
74 Calendar.getInstance().get(Calendar.MONTH) + 1,
75 Calendar.getInstance().get(Calendar.DAY_OF_MONTH),
82 public AltosFile(AltosCalData cal_data) {
83 this(cal_data.serial, cal_data.flight, cal_data.receiver_serial, "telem");