@mkerix/noble
Version:
A Node.js BLE (Bluetooth Low Energy) central library.
578 lines (443 loc) • 19.1 kB
JavaScript
const events = require('events');
const util = require('util');
const AclStream = require('./acl-stream');
const Gatt = require('./gatt');
const Gap = require('./gap');
const Hci = require('./hci');
const Signaling = require('./signaling');
const NobleBindings = function () {
this._state = null;
this._addresses = {};
this._addresseTypes = {};
this._connectable = {};
this._pendingConnectionUuid = null;
this._connectionQueue = [];
this._handles = {};
this._gatts = {};
this._aclStreams = {};
this._signalings = {};
this._hci = new Hci();
this._gap = new Gap(this._hci);
};
util.inherits(NobleBindings, events.EventEmitter);
NobleBindings.prototype.startScanning = function (serviceUuids, allowDuplicates) {
this._scanServiceUuids = serviceUuids || [];
this._gap.startScanning(allowDuplicates);
};
NobleBindings.prototype.stopScanning = function () {
this._gap.stopScanning();
};
NobleBindings.prototype.connect = function (peripheralUuid) {
const address = this._addresses[peripheralUuid];
const addressType = this._addresseTypes[peripheralUuid];
if (!this._pendingConnectionUuid) {
this._pendingConnectionUuid = peripheralUuid;
this._hci.createLeConn(address, addressType);
} else {
this._connectionQueue.push(peripheralUuid);
}
};
NobleBindings.prototype.cancelConnect = function (peripheralUuid) {
if (this._pendingConnectionUuid === peripheralUuid) {
this._hci.cancelConnect();
if (this._connectionQueue.length > 0) {
const peripheralUuid = this._connectionQueue.shift();
address = this._addresses[peripheralUuid];
addressType = this._addresseTypes[peripheralUuid];
this._pendingConnectionUuid = peripheralUuid;
this._hci.createLeConn(address, addressType);
} else {
this._pendingConnectionUuid = null;
}
} else {
this._connectionQueue = this._connectionQueue.filter(x => x !== peripheralUuid)
}
}
NobleBindings.prototype.disconnect = function (peripheralUuid) {
this._hci.disconnect(this._handles[peripheralUuid]);
};
NobleBindings.prototype.reset = function () {
this._hci.reset();
};
NobleBindings.prototype.resetBindings = function () {
this._gap.resetBindings();
};
NobleBindings.prototype.stopSocket = function () {
this._hci.stopSocket();
};
NobleBindings.prototype.updateRssi = function (peripheralUuid) {
this._hci.readRssi(this._handles[peripheralUuid]);
};
NobleBindings.prototype.init = function () {
this.onSigIntBinded = this.onSigInt.bind(this);
this._gap.on('scanStart', this.onScanStart.bind(this));
this._gap.on('scanStop', this.onScanStop.bind(this));
this._gap.on('discover', this.onDiscover.bind(this));
this._hci.on('stateChange', this.onStateChange.bind(this));
this._hci.on('addressChange', this.onAddressChange.bind(this));
this._hci.on('leConnComplete', this.onLeConnComplete.bind(this));
this._hci.on('leConnUpdateComplete', this.onLeConnUpdateComplete.bind(this));
this._hci.on('rssiRead', this.onRssiRead.bind(this));
this._hci.on('disconnComplete', this.onDisconnComplete.bind(this));
this._hci.on('encryptChange', this.onEncryptChange.bind(this));
this._hci.on('aclDataPkt', this.onAclDataPkt.bind(this));
this._hci.init();
/* Add exit handlers after `init()` has completed. If no adaptor
is present it can throw an exception - in which case we don't
want to try and clear up afterwards (issue #502) */
process.on('SIGINT', this.onSigIntBinded);
process.on('exit', this.onExit.bind(this));
};
NobleBindings.prototype.onSigInt = function () {
const sigIntListeners = process.listeners('SIGINT');
if (sigIntListeners[sigIntListeners.length - 1] === this.onSigIntBinded) {
// we are the last listener, so exit
// this will trigger onExit, and clean up
process.exit(1);
}
};
NobleBindings.prototype.onExit = function () {
this.stopScanning();
for (const handle in this._aclStreams) {
this._hci.disconnect(handle);
}
};
NobleBindings.prototype.onStateChange = function (state) {
if (this._state === state) {
return;
}
this._state = state;
if (state === 'unauthorized') {
console.log('noble warning: adapter state unauthorized, please run as root or with sudo');
console.log(' or see README for information on running without root/sudo:');
console.log(' https://github.com/sandeepmistry/noble#running-on-linux');
} else if (state === 'unsupported') {
console.log('noble warning: adapter does not support Bluetooth Low Energy (BLE, Bluetooth Smart).');
console.log(' Try to run with environment variable:');
console.log(' [sudo] NOBLE_HCI_DEVICE_ID=x node ...');
}
this.emit('stateChange', state);
};
NobleBindings.prototype.onAddressChange = function (address) {
this.emit('addressChange', address);
};
NobleBindings.prototype.onScanStart = function (filterDuplicates) {
this.emit('scanStart', filterDuplicates);
};
NobleBindings.prototype.onScanStop = function () {
this.emit('scanStop');
};
NobleBindings.prototype.onDiscover = function (status, address, addressType, connectable, advertisement, rssi) {
if (this._scanServiceUuids === undefined) {
return;
}
let serviceUuids = advertisement.serviceUuids || [];
const serviceData = advertisement.serviceData || [];
let hasScanServiceUuids = (this._scanServiceUuids.length === 0);
if (!hasScanServiceUuids) {
let i;
serviceUuids = serviceUuids.slice();
for (i in serviceData) {
serviceUuids.push(serviceData[i].uuid);
}
for (i in serviceUuids) {
hasScanServiceUuids = (this._scanServiceUuids.indexOf(serviceUuids[i]) !== -1);
if (hasScanServiceUuids) {
break;
}
}
}
if (hasScanServiceUuids) {
var uuid = address.split(':').join('');
this._addresses[uuid] = address;
this._addresseTypes[uuid] = addressType;
this._connectable[uuid] = connectable;
this.emit('discover', uuid, address, addressType, connectable, advertisement, rssi);
}
};
NobleBindings.prototype.onLeConnComplete = function (status, handle, role, addressType, address, interval, latency, supervisionTimeout, masterClockAccuracy) {
if (role !== 0) {
// not master, ignore
return;
}
let uuid = null;
let error = null;
if (status === 0) {
uuid = address.split(':').join('').toLowerCase();
const aclStream = new AclStream(this._hci, handle, this._hci.addressType, this._hci.address, addressType, address);
const gatt = new Gatt(address, aclStream);
const signaling = new Signaling(handle, aclStream);
this._gatts[uuid] = this._gatts[handle] = gatt;
this._signalings[uuid] = this._signalings[handle] = signaling;
this._aclStreams[handle] = aclStream;
this._handles[uuid] = handle;
this._handles[handle] = uuid;
this._gatts[handle].on('mtu', this.onMtu.bind(this));
this._gatts[handle].on('servicesDiscover', this.onServicesDiscovered.bind(this));
this._gatts[handle].on('servicesDiscovered', this.onServicesDiscoveredEX.bind(this));
this._gatts[handle].on('includedServicesDiscover', this.onIncludedServicesDiscovered.bind(this));
this._gatts[handle].on('characteristicsDiscover', this.onCharacteristicsDiscovered.bind(this));
this._gatts[handle].on('characteristicsDiscovered', this.onCharacteristicsDiscoveredEX.bind(this));
this._gatts[handle].on('read', this.onRead.bind(this));
this._gatts[handle].on('write', this.onWrite.bind(this));
this._gatts[handle].on('broadcast', this.onBroadcast.bind(this));
this._gatts[handle].on('notify', this.onNotify.bind(this));
this._gatts[handle].on('notification', this.onNotification.bind(this));
this._gatts[handle].on('descriptorsDiscover', this.onDescriptorsDiscovered.bind(this));
this._gatts[handle].on('valueRead', this.onValueRead.bind(this));
this._gatts[handle].on('valueWrite', this.onValueWrite.bind(this));
this._gatts[handle].on('handleRead', this.onHandleRead.bind(this));
this._gatts[handle].on('handleWrite', this.onHandleWrite.bind(this));
this._gatts[handle].on('handleNotify', this.onHandleNotify.bind(this));
this._signalings[handle].on('connectionParameterUpdateRequest', this.onConnectionParameterUpdateRequest.bind(this));
this._gatts[handle].exchangeMtu(256);
} else {
uuid = this._pendingConnectionUuid;
let statusMessage = Hci.STATUS_MAPPER[status] || 'HCI Error: Unknown';
const errorCode = ` (0x${status.toString(16)})`;
statusMessage = statusMessage + errorCode;
error = new Error(statusMessage);
}
this.emit('connect', uuid, error);
if (this._connectionQueue.length > 0) {
const peripheralUuid = this._connectionQueue.shift();
address = this._addresses[peripheralUuid];
addressType = this._addresseTypes[peripheralUuid];
this._pendingConnectionUuid = peripheralUuid;
this._hci.createLeConn(address, addressType);
} else {
this._pendingConnectionUuid = null;
}
};
NobleBindings.prototype.onLeConnUpdateComplete = function (handle, interval, latency, supervisionTimeout) {
// no-op
};
NobleBindings.prototype.onDisconnComplete = function (handle, reason) {
const uuid = this._handles[handle];
if (uuid) {
this._aclStreams[handle].push(null, null);
this._gatts[handle].removeAllListeners();
this._signalings[handle].removeAllListeners();
delete this._gatts[uuid];
delete this._gatts[handle];
delete this._signalings[uuid];
delete this._signalings[handle];
delete this._aclStreams[handle];
delete this._handles[uuid];
delete this._handles[handle];
this.emit('disconnect', uuid); // TODO: handle reason?
}
};
NobleBindings.prototype.onEncryptChange = function (handle, encrypt) {
const aclStream = this._aclStreams[handle];
if (aclStream) {
aclStream.pushEncrypt(encrypt);
}
};
NobleBindings.prototype.onMtu = function (address, mtu) {
var uuid = address.split(':').join('').toLowerCase();
this.emit('onMtu', uuid, mtu);
};
NobleBindings.prototype.onRssiRead = function (handle, rssi) {
this.emit('rssiUpdate', this._handles[handle], rssi);
};
NobleBindings.prototype.onAclDataPkt = function (handle, cid, data) {
const aclStream = this._aclStreams[handle];
if (aclStream) {
aclStream.push(cid, data);
}
};
NobleBindings.prototype.addService = function (peripheralUuid, service) {
const handle = this._handles[peripheralUuid];
const gatt = this._gatts[handle];
if (gatt) {
gatt.addService(service);
} else {
console.warn(`noble warning: unknown peripheral ${peripheralUuid}`);
}
};
NobleBindings.prototype.discoverServices = function (peripheralUuid, uuids) {
const handle = this._handles[peripheralUuid];
const gatt = this._gatts[handle];
if (gatt) {
gatt.discoverServices(uuids || []);
} else {
console.warn(`noble warning: unknown peripheral ${peripheralUuid}`);
}
};
NobleBindings.prototype.onServicesDiscovered = function (address, serviceUuids) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('servicesDiscover', uuid, serviceUuids);
};
NobleBindings.prototype.onServicesDiscoveredEX = function (address, services) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('servicesDiscovered', uuid, services);
};
NobleBindings.prototype.discoverIncludedServices = function (peripheralUuid, serviceUuid, serviceUuids) {
const handle = this._handles[peripheralUuid];
const gatt = this._gatts[handle];
if (gatt) {
gatt.discoverIncludedServices(serviceUuid, serviceUuids || []);
} else {
console.warn(`noble warning: unknown peripheral ${peripheralUuid}`);
}
};
NobleBindings.prototype.onIncludedServicesDiscovered = function (address, serviceUuid, includedServiceUuids) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('includedServicesDiscover', uuid, serviceUuid, includedServiceUuids);
};
NobleBindings.prototype.addCharacteristics = function (peripheralUuid, serviceUuid, characteristics) {
const handle = this._handles[peripheralUuid];
const gatt = this._gatts[handle];
if (gatt) {
gatt.addCharacteristics(serviceUuid, characteristics);
} else {
console.warn(`noble warning: unknown peripheral ${peripheralUuid}`);
}
};
NobleBindings.prototype.discoverCharacteristics = function (peripheralUuid, serviceUuid, characteristicUuids) {
const handle = this._handles[peripheralUuid];
const gatt = this._gatts[handle];
if (gatt) {
gatt.discoverCharacteristics(serviceUuid, characteristicUuids || []);
} else {
console.warn(`noble warning: unknown peripheral ${peripheralUuid}`);
}
};
NobleBindings.prototype.onCharacteristicsDiscovered = function (address, serviceUuid, characteristics) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('characteristicsDiscover', uuid, serviceUuid, characteristics);
};
NobleBindings.prototype.onCharacteristicsDiscoveredEX = function (address, serviceUuid, characteristics) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('characteristicsDiscovered', uuid, serviceUuid, characteristics);
};
NobleBindings.prototype.read = function (peripheralUuid, serviceUuid, characteristicUuid) {
const handle = this._handles[peripheralUuid];
const gatt = this._gatts[handle];
if (gatt) {
gatt.read(serviceUuid, characteristicUuid);
} else {
console.warn(`noble warning: unknown peripheral ${peripheralUuid}`);
}
};
NobleBindings.prototype.onRead = function (address, serviceUuid, characteristicUuid, data) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('read', uuid, serviceUuid, characteristicUuid, data, false);
};
NobleBindings.prototype.write = function (peripheralUuid, serviceUuid, characteristicUuid, data, withoutResponse) {
const handle = this._handles[peripheralUuid];
const gatt = this._gatts[handle];
if (gatt) {
gatt.write(serviceUuid, characteristicUuid, data, withoutResponse);
} else {
console.warn(`noble warning: unknown peripheral ${peripheralUuid}`);
}
};
NobleBindings.prototype.onWrite = function (address, serviceUuid, characteristicUuid) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('write', uuid, serviceUuid, characteristicUuid);
};
NobleBindings.prototype.broadcast = function (peripheralUuid, serviceUuid, characteristicUuid, broadcast) {
const handle = this._handles[peripheralUuid];
const gatt = this._gatts[handle];
if (gatt) {
gatt.broadcast(serviceUuid, characteristicUuid, broadcast);
} else {
console.warn(`noble warning: unknown peripheral ${peripheralUuid}`);
}
};
NobleBindings.prototype.onBroadcast = function (address, serviceUuid, characteristicUuid, state) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('broadcast', uuid, serviceUuid, characteristicUuid, state);
};
NobleBindings.prototype.notify = function (peripheralUuid, serviceUuid, characteristicUuid, notify) {
const handle = this._handles[peripheralUuid];
const gatt = this._gatts[handle];
if (gatt) {
gatt.notify(serviceUuid, characteristicUuid, notify);
} else {
console.warn(`noble warning: unknown peripheral ${peripheralUuid}`);
}
};
NobleBindings.prototype.onNotify = function (address, serviceUuid, characteristicUuid, state) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('notify', uuid, serviceUuid, characteristicUuid, state);
};
NobleBindings.prototype.onNotification = function (address, serviceUuid, characteristicUuid, data) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('read', uuid, serviceUuid, characteristicUuid, data, true);
};
NobleBindings.prototype.discoverDescriptors = function (peripheralUuid, serviceUuid, characteristicUuid) {
const handle = this._handles[peripheralUuid];
const gatt = this._gatts[handle];
if (gatt) {
gatt.discoverDescriptors(serviceUuid, characteristicUuid);
} else {
console.warn(`noble warning: unknown peripheral ${peripheralUuid}`);
}
};
NobleBindings.prototype.onDescriptorsDiscovered = function (address, serviceUuid, characteristicUuid, descriptorUuids) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('descriptorsDiscover', uuid, serviceUuid, characteristicUuid, descriptorUuids);
};
NobleBindings.prototype.readValue = function (peripheralUuid, serviceUuid, characteristicUuid, descriptorUuid) {
const handle = this._handles[peripheralUuid];
const gatt = this._gatts[handle];
if (gatt) {
gatt.readValue(serviceUuid, characteristicUuid, descriptorUuid);
} else {
console.warn(`noble warning: unknown peripheral ${peripheralUuid}`);
}
};
NobleBindings.prototype.onValueRead = function (address, serviceUuid, characteristicUuid, descriptorUuid, data) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('valueRead', uuid, serviceUuid, characteristicUuid, descriptorUuid, data);
};
NobleBindings.prototype.writeValue = function (peripheralUuid, serviceUuid, characteristicUuid, descriptorUuid, data) {
const handle = this._handles[peripheralUuid];
const gatt = this._gatts[handle];
if (gatt) {
gatt.writeValue(serviceUuid, characteristicUuid, descriptorUuid, data);
} else {
console.warn(`noble warning: unknown peripheral ${peripheralUuid}`);
}
};
NobleBindings.prototype.onValueWrite = function (address, serviceUuid, characteristicUuid, descriptorUuid) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('valueWrite', uuid, serviceUuid, characteristicUuid, descriptorUuid);
};
NobleBindings.prototype.readHandle = function (peripheralUuid, attHandle) {
const handle = this._handles[peripheralUuid];
const gatt = this._gatts[handle];
if (gatt) {
gatt.readHandle(attHandle);
} else {
console.warn(`noble warning: unknown peripheral ${peripheralUuid}`);
}
};
NobleBindings.prototype.onHandleRead = function (address, handle, data) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('handleRead', uuid, handle, data);
};
NobleBindings.prototype.writeHandle = function (peripheralUuid, attHandle, data, withoutResponse) {
const handle = this._handles[peripheralUuid];
const gatt = this._gatts[handle];
if (gatt) {
gatt.writeHandle(attHandle, data, withoutResponse);
} else {
console.warn(`noble warning: unknown peripheral ${peripheralUuid}`);
}
};
NobleBindings.prototype.onHandleWrite = function (address, handle) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('handleWrite', uuid, handle);
};
NobleBindings.prototype.onHandleNotify = function (address, handle, data) {
const uuid = address.split(':').join('').toLowerCase();
this.emit('handleNotify', uuid, handle, data);
};
NobleBindings.prototype.onConnectionParameterUpdateRequest = function (handle, minInterval, maxInterval, latency, supervisionTimeout) {
this._hci.connUpdateLe(handle, minInterval, maxInterval, latency, supervisionTimeout);
};
module.exports = new NobleBindings();