Merge remote-tracking branch 'mjb/master'
[fw/altos] / altoslib / AltosTelemetryMap.java
1 /*
2  * Copyright © 2011 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_1;
19 import java.text.*;
20 import java.util.HashMap;
21
22 public class AltosTelemetryMap extends HashMap<String,String> {
23         public boolean has(String key) {
24                 return containsKey(key);
25         }
26
27         public String get_string(String key) throws ParseException {
28                 if (!has(key))
29                         throw new ParseException ("missing " + key, 0);
30                 return (String) get(key);
31         }
32
33         public String get_string(String key, String def) {
34                 if (has(key))
35                         return get(key);
36                 else
37                         return def;
38         }
39
40         public int get_int(String key) throws ParseException {
41                 return AltosParse.parse_int(get_string(key));
42         }
43
44         public int get_int(String key, int def) throws ParseException {
45                 if (has(key))
46                         return get_int(key);
47                 else
48                         return def;
49         }
50
51         public double get_double(String key, double def, double scale) throws ParseException {
52                 if (has(key))
53                         return get_int(key) * scale;
54                 else
55                         return def;
56         }
57
58         public AltosTelemetryMap(String[] words, int start) {
59                 for (int i = start; i < words.length - 1; i += 2)
60                         put(words[i], words[i+1]);
61         }
62 }