@iotize/device-com-ble.cordova 3.3.2 → 3.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"iotize-device-com-ble.cordova.js","sources":["../../../../src/lib/logger.ts","../../../../src/lib/cordova-ble-error.ts","../../../../src/lib/utility.ts","../../../../src/lib/ble-com-protocol.ts","../../../../src/lib/cordova-service-adapter.ts","../../../../src/lib/scanner.ts","../../../../src/lib/iotize-ble-cordova-plugin.ts","../../../../src/iotize-device-com-ble.cordova.ts"],"sourcesContent":["import { createDebugger } from \"@iotize/common/debug\";\n\nexport const debug = createDebugger(`@iotize/device-com-ble.cordova`);\n","import { CodeError } from '@iotize/common/error';\n\nexport class CordovaBLEError extends CodeError {\n static invalidErrorResult(errObject: {\n code?: string | undefined;\n message?: string | undefined;\n }): CordovaBLEError {\n return new CordovaBLEError(\n `Internal error: ble cordova plugin returned an unexpected error object`,\n CordovaBLEError.Code.InternalError\n );\n }\n\n static invalidErrorCode(errObject: {\n code?: string | undefined;\n message?: string | undefined;\n }): CordovaBLEError {\n return new CordovaBLEError(\n `Internal error: ble cordova plugin returned an invalid error code ${errObject.code} with message ${errObject.message}`,\n CordovaBLEError.Code.InternalError\n );\n }\n\n static invalidNativeCallResult(result: any, cause: Error): CordovaBLEError {\n return new CordovaBLEError(\n `Internal error: native call returned an invalid data type. ${cause.message}`,\n CordovaBLEError.Code.InternalError\n );\n }\n\n static isValidErrorCode(\n code: string\n ): code is keyof typeof CordovaBLEError.Code {\n return code in CordovaBLEError.Code;\n }\n\n static iotizeBLEMissing() {\n return new CordovaBLEError(\n `iotizeBLE global variable does not exist. Are you sure app is running inside a Cordova application ?`,\n CordovaBLEError.Code.InternalError\n );\n }\n}\n\n/* istanbul ignore next */\nexport namespace CordovaBLEError {\n export enum Code {\n InternalError = 'CordovaBLEErrorInternalError',\n IllegalArgument = 'CordovaBLEErrorIllegalArgument',\n BLENotAvailable = 'CordovaBLEErrorBLENotAvailable',\n InvalidMacAddress = 'InvalidMacAddressInvalidMacAddress',\n ConnectionError = 'CordovaBLEErrorConnectionError',\n RequestError = 'CordovaBLEErrorRequestError',\n LocationServiceDisabled = 'CordovaBLEErrorLocationServiceDisabled',\n DisconnectError = 'CordovaBLEErrorDisconnectError',\n IllegalAction = 'CordovaBLEErrorIllegalAction',\n NotConnectedError = 'CordovaBLEErrorNotConnectedError',\n StatusCodeError = 'CordovaBLEErrorStatusCodeError',\n }\n}\n","import { CordovaBLEError } from \"./cordova-ble-error\";\nimport { IoTizeBleCordovaPlugin } from \"./iotize-ble-cordova-plugin\";\n\ndeclare var iotizeBLE: IoTizeBleCordovaPlugin;\n\nexport function getIoTizeBleCordovaPlugin(): IoTizeBleCordovaPlugin {\n if (typeof iotizeBLE !== \"object\") {\n throw CordovaBLEError.iotizeBLEMissing();\n }\n return iotizeBLE;\n}\n","//\n// Copyright 2018 IoTize SAS Inc. Licensed under the MIT license.\n//\n// ble-com-protocol.ts\n// device-com-ble.cordova BLE Cordova Plugin\n//\nimport {\n ComProtocolConnectOptions,\n ComProtocolDisconnectOptions,\n ComProtocolOptions,\n ComProtocolSendOptions,\n ConnectionState,\n} from \"@iotize/tap/protocol/api\";\nimport { QueueComProtocol } from \"@iotize/tap/protocol/core\";\nimport { defer, Observable } from \"rxjs\";\nimport { filter, first, tap } from \"rxjs/operators\";\nimport { IoTizeBleCordovaPlugin } from \"./iotize-ble-cordova-plugin\";\nimport { debug } from \"./logger\";\nimport { getIoTizeBleCordovaPlugin } from \"./utility\";\n\nexport class BLEComProtocol extends QueueComProtocol {\n /**\n * Lazy reference to iotizeBLE.\n * We don't want to reference iotizeBLE in constructor as it may be referenced\n * before cordova plugin is loaded\n */\n private get pluginInterface(): IoTizeBleCordovaPlugin {\n return this.cordovaInterfaceOverwrite || getIoTizeBleCordovaPlugin();\n }\n\n constructor(\n private deviceId: string,\n comProtocolOptions?: ComProtocolOptions,\n public readonly cordovaInterfaceOverwrite?: IoTizeBleCordovaPlugin\n ) {\n super();\n if (comProtocolOptions) {\n this.options = comProtocolOptions;\n } else {\n this.options.connect.timeout = 60000;\n }\n }\n\n _connect(options?: ComProtocolConnectOptions): Observable<any> {\n debug(\"_connect\", options);\n return this.pluginInterface\n .connectAndDiscoverTapServices(this.deviceId)\n .pipe(\n tap((state) => {\n this.setConnectionState(state);\n }),\n filter((state) => state === ConnectionState.CONNECTED),\n first()\n );\n }\n\n _disconnect(options?: ComProtocolDisconnectOptions): Observable<any> {\n debug(\"_disconnect\", options);\n return defer(() => this.pluginInterface.disConnect(this.deviceId));\n }\n\n async write(data: Uint8Array): Promise<any> {\n throw new Error(\"Method not implemented.\");\n }\n\n async read(): Promise<Uint8Array> {\n throw new Error(\"Method not implemented.\");\n }\n\n send(\n data: Uint8Array,\n options?: ComProtocolSendOptions\n ): Observable<Uint8Array> {\n return defer(() => this.pluginInterface.send(this.deviceId, data));\n }\n}\n","import { ConnectionState } from \"@iotize/tap/protocol/api\";\nimport {\n CharacteristicAdapterInterface,\n PeripheralAdapterInterface,\n ServiceAdapterInterface,\n DescriptorAdapterInterface,\n BleComError,\n CharacteristicProperties,\n} from \"@iotize/tap/protocol/ble/common\";\nimport { BehaviorSubject, Observable, Subscription } from \"rxjs\";\nimport {\n distinctUntilChanged,\n filter,\n first,\n map,\n shareReplay,\n} from \"rxjs/operators\";\nimport {\n CharacteristicDescription,\n DescriptorDescription,\n ServiceDescription,\n ServiceList,\n} from \"./definitions\";\nimport { IoTizeBleCordovaPlugin } from \"./iotize-ble-cordova-plugin\";\nimport { getIoTizeBleCordovaPlugin } from \"./utility\";\n\nexport class CordovaPeripheralAdapter\n implements PeripheralAdapterInterface<CordovaServiceAdapter>\n{\n private _stateChange = new BehaviorSubject<ConnectionState>(\n ConnectionState.DISCONNECTED\n );\n private connectionStateSubscription?: Subscription;\n private serviceListCache?: ServiceList;\n\n get stateChange() {\n return this._stateChange.asObservable().pipe(distinctUntilChanged());\n }\n\n get name() {\n // TODO device name ?\n return this.id;\n }\n\n get id() {\n return this.deviceId;\n }\n\n constructor(\n public readonly deviceId: string,\n public readonly cordovaPlugin: IoTizeBleCordovaPlugin = getIoTizeBleCordovaPlugin()\n ) {}\n\n get state(): string {\n return ConnectionState[this._stateChange.value];\n }\n\n async discoverServices<Key extends string = string>(\n serviceUUIDs?: Key[]\n ): Promise<Partial<Record<Key, CordovaServiceAdapter>>> {\n this.serviceListCache = await this.cordovaPlugin.discoverServices(\n this.deviceId\n );\n const result: Partial<Record<Key, CordovaServiceAdapter>> = {};\n if (serviceUUIDs) {\n for (const uuid of serviceUUIDs) {\n const servicDefinition = this.serviceListCache.find(\n (def) => def.uuid === uuid\n );\n if (servicDefinition) {\n result[uuid] = new CordovaServiceAdapter(servicDefinition, this);\n }\n }\n } else {\n for (const serviceDefinition of this.serviceListCache) {\n result[serviceDefinition.uuid as Key] = new CordovaServiceAdapter(\n serviceDefinition,\n this\n );\n }\n }\n return result;\n }\n\n async connect(): Promise<void> {\n this.connectionStateSubscription?.unsubscribe();\n const connectObservable = this.cordovaPlugin\n .connect(this.deviceId)\n .pipe(shareReplay());\n this.connectionStateSubscription = connectObservable.subscribe((state) => {\n this._stateChange.next(state);\n });\n await connectObservable\n .pipe(\n filter((state) => state === ConnectionState.CONNECTED),\n first()\n )\n .toPromise();\n }\n\n async disconnect(): Promise<void> {\n await this.cordovaPlugin.disConnect(this.deviceId);\n this._stateChange.next(ConnectionState.DISCONNECTED);\n this.connectionStateSubscription?.unsubscribe();\n }\n\n async close(): Promise<void> {\n await this.cordovaPlugin.close(this.deviceId);\n this._stateChange.next(ConnectionState.DISCONNECTED);\n this.connectionStateSubscription?.unsubscribe();\n }\n\n async getService(uuid: string): Promise<CordovaServiceAdapter> {\n if (!this.serviceListCache) {\n await this.discoverServices([uuid]);\n }\n const serviceDefinition = this.serviceListCache!.find(\n (s) => s.uuid === uuid\n );\n if (!serviceDefinition) {\n throw BleComError.serviceNotFound(uuid);\n }\n return new CordovaServiceAdapter(serviceDefinition, this);\n }\n}\n\nexport class CordovaServiceAdapter implements ServiceAdapterInterface {\n get uuid() {\n return this.config.uuid;\n }\n\n constructor(\n private readonly config: ServiceDescription,\n public readonly peripheral: CordovaPeripheralAdapter\n ) {}\n\n async getCharacteristic(\n charcUUID: string\n ): Promise<CordovaCharacteristicAdapter> {\n const characteristicDescription = this.config.characteristics?.find(\n (c) => c.uuid === charcUUID\n );\n if (!characteristicDescription) {\n throw BleComError.charcacteristicNotFound(charcUUID);\n }\n return new CordovaCharacteristicAdapter(this, characteristicDescription);\n }\n\n async getCharacteristics(): Promise<CordovaCharacteristicAdapter[]> {\n if (!this.config.characteristics) {\n return [];\n }\n return this.config.characteristics.map(\n (c) => new CordovaCharacteristicAdapter(this, c)\n );\n }\n}\n\nexport class CordovaCharacteristicAdapter\n implements CharacteristicAdapterInterface\n{\n private _dataStream?: Observable<Uint8Array>;\n\n get uuid() {\n return this.config.uuid;\n }\n\n constructor(\n public readonly service: CordovaServiceAdapter,\n public readonly config: CharacteristicDescription\n ) {}\n\n get properties(): CharacteristicProperties {\n return this.config.properties;\n }\n\n get data(): Observable<{ data: Uint8Array; isNotification: boolean }> {\n return this.setupDataStreamIfRequired().pipe(\n map((data) => ({\n data,\n isNotification: true,\n }))\n );\n }\n\n protected get deviceId() {\n return this.service.peripheral.deviceId;\n }\n\n protected get pluginInterface() {\n return this.service.peripheral.cordovaPlugin;\n }\n\n async read(): Promise<Uint8Array> {\n return this.pluginInterface.characteristicReadValue(\n this.deviceId,\n this.service.uuid,\n this.uuid\n );\n }\n\n async getDescriptor(): Promise<CordovaDescriptorAdapter> {\n throw new Error(`Not implemented yet`);\n }\n\n async getDescriptors(): Promise<DescriptorAdapterInterface[]> {\n if (!this.config.descriptors) {\n return [];\n }\n return this.config.descriptors.map(\n (descriptor) => new CordovaDescriptorAdapter(descriptor, this)\n );\n }\n\n async write(\n data: Uint8Array,\n writeWithoutResponse: boolean\n ): Promise<Uint8Array> {\n if (writeWithoutResponse) {\n await this.pluginInterface.characteristicWriteWithoutResponse(\n this.deviceId,\n this.service.uuid,\n this.uuid,\n data\n );\n } else {\n await this.pluginInterface.characteristicWrite(\n this.deviceId,\n this.service.uuid,\n this.uuid,\n data\n );\n }\n return data;\n }\n\n async enableNotifications(enabled?: boolean): Promise<void> {\n if (enabled) {\n this.setupDataStreamIfRequired();\n await this.pluginInterface.characteristicStartNotification(\n this.deviceId,\n this.service.uuid,\n this.uuid\n );\n } else {\n await this.pluginInterface.characteristicStopNotification(\n this.deviceId,\n this.service.uuid,\n this.uuid\n );\n }\n }\n\n setupDataStreamIfRequired() {\n if (!this._dataStream) {\n this._dataStream = this.pluginInterface.characteristicChanged(\n this.deviceId,\n this.service.uuid,\n this.uuid\n );\n }\n return this._dataStream;\n }\n}\n\nexport class CordovaDescriptorAdapter implements DescriptorAdapterInterface {\n get uuid() {\n return this.config.uuid;\n }\n\n constructor(\n public readonly config: DescriptorDescription,\n public readonly characteristic: CordovaCharacteristicAdapter\n ) {}\n\n async readValue(): Promise<Uint8Array> {\n throw new Error(`Reading descriptor value is not implemented yet`);\n }\n\n async writeValue(data: Uint8Array): Promise<void> {\n throw new Error(`Writing descriptor value is not implemented yet`);\n }\n}\n","//\n// Copyright 2018 IoTize SAS Inc. Licensed under the MIT license.\n//\n// scanner.ts\n// device-com-ble.cordova BLE Cordova Plugin\n//\n\nimport { BleComError } from \"@iotize/tap/protocol/ble/common\";\nimport { DeviceScanner, DeviceScannerOptions } from \"@iotize/tap/scanner/api\";\nimport { BehaviorSubject, Observable, Subscription } from \"rxjs\";\nimport { CordovaBLEScanResult, RequestDeviceOptions } from \"./definitions\";\nimport { IoTizeBleCordovaPlugin } from \"./iotize-ble-cordova-plugin\";\nimport { debug } from \"./logger\";\nimport { getIoTizeBleCordovaPlugin } from \"./utility\";\n\n/**\n * BLE Tap scanner for cordova apps\n */\nexport class BLEScanner implements DeviceScanner<CordovaBLEScanResult> {\n private _results = new BehaviorSubject<CordovaBLEScanResult[]>([]);\n private _scanning$ = new BehaviorSubject<boolean>(false);\n private scanSubscription?: Subscription;\n\n /**\n * Lazy reference to iotizeBLE.\n * We don't want to reference iotizeBLE in constructor as it may be referenced\n * before cordova plugin is loaded\n */\n private get cordovaInterface(): IoTizeBleCordovaPlugin {\n return this.cordovaInterfaceOverwrite || getIoTizeBleCordovaPlugin();\n }\n\n /**\n *\n * @param cordovaInterfaceOverwrite overwrite cordova interface. Used for testing\n */\n constructor(\n private cordovaInterfaceOverwrite?: IoTizeBleCordovaPlugin,\n /**\n * Request device options used to filter scan results\n */\n readonly requestDeviceOptions?: RequestDeviceOptions\n ) {}\n\n get scanning(): Observable<boolean> {\n return this._scanning$.asObservable();\n }\n\n get isScanning(): boolean {\n return this._scanning$.value;\n }\n\n /**\n * Gets the observable on the devices$ Subject\n * @return\n */\n get results(): Observable<CordovaBLEScanResult[]> {\n return this._results.asObservable();\n }\n\n /**\n * Launches the scan for BLE devices\n * Throws if BLE is not available\n */\n async start(options?: DeviceScannerOptions): Promise<void> {\n this.scanSubscription?.unsubscribe();\n this.scanSubscription = undefined;\n this.clearResults();\n const isAvailable = await this.checkAvailable();\n if (!isAvailable) {\n throw BleComError.bleNotAvailable(\n `BLE is not available. Make sure that BLE is enabled on your device`\n );\n }\n debug(\"Start Scanning ...\");\n this._scanning$.next(true);\n return new Promise<void>((resolve, reject) => {\n this.scanSubscription = this.cordovaInterface\n .startScan(this.requestDeviceOptions)\n .subscribe(\n (result) => {\n if (result == \"Ok\") {\n resolve();\n return;\n }\n this.addOrRefreshDevice(result);\n },\n (error) => {\n debug(\"Start scan failed with error: \", error);\n this.cordovaInterface\n .getLastError()\n .then((lasterror) => {\n debug(\"Last BLE error \" + lasterror);\n })\n .catch((err) => {\n debug(\"Cannot get last BLE error: \", err);\n });\n reject(error);\n this._scanning$.next(false);\n }\n );\n });\n }\n\n /**\n *\n */\n async stop(): Promise<void> {\n debug(\"Stop Scanning ...\");\n try {\n this.scanSubscription?.unsubscribe();\n this.scanSubscription = undefined;\n await this.cordovaInterface.stopScan();\n this._scanning$.next(false);\n return;\n } catch (err) {\n this._scanning$.next(false);\n throw err;\n }\n }\n\n /**\n * Returns true if this scanner is available\n */\n checkAvailable(): Promise<boolean> {\n return this.cordovaInterface.checkAvailable();\n }\n\n private get devices() {\n return this._results.value;\n }\n\n private clearResults() {\n this._results.next([]);\n }\n\n private addOrRefreshDevice(newDevice: CordovaBLEScanResult) {\n let storedDeviceIndex = this.devices.findIndex(\n (entry) => entry.address == newDevice.address\n );\n if (storedDeviceIndex >= 0) {\n let storedDevice = this.devices[storedDeviceIndex];\n if (\n storedDevice.name != newDevice.name ||\n storedDevice.rssi != newDevice.rssi\n ) {\n debug(\n `Updating device at index ${storedDeviceIndex}, name=${storedDevice.name} with rssi=${storedDevice.rssi}`\n );\n this.devices[storedDeviceIndex] = newDevice;\n // this.devices = [...this.devices];\n this._results.next(this.devices);\n }\n } else {\n debug(\n `Adding new device name=${newDevice.name} with rssi=${newDevice.rssi}`\n );\n this.devices.push(newDevice);\n this._results.next(this.devices);\n }\n }\n}\n","import {\n bufferToHexString,\n hexStringToBuffer as hexStringToBufferCore,\n} from \"@iotize/common/byte-converter\";\nimport { safeEnumValue } from \"@iotize/common/utility\";\nimport { ConnectionState } from \"@iotize/tap/protocol/api\";\nimport { Observable, Subject, defer } from \"rxjs\";\nimport { switchMap } from \"rxjs/operators\";\nimport { map } from \"rxjs/operators\";\nimport { CordovaInterface } from \"./cordova-interface\";\nimport {\n CordovaBLEScanResult,\n RequestDeviceOptions,\n ServiceList,\n} from \"./definitions\";\nimport { CordovaBLEError } from \"./cordova-ble-error\";\n\nfunction hexStringToBuffer(str: string): Uint8Array {\n try {\n return hexStringToBufferCore(str);\n } catch (err) {\n throw CordovaBLEError.invalidNativeCallResult(str, err as Error);\n }\n}\n\ndeclare var cordova: CordovaInterface;\n\nexport class IoTizeBleCordovaPlugin {\n checkAvailable(): Promise<boolean> {\n return this.execSingleResult<boolean>(\"checkAvailable\", []);\n }\n\n requestEnableBle(): Promise<\"OK\"> {\n return this.execSingleResult<\"OK\">(\"enable\", []);\n }\n\n startScan(\n requestDeviceOptions: RequestDeviceOptions | undefined\n ): Observable<CordovaBLEScanResult | \"Ok\"> {\n return this.execMultipleResult<CordovaBLEScanResult | \"Ok\">(\"startScan\", [\n JSON.stringify(requestDeviceOptions),\n ]);\n }\n\n stopScan() {\n return this.execSingleResult<\"OK\">(\"stopScan\", []);\n }\n\n connect(\n deviceId: string,\n enableBleIfNot: boolean = true\n ): Observable<ConnectionState> {\n return this.askBleEnable(enableBleIfNot).pipe(\n switchMap(() => {\n return this.execMultipleResult<string>(\"connect\", [deviceId]).pipe(\n map((state) => {\n if (!(state in ConnectionState)) {\n console.warn(\n `Plugin native code returned an invalid connection state: \"${state}\".`\n );\n }\n return safeEnumValue(ConnectionState, state);\n })\n );\n })\n );\n }\n\n askBleEnable(askEnable: boolean): Observable<void> {\n return defer(async () => {\n if (askEnable) {\n if (!(await this.checkAvailable())) {\n await this.requestEnableBle();\n }\n }\n });\n }\n\n requestMTU(deviceId: string, mtu: number) {\n return this.execSingleResult<\"OK\">(\"requestMTU\", [deviceId, mtu]);\n }\n\n connectAndDiscoverTapServices(\n deviceId: string,\n enableBleIfNot: boolean = true\n ): Observable<ConnectionState> {\n return this.askBleEnable(enableBleIfNot).pipe(\n switchMap(() => {\n return this.execMultipleResult<string>(\n \"connectAndDiscoverTapServices\",\n [deviceId]\n ).pipe(\n map((state) => {\n if (!(state in ConnectionState)) {\n console.warn(\n `Plugin native code returned an invalid connection state: \"${state}\".`\n );\n }\n return safeEnumValue(ConnectionState, state);\n })\n );\n })\n );\n }\n\n disConnect(deviceId: string) {\n return this.execSingleResult<\"OK\">(\"disConnect\", [deviceId]);\n }\n\n close(deviceId: string) {\n return this.execSingleResult<\"OK\">(\"close\", [deviceId]);\n }\n\n isConnected(deviceId: string) {\n return this.execSingleResult<boolean>(\"isConnected\", [deviceId]);\n }\n\n async send(deviceId: string, data: Uint8Array) {\n const hexString = await this.execSingleResult<string>(\"sendRequest\", [\n deviceId,\n bufferToHexString(data),\n ]);\n return hexStringToBuffer(hexString);\n }\n\n getLastError() {\n return this.execSingleResult<string>(\"getLastError\", []);\n }\n\n characteristicStartNotification(\n deviceId: string,\n serviceId: string,\n characId: string\n ) {\n return this.execSingleResult<\"OK\">(\"characteristicStartNotification\", [\n deviceId,\n serviceId,\n characId,\n ]);\n }\n\n characteristicChanged(\n deviceId: string,\n serviceId: string,\n characId: string\n ): Observable<Uint8Array> {\n return this.execMultipleResult<string>(\"characteristicChanged\", [\n deviceId,\n serviceId,\n characId,\n ]).pipe(\n map((hexString) => {\n return hexStringToBuffer(hexString);\n })\n );\n }\n\n characteristicStopNotification(\n deviceId: string,\n serviceId: string,\n characId: string\n ) {\n return this.execSingleResult<\"OK\">(\"characteristicStopNotification\", [\n deviceId,\n serviceId,\n characId,\n ]);\n }\n\n async characteristicReadValue(\n deviceId: string,\n serviceId: string,\n characId: string\n ): Promise<Uint8Array> {\n const hexString = await this.execSingleResult<string>(\n \"characteristicRead\",\n [deviceId, serviceId, characId]\n );\n return hexStringToBuffer(hexString);\n }\n\n characteristicWrite(\n deviceId: string,\n serviceId: string,\n characId: string,\n data: Uint8Array\n ) {\n return this.execSingleResult<\"OK\">(\"characteristicWrite\", [\n deviceId,\n serviceId,\n characId,\n bufferToHexString(data),\n ]);\n }\n\n characteristicWriteWithoutResponse(\n deviceId: string,\n serviceId: string,\n characId: string,\n data: Uint8Array\n ) {\n return this.execSingleResult<\"OK\">(\"characteristicWriteWithoutResponse\", [\n deviceId,\n serviceId,\n characId,\n bufferToHexString(data),\n ]);\n }\n\n async discoverServices(deviceId: string): Promise<ServiceList> {\n const services = await this.execSingleResult<ServiceList>(\n \"discoverServices\",\n [deviceId]\n );\n return services;\n }\n\n private execSingleResult<T extends string | void | boolean | Object>(\n methodName: string,\n args: any[]\n ): Promise<T> {\n return new Promise<T>((resolve, reject) => {\n cordova.exec(\n resolve,\n (errObject: { code?: string; message?: string }) => {\n reject(objectErrorToError(errObject));\n },\n \"BLECom\",\n methodName,\n args\n );\n });\n }\n\n private execMultipleResult<T>(\n methodName: string,\n args: any[]\n ): Observable<T> {\n const subject = new Subject<T>();\n cordova.exec<T>(\n (data) => {\n subject.next(data);\n },\n (err) => {\n subject.error(objectErrorToError(err));\n },\n \"BLECom\",\n methodName,\n args\n );\n return subject.asObservable();\n }\n}\n\nfunction objectErrorToError(errObject: { code?: string; message?: string }) {\n if (typeof errObject !== \"object\" || !errObject.code || !errObject.message) {\n return CordovaBLEError.invalidErrorResult(errObject);\n }\n if (!CordovaBLEError.isValidErrorCode(errObject.code)) {\n return CordovaBLEError.invalidErrorCode(errObject);\n }\n return new CordovaBLEError(\n errObject.message,\n CordovaBLEError.Code[errObject.code]\n );\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n\nexport {CharacteristicDescription as ɵb,ServiceDescription as ɵa} from './lib/definitions';\nexport {IoTizeBleCordovaPlugin as ɵc} from './lib/iotize-ble-cordova-plugin';"],"names":["hexStringToBufferCore"],"mappings":"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"}
1
+ {"version":3,"file":"iotize-device-com-ble.cordova.js","sources":["../../../../src/lib/cordova-ble-error.ts","../../../../src/lib/logger.ts","../../../../src/lib/utility.ts","../../../../src/lib/ble-com-protocol.ts","../../../../src/lib/cordova-service-adapter.ts","../../../../src/lib/scanner.ts","../../../../src/lib/iotize-ble-cordova-plugin.ts","../../../../src/iotize-device-com-ble.cordova.ts"],"sourcesContent":["import { CodeError } from '@iotize/common/error';\n\nexport class CordovaBLEError extends CodeError {\n static invalidErrorResult(errObject: {\n code?: string | undefined;\n message?: string | undefined;\n }): CordovaBLEError {\n return new CordovaBLEError(\n `Internal error: ble cordova plugin returned an unexpected error object`,\n CordovaBLEError.Code.InternalError\n );\n }\n\n static invalidErrorCode(errObject: {\n code?: string | undefined;\n message?: string | undefined;\n }): CordovaBLEError {\n return new CordovaBLEError(\n `Internal error: ble cordova plugin returned an invalid error code ${errObject.code} with message ${errObject.message}`,\n CordovaBLEError.Code.InternalError\n );\n }\n\n static invalidNativeCallResult(result: any, cause: Error): CordovaBLEError {\n return new CordovaBLEError(\n `Internal error: native call returned an invalid data type. ${cause.message}`,\n CordovaBLEError.Code.InternalError\n );\n }\n\n static isValidErrorCode(\n code: string\n ): code is keyof typeof CordovaBLEError.Code {\n return code in CordovaBLEError.Code;\n }\n\n static iotizeBLEMissing() {\n return new CordovaBLEError(\n `iotizeBLE global variable does not exist. Are you sure app is running inside a Cordova application ?`,\n CordovaBLEError.Code.InternalError\n );\n }\n}\n\n/* istanbul ignore next */\nexport namespace CordovaBLEError {\n export enum Code {\n InternalError = 'CordovaBLEErrorInternalError',\n IllegalArgument = 'CordovaBLEErrorIllegalArgument',\n BLENotAvailable = 'CordovaBLEErrorBLENotAvailable',\n InvalidMacAddress = 'InvalidMacAddressInvalidMacAddress',\n ConnectionError = 'CordovaBLEErrorConnectionError',\n RequestError = 'CordovaBLEErrorRequestError',\n LocationServiceDisabled = 'CordovaBLEErrorLocationServiceDisabled',\n DisconnectError = 'CordovaBLEErrorDisconnectError',\n IllegalAction = 'CordovaBLEErrorIllegalAction',\n NotConnectedError = 'CordovaBLEErrorNotConnectedError',\n StatusCodeError = 'CordovaBLEErrorStatusCodeError',\n }\n}\n","import { createDebugger } from \"@iotize/common/debug\";\n\nexport const debug = createDebugger(`@iotize/device-com-ble.cordova`);\n","import { CordovaBLEError } from \"./cordova-ble-error\";\nimport { IoTizeBleCordovaPlugin } from \"./iotize-ble-cordova-plugin\";\n\ndeclare var iotizeBLE: IoTizeBleCordovaPlugin;\n\nexport function getIoTizeBleCordovaPlugin(): IoTizeBleCordovaPlugin {\n if (typeof iotizeBLE !== \"object\") {\n throw CordovaBLEError.iotizeBLEMissing();\n }\n return iotizeBLE;\n}\n","//\n// Copyright 2018 IoTize SAS Inc. Licensed under the MIT license.\n//\n// ble-com-protocol.ts\n// device-com-ble.cordova BLE Cordova Plugin\n//\nimport {\n ComProtocolConnectOptions,\n ComProtocolDisconnectOptions,\n ComProtocolOptions,\n ComProtocolSendOptions,\n ConnectionState,\n} from '@iotize/tap/protocol/api';\nimport { QueueComProtocol } from '@iotize/tap/protocol/core';\nimport { defer, Observable, of, throwError } from 'rxjs';\nimport { catchError, filter, first, tap } from 'rxjs/operators';\nimport { CordovaBLEError } from './cordova-ble-error';\nimport { IoTizeBleCordovaPlugin } from './iotize-ble-cordova-plugin';\nimport { debug } from './logger';\nimport { getIoTizeBleCordovaPlugin } from './utility';\n\nexport class BLEComProtocol extends QueueComProtocol {\n /**\n * Lazy reference to iotizeBLE.\n * We don't want to reference iotizeBLE in constructor as it may be referenced\n * before cordova plugin is loaded\n */\n private get pluginInterface(): IoTizeBleCordovaPlugin {\n return this.cordovaInterfaceOverwrite || getIoTizeBleCordovaPlugin();\n }\n\n constructor(\n private deviceId: string,\n comProtocolOptions?: ComProtocolOptions,\n public readonly cordovaInterfaceOverwrite?: IoTizeBleCordovaPlugin\n ) {\n super();\n if (comProtocolOptions) {\n this.options = comProtocolOptions;\n } else {\n this.options.connect.timeout = 60000;\n }\n }\n\n _connect(options?: ComProtocolConnectOptions): Observable<any> {\n debug('_connect', options);\n return this.pluginInterface\n .connectAndDiscoverTapServices(this.deviceId)\n .pipe(\n tap((state) => {\n this.setConnectionState(state);\n }),\n filter((state) => state === ConnectionState.CONNECTED),\n first()\n );\n }\n\n _disconnect(options?: ComProtocolDisconnectOptions): Observable<any> {\n debug('_disconnect', options);\n return defer(() => this.pluginInterface.disConnect(this.deviceId));\n }\n\n async write(data: Uint8Array): Promise<any> {\n throw new Error('Method not implemented.');\n }\n\n async read(): Promise<Uint8Array> {\n throw new Error('Method not implemented.');\n }\n\n send(\n data: Uint8Array,\n options?: ComProtocolSendOptions\n ): Observable<Uint8Array> {\n return defer(() => this.pluginInterface.send(this.deviceId, data)).pipe(\n catchError((err) => {\n if (\n (err as CordovaBLEError)?.code ===\n CordovaBLEError.Code.NotConnectedError\n ) {\n this.setConnectionState(ConnectionState.DISCONNECTED);\n }\n return throwError(err);\n })\n );\n }\n}\n","import { ConnectionState } from \"@iotize/tap/protocol/api\";\nimport {\n CharacteristicAdapterInterface,\n PeripheralAdapterInterface,\n ServiceAdapterInterface,\n DescriptorAdapterInterface,\n BleComError,\n CharacteristicProperties,\n} from \"@iotize/tap/protocol/ble/common\";\nimport { BehaviorSubject, Observable, Subscription } from \"rxjs\";\nimport {\n distinctUntilChanged,\n filter,\n first,\n map,\n shareReplay,\n} from \"rxjs/operators\";\nimport {\n CharacteristicDescription,\n DescriptorDescription,\n ServiceDescription,\n ServiceList,\n} from \"./definitions\";\nimport { IoTizeBleCordovaPlugin } from \"./iotize-ble-cordova-plugin\";\nimport { getIoTizeBleCordovaPlugin } from \"./utility\";\n\nexport class CordovaPeripheralAdapter\n implements PeripheralAdapterInterface<CordovaServiceAdapter>\n{\n private _stateChange = new BehaviorSubject<ConnectionState>(\n ConnectionState.DISCONNECTED\n );\n private connectionStateSubscription?: Subscription;\n private serviceListCache?: ServiceList;\n\n get stateChange() {\n return this._stateChange.asObservable().pipe(distinctUntilChanged());\n }\n\n get name() {\n // TODO device name ?\n return this.id;\n }\n\n get id() {\n return this.deviceId;\n }\n\n constructor(\n public readonly deviceId: string,\n public readonly cordovaPlugin: IoTizeBleCordovaPlugin = getIoTizeBleCordovaPlugin()\n ) {}\n\n get state(): string {\n return ConnectionState[this._stateChange.value];\n }\n\n async discoverServices<Key extends string = string>(\n serviceUUIDs?: Key[]\n ): Promise<Partial<Record<Key, CordovaServiceAdapter>>> {\n this.serviceListCache = await this.cordovaPlugin.discoverServices(\n this.deviceId\n );\n const result: Partial<Record<Key, CordovaServiceAdapter>> = {};\n if (serviceUUIDs) {\n for (const uuid of serviceUUIDs) {\n const servicDefinition = this.serviceListCache.find(\n (def) => def.uuid === uuid\n );\n if (servicDefinition) {\n result[uuid] = new CordovaServiceAdapter(servicDefinition, this);\n }\n }\n } else {\n for (const serviceDefinition of this.serviceListCache) {\n result[serviceDefinition.uuid as Key] = new CordovaServiceAdapter(\n serviceDefinition,\n this\n );\n }\n }\n return result;\n }\n\n async connect(): Promise<void> {\n this.connectionStateSubscription?.unsubscribe();\n const connectObservable = this.cordovaPlugin\n .connect(this.deviceId)\n .pipe(shareReplay());\n this.connectionStateSubscription = connectObservable.subscribe((state) => {\n this._stateChange.next(state);\n });\n await connectObservable\n .pipe(\n filter((state) => state === ConnectionState.CONNECTED),\n first()\n )\n .toPromise();\n }\n\n async disconnect(): Promise<void> {\n await this.cordovaPlugin.disConnect(this.deviceId);\n this._stateChange.next(ConnectionState.DISCONNECTED);\n this.connectionStateSubscription?.unsubscribe();\n }\n\n async close(): Promise<void> {\n await this.cordovaPlugin.close(this.deviceId);\n this._stateChange.next(ConnectionState.DISCONNECTED);\n this.connectionStateSubscription?.unsubscribe();\n }\n\n async getService(uuid: string): Promise<CordovaServiceAdapter> {\n if (!this.serviceListCache) {\n await this.discoverServices([uuid]);\n }\n const serviceDefinition = this.serviceListCache!.find(\n (s) => s.uuid === uuid\n );\n if (!serviceDefinition) {\n throw BleComError.serviceNotFound(uuid);\n }\n return new CordovaServiceAdapter(serviceDefinition, this);\n }\n}\n\nexport class CordovaServiceAdapter implements ServiceAdapterInterface {\n get uuid() {\n return this.config.uuid;\n }\n\n constructor(\n private readonly config: ServiceDescription,\n public readonly peripheral: CordovaPeripheralAdapter\n ) {}\n\n async getCharacteristic(\n charcUUID: string\n ): Promise<CordovaCharacteristicAdapter> {\n const characteristicDescription = this.config.characteristics?.find(\n (c) => c.uuid === charcUUID\n );\n if (!characteristicDescription) {\n throw BleComError.charcacteristicNotFound(charcUUID);\n }\n return new CordovaCharacteristicAdapter(this, characteristicDescription);\n }\n\n async getCharacteristics(): Promise<CordovaCharacteristicAdapter[]> {\n if (!this.config.characteristics) {\n return [];\n }\n return this.config.characteristics.map(\n (c) => new CordovaCharacteristicAdapter(this, c)\n );\n }\n}\n\nexport class CordovaCharacteristicAdapter\n implements CharacteristicAdapterInterface\n{\n private _dataStream?: Observable<Uint8Array>;\n\n get uuid() {\n return this.config.uuid;\n }\n\n constructor(\n public readonly service: CordovaServiceAdapter,\n public readonly config: CharacteristicDescription\n ) {}\n\n get properties(): CharacteristicProperties {\n return this.config.properties;\n }\n\n get data(): Observable<{ data: Uint8Array; isNotification: boolean }> {\n return this.setupDataStreamIfRequired().pipe(\n map((data) => ({\n data,\n isNotification: true,\n }))\n );\n }\n\n protected get deviceId() {\n return this.service.peripheral.deviceId;\n }\n\n protected get pluginInterface() {\n return this.service.peripheral.cordovaPlugin;\n }\n\n async read(): Promise<Uint8Array> {\n return this.pluginInterface.characteristicReadValue(\n this.deviceId,\n this.service.uuid,\n this.uuid\n );\n }\n\n async getDescriptor(): Promise<CordovaDescriptorAdapter> {\n throw new Error(`Not implemented yet`);\n }\n\n async getDescriptors(): Promise<DescriptorAdapterInterface[]> {\n if (!this.config.descriptors) {\n return [];\n }\n return this.config.descriptors.map(\n (descriptor) => new CordovaDescriptorAdapter(descriptor, this)\n );\n }\n\n async write(\n data: Uint8Array,\n writeWithoutResponse: boolean\n ): Promise<Uint8Array> {\n if (writeWithoutResponse) {\n await this.pluginInterface.characteristicWriteWithoutResponse(\n this.deviceId,\n this.service.uuid,\n this.uuid,\n data\n );\n } else {\n await this.pluginInterface.characteristicWrite(\n this.deviceId,\n this.service.uuid,\n this.uuid,\n data\n );\n }\n return data;\n }\n\n async enableNotifications(enabled?: boolean): Promise<void> {\n if (enabled) {\n this.setupDataStreamIfRequired();\n await this.pluginInterface.characteristicStartNotification(\n this.deviceId,\n this.service.uuid,\n this.uuid\n );\n } else {\n await this.pluginInterface.characteristicStopNotification(\n this.deviceId,\n this.service.uuid,\n this.uuid\n );\n }\n }\n\n setupDataStreamIfRequired() {\n if (!this._dataStream) {\n this._dataStream = this.pluginInterface.characteristicChanged(\n this.deviceId,\n this.service.uuid,\n this.uuid\n );\n }\n return this._dataStream;\n }\n}\n\nexport class CordovaDescriptorAdapter implements DescriptorAdapterInterface {\n get uuid() {\n return this.config.uuid;\n }\n\n constructor(\n public readonly config: DescriptorDescription,\n public readonly characteristic: CordovaCharacteristicAdapter\n ) {}\n\n async readValue(): Promise<Uint8Array> {\n throw new Error(`Reading descriptor value is not implemented yet`);\n }\n\n async writeValue(data: Uint8Array): Promise<void> {\n throw new Error(`Writing descriptor value is not implemented yet`);\n }\n}\n","//\n// Copyright 2018 IoTize SAS Inc. Licensed under the MIT license.\n//\n// scanner.ts\n// device-com-ble.cordova BLE Cordova Plugin\n//\n\nimport { BleComError } from \"@iotize/tap/protocol/ble/common\";\nimport { DeviceScanner, DeviceScannerOptions } from \"@iotize/tap/scanner/api\";\nimport { BehaviorSubject, Observable, Subscription } from \"rxjs\";\nimport { CordovaBLEScanResult, RequestDeviceOptions } from \"./definitions\";\nimport { IoTizeBleCordovaPlugin } from \"./iotize-ble-cordova-plugin\";\nimport { debug } from \"./logger\";\nimport { getIoTizeBleCordovaPlugin } from \"./utility\";\n\n/**\n * BLE Tap scanner for cordova apps\n */\nexport class BLEScanner implements DeviceScanner<CordovaBLEScanResult> {\n private _results = new BehaviorSubject<CordovaBLEScanResult[]>([]);\n private _scanning$ = new BehaviorSubject<boolean>(false);\n private scanSubscription?: Subscription;\n\n /**\n * Lazy reference to iotizeBLE.\n * We don't want to reference iotizeBLE in constructor as it may be referenced\n * before cordova plugin is loaded\n */\n private get cordovaInterface(): IoTizeBleCordovaPlugin {\n return this.cordovaInterfaceOverwrite || getIoTizeBleCordovaPlugin();\n }\n\n /**\n *\n * @param cordovaInterfaceOverwrite overwrite cordova interface. Used for testing\n */\n constructor(\n private cordovaInterfaceOverwrite?: IoTizeBleCordovaPlugin,\n /**\n * Request device options used to filter scan results\n */\n readonly requestDeviceOptions?: RequestDeviceOptions\n ) {}\n\n get scanning(): Observable<boolean> {\n return this._scanning$.asObservable();\n }\n\n get isScanning(): boolean {\n return this._scanning$.value;\n }\n\n /**\n * Gets the observable on the devices$ Subject\n * @return\n */\n get results(): Observable<CordovaBLEScanResult[]> {\n return this._results.asObservable();\n }\n\n /**\n * Launches the scan for BLE devices\n * Throws if BLE is not available\n */\n async start(options?: DeviceScannerOptions): Promise<void> {\n this.scanSubscription?.unsubscribe();\n this.scanSubscription = undefined;\n this.clearResults();\n const isAvailable = await this.checkAvailable();\n if (!isAvailable) {\n throw BleComError.bleNotAvailable(\n `BLE is not available. Make sure that BLE is enabled on your device`\n );\n }\n debug(\"Start Scanning ...\");\n this._scanning$.next(true);\n return new Promise<void>((resolve, reject) => {\n this.scanSubscription = this.cordovaInterface\n .startScan(this.requestDeviceOptions)\n .subscribe(\n (result) => {\n if (result == \"Ok\") {\n resolve();\n return;\n }\n this.addOrRefreshDevice(result);\n },\n (error) => {\n debug(\"Start scan failed with error: \", error);\n this.cordovaInterface\n .getLastError()\n .then((lasterror) => {\n debug(\"Last BLE error \" + lasterror);\n })\n .catch((err) => {\n debug(\"Cannot get last BLE error: \", err);\n });\n reject(error);\n this._scanning$.next(false);\n }\n );\n });\n }\n\n /**\n *\n */\n async stop(): Promise<void> {\n debug(\"Stop Scanning ...\");\n try {\n this.scanSubscription?.unsubscribe();\n this.scanSubscription = undefined;\n await this.cordovaInterface.stopScan();\n this._scanning$.next(false);\n return;\n } catch (err) {\n this._scanning$.next(false);\n throw err;\n }\n }\n\n /**\n * Returns true if this scanner is available\n */\n checkAvailable(): Promise<boolean> {\n return this.cordovaInterface.checkAvailable();\n }\n\n private get devices() {\n return this._results.value;\n }\n\n private clearResults() {\n this._results.next([]);\n }\n\n private addOrRefreshDevice(newDevice: CordovaBLEScanResult) {\n let storedDeviceIndex = this.devices.findIndex(\n (entry) => entry.address == newDevice.address\n );\n if (storedDeviceIndex >= 0) {\n let storedDevice = this.devices[storedDeviceIndex];\n if (\n storedDevice.name != newDevice.name ||\n storedDevice.rssi != newDevice.rssi\n ) {\n debug(\n `Updating device at index ${storedDeviceIndex}, name=${storedDevice.name} with rssi=${storedDevice.rssi}`\n );\n this.devices[storedDeviceIndex] = newDevice;\n // this.devices = [...this.devices];\n this._results.next(this.devices);\n }\n } else {\n debug(\n `Adding new device name=${newDevice.name} with rssi=${newDevice.rssi}`\n );\n this.devices.push(newDevice);\n this._results.next(this.devices);\n }\n }\n}\n","import {\n bufferToHexString,\n hexStringToBuffer as hexStringToBufferCore,\n} from \"@iotize/common/byte-converter\";\nimport { safeEnumValue } from \"@iotize/common/utility\";\nimport { ConnectionState } from \"@iotize/tap/protocol/api\";\nimport { Observable, Subject, defer } from \"rxjs\";\nimport { switchMap } from \"rxjs/operators\";\nimport { map } from \"rxjs/operators\";\nimport { CordovaInterface } from \"./cordova-interface\";\nimport {\n CordovaBLEScanResult,\n RequestDeviceOptions,\n ServiceList,\n} from \"./definitions\";\nimport { CordovaBLEError } from \"./cordova-ble-error\";\n\nfunction hexStringToBuffer(str: string): Uint8Array {\n try {\n return hexStringToBufferCore(str);\n } catch (err) {\n throw CordovaBLEError.invalidNativeCallResult(str, err as Error);\n }\n}\n\ndeclare var cordova: CordovaInterface;\n\nexport class IoTizeBleCordovaPlugin {\n checkAvailable(): Promise<boolean> {\n return this.execSingleResult<boolean>(\"checkAvailable\", []);\n }\n\n requestEnableBle(): Promise<\"OK\"> {\n return this.execSingleResult<\"OK\">(\"enable\", []);\n }\n\n startScan(\n requestDeviceOptions: RequestDeviceOptions | undefined\n ): Observable<CordovaBLEScanResult | \"Ok\"> {\n return this.execMultipleResult<CordovaBLEScanResult | \"Ok\">(\"startScan\", [\n JSON.stringify(requestDeviceOptions),\n ]);\n }\n\n stopScan() {\n return this.execSingleResult<\"OK\">(\"stopScan\", []);\n }\n\n connect(\n deviceId: string,\n enableBleIfNot: boolean = true\n ): Observable<ConnectionState> {\n return this.askBleEnable(enableBleIfNot).pipe(\n switchMap(() => {\n return this.execMultipleResult<string>(\"connect\", [deviceId]).pipe(\n map((state) => {\n if (!(state in ConnectionState)) {\n console.warn(\n `Plugin native code returned an invalid connection state: \"${state}\".`\n );\n }\n return safeEnumValue(ConnectionState, state);\n })\n );\n })\n );\n }\n\n askBleEnable(askEnable: boolean): Observable<void> {\n return defer(async () => {\n if (askEnable) {\n if (!(await this.checkAvailable())) {\n await this.requestEnableBle();\n }\n }\n });\n }\n\n requestMTU(deviceId: string, mtu: number) {\n return this.execSingleResult<\"OK\">(\"requestMTU\", [deviceId, mtu]);\n }\n\n connectAndDiscoverTapServices(\n deviceId: string,\n enableBleIfNot: boolean = true\n ): Observable<ConnectionState> {\n return this.askBleEnable(enableBleIfNot).pipe(\n switchMap(() => {\n return this.execMultipleResult<string>(\n \"connectAndDiscoverTapServices\",\n [deviceId]\n ).pipe(\n map((state) => {\n if (!(state in ConnectionState)) {\n console.warn(\n `Plugin native code returned an invalid connection state: \"${state}\".`\n );\n }\n return safeEnumValue(ConnectionState, state);\n })\n );\n })\n );\n }\n\n disConnect(deviceId: string) {\n return this.execSingleResult<\"OK\">(\"disConnect\", [deviceId]);\n }\n\n close(deviceId: string) {\n return this.execSingleResult<\"OK\">(\"close\", [deviceId]);\n }\n\n isConnected(deviceId: string) {\n return this.execSingleResult<boolean>(\"isConnected\", [deviceId]);\n }\n\n async send(deviceId: string, data: Uint8Array) {\n const hexString = await this.execSingleResult<string>(\"sendRequest\", [\n deviceId,\n bufferToHexString(data),\n ]);\n return hexStringToBuffer(hexString);\n }\n\n getLastError() {\n return this.execSingleResult<string>(\"getLastError\", []);\n }\n\n characteristicStartNotification(\n deviceId: string,\n serviceId: string,\n characId: string\n ) {\n return this.execSingleResult<\"OK\">(\"characteristicStartNotification\", [\n deviceId,\n serviceId,\n characId,\n ]);\n }\n\n characteristicChanged(\n deviceId: string,\n serviceId: string,\n characId: string\n ): Observable<Uint8Array> {\n return this.execMultipleResult<string>(\"characteristicChanged\", [\n deviceId,\n serviceId,\n characId,\n ]).pipe(\n map((hexString) => {\n return hexStringToBuffer(hexString);\n })\n );\n }\n\n characteristicStopNotification(\n deviceId: string,\n serviceId: string,\n characId: string\n ) {\n return this.execSingleResult<\"OK\">(\"characteristicStopNotification\", [\n deviceId,\n serviceId,\n characId,\n ]);\n }\n\n async characteristicReadValue(\n deviceId: string,\n serviceId: string,\n characId: string\n ): Promise<Uint8Array> {\n const hexString = await this.execSingleResult<string>(\n \"characteristicRead\",\n [deviceId, serviceId, characId]\n );\n return hexStringToBuffer(hexString);\n }\n\n characteristicWrite(\n deviceId: string,\n serviceId: string,\n characId: string,\n data: Uint8Array\n ) {\n return this.execSingleResult<\"OK\">(\"characteristicWrite\", [\n deviceId,\n serviceId,\n characId,\n bufferToHexString(data),\n ]);\n }\n\n characteristicWriteWithoutResponse(\n deviceId: string,\n serviceId: string,\n characId: string,\n data: Uint8Array\n ) {\n return this.execSingleResult<\"OK\">(\"characteristicWriteWithoutResponse\", [\n deviceId,\n serviceId,\n characId,\n bufferToHexString(data),\n ]);\n }\n\n async discoverServices(deviceId: string): Promise<ServiceList> {\n const services = await this.execSingleResult<ServiceList>(\n \"discoverServices\",\n [deviceId]\n );\n return services;\n }\n\n private execSingleResult<T extends string | void | boolean | Object>(\n methodName: string,\n args: any[]\n ): Promise<T> {\n return new Promise<T>((resolve, reject) => {\n cordova.exec(\n resolve,\n (errObject: { code?: string; message?: string }) => {\n reject(objectErrorToError(errObject));\n },\n \"BLECom\",\n methodName,\n args\n );\n });\n }\n\n private execMultipleResult<T>(\n methodName: string,\n args: any[]\n ): Observable<T> {\n const subject = new Subject<T>();\n cordova.exec<T>(\n (data) => {\n subject.next(data);\n },\n (err) => {\n subject.error(objectErrorToError(err));\n },\n \"BLECom\",\n methodName,\n args\n );\n return subject.asObservable();\n }\n}\n\nfunction objectErrorToError(errObject: { code?: string; message?: string }) {\n if (typeof errObject !== \"object\" || !errObject.code || !errObject.message) {\n return CordovaBLEError.invalidErrorResult(errObject);\n }\n if (!CordovaBLEError.isValidErrorCode(errObject.code)) {\n return CordovaBLEError.invalidErrorCode(errObject);\n }\n return new CordovaBLEError(\n errObject.message,\n CordovaBLEError.Code[errObject.code]\n );\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n\nexport {CharacteristicDescription as ɵb,ServiceDescription as ɵa} from './lib/definitions';\nexport {IoTizeBleCordovaPlugin as ɵc} from './lib/iotize-ble-cordova-plugin';"],"names":["hexStringToBufferCore"],"mappings":"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"}
@@ -1 +1 @@
1
- {"__symbolic":"module","version":4,"metadata":{"BLEComProtocol":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@iotize/tap/protocol/core","name":"QueueComProtocol","line":20,"character":36},"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","module":"@iotize/tap/protocol/api","name":"ComProtocolOptions","line":32,"character":25},{"__symbolic":"reference","name":"ɵc"}]}],"_connect":[{"__symbolic":"method"}],"_disconnect":[{"__symbolic":"method"}],"write":[{"__symbolic":"method"}],"read":[{"__symbolic":"method"}],"send":[{"__symbolic":"method"}]}},"CordovaCharacteristicAdapter":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"CordovaServiceAdapter"},{"__symbolic":"reference","name":"ɵb"}]}],"read":[{"__symbolic":"method"}],"getDescriptor":[{"__symbolic":"method"}],"getDescriptors":[{"__symbolic":"method"}],"write":[{"__symbolic":"method"}],"enableNotifications":[{"__symbolic":"method"}],"setupDataStreamIfRequired":[{"__symbolic":"method"}]}},"CordovaPeripheralAdapter":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"ɵc"}]}],"discoverServices":[{"__symbolic":"method"}],"connect":[{"__symbolic":"method"}],"disconnect":[{"__symbolic":"method"}],"close":[{"__symbolic":"method"}],"getService":[{"__symbolic":"method"}]}},"CordovaServiceAdapter":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"ɵa"},{"__symbolic":"reference","name":"CordovaPeripheralAdapter"}]}],"getCharacteristic":[{"__symbolic":"method"}],"getCharacteristics":[{"__symbolic":"method"}]}},"ɵa":{"__symbolic":"interface"},"ɵb":{"__symbolic":"interface"},"CordovaBLEScanResult":{"__symbolic":"interface"},"RequestDeviceOptions":{"__symbolic":"interface"},"BLEScanner":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"ɵc"},{"__symbolic":"reference","name":"RequestDeviceOptions"}]}],"start":[{"__symbolic":"method"}],"stop":[{"__symbolic":"method"}],"checkAvailable":[{"__symbolic":"method"}],"clearResults":[{"__symbolic":"method"}],"addOrRefreshDevice":[{"__symbolic":"method"}]}},"getIoTizeBleCordovaPlugin":{"__symbolic":"function"},"ɵc":{"__symbolic":"class","members":{"checkAvailable":[{"__symbolic":"method"}],"requestEnableBle":[{"__symbolic":"method"}],"startScan":[{"__symbolic":"method"}],"stopScan":[{"__symbolic":"method"}],"connect":[{"__symbolic":"method"}],"askBleEnable":[{"__symbolic":"method"}],"requestMTU":[{"__symbolic":"method"}],"connectAndDiscoverTapServices":[{"__symbolic":"method"}],"disConnect":[{"__symbolic":"method"}],"close":[{"__symbolic":"method"}],"isConnected":[{"__symbolic":"method"}],"send":[{"__symbolic":"method"}],"getLastError":[{"__symbolic":"method"}],"characteristicStartNotification":[{"__symbolic":"method"}],"characteristicChanged":[{"__symbolic":"method"}],"characteristicStopNotification":[{"__symbolic":"method"}],"characteristicReadValue":[{"__symbolic":"method"}],"characteristicWrite":[{"__symbolic":"method"}],"characteristicWriteWithoutResponse":[{"__symbolic":"method"}],"discoverServices":[{"__symbolic":"method"}],"execSingleResult":[{"__symbolic":"method"}],"execMultipleResult":[{"__symbolic":"method"}]}}},"origins":{"BLEComProtocol":"./lib/ble-com-protocol","CordovaCharacteristicAdapter":"./lib/cordova-service-adapter","CordovaPeripheralAdapter":"./lib/cordova-service-adapter","CordovaServiceAdapter":"./lib/cordova-service-adapter","ɵa":"./lib/definitions","ɵb":"./lib/definitions","CordovaBLEScanResult":"./lib/definitions","RequestDeviceOptions":"./lib/definitions","BLEScanner":"./lib/scanner","getIoTizeBleCordovaPlugin":"./lib/utility","ɵc":"./lib/iotize-ble-cordova-plugin"},"importAs":"@iotize/device-com-ble.cordova"}
1
+ {"__symbolic":"module","version":4,"metadata":{"BLEComProtocol":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@iotize/tap/protocol/core","name":"QueueComProtocol","line":21,"character":36},"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","module":"@iotize/tap/protocol/api","name":"ComProtocolOptions","line":33,"character":25},{"__symbolic":"reference","name":"ɵc"}]}],"_connect":[{"__symbolic":"method"}],"_disconnect":[{"__symbolic":"method"}],"write":[{"__symbolic":"method"}],"read":[{"__symbolic":"method"}],"send":[{"__symbolic":"method"}]}},"CordovaCharacteristicAdapter":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"CordovaServiceAdapter"},{"__symbolic":"reference","name":"ɵb"}]}],"read":[{"__symbolic":"method"}],"getDescriptor":[{"__symbolic":"method"}],"getDescriptors":[{"__symbolic":"method"}],"write":[{"__symbolic":"method"}],"enableNotifications":[{"__symbolic":"method"}],"setupDataStreamIfRequired":[{"__symbolic":"method"}]}},"CordovaPeripheralAdapter":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"ɵc"}]}],"discoverServices":[{"__symbolic":"method"}],"connect":[{"__symbolic":"method"}],"disconnect":[{"__symbolic":"method"}],"close":[{"__symbolic":"method"}],"getService":[{"__symbolic":"method"}]}},"CordovaServiceAdapter":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"ɵa"},{"__symbolic":"reference","name":"CordovaPeripheralAdapter"}]}],"getCharacteristic":[{"__symbolic":"method"}],"getCharacteristics":[{"__symbolic":"method"}]}},"ɵa":{"__symbolic":"interface"},"ɵb":{"__symbolic":"interface"},"CordovaBLEScanResult":{"__symbolic":"interface"},"RequestDeviceOptions":{"__symbolic":"interface"},"BLEScanner":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"ɵc"},{"__symbolic":"reference","name":"RequestDeviceOptions"}]}],"start":[{"__symbolic":"method"}],"stop":[{"__symbolic":"method"}],"checkAvailable":[{"__symbolic":"method"}],"clearResults":[{"__symbolic":"method"}],"addOrRefreshDevice":[{"__symbolic":"method"}]}},"getIoTizeBleCordovaPlugin":{"__symbolic":"function"},"ɵc":{"__symbolic":"class","members":{"checkAvailable":[{"__symbolic":"method"}],"requestEnableBle":[{"__symbolic":"method"}],"startScan":[{"__symbolic":"method"}],"stopScan":[{"__symbolic":"method"}],"connect":[{"__symbolic":"method"}],"askBleEnable":[{"__symbolic":"method"}],"requestMTU":[{"__symbolic":"method"}],"connectAndDiscoverTapServices":[{"__symbolic":"method"}],"disConnect":[{"__symbolic":"method"}],"close":[{"__symbolic":"method"}],"isConnected":[{"__symbolic":"method"}],"send":[{"__symbolic":"method"}],"getLastError":[{"__symbolic":"method"}],"characteristicStartNotification":[{"__symbolic":"method"}],"characteristicChanged":[{"__symbolic":"method"}],"characteristicStopNotification":[{"__symbolic":"method"}],"characteristicReadValue":[{"__symbolic":"method"}],"characteristicWrite":[{"__symbolic":"method"}],"characteristicWriteWithoutResponse":[{"__symbolic":"method"}],"discoverServices":[{"__symbolic":"method"}],"execSingleResult":[{"__symbolic":"method"}],"execMultipleResult":[{"__symbolic":"method"}]}}},"origins":{"BLEComProtocol":"./lib/ble-com-protocol","CordovaCharacteristicAdapter":"./lib/cordova-service-adapter","CordovaPeripheralAdapter":"./lib/cordova-service-adapter","CordovaServiceAdapter":"./lib/cordova-service-adapter","ɵa":"./lib/definitions","ɵb":"./lib/definitions","CordovaBLEScanResult":"./lib/definitions","RequestDeviceOptions":"./lib/definitions","BLEScanner":"./lib/scanner","getIoTizeBleCordovaPlugin":"./lib/utility","ɵc":"./lib/iotize-ble-cordova-plugin"},"importAs":"@iotize/device-com-ble.cordova"}
@@ -1,7 +1,7 @@
1
- import { ComProtocolConnectOptions, ComProtocolDisconnectOptions, ComProtocolOptions, ComProtocolSendOptions } from "@iotize/tap/protocol/api";
2
- import { QueueComProtocol } from "@iotize/tap/protocol/core";
3
- import { Observable } from "rxjs";
4
- import { IoTizeBleCordovaPlugin } from "./iotize-ble-cordova-plugin";
1
+ import { ComProtocolConnectOptions, ComProtocolDisconnectOptions, ComProtocolOptions, ComProtocolSendOptions } from '@iotize/tap/protocol/api';
2
+ import { QueueComProtocol } from '@iotize/tap/protocol/core';
3
+ import { Observable } from 'rxjs';
4
+ import { IoTizeBleCordovaPlugin } from './iotize-ble-cordova-plugin';
5
5
  export declare class BLEComProtocol extends QueueComProtocol {
6
6
  private deviceId;
7
7
  readonly cordovaInterfaceOverwrite?: IoTizeBleCordovaPlugin | undefined;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "author": "IoTize <contact@iotize.com>",
3
3
  "license": "MIT",
4
4
  "name": "@iotize/device-com-ble.cordova",
5
- "version": "3.3.2",
5
+ "version": "3.4.1",
6
6
  "cordova": {
7
7
  "id": "@iotize/device-com-ble.cordova",
8
8
  "platforms": [
package/plugin.xml CHANGED
@@ -20,10 +20,12 @@
20
20
  <framework src="src/android/build.gradle" custom="true" type="gradleReference" />
21
21
  <source-file src="src/android/src/ble" target-dir="java/com/iotize/plugin/cordova"/>
22
22
  <config-file target="AndroidManifest.xml" parent="/manifest">
23
+ <uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" />
24
+ <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:maxSdkVersion="30" />
23
25
  <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
24
- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
25
- <uses-permission android:name="android.permission.BLUETOOTH"/>
26
- <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
26
+ <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
27
+ <uses-permission android:name="android.permission.BLUETOOTH_SCAN" android:usesPermissionFlags="neverForLocation" />
28
+ <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
27
29
  </config-file>
28
30
  </platform>
29
31
 
@@ -11,7 +11,7 @@ repositories{
11
11
 
12
12
  dependencies {
13
13
  implementation "org.jetbrains.kotlin:kotlin-stdlib:1.3.61"
14
- implementation 'org.apache.commons:commons-collections4:4.1'
14
+ implementation 'org.apache.commons:commons-collections4:4.4'
15
15
  implementation 'com.iotize.android:iotize-core:1.0.0-alpha.9'
16
16
  implementation 'com.iotize.android:iotize-client:1.0.0-alpha.9'
17
17
  implementation 'com.iotize.android:iotize-device-api:1.0.0-alpha.9'
@@ -7,7 +7,10 @@
7
7
 
8
8
  package com.iotize.plugin.cordova.ble;
9
9
 
10
+ import static android.Manifest.permission.ACCESS_COARSE_LOCATION;
10
11
  import static android.Manifest.permission.ACCESS_FINE_LOCATION;
12
+ import static android.Manifest.permission.BLUETOOTH_CONNECT;
13
+ import static android.Manifest.permission.BLUETOOTH_SCAN;
11
14
 
12
15
  import android.annotation.SuppressLint;
13
16
  import android.app.Activity;
@@ -20,8 +23,11 @@ import android.bluetooth.BluetoothManager;
20
23
  import android.content.Context;
21
24
  import android.content.Intent;
22
25
  import android.content.pm.PackageManager;
26
+ import android.os.Build;
23
27
  import android.util.Log;
24
28
 
29
+ import com.iotize.android.communication.client.impl.protocol.ConnectionState;
30
+ import com.iotize.android.communication.client.impl.protocol.exception.ProtocolNotConnectedException;
25
31
  import com.iotize.android.communication.protocol.ble.BLEProtocol;
26
32
  import com.iotize.android.communication.protocol.ble.DeviceManager;
27
33
  import com.iotize.android.communication.protocol.ble.characteristics.CharacteristicAdapter;
@@ -76,14 +82,15 @@ public class BLECom extends CordovaPlugin {
76
82
 
77
83
 
78
84
  private static final int REQUEST_ENABLE_BLUETOOTH = 1;
79
- private static final int REQUEST_SCAN_PERMISSIONS = 2;
85
+ private static final int REQUEST_BLE_PERMISSIONS = 2;
80
86
 
81
87
  private static final String TAG = "BLECom";
82
88
  private DeviceManager<BLEProtocol> peripherals;
83
89
  private BluetoothAdapter bluetoothAdapter;
84
90
  private PluginResponse enableBluetoothCallback;
85
91
  private PluginResponse pluginResponseDiscoverDevice;
86
- private PluginResponse permissionCallback;
92
+ @Nullable
93
+ private ConnectAndDiscoverTapServicesRequest pluginResponseConnectAndDiscoverTapServices;
87
94
  private BLEScanner scanner;
88
95
  private IOnDeviceDiscovered<BLEScanner.BLEScanData> onDeviceDiscoveredCallback;
89
96
  @Nullable
@@ -108,7 +115,6 @@ public class BLECom extends CordovaPlugin {
108
115
 
109
116
  @SuppressLint("MissingPermission")
110
117
  public boolean execute(String action, JSONArray args, final CallbackContext callbackContext) {
111
-
112
118
  PluginResponse pluginResponse = new PluginResponse(
113
119
  action,
114
120
  args,
@@ -139,7 +145,7 @@ public class BLECom extends CordovaPlugin {
139
145
  } else if (action.equals(CONNECT_AND_DISCOVER_TAP_SERVICES)) {
140
146
  Log.d(TAG, CONNECT_AND_DISCOVER_TAP_SERVICES);
141
147
  String macAddress = argsHelper.getString(0);
142
- this.connectAndDiscoverTapServices(pluginResponse, macAddress);
148
+ this.connectAndDiscoverTapServices(new ConnectAndDiscoverTapServicesRequest(pluginResponse, macAddress));
143
149
  } else if (action.equals(DISCONNECT)) {
144
150
  Log.d(TAG, DISCONNECT);
145
151
  String macAddress = argsHelper.getString(0);
@@ -162,12 +168,7 @@ public class BLECom extends CordovaPlugin {
162
168
  boolean isConnected = peripherals.get(macAddress).isConnected();
163
169
  pluginResponse.success(isConnected);
164
170
  } else if (action.equals(ENABLE)) {
165
- if (enableBluetoothCallback != null) {
166
- Log.w(TAG, "There is already an enable request pending...");
167
- }
168
- enableBluetoothCallback = pluginResponse;
169
- Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
170
- cordova.startActivityForResult(this, intent, REQUEST_ENABLE_BLUETOOTH);
171
+ this.enableBLE(pluginResponse);
171
172
  } else if (action.equals(CHARACTERISTIC_READ)) {
172
173
  String macAddress = argsHelper.getString(0);
173
174
  UUID serviceUUID = argsHelper.getUUID(1);
@@ -217,8 +218,40 @@ public class BLECom extends CordovaPlugin {
217
218
 
218
219
  }
219
220
 
221
+ private void enableBLE(PluginResponse pluginResponse) {
222
+ if (enableBluetoothCallback != null) {
223
+ Log.w(TAG, "There is already an enable request pending...");
224
+ }
225
+ enableBluetoothCallback = pluginResponse;
226
+ if (!this._checkPermissions()) {
227
+ return;
228
+ }
229
+ Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
230
+ cordova.startActivityForResult(this, intent, REQUEST_ENABLE_BLUETOOTH);
231
+ }
232
+
233
+ private boolean _checkPermissions() {
234
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
235
+ if (!PermissionHelper.hasPermission(this, BLUETOOTH_SCAN) || !PermissionHelper.hasPermission(this, BLUETOOTH_CONNECT)) {
236
+ PermissionHelper.requestPermissions(this, REQUEST_BLE_PERMISSIONS, new String[]{
237
+ BLUETOOTH_SCAN,
238
+ BLUETOOTH_CONNECT
239
+ });
240
+ return false;
241
+ }
242
+ } else {
243
+ if (!PermissionHelper.hasPermission(this, ACCESS_FINE_LOCATION)) {
244
+ PermissionHelper.requestPermissions(this, REQUEST_BLE_PERMISSIONS, new String[]{
245
+ ACCESS_COARSE_LOCATION,
246
+ ACCESS_FINE_LOCATION
247
+ });
248
+ return false;
249
+ }
250
+ }
251
+ return true;
252
+ }
253
+
220
254
  private void discoverServices(PluginResponse pluginResponse, String macAddress) throws Exception {
221
- // TODO async ?
222
255
  BLEProtocol peripheral = peripherals.get(macAddress);
223
256
  peripheral.discoverServices();
224
257
  List<BluetoothGattService> services = peripheral.getGatt().getServices();
@@ -265,9 +298,7 @@ public class BLECom extends CordovaPlugin {
265
298
  private void startBLEScanner(@Nullable RequestDeviceOptions options, @NonNull PluginResponse pluginResponse) {
266
299
  pluginResponseDiscoverDevice = pluginResponse;
267
300
 
268
- if (!PermissionHelper.hasPermission(this, ACCESS_FINE_LOCATION)) {
269
- permissionCallback = pluginResponse;
270
- PermissionHelper.requestPermission(this, REQUEST_SCAN_PERMISSIONS, ACCESS_FINE_LOCATION);
301
+ if (!this._checkPermissions()) {
271
302
  return;
272
303
  }
273
304
 
@@ -350,14 +381,11 @@ public class BLECom extends CordovaPlugin {
350
381
  });
351
382
  }
352
383
 
384
+ @SuppressLint("MissingPermission")
353
385
  private void close(final PluginResponse pluginResponse, String macAddress) {
354
386
  executeAsync(() -> {
355
387
  try {
356
- BLEProtocol peripheral = peripherals.getIfExists(macAddress);
357
- if (peripheral != null) {
358
- peripheral.getGatt().close();
359
- peripherals.remove(macAddress);
360
- }
388
+ this._removePeripheral(macAddress);
361
389
  pluginResponse.success();
362
390
  } catch (Exception e) {
363
391
  pluginResponse.error(new BLEComError(BLEComError.Code.DISCONNECTION_ERROR, e));
@@ -365,6 +393,17 @@ public class BLECom extends CordovaPlugin {
365
393
  });
366
394
  }
367
395
 
396
+ @SuppressLint("MissingPermission")
397
+ private void _removePeripheral(@NonNull String macAddress) {
398
+ BLEProtocol peripheral = peripherals.getIfExists(macAddress);
399
+ if (peripheral != null) {
400
+ if (PermissionHelper.hasPermission(this, BLUETOOTH_CONNECT)) {
401
+ peripheral.getGatt().close();
402
+ }
403
+ peripherals.remove(macAddress);
404
+ }
405
+ }
406
+
368
407
  private void requestMtu(final PluginResponse pluginResponse, String macAddress, int mtu) {
369
408
  BLEProtocol peripheral = peripherals.get(macAddress);
370
409
  BluetoothGatt gatt = peripheral.getGatt();
@@ -396,7 +435,17 @@ public class BLECom extends CordovaPlugin {
396
435
  try {
397
436
  byte[] response = peripheral.send(data);
398
437
  pluginResponse.success(response);
399
- } catch (Exception e) {
438
+ }
439
+ catch (ProtocolNotConnectedException e) {
440
+ try {
441
+ this._removePeripheral(deviceId);
442
+ } catch (Throwable ignoredError){
443
+ Log.d(TAG, "Ignored remove peripheral error", ignoredError);
444
+ }
445
+ peripheral.setConnectionStatus(ConnectionState.DISCONNECTED);
446
+ pluginResponse.error(BLEComError.notConnectedError(deviceId));
447
+ }
448
+ catch (Exception e) {
400
449
  pluginResponse.error(BLEComError.lwM2MTapRequestError(e, deviceId, data));
401
450
  }
402
451
  });
@@ -469,19 +518,24 @@ public class BLECom extends CordovaPlugin {
469
518
  });
470
519
  }
471
520
 
472
- private void connectAndDiscoverTapServices(PluginResponse pluginResponse, String macAddress) throws BLEComError {
473
- BLEProtocol finalPeripheral = this.getOrCreatePeripheral(macAddress, null);
474
- setConnectionStateCallback(pluginResponse, macAddress);
521
+ private void connectAndDiscoverTapServices(@NonNull ConnectAndDiscoverTapServicesRequest info) throws BLEComError {
522
+ pluginResponseConnectAndDiscoverTapServices = info;
523
+ // If app targets Android 12 and higher: connect need android.permission.BLUETOOTH_CONNECT permission
524
+ if (!this._checkPermissions()) {
525
+ return;
526
+ }
527
+ BLEProtocol finalPeripheral = this.getOrCreatePeripheral(info.macAddress, null);
528
+ setConnectionStateCallback(info.pluginResponse, info.macAddress);
475
529
  if (finalPeripheral.isConnected()) {
476
- pluginResponse.newResult("CONNECTED");
530
+ info.pluginResponse.newResult("CONNECTED");
477
531
  return;
478
532
  }
479
533
  executeAsync(() -> {
480
534
  try {
481
535
  finalPeripheral.connect();
482
- pluginResponse.newResult("CONNECTED");
536
+ info.pluginResponse.newResult("CONNECTED");
483
537
  } catch (Exception e) {
484
- pluginResponse.error(BLEComError.connectionError(e));
538
+ info.pluginResponse.error(BLEComError.connectionError(e));
485
539
  }
486
540
  });
487
541
  }
@@ -507,19 +561,40 @@ public class BLECom extends CordovaPlugin {
507
561
  public void onRequestPermissionResult(int requestCode, String[] permissions, int[] grantResults) {
508
562
  for (int result : grantResults) {
509
563
  if (result == PackageManager.PERMISSION_DENIED) {
510
- LOG.d(TAG, "User *rejected* Coarse Location Access");
511
- if (permissionCallback != null) {
512
- this.permissionCallback.error("Location permission not granted.");
564
+ LOG.d(TAG, "User *rejected* permission ");
565
+ if (pluginResponseDiscoverDevice != null) {
566
+ pluginResponseDiscoverDevice.error(BLEComError.missingPermissionError());
567
+ pluginResponseDiscoverDevice = null;
568
+ }
569
+ if (enableBluetoothCallback != null) {
570
+ enableBluetoothCallback.error(BLEComError.missingPermissionError());
571
+ enableBluetoothCallback = null;
572
+ }
573
+ if (pluginResponseConnectAndDiscoverTapServices != null) {
574
+ pluginResponseConnectAndDiscoverTapServices.pluginResponse.error(BLEComError.missingPermissionError());
575
+ pluginResponseConnectAndDiscoverTapServices = null;
513
576
  }
514
577
  return;
515
578
  }
516
579
  }
517
580
 
518
581
  switch (requestCode) {
519
- case REQUEST_SCAN_PERMISSIONS:
582
+ case REQUEST_BLE_PERMISSIONS:
520
583
  LOG.d(TAG, "User granted scan permissions");
521
- this.startScan(this.requestDeviceOptions, pluginResponseDiscoverDevice);
522
- this.permissionCallback = null;
584
+ if (pluginResponseDiscoverDevice != null) {
585
+ this.startScan(this.requestDeviceOptions, pluginResponseDiscoverDevice);
586
+ }
587
+ if (enableBluetoothCallback != null) {
588
+ this.enableBLE(enableBluetoothCallback);
589
+ }
590
+ if (pluginResponseConnectAndDiscoverTapServices != null) {
591
+ try {
592
+ this.connectAndDiscoverTapServices(pluginResponseConnectAndDiscoverTapServices);
593
+ } catch (com.iotize.plugin.cordova.ble.BLEComError e) {
594
+ pluginResponseConnectAndDiscoverTapServices.pluginResponse.error(e);
595
+ }
596
+ pluginResponseConnectAndDiscoverTapServices = null;
597
+ }
523
598
  break;
524
599
  }
525
600
  }
@@ -537,7 +612,7 @@ public class BLECom extends CordovaPlugin {
537
612
  } else {
538
613
  LOG.d(TAG, "User did *NOT* enable Bluetooth");
539
614
  if (enableBluetoothCallback != null) {
540
- enableBluetoothCallback.error("User did not enable Bluetooth");
615
+ enableBluetoothCallback.error(BLEComError.bleNotEnabled());
541
616
  }
542
617
  }
543
618
 
@@ -557,4 +632,16 @@ public class BLECom extends CordovaPlugin {
557
632
  pluginResponse.newResult(newConnectionState.toString());
558
633
  });
559
634
  }
635
+
636
+ private class ConnectAndDiscoverTapServicesRequest {
637
+ @NonNull
638
+ final PluginResponse pluginResponse;
639
+ @NonNull
640
+ final String macAddress;
641
+
642
+ public ConnectAndDiscoverTapServicesRequest(@NonNull PluginResponse pluginResponse, @NonNull String macAddress) {
643
+ this.pluginResponse = pluginResponse;
644
+ this.macAddress = macAddress;
645
+ }
646
+ }
560
647
  }
@@ -16,12 +16,12 @@ public class BLEComError extends Exception {
16
16
  }
17
17
 
18
18
  public BLEComError(String code, Throwable cause) {
19
- super(cause.getMessage() + " (code " + code + ")");
19
+ super(cause.getMessage());
20
20
  this.code = code;
21
21
  }
22
22
 
23
23
  public BLEComError(String code, String message) {
24
- super(message + " (code " + code + ")");
24
+ super(message);
25
25
  this.code = code;
26
26
  }
27
27
 
@@ -74,6 +74,20 @@ public class BLEComError extends Exception {
74
74
  );
75
75
  }
76
76
 
77
+ public static BLEComError bleNotEnabled() {
78
+ return new BLEComError(
79
+ Code.BLE_ADPATER_NOT_AVAILABLE,
80
+ "User did not enable BLE"
81
+ );
82
+ }
83
+
84
+ public static BLEComError missingPermissionError() {
85
+ return new BLEComError(
86
+ Code.BLE_ADPATER_NOT_AVAILABLE,
87
+ "User has rejected BLE related permissions"
88
+ );
89
+ }
90
+
77
91
  public String getCode() {
78
92
  return code;
79
93
  }