diff options
author | Sven Gothel <[email protected]> | 2020-08-22 18:32:18 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2020-08-22 18:32:18 +0200 |
commit | 1f39f6c21c84e466d2563d4ead1470c3c5b5143b (patch) | |
tree | 7166631a4f0081a6370d06488daad82130d88bb5 /examples/java/ScannerTinyB00.java | |
parent | 536975dd325723593e38efecde061d8c7c95c707 (diff) |
DBTAdapter: Have non-enabled adapter to be valid, use lazy HCI initialization; DBTManager: Validate enabled for non-user default adapter.
DBTAdapter: Have non-enabled adapter to be valid, use lazy HCI initialization
In a multi adapter setting, it is possible to have one adapter not being enabled,
i.e. blocked from operations (e.g. rfkill).
HCI communication is not possible in such cases and 'openHCI()' will fail.
We still need to treat such adapter as valid, as they are,
and distinguish the states: 'valid' and 'enabled'.
This allows 'delivery' of all adapters to a manager
and allows querying whether they are enabled.
Therefor, the native DBTAdapter will not issue an aggregated 'openHCI()'
at construction and initial validation, but treat the HCI instance as a singleton
to be lazily created via 'getHCI()' if not yet existing.
Here the required listener are also attached to the instance.
In the future, this shall also allow dynamically adding/removing
and enabling/disabling adapters.
Hence before using a chosen adapter, one should query its enabled state
via 'isEnabled()', which will also potentially initializing HCI.
+++
DBTManager: Validate enabled for non-user default adapter.
On the Java side, we can chose a default adapter via the property 'org.tinyb.default_adapter'.
If so chosen, it shall be the default adapter, regardless of its 'enabled' state.
Otherwise, the default adapter shall be the first enabled adapter in the list.
Diffstat (limited to 'examples/java/ScannerTinyB00.java')
-rw-r--r-- | examples/java/ScannerTinyB00.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/java/ScannerTinyB00.java b/examples/java/ScannerTinyB00.java index e3b00648..286375ca 100644 --- a/examples/java/ScannerTinyB00.java +++ b/examples/java/ScannerTinyB00.java @@ -116,6 +116,10 @@ public class ScannerTinyB00 { System.exit(-1); } adapter = adapters.get(dev_id); + if( !adapter.isEnabled() ) { + System.err.println("Adapter not enabled: device "+adapter.getName()+", address "+adapter.getAddress()+": "+adapter.toString()); + System.exit(-1); + } } do { |