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