1cbddcf9ef9dfbc4c68cf7c20a6c3a5cb84b30f5
[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_10;
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 double parse_double_net(String str) throws ParseException {
57                 try {
58                         return nf_net.parse(str.trim()).doubleValue();
59                 } catch (ParseException pe) {
60                         throw new ParseException("error parsing double " + str, 0);
61                 }
62         }
63
64         public static double parse_coord(String coord) throws ParseException {
65                 String[]        dsf = coord.split("\\D+");
66
67                 if (dsf.length != 3) {
68                         throw new ParseException("error parsing coord " + coord, 0);
69                 }
70                 int deg = parse_int(dsf[0]);
71                 int min = parse_int(dsf[1]);
72                 int frac = parse_int(dsf[2]);
73
74                 double r = deg + (min + frac / 10000.0) / 60.0;
75                 if (coord.endsWith("S") || coord.endsWith("W"))
76                         r = -r;
77                 return r;
78         }
79
80         public static String strip_suffix(String v, String suffix) {
81                 if (v.endsWith(suffix))
82                         return v.substring(0, v.length() - suffix.length());
83                 return v;
84         }
85
86         public static void word(String v, String m) throws ParseException {
87                 if (!v.equals(m)) {
88                         throw new ParseException("error matching '" + v + "' '" + m + "'", 0);
89                 }
90         }
91 }