stop doing automatic tag push during builds
[fw/altos] / altosui / AltosBTDevice.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 altosui;
19 import java.lang.*;
20 import java.util.*;
21 import libaltosJNI.*;
22
23 public class AltosBTDevice extends altos_bt_device implements AltosDevice {
24
25         public String getProductName() {
26                 String  name = getName();
27                 if (name == null)
28                         return "Altus Metrum";
29                 int     dash = name.lastIndexOf("-");
30                 if (dash < 0)
31                         return name;
32                 return name.substring(0,dash);
33         }
34
35         public int getProduct() {
36                 if (Altos.bt_product_telebt.equals(getProductName()))
37                         return Altos.product_telebt;
38                 return 0;
39         }
40
41         public String getPath() {
42                 return getAddr();
43         }
44
45         public int getSerial() {
46                 String name = getName();
47                 if (name == null)
48                         return 0;
49                 int dash = name.lastIndexOf("-");
50                 if (dash < 0 || dash >= name.length())
51                         return 0;
52                 String sn = name.substring(dash + 1, name.length());
53                 try {
54                         return Integer.parseInt(sn);
55                 } catch (NumberFormatException ne) {
56                         return 0;
57                 }
58         }
59
60         public String toString() {
61                 return String.format("%-20.20s %4d %s",
62                                      getProductName(), getSerial(), getAddr());
63         }
64
65         public String toShortString() {
66                 return String.format("%s %d %s",
67                                      getProductName(), getSerial(), getAddr());
68
69         }
70
71         public SWIGTYPE_p_altos_file open() {
72                 return libaltos.altos_bt_open(this);
73         }
74
75         private boolean isAltusMetrum() {
76                 if (getName().startsWith(Altos.bt_product_telebt))
77                         return true;
78                 return false;
79         }
80
81         public boolean matchProduct(int want_product) {
82
83                 System.out.printf("matchProduct %s %d\n", toString(), want_product);
84 //              if (!isAltusMetrum())
85 //                      return false;
86
87                 if (want_product == Altos.product_any)
88                         return true;
89
90                 if (want_product == Altos.product_basestation)
91                         return matchProduct(Altos.product_telebt);
92
93                 if (want_product == getProduct())
94                         return true;
95
96                 return false;
97         }
98
99         public boolean equals(Object o) {
100                 if (!(o instanceof AltosBTDevice))
101                         return false;
102                 AltosBTDevice other = (AltosBTDevice) o;
103                 System.out.printf("AltosBTDevice equals %s == %s\n", toString(), other.toString());
104                 return getName().equals(other.getName()) && getAddr().equals(other.getAddr());
105         }
106
107         public int hashCode() {
108                 return getName().hashCode() ^ getAddr().hashCode();
109         }
110
111         public AltosBTDevice(String name, String addr) {
112                 libaltos.altos_bt_fill_in(name, addr,this);
113         }
114
115         public AltosBTDevice() {
116         }
117 }