-
Notifications
You must be signed in to change notification settings - Fork 45
/
RNBLE.m
650 lines (560 loc) · 26.8 KB
/
RNBLE.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
#import "RNBLE.h"
#import "RCTCONVERT+CBUUID.h"
#import <React/RCTEventDispatcher.h>
#import <React/RCTLog.h>
#import <React/RCTConvert.h>
#import <React/RCTUtils.h>
@interface RNBLE () <CBCentralManagerDelegate, CBPeripheralDelegate> {
CBCentralManager *centralManager;
dispatch_queue_t centralEventQueue;
NSMutableDictionary *peripherals;
}
@end
@implementation RNBLE
RCT_EXPORT_MODULE()
@synthesize bridge = _bridge;
+ (RNBLE *)sharedManager
{
static RNBLE *sharedManager;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sharedManager = [[self alloc] init];
});
[sharedManager dropAllConnections];
return sharedManager;
}
#pragma mark Initialization
+ (RNBLE *)new {
return [RNBLE sharedManager];
}
- (instancetype)init
{
if (self = [super init]) {
centralEventQueue = dispatch_queue_create("com.openble.mycentral", DISPATCH_QUEUE_SERIAL);
dispatch_set_target_queue(centralEventQueue, dispatch_get_main_queue());
centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:centralEventQueue options:@{ CBCentralManagerOptionRestoreIdentifierKey:@"myCentralManagerIdentifier", CBCentralManagerOptionShowPowerAlertKey: @NO }];
peripherals = [NSMutableDictionary new];
}
return self;
}
- (void) dropAllConnections {
for (CBPeripheral *peripheral in [peripherals objectEnumerator]) {
[centralManager cancelPeripheralConnection:peripheral];
}
}
RCT_EXPORT_METHOD(startScanning:(CBUUIDArray *)uuids allowDuplicates:(BOOL)allowDuplicates)
{
NSMutableDictionary *scanOptions = [NSMutableDictionary dictionaryWithObject:@NO
forKey:CBCentralManagerScanOptionAllowDuplicatesKey];
if(allowDuplicates){
[scanOptions setObject:@YES forKey:CBCentralManagerScanOptionAllowDuplicatesKey];
}
[centralManager scanForPeripheralsWithServices:uuids options:scanOptions];
}
RCT_EXPORT_METHOD(stopScanning)
{
[centralManager stopScan];
}
RCT_EXPORT_METHOD(getState)
{
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.stateChange" body:[self NSStringForCBCentralManagerState:[centralManager state]]];
}
- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral
advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI
{
[peripherals setObject:peripheral forKey:peripheral.identifier.UUIDString];
NSDictionary *advertisementDictionary = [self dictionaryForAdvertisementData:advertisementData fromPeripheral:peripheral];
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.discover" body:@{
@"peripheralUuid": [self toNobleUuid:peripheral.identifier.UUIDString],
@"advertisement": advertisementDictionary,
@"connectable": @([advertisementData[CBAdvertisementDataIsConnectable] boolValue]),
@"rssi": RSSI
}];
}
- (void) centralManager:(CBCentralManager *)central willRestoreState:(NSDictionary<NSString *,id> *)dict
{
}
RCT_EXPORT_METHOD(connect:(NSString *)peripheralUuid)
{
CBPeripheral *peripheral = peripherals[peripheralUuid];
if (peripheral) {
[centralManager connectPeripheral:peripheral options:nil];
} else {
NSLog(@"Could not find peripheral for UUID: %@", peripheralUuid);
}
}
RCT_EXPORT_METHOD(disconnect:(NSString *)peripheralUuid)
{
CBPeripheral *peripheral = peripherals[peripheralUuid];
if (peripheral) {
[centralManager cancelPeripheralConnection:peripheral];
} else {
NSLog(@"Could not find peripheral for UUID: %@", peripheralUuid);
}
}
- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral
{
peripheral.delegate = self;
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.connect" body:@{
@"peripheralUuid": [self toNobleUuid:peripheral.identifier.UUIDString]}];
}
- (void)centralManager:(CBCentralManager *)central didDisconnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error
{
NSMutableDictionary *eventData = [NSMutableDictionary new];
[eventData setObject:[self toNobleUuid:peripheral.identifier.UUIDString] forKey:@"peripheralUuid"];
if (error != nil) {
[eventData setObject:RCTJSErrorFromNSError(error) forKey:@"error"];
}
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.disconnect" body:eventData];
}
- (void)centralManager:(CBCentralManager *)central didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error
{
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.connect" body:@{
@"peripheralUuid": [self toNobleUuid:peripheral.identifier.UUIDString],
@"error": RCTJSErrorFromNSError(error)
}];
}
RCT_EXPORT_METHOD(updateRssi:(NSString *)peripheralUuid)
{
CBPeripheral *peripheral = peripherals[peripheralUuid];
if (peripheral) {
[peripheral readRSSI];
} else {
NSLog(@"Could not find peripheral for UUID: %@", peripheralUuid);
}
}
#if __IPHONE_OS_VERSION_MAX_ALLOWED < 80000
- (void)peripheralDidUpdateRSSI:(CBPeripheral *)peripheral error:(NSError *)error
{
if (error == nil) {
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.rssiUpdate" body:@{
@"peripheralUuid": [self toNobleUuid:peripheral.identifier.UUIDString],
@"rssi": peripheral.RSSI
}];
}
}
#else
- (void)peripheral:(CBPeripheral *)peripheral didReadRSSI:(NSNumber *)RSSI error:(NSError *)error
{
if (error == nil) {
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.rssiUpdate" body:@{
@"peripheralUuid": [self toNobleUuid:peripheral.identifier.UUIDString],
@"rssi": RSSI
}];
}
}
#endif
RCT_EXPORT_METHOD(discoverServices:(NSString *)peripheralUuid serviceUuids:(CBUUIDArray *)serviceUuids)
{
CBPeripheral *peripheral = peripherals[peripheralUuid];
if (peripheral) {
[peripheral discoverServices:serviceUuids];
} else {
NSLog(@"Could not find peripheral for UUID: %@", peripheralUuid);
}
}
RCT_EXPORT_METHOD(discoverIncludedServices:(NSString *)peripheralUuid serviceUuid:(NSString *)serviceUuid serviceUuids:(CBUUIDArray *)serviceUuids)
{
CBPeripheral *peripheral = peripherals[peripheralUuid];
if (peripheral) {
CBService *targetService = [self getTargetService:peripheral serviceUuid:serviceUuid];
if (targetService) {
[peripheral discoverIncludedServices:serviceUuids forService:targetService];
} else {
NSLog(@"Could not find service %@ for peripheral %@", serviceUuid, peripheralUuid);
}
} else {
NSLog(@"Could not find peripheral for UUID: %@", peripheralUuid);
}
}
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error
{
if (error == nil) {
NSMutableArray *serviceUuids = [NSMutableArray new];
for (CBService *service in peripheral.services) {
[serviceUuids addObject:[self toNobleUuid:service.UUID.UUIDString]];
}
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.servicesDiscover" body:@{
@"peripheralUuid": [self toNobleUuid:peripheral.identifier.UUIDString],
@"serviceUuids": serviceUuids
}];
}
}
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverIncludedServicesForService:(CBService *)service error:(NSError *)error
{
if (error == nil) {
NSMutableArray *includedServiceUuids = [NSMutableArray new];
for (CBService *includedService in service.includedServices) {
[includedServiceUuids addObject:[self toNobleUuid:includedService.UUID.UUIDString]];
}
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.includedServicesDiscover" body:@{
@"peripheralUuid": [self toNobleUuid:peripheral.identifier.UUIDString],
@"serviceUuid": [self toNobleUuid:service.UUID.UUIDString],
@"includedServiceUuids": includedServiceUuids
}];
}
}
RCT_EXPORT_METHOD(discoverCharacteristics:(NSString *)peripheralUuid serviceUuid:(NSString *)serviceUuid characteristicUuids:(CBUUIDArray *)characteristicUuids)
{
CBPeripheral *peripheral = peripherals[peripheralUuid];
if (peripheral) {
CBService *targetService = [self getTargetService:peripheral serviceUuid:serviceUuid];
if (targetService) {
[peripheral discoverCharacteristics:characteristicUuids forService:targetService];
} else {
NSLog(@"Could not find service %@ for peripheral %@", serviceUuid, peripheralUuid);
}
} else {
NSLog(@"Could not find peripheral for UUID: %@", peripheralUuid);
}
}
RCT_EXPORT_METHOD(discoverDescriptors:(NSString *)peripheralUuid serviceUuid:(NSString *)serviceUuid characteristicUuid:(NSString *)characteristicUuid)
{
CBPeripheral *peripheral = peripherals[peripheralUuid];
if (peripheral) {
CBCharacteristic *targetCharacteristic = [self getTargetCharacteristic:peripheral serviceUuid:serviceUuid characteristicUuid:characteristicUuid];
if (targetCharacteristic) {
[peripheral discoverDescriptorsForCharacteristic:targetCharacteristic];
} else {
NSLog(@"Could not find characteristic for UUID: %@", characteristicUuid);
}
} else {
NSLog(@"Could not find peripheral for UUID: %@", peripheralUuid);
}
}
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error
{
if (error == nil) {
NSMutableArray *characteristics = [NSMutableArray new];
for (CBCharacteristic *characteristic in service.characteristics) {
NSMutableDictionary *characteristicObject = [NSMutableDictionary new];
[characteristicObject setValue:[self toNobleUuid:characteristic.UUID.UUIDString] forKey:@"uuid"];
NSMutableArray *properties = [NSMutableArray new];
if (characteristic.properties & CBCharacteristicPropertyBroadcast) {
[properties addObject:@"broadcast"];
}
if (characteristic.properties & CBCharacteristicPropertyRead) {
[properties addObject:@"read"];
}
if (characteristic.properties & CBCharacteristicPropertyWriteWithoutResponse) {
[properties addObject:@"writeWithoutResponse"];
}
if (characteristic.properties & CBCharacteristicPropertyWrite) {
[properties addObject:@"write"];
}
if (characteristic.properties & CBCharacteristicPropertyNotify) {
[properties addObject:@"notify"];
}
if (characteristic.properties & CBCharacteristicPropertyIndicate) {
[properties addObject:@"indicate"];
}
if (characteristic.properties & CBCharacteristicPropertyAuthenticatedSignedWrites) {
[properties addObject:@"authenticatedSignedWrites"];
}
if (characteristic.properties & CBCharacteristicPropertyExtendedProperties) {
[properties addObject:@"extendedProperties"];
}
if (characteristic.properties & CBCharacteristicPropertyNotifyEncryptionRequired) {
[properties addObject:@"notifyEncryptionRequired"];
}
if (characteristic.properties & CBCharacteristicPropertyIndicateEncryptionRequired) {
[properties addObject:@"indicateEncryptionRequired"];
}
[characteristicObject setValue:properties forKey:@"properties"];
[characteristics addObject:characteristicObject];
}
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.characteristicsDiscover" body:@{
@"peripheralUuid": [self toNobleUuid:peripheral.identifier.UUIDString],
@"serviceUuid": [self toNobleUuid:service.UUID.UUIDString],
@"characteristics": characteristics
}];
}
}
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverDescriptorsForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error
{
if (error == nil) {
NSMutableArray *descriptors = [NSMutableArray new];
for (CBDescriptor *descriptor in characteristic.descriptors) {
[descriptors addObject:[self toNobleUuid:descriptor.UUID.UUIDString]];
}
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.descriptorsDiscover" body:@{
@"peripheralUuid": [self toNobleUuid:peripheral.identifier.UUIDString],
@"serviceUuid": [self toNobleUuid:characteristic.service.UUID.UUIDString],
@"characteristicUuid": [self toNobleUuid:characteristic.UUID.UUIDString],
@"descriptors": descriptors
}];
}
}
RCT_EXPORT_METHOD(read:(NSString *)peripheralUuid serviceUuid:(NSString *)serviceUuid characteristicUuid:(NSString *)characteristicUuid descriptorUuid:(NSString *)descriptorUuid)
{
CBPeripheral *peripheral = peripherals[peripheralUuid];
if (peripheral) {
CBCharacteristic *targetCharacteristic = [self getTargetCharacteristic:peripheral serviceUuid:serviceUuid characteristicUuid:characteristicUuid];
if (targetCharacteristic) {
[peripheral readValueForCharacteristic:targetCharacteristic];
} else {
NSLog(@"Could not find characteristic for UUID: %@", characteristicUuid);
}
} else {
NSLog(@"Could not find peripheral for UUID: %@", peripheralUuid);
}
}
RCT_EXPORT_METHOD(readValue:(NSString *)peripheralUuid serviceUuid:(NSString *)serviceUuid characteristicUuid:(NSString *)characteristicUuid descriptorUuid:(NSString *)descriptorUuid)
{
CBPeripheral *peripheral = peripherals[peripheralUuid];
if (peripheral) {
CBCharacteristic *targetCharacteristic = [self getTargetCharacteristic:peripheral serviceUuid:serviceUuid characteristicUuid:characteristicUuid];
if (targetCharacteristic) {
CBDescriptor *targetDescriptor = [self getTargetDescriptor:peripheral serviceUuid:serviceUuid characteristicUuid:characteristicUuid descriptorUuid:descriptorUuid];
if (targetDescriptor) {
[peripheral readValueForDescriptor:targetDescriptor];
}else {
NSLog(@"Could not find descriptor for UUID: %@", descriptorUuid);
}
} else {
NSLog(@"Could not find characteristic for UUID: %@", characteristicUuid);
}
} else {
NSLog(@"Could not find peripheral for UUID: %@", peripheralUuid);
}
}
RCT_EXPORT_METHOD(read:(NSString *)peripheralUuid serviceUuid:(NSString *)serviceUuid characteristicUuid:(NSString *)characteristicUuid)
{
CBPeripheral *peripheral = peripherals[peripheralUuid];
if (peripheral) {
CBCharacteristic *targetCharacteristic = [self getTargetCharacteristic:peripheral serviceUuid:serviceUuid characteristicUuid:characteristicUuid];
if (targetCharacteristic) {
[peripheral readValueForCharacteristic:targetCharacteristic];
} else {
NSLog(@"Could not find characteristic for UUID: %@", characteristicUuid);
}
} else {
NSLog(@"Could not find peripheral for UUID: %@", peripheralUuid);
}
}
RCT_EXPORT_METHOD(writeValue:(NSString *)peripheralUuid serviceUuid:(NSString *)serviceUuid characteristicUuid:(NSString *)characteristicUuid descriptorUuid:(NSString *)descriptorUuid data:(NSString *)data)
{
CBPeripheral *peripheral = peripherals[peripheralUuid];
if (peripheral) {
CBCharacteristic *targetCharacteristic = [self getTargetCharacteristic:peripheral serviceUuid:serviceUuid characteristicUuid:characteristicUuid];
if (targetCharacteristic) {
CBDescriptor *targetDescriptor = [self getTargetDescriptor:peripheral serviceUuid:serviceUuid characteristicUuid:characteristicUuid descriptorUuid:descriptorUuid];
if (targetDescriptor) {
[peripheral writeValue:[[NSData alloc] initWithBase64EncodedString:data options:0] forDescriptor:targetDescriptor];
}else {
NSLog(@"Could not find descriptor for UUID: %@", descriptorUuid);
}
} else {
NSLog(@"Could not find characteristic for UUID: %@", characteristicUuid);
}
} else {
NSLog(@"Could not find peripheral for UUID: %@", peripheralUuid);
}
}
RCT_EXPORT_METHOD(write:(NSString *)peripheralUuid serviceUuid:(NSString *)serviceUuid characteristicUuid:(NSString *)characteristicUuid data:(NSString *)data withoutResponse:(BOOL)withoutResponse)
{
CBPeripheral *peripheral = peripherals[peripheralUuid];
if (peripheral) {
CBCharacteristic *targetCharacteristic = [self getTargetCharacteristic:peripheral serviceUuid:serviceUuid characteristicUuid:characteristicUuid];
if (targetCharacteristic) {
[peripheral writeValue:[[NSData alloc] initWithBase64EncodedString:data options:0] forCharacteristic:targetCharacteristic type:withoutResponse ? CBCharacteristicWriteWithoutResponse : CBCharacteristicWriteWithResponse];
} else {
NSLog(@"Could not find characteristic for UUID: %@", characteristicUuid);
}
} else {
NSLog(@"Could not find peripheral for UUID: %@", peripheralUuid);
}
}
RCT_EXPORT_METHOD(notify:(NSString *)peripheralUuid serviceUuid:(NSString *)serviceUuid characteristicUuid:(NSString *)characteristicUuid notify:(BOOL)notify)
{
CBPeripheral *peripheral = peripherals[peripheralUuid];
if (peripheral) {
CBCharacteristic *targetCharacteristic = [self getTargetCharacteristic:peripheral serviceUuid:serviceUuid characteristicUuid:characteristicUuid];
if (targetCharacteristic) {
[peripheral setNotifyValue:notify forCharacteristic:targetCharacteristic];
} else {
NSLog(@"Could not find characteristic for UUID: %@", characteristicUuid);
}
} else {
NSLog(@"Could not find peripheral for UUID: %@", peripheralUuid);
}
}
- (CBDescriptor *)getTargetDescriptor:(CBPeripheral *)peripheral serviceUuid:(NSString *)serviceUuid characteristicUuid:(NSString *)characteristicUuid descriptorUuid:(NSString *)descriptorUuid
{
CBDescriptor *targetDescriptor;
CBCharacteristic *targetCharacteristic = [self getTargetCharacteristic:peripheral serviceUuid:serviceUuid characteristicUuid:characteristicUuid];
if (targetCharacteristic) {
for (CBDescriptor *descriptor in targetCharacteristic.descriptors) {
if ([descriptor.UUID.UUIDString isEqualToString:descriptorUuid]) {
targetDescriptor = descriptor;
break;
}
}
}
return targetDescriptor;
}
- (CBCharacteristic *)getTargetCharacteristic:(CBPeripheral *)peripheral serviceUuid:(NSString *)serviceUuid characteristicUuid:(NSString *)characteristicUuid
{
CBCharacteristic *targetCharacteristic;
CBService *targetService = [self getTargetService:peripheral serviceUuid:serviceUuid];
if (targetService) {
for (CBCharacteristic *characteristic in targetService.characteristics) {
if ([characteristic.UUID.UUIDString isEqualToString:characteristicUuid]) {
targetCharacteristic = characteristic;
break;
}
}
}
return targetCharacteristic;
}
- (CBService *)getTargetService:(CBPeripheral *)peripheral serviceUuid:(NSString *)serviceUuid
{
CBService *targetService;
for (CBService *service in peripheral.services) {
if ([service.UUID.UUIDString isEqualToString:serviceUuid]) {
targetService = service;
break;
}
}
return targetService;
}
- (void)peripheral:(CBPeripheral *)peripheral didUpdateNotificationStateForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error
{
if (error == nil) {
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.notify" body:@{
@"peripheralUuid": [self toNobleUuid:peripheral.identifier.UUIDString],
@"serviceUuid": [self toNobleUuid:characteristic.service.UUID.UUIDString],
@"characteristicUuid": [self toNobleUuid:characteristic.UUID.UUIDString],
@"state": @(characteristic.isNotifying)
}];
}
}
- (void)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error
{
if (error == nil) {
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.data" body:@{
@"peripheralUuid": [self toNobleUuid:peripheral.identifier.UUIDString],
@"serviceUuid": [self toNobleUuid:characteristic.service.UUID.UUIDString],
@"characteristicUuid": [self toNobleUuid:characteristic.UUID.UUIDString],
@"data": [characteristic.value base64EncodedStringWithOptions:0],
@"isNotification": @(characteristic.isNotifying)
}];
}
}
- (void)peripheral:(CBPeripheral *)peripheral didUpdateValueForDescriptor:(CBDescriptor *)descriptor error:(NSError *)error
{
if (error == nil) {
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.valueUpdate" body:@{
@"peripheralUuid": [self toNobleUuid:peripheral.identifier.UUIDString],
@"serviceUuid": [self toNobleUuid:descriptor.characteristic.service.UUID.UUIDString],
@"characteristicUuid": [self toNobleUuid:descriptor.characteristic.UUID.UUIDString],
@"descriptorUuid": [self toNobleUuid:descriptor.UUID.UUIDString],
@"data": [self valueFromDescriptor:descriptor]
}];
}
}
//conversion should handle everything except the data case.
- (id) valueFromDescriptor:(CBDescriptor *)descriptor{
if ([descriptor.UUID.UUIDString isEqualToString:CBUUIDCharacteristicFormatString]){
return [descriptor.value base64EncodedStringWithOptions:0];
}else{
return descriptor.value;
}
}
- (void)peripheral:(CBPeripheral *)peripheral didWriteValueForDescriptor:(CBDescriptor *)descriptor error:(NSError *)error
{
if (error == nil) {
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.valueWrite" body:@{
@"peripheralUuid": [self toNobleUuid:peripheral.identifier.UUIDString],
@"serviceUuid": [self toNobleUuid:descriptor.characteristic.service.UUID.UUIDString],
@"characteristicUuid": [self toNobleUuid:descriptor.characteristic.UUID.UUIDString],
@"descriptorUuid": [self toNobleUuid:descriptor.UUID.UUIDString]
}];
}
}
- (void)peripheral:(CBPeripheral *)peripheral didWriteValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error
{
if (error == nil) {
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.write" body:@{
@"peripheralUuid": [self toNobleUuid:peripheral.identifier.UUIDString],
@"serviceUuid": [self toNobleUuid:characteristic.service.UUID.UUIDString],
@"characteristicUuid": [self toNobleUuid:characteristic.UUID.UUIDString]
}];
}
}
- (NSDictionary *)dictionaryForAdvertisementData:(NSDictionary *)advertisementData fromPeripheral:(CBPeripheral *)peripheral
{
NSMutableDictionary *advertisement = [NSMutableDictionary new];
if (advertisementData[CBAdvertisementDataLocalNameKey] != nil) {
advertisement[@"localName"] = advertisementData[CBAdvertisementDataLocalNameKey];
}
if (advertisementData[CBAdvertisementDataManufacturerDataKey] != nil) {
advertisement[@"manufacturerData"] = [advertisementData[CBAdvertisementDataManufacturerDataKey] base64EncodedStringWithOptions:0];
}
if (advertisementData[CBAdvertisementDataServiceDataKey] != nil) {
advertisement[@"serviceData"] = [NSMutableArray new];
for (CBUUID *uuid in advertisementData[CBAdvertisementDataServiceDataKey]) {
[advertisement[@"serviceData"] addObject:@{
@"uuid": [self toNobleUuid:uuid.UUIDString],
@"data": [advertisementData[CBAdvertisementDataServiceDataKey][uuid] base64EncodedStringWithOptions:0]
}];
}
}
if (advertisementData[CBAdvertisementDataServiceUUIDsKey] != nil) {
advertisement[@"serviceUuids"] = [NSMutableArray new];
for (CBUUID *uuid in advertisementData[CBAdvertisementDataServiceUUIDsKey]) {
[advertisement[@"serviceUuids"] addObject:[self toNobleUuid:uuid.UUIDString]];
}
}
if (advertisementData[CBAdvertisementDataOverflowServiceUUIDsKey] != nil) {
advertisement[@"overflowServiceUuids"] = [NSMutableArray new];
for (CBUUID *uuid in advertisementData[CBAdvertisementDataOverflowServiceUUIDsKey]) {
[advertisement[@"overflowServiceUuids"] addObject:[self toNobleUuid:uuid.UUIDString]];
}
}
if (advertisementData[CBAdvertisementDataTxPowerLevelKey] != nil) {
advertisement[@"txPowerLevel"] = advertisementData[CBAdvertisementDataTxPowerLevelKey];
}
if (advertisementData[CBAdvertisementDataSolicitedServiceUUIDsKey] != nil) {
advertisement[@"solicitedServiceUuids"] = [NSMutableArray new];
for (CBUUID *uuid in advertisementData[CBAdvertisementDataSolicitedServiceUUIDsKey]) {
[advertisement[@"solicitedServiceUuids"] addObject:[self toNobleUuid:uuid.UUIDString]];
}
}
return advertisement;
}
- (void)centralManagerDidUpdateState:(CBCentralManager *)central
{
[self.bridge.eventDispatcher sendDeviceEventWithName:@"ble.stateChange" body:[self NSStringForCBCentralManagerState:[central state]]];
}
- (NSString *)toNobleUuid:(NSString *)uuidString
{
NSString *noDashes = [uuidString stringByReplacingOccurrencesOfString:@"-" withString:@""];
return [noDashes lowercaseString];
}
- (NSString *)NSStringForCBCentralManagerState:(CBCentralManagerState)state
{
NSString *stateString = [NSString new];
switch (state) {
case CBCentralManagerStateResetting:
stateString = @"resetting";
break;
case CBCentralManagerStateUnsupported:
stateString = @"unsupported";
break;
case CBCentralManagerStateUnauthorized:
stateString = @"unauthorized";
break;
case CBCentralManagerStatePoweredOff:
stateString = @"poweredOff";
break;
case CBCentralManagerStatePoweredOn:
stateString = @"poweredOn";
break;
case CBCentralManagerStateUnknown:
default:
stateString = @"unknown";
}
return stateString;
}
@end