289 lines
5.9 KiB
Dart
289 lines
5.9 KiB
Dart
import 'package:pigeon/pigeon.dart';
|
|
|
|
// dart run pigeon --input pigeon/universal_ble.dart
|
|
@ConfigurePigeon(
|
|
PigeonOptions(
|
|
dartPackageName: 'universal_ble',
|
|
dartOut: 'lib/src/universal_ble_pigeon/universal_ble.g.dart',
|
|
dartOptions: DartOptions(),
|
|
kotlinOut:
|
|
'android/src/main/kotlin/com/navideck/universal_ble/UniversalBle.g.kt',
|
|
swiftOut: 'darwin/Classes/UniversalBle.g.swift',
|
|
kotlinOptions: KotlinOptions(package: 'com.navideck.universal_ble'),
|
|
swiftOptions: SwiftOptions(),
|
|
cppOptions: CppOptions(namespace: 'universal_ble'),
|
|
cppHeaderOut: 'windows/src/generated/universal_ble.g.h',
|
|
cppSourceOut: 'windows/src/generated/universal_ble.g.cpp',
|
|
debugGenerators: true,
|
|
),
|
|
)
|
|
|
|
/// Flutter -> Native
|
|
@HostApi()
|
|
abstract class UniversalBlePlatformChannel {
|
|
@async
|
|
int getBluetoothAvailabilityState();
|
|
|
|
bool hasPermissions(bool withAndroidFineLocation);
|
|
|
|
@async
|
|
void requestPermissions(bool withAndroidFineLocation);
|
|
|
|
@async
|
|
bool enableBluetooth();
|
|
|
|
@async
|
|
bool disableBluetooth();
|
|
|
|
void startScan(UniversalScanFilter? filter);
|
|
|
|
void stopScan();
|
|
|
|
bool isScanning();
|
|
|
|
void connect(String deviceId);
|
|
|
|
void disconnect(String deviceId);
|
|
|
|
@async
|
|
void setNotifiable(
|
|
String deviceId,
|
|
String service,
|
|
String characteristic,
|
|
int bleInputProperty,
|
|
);
|
|
|
|
@async
|
|
List<UniversalBleService> discoverServices(
|
|
String deviceId,
|
|
bool withDescriptors,
|
|
);
|
|
|
|
@async
|
|
Uint8List readValue(
|
|
String deviceId,
|
|
String service,
|
|
String characteristic,
|
|
);
|
|
|
|
@async
|
|
int requestMtu(String deviceId, int expectedMtu);
|
|
|
|
@async
|
|
void writeValue(
|
|
String deviceId,
|
|
String service,
|
|
String characteristic,
|
|
Uint8List value,
|
|
int bleOutputProperty,
|
|
);
|
|
|
|
@async
|
|
bool isPaired(String deviceId);
|
|
|
|
@async
|
|
bool pair(String deviceId);
|
|
|
|
void unPair(String deviceId);
|
|
|
|
@async
|
|
List<UniversalBleScanResult> getSystemDevices(
|
|
List<String> withServices,
|
|
);
|
|
|
|
int getConnectionState(String deviceId);
|
|
|
|
@async
|
|
int readRssi(String deviceId);
|
|
|
|
void setLogLevel(UniversalBleLogLevel logLevel);
|
|
}
|
|
|
|
/// Native -> Flutter
|
|
@FlutterApi()
|
|
abstract class UniversalBleCallbackChannel {
|
|
void onAvailabilityChanged(int state);
|
|
|
|
void onPairStateChange(String deviceId, bool isPaired, String? error);
|
|
|
|
void onScanResult(UniversalBleScanResult result);
|
|
|
|
void onValueChanged(
|
|
String deviceId,
|
|
String characteristicId,
|
|
Uint8List value,
|
|
int? timestamp,
|
|
);
|
|
|
|
void onConnectionChanged(
|
|
String deviceId,
|
|
bool connected,
|
|
String? error,
|
|
);
|
|
}
|
|
|
|
class UniversalBleScanResult {
|
|
final String deviceId;
|
|
final String? name;
|
|
final bool? isPaired;
|
|
final int? rssi;
|
|
final List<UniversalManufacturerData>? manufacturerDataList;
|
|
final List<String>? services;
|
|
final int? timestamp;
|
|
|
|
UniversalBleScanResult({
|
|
required this.name,
|
|
required this.deviceId,
|
|
required this.isPaired,
|
|
required this.rssi,
|
|
required this.manufacturerDataList,
|
|
required this.services,
|
|
required this.timestamp,
|
|
});
|
|
}
|
|
|
|
enum UniversalBleLogLevel {
|
|
none,
|
|
error,
|
|
warning,
|
|
info,
|
|
debug,
|
|
verbose,
|
|
}
|
|
|
|
class UniversalBleService {
|
|
String uuid;
|
|
List<UniversalBleCharacteristic>? characteristics;
|
|
UniversalBleService(this.uuid, this.characteristics);
|
|
}
|
|
|
|
class UniversalBleCharacteristic {
|
|
String uuid;
|
|
List<int> properties;
|
|
List<UniversalBleDescriptor> descriptors;
|
|
UniversalBleCharacteristic(this.uuid, this.properties, this.descriptors);
|
|
}
|
|
|
|
class UniversalBleDescriptor {
|
|
String uuid;
|
|
UniversalBleDescriptor(this.uuid);
|
|
}
|
|
|
|
/// Scan Filters
|
|
class UniversalScanFilter {
|
|
final List<String> withServices;
|
|
final List<String> withNamePrefix;
|
|
final List<UniversalManufacturerDataFilter> withManufacturerData;
|
|
|
|
UniversalScanFilter(
|
|
this.withServices,
|
|
this.withNamePrefix,
|
|
this.withManufacturerData,
|
|
);
|
|
}
|
|
|
|
class UniversalManufacturerDataFilter {
|
|
int companyIdentifier;
|
|
Uint8List? data;
|
|
Uint8List? mask;
|
|
UniversalManufacturerDataFilter({
|
|
required this.companyIdentifier,
|
|
this.data,
|
|
this.mask,
|
|
});
|
|
}
|
|
|
|
class UniversalManufacturerData {
|
|
final int companyIdentifier;
|
|
final Uint8List data;
|
|
|
|
UniversalManufacturerData({
|
|
required this.companyIdentifier,
|
|
required this.data,
|
|
});
|
|
}
|
|
|
|
/// Unified error codes for all platforms
|
|
enum UniversalBleErrorCode {
|
|
// General errors
|
|
unknownError,
|
|
failed,
|
|
notSupported,
|
|
notImplemented,
|
|
channelError,
|
|
|
|
// Bluetooth availability errors
|
|
bluetoothNotAvailable,
|
|
bluetoothNotEnabled,
|
|
bluetoothNotAllowed,
|
|
bluetoothUnauthorized,
|
|
|
|
// Connection errors
|
|
deviceDisconnected,
|
|
connectionTimeout,
|
|
connectionFailed,
|
|
connectionRejected,
|
|
connectionLimitExceeded,
|
|
connectionAlreadyExists,
|
|
connectionTerminated,
|
|
connectionInProgress,
|
|
|
|
// Device/Service/Characteristic errors
|
|
illegalArgument,
|
|
deviceNotFound,
|
|
serviceNotFound,
|
|
characteristicNotFound,
|
|
invalidServiceUuid,
|
|
invalidCharacteristicUuid,
|
|
invalidOffset,
|
|
invalidAttributeLength,
|
|
invalidPdu,
|
|
invalidHandle,
|
|
|
|
// Operation errors
|
|
readFailed,
|
|
readNotPermitted,
|
|
writeFailed,
|
|
writeNotPermitted,
|
|
writeRequestBusy,
|
|
invalidAction,
|
|
operationNotSupported,
|
|
operationTimeout,
|
|
operationCancelled,
|
|
operationInProgress,
|
|
|
|
// Characteristic property errors
|
|
characteristicDoesNotSupportRead,
|
|
characteristicDoesNotSupportWrite,
|
|
characteristicDoesNotSupportWriteWithoutResponse,
|
|
characteristicDoesNotSupportNotify,
|
|
characteristicDoesNotSupportIndicate,
|
|
|
|
// Pairing errors
|
|
notPaired,
|
|
notPairable,
|
|
alreadyPaired,
|
|
pairingFailed,
|
|
pairingCancelled,
|
|
pairingTimeout,
|
|
pairingNotAllowed,
|
|
authenticationFailure,
|
|
insufficientAuthentication,
|
|
insufficientAuthorization,
|
|
insufficientEncryption,
|
|
insufficientKeySize,
|
|
protectionLevelNotMet,
|
|
accessDenied,
|
|
|
|
// Unpairing errors
|
|
unpairingFailed,
|
|
alreadyUnpaired,
|
|
|
|
// Scan errors
|
|
scanFailed,
|
|
stoppingScanInProgress,
|
|
|
|
// Web-specific errors
|
|
webBluetoothGloballyDisabled,
|
|
}
|