altoslib: Store common frequencies in library version-independent form
[fw/altos] / altoslib / AltosParse.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 org.altusmetrum.altoslib_11;
19
20 import java.util.*;
21 import java.text.*;
22
23 public class AltosParse {
24         public static boolean isdigit(char c) {
25                 return '0' <= c && c <= '9';
26         }
27
28         public static int parse_int(String v) throws ParseException {
29                 try {
30                         return AltosLib.fromdec(v);
31                 } catch (NumberFormatException e) {
32                         throw new ParseException("error parsing int " + v, 0);
33                 }
34         }
35
36         public static int parse_hex(String v) throws ParseException {
37                 try {
38                         return AltosLib.fromhex(v);
39                 } catch (NumberFormatException e) {
40                         throw new ParseException("error parsing hex " + v, 0);
41                 }
42         }
43
44         static NumberFormat nf_locale = NumberFormat.getInstance();
45
46         static NumberFormat nf_net = NumberFormat.getInstance(Locale.ROOT);
47
48         public static double parse_double_locale(String str) throws ParseException {
49                 try {
50                         return nf_locale.parse(str.trim()).doubleValue();
51                 } catch (ParseException pe) {
52                         throw new ParseException("error parsing double " + str, 0);
53                 }
54         }
55
56         public static String format_double_locale(double number) {
57                 return nf_locale.format(number);
58         }
59
60         public static double parse_double_net(String str) throws ParseException {
61                 try {
62                         return nf_net.parse(str.trim()).doubleValue();
63                 } catch (ParseException pe) {
64                         throw new ParseException("error parsing double " + str, 0);
65                 }
66         }
67
68         public static String format_double_net(double number) {
69                 return nf_net.format(number);
70         }
71
72         public static double parse_coord(String coord) throws ParseException {
73                 String[]        dsf = coord.split("\\D+");
74
75                 if (dsf.length != 3) {
76                         throw new ParseException("error parsing coord " + coord, 0);
77                 }
78                 int deg = parse_int(dsf[0]);
79                 int min = parse_int(dsf[1]);
80                 int frac = parse_int(dsf[2]);
81
82                 double r = deg + (min + frac / 10000.0) / 60.0;
83                 if (coord.endsWith("S") || coord.endsWith("W"))
84                         r = -r;
85                 return r;
86         }
87
88         public static String strip_suffix(String v, String suffix) {
89                 if (v.endsWith(suffix))
90                         return v.substring(0, v.length() - suffix.length());
91                 return v;
92         }
93
94         public static void word(String v, String m) throws ParseException {
95                 if (!v.equals(m)) {
96                         throw new ParseException("error matching '" + v + "' '" + m + "'", 0);
97                 }
98         }
99 }