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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
|
/**
* 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 java.util.concurrent.atomic.AtomicInteger;
import org.tinyb.AdapterSettings;
import org.tinyb.BluetoothAdapter;
import org.tinyb.BluetoothAddressType;
import org.tinyb.BluetoothDevice;
import org.tinyb.AdapterStatusListener;
import org.tinyb.BLERandomAddressType;
import org.tinyb.BTMode;
import org.tinyb.BluetoothException;
import org.tinyb.BluetoothFactory;
import org.tinyb.BluetoothGattCharacteristic;
import org.tinyb.BluetoothGattDescriptor;
import org.tinyb.BluetoothGattService;
import org.tinyb.BluetoothManager;
import org.tinyb.BluetoothNotification;
import org.tinyb.BluetoothType;
import org.tinyb.BluetoothUtils;
import org.tinyb.EIRDataTypeSet;
import org.tinyb.GATTCharacteristicListener;
import org.tinyb.HCIStatusCode;
import org.tinyb.HCIWhitelistConnectType;
import org.tinyb.PairingMode;
import org.tinyb.ScanType;
import direct_bt.tinyb.DBTManager;
/**
* This Java scanner example uses the Direct-BT fully event driven workflow
* and adds multithreading, i.e. one thread processes each found device found
* as notified via the event listener.
* <p>
* This example represents the recommended utilization of Direct-BT.
* </p>
*/
public class DBTScanner10 {
static final String EUI48_ANY_DEVICE = "00:00:00:00:00:00";
final List<String> waitForDevices = new ArrayList<String>();
long timestamp_t0;
int RESET_ADAPTER_EACH_CONN = 0;
AtomicInteger connectionCount = new AtomicInteger(0);
AtomicInteger MULTI_MEASUREMENTS = new AtomicInteger(8);
boolean KEEP_CONNECTED = true;
boolean GATT_PING_ENABLED = false;
boolean REMOVE_DEVICE = true;
boolean USE_WHITELIST = false;
final List<String> whitelist = new ArrayList<String>();
final List<String> charIdentifierList = new ArrayList<String>();
final List<String> charValueList = new ArrayList<String>();
boolean SHOW_UPDATE_EVENTS = false;
boolean QUIET = false;
int dev_id = -1; // use default
int shutdownTest = 0;
static void printf(final String format, final Object... args) {
final Object[] args2 = new Object[args.length+1];
args2[0] = BluetoothUtils.elapsedTimeMillis();
System.arraycopy(args, 0, args2, 1, args.length);
System.err.printf("[%,9d] "+format, args2);
// System.err.printf("[%,9d] ", BluetoothUtils.getElapsedMillisecond());
// System.err.printf(format, args);
}
static void println(final String msg) {
System.err.printf("[%,9d] %s%s", BluetoothUtils.elapsedTimeMillis(), msg, System.lineSeparator());
}
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) {
final boolean initialSetting = oldmask.isEmpty();
if( initialSetting ) {
println("****** SETTINGS: "+oldmask+" -> "+newmask+", initial "+changedmask);
} else {
println("****** SETTINGS: "+oldmask+" -> "+newmask+", changed "+changedmask);
}
println("Status Adapter:");
println(adapter.toString());
if( !initialSetting &&
changedmask.isSet(AdapterSettings.SettingType.POWERED) &&
newmask.isSet(AdapterSettings.SettingType.POWERED) )
{
final Thread startDisoveryTask = new Thread( new Runnable() {
@Override
public void run() {
startDiscovery(adapter, "powered-on");
}
}, "DBT-StartDiscovery-"+adapter.getAddress());
startDisoveryTask.setDaemon(true); // detach thread
startDisoveryTask.start();
}
}
@Override
public void discoveringChanged(final BluetoothAdapter adapter, final ScanType currentMeta, final ScanType changedType, final boolean changedEnabled, final boolean keepAlive, final long timestamp) {
println("****** DISCOVERING: meta "+currentMeta+", changed["+changedType+", enabled "+changedEnabled+", keepAlive "+keepAlive+"] on "+adapter);
}
@Override
public void deviceFound(final BluetoothDevice device, final long timestamp) {
println("****** FOUND__: "+device.toString());
if( BluetoothAddressType.BDADDR_LE_PUBLIC != device.getAddressType()
&& BLERandomAddressType.STATIC_PUBLIC != device.getBLERandomAddressType() ) {
// Requires BREDR or LE Secure Connection support: WIP
println("****** FOUND__-2: Skip non 'public LE' and non 'random static public LE' "+device.toString());
return;
}
if( !devicesInProcessing.contains( device.getAddress() ) &&
( waitForDevices.isEmpty() ||
( waitForDevices.contains( device.getAddress() ) &&
( 0 < MULTI_MEASUREMENTS.get() || !devicesProcessed.contains( device.getAddress() ) )
)
)
)
{
println("****** FOUND__-0: Connecting "+device.toString());
{
final long td = BluetoothUtils.currentTimeMillis() - timestamp_t0; // adapter-init -> now
println("PERF: adapter-init -> FOUND__-0 " + td + " ms");
}
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 {
println("****** FOUND__-1: NOP "+device.toString());
}
}
@Override
public void deviceUpdated(final BluetoothDevice device, final EIRDataTypeSet updateMask, final long timestamp) {
if( SHOW_UPDATE_EVENTS ) {
println("****** UPDATED: "+updateMask+" of "+device);
}
}
@Override
public void deviceConnected(final BluetoothDevice device, final short handle, final long timestamp) {
if( !devicesInProcessing.contains( device.getAddress() ) &&
( waitForDevices.isEmpty() ||
( waitForDevices.contains( device.getAddress() ) &&
( 0 < MULTI_MEASUREMENTS.get() || !devicesProcessed.contains( device.getAddress() ) )
)
)
)
{
connectionCount.incrementAndGet();
println("****** CONNECTED-0: Processing["+connectionCount.get()+"] "+device.toString());
{
final long td = BluetoothUtils.currentTimeMillis() - timestamp_t0; // adapter-init -> now
println("PERF: adapter-init -> CONNECTED-0 " + td + " ms");
}
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 {
println("****** CONNECTED-1: NOP " + device.toString());
}
}
@Override
public void deviceDisconnected(final BluetoothDevice device, final HCIStatusCode reason, final short handle, final long timestamp) {
println("****** DISCONNECTED: Reason "+reason+", old handle 0x"+Integer.toHexString(handle)+": "+device+" on "+device.getAdapter());
if( REMOVE_DEVICE ) {
final Thread deviceRemoverProcessingTask = new Thread( new Runnable() {
@Override
public void run() {
removeDevice(device);
}
}, "DBT-Remove-"+device.getAddress());
deviceRemoverProcessingTask.setDaemon(true); // detach thread
deviceRemoverProcessingTask.start();
} else {
devicesInProcessing.remove(device.getAddress());
}
if( 0 < RESET_ADAPTER_EACH_CONN && 0 == connectionCount.get() % RESET_ADAPTER_EACH_CONN ) {
final Thread adapterResetTask = new Thread( new Runnable() {
@Override
public void run() {
resetAdapter(device.getAdapter(), 1);
}
}, "DBT-Reset-"+device.getAdapter().getAddress());
adapterResetTask.setDaemon(true); // detach thread
adapterResetTask.start();
}
}
};
private void connectDiscoveredDevice(final BluetoothDevice device) {
println("****** Connecting Device: Start " + device.toString());
{
final HCIStatusCode r = device.getAdapter().stopDiscovery();
println("****** Connecting Device: stopDiscovery result "+r);
}
HCIStatusCode res;
if( !USE_WHITELIST ) {
res = device.connect();
} else {
res = HCIStatusCode.SUCCESS;
}
println("****** Connecting Device Command, res "+res+": End result "+res+" of " + device.toString());
if( !USE_WHITELIST && 0 == devicesInProcessing.size() && HCIStatusCode.SUCCESS != res ) {
startDiscovery(device.getAdapter(), "post-connect");
}
}
void execute(final Runnable task, final boolean offThread) {
if( offThread ) {
final Thread t = new Thread(task);
t.setDaemon(true);
t.start();
} else {
task.run();
}
}
void shutdownTest() {
switch( shutdownTest ) {
case 1:
shutdownTest01();
break;
case 2:
shutdownTest02();
break;
default:
// nop
}
}
void shutdownTest01() {
execute( () -> {
final DBTManager mngr = (DBTManager) DBTManager.getManager();
mngr.shutdown();
}, true);
}
void shutdownTest02() {
execute( () -> {
System.exit(1);
}, true);
}
private void processConnectedDevice(final BluetoothDevice device) {
println("****** Processing Device: Start " + device.toString());
{
// make sure for pending connections on failed connect*(..) command
final HCIStatusCode r = device.getAdapter().stopDiscovery();
println("****** Processing Device: stopDiscovery result "+r);
}
final long t1 = BluetoothUtils.currentTimeMillis();
boolean success = false;
// Secure Pairing
{
final List<PairingMode> spm = device.getSupportedPairingModes();
if( !QUIET ) {
println("Supported Secure Pairing Modes: " + spm.toString());
}
final List<PairingMode> rpm = device.getRequiredPairingModes();
if( !QUIET ) {
println("Required Secure Pairing Modes: " + rpm.toString());
}
if( spm.contains(PairingMode.JUST_WORKS) ) {
final HCIStatusCode res = device.pair(null); // empty for JustWorks
println("Secure Pairing Just Works result " + res + " of " + device);
} else if( spm.contains(PairingMode.PASSKEY_ENTRY) ) {
final HCIStatusCode res = device.pair("111111"); // PasskeyEntry
println("Secure Pairing Passkey Entry result " + res + " of " + device);
} else if( !QUIET ) {
println("Secure Pairing JUST_WORKS or PASSKEY_ENTRY not supported, but " + spm.toString() + " on " + device);
}
}
//
// 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.currentTimeMillis();
if( !QUIET ) {
final long td01 = t1 - timestamp_t0; // adapter-init -> processing-start
final long td15 = t5 - t1; // get-gatt-services
final long tdc5 = t5 - device.getLastDiscoveryTimestamp(); // discovered to gatt-complete
final long td05 = t5 - timestamp_t0; // adapter-init -> gatt-complete
println(System.lineSeparator()+System.lineSeparator());
println("PERF: GATT primary-services completed\n");
println("PERF: adapter-init to processing-start " + td01 + " ms,"+System.lineSeparator()+
"PERF: get-gatt-services " + td15 + " ms,"+System.lineSeparator()+
"PERF: discovered to gatt-complete " + tdc5 + " ms (connect " + (tdc5 - td15) + " ms),"+System.lineSeparator()+
"PERF: adapter-init to gatt-complete " + td05 + " ms"+System.lineSeparator());
}
{
// WIP: Implement a simple Characteristic ping-pong writeValue <-> notify transmission for stress testing.
final BluetoothManager manager = device.getAdapter().getManager();
for(final String characteristic : charIdentifierList) {
final BluetoothGattCharacteristic char2 = (BluetoothGattCharacteristic)
manager.find(BluetoothType.GATT_CHARACTERISTIC, null, characteristic, device);
println("Char UUID "+characteristic);
println(" over device : "+char2);
if( null != char2 ) {
final GATTCharacteristicListener charPingPongListener = new GATTCharacteristicListener(null) {
@Override
public void notificationReceived(final BluetoothGattCharacteristic charDecl,
final byte[] value, final long timestamp) {
println("****** PingPong 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) {
println("****** PingPong GATT indicationReceived: "+charDecl+
", value "+BluetoothUtils.bytesHexString(value, true, true));
}
};
final boolean enabledState[] = { false, false };
final boolean addedCharPingPongListenerRes =
char2.addCharacteristicListener(charPingPongListener, enabledState);
BluetoothGattService.addCharacteristicListenerToAll(device, primServices, charPingPongListener);
if( !QUIET ) {
println("Added CharPingPongListenerRes: "+addedCharPingPongListenerRes+", enabledState "+Arrays.toString(enabledState));
}
}
}
}
{
final GATTCharacteristicListener myCharacteristicListener = new GATTCharacteristicListener(null) {
@Override
public void notificationReceived(final BluetoothGattCharacteristic charDecl,
final byte[] value, final long timestamp) {
println("****** GATT notificationReceived: "+charDecl+
", value "+BluetoothUtils.bytesHexString(value, true, true));
shutdownTest();
}
@Override
public void indicationReceived(final BluetoothGattCharacteristic charDecl,
final byte[] value, final long timestamp, final boolean confirmationSent) {
println("****** GATT indicationReceived: "+charDecl+
", value "+BluetoothUtils.bytesHexString(value, true, true));
shutdownTest();
}
};
final boolean addedCharacteristicListenerRes =
BluetoothGattService.addCharacteristicListenerToAll(device, primServices, myCharacteristicListener);
if( !QUIET ) {
println("Added GATTCharacteristicListener: "+addedCharacteristicListenerRes);
}
}
try {
int i=0;
for(final Iterator<BluetoothGattService> srvIter = primServices.iterator(); srvIter.hasNext(); i++) {
final BluetoothGattService primService = srvIter.next();
if( !QUIET ) {
printf(" [%02d] Service %s\n", i, primService.toString());
printf(" [%02d] Service Characteristics\n", i);
}
int j=0;
final List<BluetoothGattCharacteristic> serviceCharacteristics = primService.getCharacteristics();
for(final Iterator<BluetoothGattCharacteristic> charIter = serviceCharacteristics.iterator(); charIter.hasNext(); j++) {
final BluetoothGattCharacteristic serviceChar = charIter.next();
if( !QUIET ) {
printf(" [%02d.%02d] CharDef: %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.decodeUTF8String(value, 0, value.length);
if( !QUIET ) {
printf(" [%02d.%02d] CharVal: %s ('%s')\n",
i, j, BluetoothUtils.bytesHexString(value, true, true), svalue);
}
}
int k=0;
final List<BluetoothGattDescriptor> charDescList = serviceChar.getDescriptors();
for(final Iterator<BluetoothGattDescriptor> descIter = charDescList.iterator(); descIter.hasNext(); k++) {
final BluetoothGattDescriptor charDesc = descIter.next();
if( !QUIET ) {
printf(" [%02d.%02d.%02d] Desc: %s\n", i, j, k, charDesc.toString());
}
}
}
}
} catch( final Exception ex) {
println("Caught "+ex.getMessage());
ex.printStackTrace();
}
// FIXME sleep 1s for potential callbacks ..
try {
Thread.sleep(1000);
} catch (final InterruptedException e) {
e.printStackTrace();
}
success = true;
} catch (final Throwable t ) {
println("****** Processing Device: Exception caught for " + device.toString() + ": "+t.getMessage());
t.printStackTrace();
}
if( !USE_WHITELIST && 0 == devicesInProcessing.size() ) {
startDiscovery(device.getAdapter(), "post-processing-1");
}
if( KEEP_CONNECTED && GATT_PING_ENABLED && success ) {
while( device.pingGATT() ) {
println("****** Processing Device: pingGATT OK: "+device.getAddress());
try {
Thread.sleep(1000);
} catch (final InterruptedException e) {
e.printStackTrace();
}
}
println("****** Processing Device: pingGATT failed, waiting for disconnect: "+device.getAddress());
// Even w/ GATT_PING_ENABLED, we utilize disconnect event to clean up -> remove
}
println("****** Processing Device: End: Success " + success +
" on " + device.toString() + "; devInProc "+devicesInProcessing.size());
if( success ) {
devicesProcessed.add(device.getAddress());
}
if( !KEEP_CONNECTED ) {
devicesInProcessing.remove(device.getAddress());
device.remove();
if( 0 < RESET_ADAPTER_EACH_CONN && 0 == connectionCount.get() % RESET_ADAPTER_EACH_CONN ) {
resetAdapter(device.getAdapter(), 2);
} else if( !USE_WHITELIST && 0 == devicesInProcessing.size() ) {
startDiscovery(device.getAdapter(), "post-processing-2");
}
}
if( 0 < MULTI_MEASUREMENTS.get() ) {
MULTI_MEASUREMENTS.decrementAndGet();
println("****** Processing Device: MULTI_MEASUREMENTS left "+MULTI_MEASUREMENTS.get()+": "+device.getAddress());
}
}
private void removeDevice(final BluetoothDevice device) {
println("****** Remove Device: removing: "+device.getAddress());
device.getAdapter().stopDiscovery();
devicesInProcessing.remove(device.getAddress());
device.remove();
if( !USE_WHITELIST && 0 == devicesInProcessing.size() ) {
startDiscovery(device.getAdapter(), "post-remove-device");
}
}
private void resetAdapter(final BluetoothAdapter adapter, final int mode) {
println("****** Reset Adapter: reset["+mode+"] start: "+adapter.toString());
final HCIStatusCode res = adapter.reset();
println("****** Reset Adapter: reset["+mode+"] end: "+res+", "+adapter.toString());
}
private boolean startDiscovery(final BluetoothAdapter adapter, final String msg) {
final HCIStatusCode status = adapter.startDiscovery( true );
println("****** Start discovery ("+msg+") result: "+status);
return HCIStatusCode.SUCCESS == status;
}
private BluetoothAdapter createAdapter(final BluetoothManager mngr, final int dev_id0) {
BluetoothAdapter adapter;
if( 0 > dev_id0 ) {
adapter = mngr.getDefaultAdapter();
} else {
adapter = mngr.getAdapter(dev_id0);
if( !adapter.isPowered() ) {
adapter = mngr.getDefaultAdapter();
}
}
final int dev_id = null != adapter ? adapter.getDevID() : -1;
if( 0 > dev_id ) {
println("Adapter not available (1): Request "+dev_id0+", deduced "+dev_id);
return null;
}
if( !adapter.isPowered() ) { // should have been covered above
println("Adapter not powered (2): "+adapter.toString());
return null;
}
println("Using adapter: "+adapter.toString());
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));
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);
println("Added to whitelist: res "+res+", address "+addr);
}
} else {
if( !startDiscovery(adapter, "kick-off") ) {
}
}
return adapter;
}
public void runTest(final BluetoothManager manager) {
BluetoothAdapter adapter = createAdapter(manager, dev_id);
timestamp_t0 = BluetoothUtils.currentTimeMillis();
boolean done = false;
while( !done ) {
if( 0 == MULTI_MEASUREMENTS.get() ||
( -1 == MULTI_MEASUREMENTS.get() && !waitForDevices.isEmpty() && devicesProcessed.containsAll(waitForDevices) )
)
{
println("****** EOL Test MULTI_MEASUREMENTS left "+MULTI_MEASUREMENTS.get()+
", processed "+devicesProcessed.size()+"/"+waitForDevices.size());
println("****** WaitForDevices "+Arrays.toString(waitForDevices.toArray()));
println("****** DevicesProcessed "+Arrays.toString(devicesProcessed.toArray()));
done = true;
} else {
// validate existing adapter
if( null != adapter ) {
if( !adapter.isValid() /* || !adapter.isPowered() */ ) {
// In case of removed adapter, not just powered-off (soft-reset)
// We could also close adapter on !isPowered() here, but its not required - adapter operational.
adapter.close();
adapter = null; // purge
}
}
// re-create adapter if required
if( null == adapter ) {
adapter = createAdapter(manager, dev_id);
}
try {
Thread.sleep(2000);
} catch (final InterruptedException e) {
e.printStackTrace();
}
}
}
// All implicit via destructor or shutdown hook!
// manager.shutdown(); /* implies: adapter.close(); */
}
public static void main(final String[] args) throws InterruptedException {
for(int i=0; i< args.length; i++) {
final String arg = args[i];
if( arg.equals("-debug") ) {
System.setProperty("org.tinyb.verbose", "true");
System.setProperty("org.tinyb.debug", "true");
} else if( arg.equals("-verbose") ) {
System.setProperty("org.tinyb.verbose", "true");
} else if( arg.equals("-dbt_debug") && args.length > (i+1) ) {
System.setProperty("direct_bt.debug", args[++i]);
} else if( arg.equals("-dbt_verbose") && args.length > (i+1) ) {
System.setProperty("direct_bt.verbose", args[++i]);
} else if( arg.equals("-dbt_gatt") && args.length > (i+1) ) {
System.setProperty("direct_bt.gatt", args[++i]);
} else if( arg.equals("-dbt_l2cap") && args.length > (i+1) ) {
System.setProperty("direct_bt.l2cap", args[++i]);
} else if( arg.equals("-dbt_hci") && args.length > (i+1) ) {
System.setProperty("direct_bt.hci", args[++i]);
} else if( arg.equals("-dbt_mgmt") && args.length > (i+1) ) {
System.setProperty("direct_bt.mgmt", args[++i]);
} else if( arg.equals("-btmode") && args.length > (i+1) ) {
final BTMode btmode = BTMode.get(args[++i]);
System.setProperty("org.tinyb.btmode", btmode.toString());
System.err.println("Setting 'org.tinyb.btmode' to "+btmode.toString());
}
}
final BluetoothManager manager;
try {
manager = BluetoothFactory.getDirectBTBluetoothManager();
} catch (BluetoothException | NoSuchMethodException | SecurityException
| IllegalAccessException | IllegalArgumentException
| InvocationTargetException | ClassNotFoundException e) {
System.err.println("Unable to instantiate DirectBT BluetoothManager");
e.printStackTrace();
System.exit(-1);
return;
}
println("DirectBT BluetoothManager initialized!");
final DBTScanner10 test = new DBTScanner10();
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("-show_update_events") ) {
test.SHOW_UPDATE_EVENTS = true;
} else if( arg.equals("-quiet") ) {
test.QUIET = true;
} else if( arg.equals("-dev_id") && args.length > (i+1) ) {
test.dev_id = Integer.valueOf(args[++i]).intValue();
} else if( arg.equals("-shutdown") && args.length > (i+1) ) {
test.shutdownTest = Integer.valueOf(args[++i]).intValue();
} else if( arg.equals("-mac") && args.length > (i+1) ) {
test.waitForDevices.add(args[++i]);
} else if( arg.equals("-wl") && args.length > (i+1) ) {
final String addr = args[++i];
println("Whitelist + "+addr);
test.whitelist.add(addr);
test.USE_WHITELIST = true;
} else if( arg.equals("-char") && args.length > (i+1) ) {
test.charIdentifierList.add(args[++i]);
} else if( arg.equals("-disconnect") ) {
test.KEEP_CONNECTED = false;
} else if( arg.equals("-enableGATTPing") ) {
test.GATT_PING_ENABLED = true;
} else if( arg.equals("-keepDevice") ) {
test.REMOVE_DEVICE = false;
} else if( arg.equals("-count") && args.length > (i+1) ) {
test.MULTI_MEASUREMENTS.set(Integer.valueOf(args[++i]).intValue());
} else if( arg.equals("-single") ) {
test.MULTI_MEASUREMENTS.set(-1);
} else if( arg.equals("-resetEachCon") && args.length > (i+1) ) {
test.RESET_ADAPTER_EACH_CONN = Integer.valueOf(args[++i]).intValue();
}
}
println("Run with '[-default_dev_id <adapter-index>] [-dev_id <adapter-index>] [-btmode LE|BREDR|DUAL] "+
"[-bluetoothManager <BluetoothManager-Implementation-Class-Name>] "+
"[-disconnect] [-enableGATTPing] [-count <number>] [-single] (-char <uuid>)* [-show_update_events] [-quiet] "+
"[-resetEachCon connectionCount] "+
"(-mac <device_address>)* (-wl <device_address>)* "+
"[-verbose] [-debug] "+
"[-dbt_verbose true|false] "+
"[-dbt_debug true|false|adapter.event,gatt.data,hci.event,mgmt.event] "+
"[-dbt_mgmt cmd.timeout=3000,ringsize=64,...] "+
"[-dbt_hci cmd.complete.timeout=10000,cmd.status.timeout=3000,ringsize=64,...] "+
"[-dbt_gatt cmd.read.timeout=500,cmd.write.timeout=500,cmd.init.timeout=2500,ringsize=128,...] "+
"[-dbt_l2cap reader.timeout=10000,restart.count=0,...] "+
"[-shutdown <int>]'");
}
println("MULTI_MEASUREMENTS "+test.MULTI_MEASUREMENTS.get());
println("KEEP_CONNECTED "+test.KEEP_CONNECTED);
println("RESET_ADAPTER_EACH_CONN "+test.RESET_ADAPTER_EACH_CONN);
println("GATT_PING_ENABLED "+test.GATT_PING_ENABLED);
println("REMOVE_DEVICE "+test.REMOVE_DEVICE);
println("USE_WHITELIST "+test.USE_WHITELIST);
println("SHOW_UPDATE_EVENTS "+test.SHOW_UPDATE_EVENTS);
println("QUIET "+test.QUIET);
println("dev_id "+test.dev_id);
println("waitForDevice: "+Arrays.toString(test.waitForDevices.toArray()));
println("characteristicList: "+Arrays.toString(test.charIdentifierList.toArray()));
if( waitForEnter ) {
println("Press ENTER to continue\n");
try{ System.in.read();
} catch(final Exception e) { }
}
test.runTest(manager);
}
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.currentTimeMillis();
this.v = v.booleanValue();
System.out.println("###### "+name+": "+v+" in td "+(t1-t0)+" ms!");
this.notifyAll();
}
}
public boolean getValue() {
synchronized(this) {
return v;
}
}
}
}
|