1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
|
/**
* Author: Sven Gothel <sgothel@jausoft.com>
* Copyright (c) 2020 Gothel Software e.K.
* Copyright (c) 2020 ZAFENA AB
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import org.tinyb.AdapterSettings;
import org.tinyb.BluetoothAdapter;
import org.tinyb.BluetoothAddressType;
import org.tinyb.BluetoothDevice;
import org.tinyb.AdapterStatusListener;
import org.tinyb.BluetoothException;
import org.tinyb.BluetoothFactory;
import org.tinyb.BluetoothGattCharacteristic;
import org.tinyb.BluetoothGattService;
import org.tinyb.BluetoothManager;
import org.tinyb.BluetoothNotification;
import org.tinyb.BluetoothUtils;
import org.tinyb.EIRDataTypeSet;
import org.tinyb.GATTCharacteristicListener;
import org.tinyb.HCIWhitelistConnectType;
public class ScannerTinyB10 {
static {
System.setProperty("org.tinyb.verbose", "true");
}
static final String EUI48_ANY_DEVICE = "00:00:00:00:00:00";
String waitForDevice = EUI48_ANY_DEVICE;
long timestamp_t0;
boolean USE_WHITELIST = false;
final List<String> whitelist = new ArrayList<String>();
int factory = 0;
int dev_id = 0; // default
Collection<String> devicesInProcessing = Collections.synchronizedCollection(new ArrayList<>());
Collection<String> devicesProcessed = Collections.synchronizedCollection(new ArrayList<>());
final AdapterStatusListener statusListener = new AdapterStatusListener() {
@Override
public void adapterSettingsChanged(final BluetoothAdapter adapter, final AdapterSettings oldmask,
final AdapterSettings newmask, final AdapterSettings changedmask, final long timestamp) {
System.err.println("****** SETTINGS: "+oldmask+" -> "+newmask+", changed "+changedmask);
System.err.println("Status Adapter:");
System.err.println(adapter.toString());
}
@Override
public void discoveringChanged(final BluetoothAdapter adapter, final boolean enabled, final boolean keepAlive, final long timestamp) {
System.err.println("****** DISCOVERING: enabled "+enabled+", keepAlive "+keepAlive+" on "+adapter);
}
@Override
public void deviceFound(final BluetoothDevice device, final long timestamp) {
System.err.println("****** FOUND__: "+device.toString());
if( BluetoothAddressType.BDADDR_LE_PUBLIC != device.getAddressType()
/** && BluetoothAddressType.BDADDR_LE_RANDOM != device.getAddressType() */ ) {
System.err.println("****** FOUND__-2: Skip non public LE "+device.toString());
return;
}
if( !devicesInProcessing.contains( device.getAddress() ) &&
( waitForDevice.equals(EUI48_ANY_DEVICE) ||
( waitForDevice.equals(device.getAddress()) && !devicesProcessed.contains(waitForDevice) )
) )
{
System.err.println("****** FOUND__-0: Connecting "+device.toString());
final Thread deviceConnectTask = new Thread( new Runnable() {
@Override
public void run() {
connectDiscoveredDevice(device);
}
}, "DBT-Connect-"+device.getAddress());
deviceConnectTask.setDaemon(true); // detach thread
deviceConnectTask.start();
} else {
System.err.println("****** FOUND__-1: NOP "+device.toString());
}
}
@Override
public void deviceUpdated(final BluetoothDevice device, final long timestamp, final EIRDataTypeSet updateMask) {
System.err.println("****** UPDATED: "+updateMask+" of "+device);
}
@Override
public void deviceConnectionChanged(final BluetoothDevice device, final boolean connected, final long timestamp) {
System.err.println("****** CONNECTION: connected "+connected+": "+device);
if( !connected ) {
System.err.println("****** DISCONNECTED: "+device.toString());
return;
}
if( !devicesInProcessing.contains( device.getAddress() ) &&
( waitForDevice.equals(EUI48_ANY_DEVICE) ||
( waitForDevice.equals(device.getAddress()) && !devicesProcessed.contains(waitForDevice) )
) )
{
System.err.println("****** CONNECTED-0: Processing "+device.toString());
final Thread deviceProcessingTask = new Thread( new Runnable() {
@Override
public void run() {
processConnectedDevice(device);
}
}, "DBT-Process-"+device.getAddress());
devicesInProcessing.add(device.getAddress());
deviceProcessingTask.setDaemon(true); // detach thread
deviceProcessingTask.start();
} else {
System.err.println("****** CONNECTED-1: NOP %s" + device.toString());
}
}
};
final GATTCharacteristicListener myCharacteristicListener = new GATTCharacteristicListener() {
@Override
public void notificationReceived(final BluetoothGattCharacteristic charDecl,
final byte[] value, final long timestamp) {
System.err.println("****** GATT notificationReceived: "+charDecl+
", value "+BluetoothUtils.bytesHexString(value, true, true));
}
@Override
public void indicationReceived(final BluetoothGattCharacteristic charDecl,
final byte[] value, final long timestamp, final boolean confirmationSent) {
System.err.println("****** GATT indicationReceived: "+charDecl+
", value "+BluetoothUtils.bytesHexString(value, true, true));
}
};
private void connectDiscoveredDevice(final BluetoothDevice device) {
System.err.println("****** Connecting Device: Start " + device.toString());
device.getAdapter().stopDiscovery();
boolean res = false;
if( !USE_WHITELIST ) {
res = device.connect();
}
System.err.println("****** Connecting Device: End result "+res+" of " + device.toString());
if( !USE_WHITELIST && 0 == devicesInProcessing.size() && !res ) {
device.getAdapter().startDiscovery( true );
}
}
private void processConnectedDevice(final BluetoothDevice device) {
System.err.println("****** Processing Device: Start " + device.toString());
final long t1 = BluetoothUtils.getCurrentMilliseconds();
boolean success = false;
//
// GATT Service Processing
//
try {
final List<BluetoothGattService> primServices = device.getServices(); // implicit GATT connect...
if( null == primServices || 0 == primServices.size() ) {
// Cheating the flow, but avoiding: goto, do-while-false and lastly unreadable intendations
// And it is an error case nonetheless ;-)
throw new RuntimeException("Processing Device: getServices() failed " + device.toString());
}
final long t5 = BluetoothUtils.getCurrentMilliseconds();
{
final long td15 = t5 - t1; // connected -> gatt-complete
final long tdc5 = t5 - device.getCreationTimestamp(); // discovered to gatt-complete
final long td05 = t5 - timestamp_t0; // adapter-init -> gatt-complete
System.err.println(System.lineSeparator()+System.lineSeparator());
System.err.println("GATT primary-services completed\n");
System.err.println(" connected to gatt-complete " + td15 + " ms,"+System.lineSeparator()+
" discovered to gatt-complete " + tdc5 + " ms (connect " + (tdc5 - td15) + " ms),"+System.lineSeparator()+
" adapter-init to gatt-complete " + td05 + " ms"+System.lineSeparator());
}
final boolean addedCharacteristicListenerRes =
BluetoothGattService.addCharacteristicListenerToAll(device, primServices, myCharacteristicListener);
System.err.println("Added GATTCharacteristicListener: "+addedCharacteristicListenerRes);
int i=0, j=0;
for(final Iterator<BluetoothGattService> srvIter = primServices.iterator(); srvIter.hasNext(); i++) {
final BluetoothGattService primService = srvIter.next();
System.err.printf(" [%02d] Service %s\n", i, primService.toString());
System.err.printf(" [%02d] Service Characteristics\n", i);
final List<BluetoothGattCharacteristic> serviceCharacteristics = primService.getCharacteristics();
for(final Iterator<BluetoothGattCharacteristic> charIter = serviceCharacteristics.iterator(); charIter.hasNext(); j++) {
final BluetoothGattCharacteristic serviceChar = charIter.next();
System.err.printf(" [%02d.%02d] Decla: %s\n", i, j, serviceChar.toString());
final List<String> properties = Arrays.asList(serviceChar.getFlags());
if( properties.contains("read") ) {
final byte[] value = serviceChar.readValue();
final String svalue = BluetoothUtils.getUTF8String(value, 0, value.length);
System.err.printf(" [%02d.%02d] Value: %s ('%s')\n",
i, j, BluetoothUtils.bytesHexString(value, true, true), svalue);
}
}
}
// FIXME sleep 1s for potential callbacks ..
try {
Thread.sleep(1000);
} catch (final InterruptedException e) {
e.printStackTrace();
}
success = true;
} catch (final Throwable t ) {
System.err.println("****** Processing Device: Exception caught for " + device.toString() + ": "+t.getMessage());
t.printStackTrace();
} finally {
device.disconnect(); // will implicitly purge the GATT data, including GATTCharacteristic listener.
if( !USE_WHITELIST && 1 >= devicesInProcessing.size() ) {
device.getAdapter().startDiscovery( true );
}
devicesInProcessing.remove(device.getAddress());
System.err.println("****** Processing Device: End: Success " + success + " on " + device.toString());
if( success ) {
devicesProcessed.add(device.getAddress());
}
}
}
public void runTest() {
final BluetoothFactory.ImplementationIdentifier implID = 0 == factory ? BluetoothFactory.DirectBTImplementationID : BluetoothFactory.DBusImplementationID;
final BluetoothManager manager;
{
BluetoothManager _manager = null;
try {
_manager = BluetoothFactory.getBluetoothManager( implID );
} catch (BluetoothException | NoSuchMethodException | SecurityException
| IllegalAccessException | IllegalArgumentException
| InvocationTargetException | ClassNotFoundException e) {
System.err.println("Unable to instantiate BluetoothManager via "+implID);
e.printStackTrace();
System.exit(-1);
}
manager = _manager;
}
final BluetoothAdapter adapter;
{
final List<BluetoothAdapter> adapters = manager.getAdapters();
for(int i=0; i < adapters.size(); i++) {
System.err.println("Adapter["+i+"]: "+adapters.get(i));
}
if( adapters.size() <= dev_id ) {
System.err.println("No adapter dev_id "+dev_id+" available, adapter count "+adapters.size());
System.exit(-1);
}
adapter = adapters.get(dev_id);
}
timestamp_t0 = BluetoothUtils.getCurrentMilliseconds();
adapter.addStatusListener(statusListener, null);
adapter.enableDiscoverableNotifications(new BooleanNotification("Discoverable", timestamp_t0));
adapter.enableDiscoveringNotifications(new BooleanNotification("Discovering", timestamp_t0));
adapter.enablePairableNotifications(new BooleanNotification("Pairable", timestamp_t0));
adapter.enablePoweredNotifications(new BooleanNotification("Powered", timestamp_t0));
boolean done = false;
if( USE_WHITELIST ) {
for(final Iterator<String> wliter = whitelist.iterator(); wliter.hasNext(); ) {
final String addr = wliter.next();
final boolean res = adapter.addDeviceToWhitelist(addr, BluetoothAddressType.BDADDR_LE_PUBLIC, HCIWhitelistConnectType.HCI_AUTO_CONN_ALWAYS);
System.err.println("Added to whitelist: res "+res+", address "+addr);
}
} else {
if( !adapter.startDiscovery( true ) ) {
System.err.println("Adapter start discovery failed");
done = true;
}
}
while( !done ) {
if( !waitForDevice.equals(EUI48_ANY_DEVICE) && devicesProcessed.contains(waitForDevice) ) {
System.err.println("****** WaitForDevice processed "+waitForDevice);
done = true;
}
try {
Thread.sleep(3000);
} catch (final InterruptedException e) {
e.printStackTrace();
}
}
// All implicit via destructor or shutdown hook!
// adapter.close();
// manager.shutdown();
}
public static void main(final String[] args) throws InterruptedException {
final ScannerTinyB10 test = new ScannerTinyB10();
boolean waitForEnter=false;
{
for(int i=0; i< args.length; i++) {
final String arg = args[i];
if( arg.equals("-wait") ) {
waitForEnter = true;
} else if( arg.equals("-dev_id") && args.length > (i+1) ) {
test.dev_id = Integer.valueOf(args[++i]).intValue();
} else if( arg.equals("-mac") && args.length > (i+1) ) {
test.waitForDevice = args[++i];
} else if( arg.equals("-wl") && args.length > (i+1) ) {
final String addr = args[++i];
System.err.println("Whitelist + "+addr);
test.whitelist.add(addr);
test.USE_WHITELIST = true;
} else if( arg.equals("-factory") && args.length > (i+1) ) {
test.factory = Integer.valueOf(args[++i]).intValue();
}
}
System.err.println("Run with '[-dev_id <adapter-index>] [-mac <device_address>] (-wl <device_address>)* [-factory <BluetoothManager-Factory-Implementation-Class>]'");
}
System.err.println("USE_WHITELIST "+test.USE_WHITELIST);
System.err.println("dev_id "+test.dev_id);
System.err.println("waitForDevice: "+test.waitForDevice);
if( waitForEnter ) {
System.err.println("Press ENTER to continue\n");
try{ System.in.read();
} catch(final Exception e) { }
}
test.runTest();
}
static class BooleanNotification implements BluetoothNotification<Boolean> {
private final long t0;
private final String name;
private boolean v;
public BooleanNotification(final String name, final long t0) {
this.t0 = t0;
this.name = name;
this.v = false;
}
@Override
public void run(final Boolean v) {
synchronized(this) {
final long t1 = BluetoothUtils.getCurrentMilliseconds();
this.v = v.booleanValue();
System.out.println("###### "+name+": "+v+" in td "+(t1-t0)+" ms!");
this.notifyAll();
}
}
public boolean getValue() {
synchronized(this) {
return v;
}
}
}
}
|