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
|
//
// BP7Module.m
// ReactNativeIOSLibrary
//
// Created by daiqingquan on 2016/11/23.
// Copyright © 2016年 daiqingquan. All rights reserved.
//
#import "BP7Module.h"
#import "BPProfileModule.h"
#import "BPMacroFile.h"
#import "BP7Controller.h"
#import "BP7.h"
#import "iHealthDeviceManagerModule.h"
@interface BP7Module()
@property (nonatomic, strong) NSNumber* previousPressure;
@property (nonatomic, assign) BOOL startSendWavelet;
@property (nonatomic, assign) BOOL isMeasuring;
@end
@implementation BP7Module
#define EVENT_NOTIFY @"BP7.MODULE.NOTIFY"
RCT_EXPORT_MODULE()
- (NSArray<NSString *> *)supportedEvents {
return @[@"event_notify", @"event_scan_device", @"event_scan_finish",
@"event_device_connected", @"event_device_connect_failed",
@"event_device_disconnect", @"event_authenticate_result",
@"event_notify_ts28b", @"event_notify_bg1",
@"action_connect_result_for_bg1"];
}
- (NSDictionary *)constantsToExport
{
return @{
@"Event_Notify":EVENT_NOTIFY,
};
}
+ (BOOL)requiresMainQueueSetup
{
return YES;
}
#pragma mark
#pragma mark - Init
-(BP7*)getBP7WithMac:(NSString*)mac{
BP7Controller *controller = [BP7Controller shareBP7Controller];
NSArray *bpDeviceArray = [controller getAllCurrentBP7Instace];
for(BP7 *tempDevice in bpDeviceArray){
if([mac isEqualToString:tempDevice.serialNumber]){
return tempDevice;
}
}
return nil;
}
#pragma mark
#pragma mark - Notification
#pragma mark - BP7
#pragma mark
#pragma mark - Method
#pragma mark-获取连接设备
RCT_EXPORT_METHOD(getAllConnectedDevices){
NSArray*bp7array= [[BP7Controller shareBP7Controller] getAllCurrentBP7Instace];
NSMutableArray*deviceMacArray=[NSMutableArray array];
for (int i=0; i<[bp7array count]; i++) {
BP7*bp7=[bp7array objectAtIndex:i];
[deviceMacArray addObject:bp7.serialNumber];
}
NSDictionary* deviceInfo = @{@"action":@"ACTION_GET_ALL_CONNECTED_DEVICES",@"devices":deviceMacArray};
[self sendEventWithName:EVENT_NOTIFY body:deviceInfo];
}
RCT_EXPORT_METHOD(conformAngle:(nonnull NSString *)mac){
if ([self getBP7WithMac:mac]!=nil) {
__weak typeof(self) weakSelf = self;
[[self getBP7WithMac:mac] commandStartGetAngle:^(NSDictionary *angleDict) {
NSDictionary* response = @{
kACTION:kACTION_ANGLE_BP,
kANGLE_BP:angleDict[@"angle"],
kWHICH_ARM:angleDict[@"isLeftHand"]
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
} errorBlock:^(BPDeviceError error) {
NSLog(@"error %lu",(unsigned long)error);
weakSelf.isMeasuring = NO;
[BPProfileModule sendErrorToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithCode:error];
}];
}else{
NSLog(@"error %lu",(unsigned long)BPDidDisconnect);
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
self.isMeasuring = NO;
}
}
RCT_EXPORT_METHOD(startMeasure:(nonnull NSString *)mac){
_previousPressure = @(0);
self.startSendWavelet = NO;
if ([self getBP7WithMac:mac]!=nil) {
__weak typeof(self) weakSelf = self;
[[self getBP7WithMac:mac] commandStartMeasureWithZeroingState:^(BOOL isComplete) {
weakSelf.isMeasuring = YES;
NSDictionary* response = @{
kACTION:isComplete ? kACTION_ZOREING_BP : kACTION_ZOREOVER_BP,
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
} pressure:^(NSArray *pressureArr) {
NSLog(@"pressure %@",pressureArr);
weakSelf.isMeasuring = YES;
[weakSelf sendPresssre:pressureArr.firstObject wavelet:nil isHeartPulse:NO];
} waveletWithHeartbeat:^(NSArray *waveletArr) {
NSLog(@"xiaoboWithHeart %@",waveletArr);
weakSelf.isMeasuring = YES;
[weakSelf sendPresssre:nil wavelet:waveletArr isHeartPulse:YES];
} waveletWithoutHeartbeat:^(NSArray *waveletArr) {
weakSelf.isMeasuring = YES;
NSLog(@"xiaoboNoHeart %@",waveletArr);
[weakSelf sendPresssre:nil wavelet:waveletArr isHeartPulse:NO];
} result:^(NSDictionary *resultDict) {
NSLog(@"result %@",resultDict);
weakSelf.startSendWavelet = NO;
weakSelf.isMeasuring = NO;
NSDictionary* response = @{
kACTION:kACTION_ONLINE_RESULT_BP,
kHIGH_BLOOD_PRESSURE_BP:resultDict[@"sys"],
kLOW_BLOOD_PRESSURE_BP:resultDict[@"dia"],
kPULSE_BP:resultDict[@"heartRate"],
kMEASUREMENT_AHR_BP:resultDict[@"irregular"],
kDATAID:resultDict[@"dataID"],
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
} errorBlock:^(BPDeviceError error) {
NSLog(@"error %lu",(unsigned long)error);
weakSelf.startSendWavelet = NO;
weakSelf.isMeasuring = NO;
[BPProfileModule sendErrorToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithCode:error];
}];
}else{
NSLog(@"error %d",BPDidDisconnect);
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
self.isMeasuring = NO;
}
}
- (void)sendPresssre:(NSNumber*)pressure wavelet:(NSArray*)waveletArray isHeartPulse:(BOOL)heartPulse{
if (pressure) {
self.previousPressure = pressure;
}
if (waveletArray.count > 0) {
self.startSendWavelet = YES;
}
if (pressure && !self.startSendWavelet) {
NSDictionary* response = @{
kACTION:kACTION_ONLINE_PRESSURE_BP,
kBLOOD_PRESSURE_BP:pressure,
};
[BPProfileModule sendEventToEmitter:self eventNotify:EVENT_NOTIFY WithDict:response];
}else if (waveletArray.count > 0 && self.startSendWavelet){
NSDictionary* response = @{
kACTION:kACTION_ONLINE_PULSEWAVE_BP,
kBLOOD_PRESSURE_BP:self.previousPressure,
kFLAG_HEARTBEAT_BP:@(heartPulse),
kPULSEWAVE_BP:waveletArray
};
[BPProfileModule sendEventToEmitter:self eventNotify:EVENT_NOTIFY WithDict:response];
}
}
RCT_EXPORT_METHOD(stopMeasure:(nonnull NSString *)mac){
if (!self.isMeasuring) {
NSLog(@"error %d",401);
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:401];
return;
}
if ([self getBP7WithMac:mac]!=nil) {
__weak typeof(self) weakSelf = self;
[[self getBP7WithMac:mac] stopBPMeassureSuccessBlock:^{
} errorBlock:^(BPDeviceError error) {
NSLog(@"error %lu",(unsigned long)error);
[BPProfileModule sendErrorToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithCode:error];
}];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
NSDictionary* response = @{
kACTION:kACTION_INTERRUPTED_BP,
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
weakSelf.isMeasuring = NO;
});
}else{
NSLog(@"error %lu",(unsigned long)BPDidDisconnect);
self.isMeasuring = NO;
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
}
}
RCT_EXPORT_METHOD(getBattery:(nonnull NSString *)mac){
if ([self getBP7WithMac:mac]!=nil) {
__weak typeof(self) weakSelf = self;
[[self getBP7WithMac:mac] commandEnergy:^(NSNumber *energyValue) {
NSDictionary* response = @{
kACTION:kACTION_BATTERY_BP,
kBATTERY_BP:energyValue
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
} errorBlock:^(BPDeviceError error) {
NSLog(@"error %lu",(unsigned long)error);
[BPProfileModule sendErrorToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithCode:error];
}];
}else{
NSLog(@"error %lu",(unsigned long)BPDidDisconnect);
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
}
}
RCT_EXPORT_METHOD(enbleOffline:(nonnull NSString *)mac){
if ([self getBP7WithMac:mac]!=nil) {
__block BOOL success = YES;
__weak typeof(self) weakSelf = self;
[[self getBP7WithMac:mac] commandSetOffline:YES errorBlock:^(BPDeviceError error) {
success = NO;
[BPProfileModule sendErrorToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithCode:error];
}];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
if (success) {
NSDictionary* response = @{
kACTION:kACTION_ENABLE_OFFLINE_BP,
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
}
});
}else{
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
}
}
RCT_EXPORT_METHOD(disableOffline:(nonnull NSString *)mac){
if ([self getBP7WithMac:mac]!=nil) {
__block BOOL success = YES;
__weak typeof(self) weakSelf = self;
[[self getBP7WithMac:mac] commandSetOffline:NO errorBlock:^(BPDeviceError error) {
success = NO;
[BPProfileModule sendErrorToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithCode:error];
}];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
if (success) {
NSDictionary* response = @{
kACTION:kACTION_DISENABLE_OFFLINE_BP,
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
}
});
}else{
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
}
}
RCT_EXPORT_METHOD(isEnableOffline:(nonnull NSString *)mac){
if ([self getBP7WithMac:mac]!=nil) {
__weak typeof(self) weakSelf = self;
[[self getBP7WithMac:mac] commandFunction:^(NSDictionary *dic) {
NSDictionary* response = @{
kACTION:kACTION_IS_ENABLE_OFFLINE,
kIS_ENABLE_OFFLINE:dic[@"offlineOpen"]
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
} errorBlock:^(BPDeviceError error) {
[BPProfileModule sendErrorToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithCode:error];
}];
}else{
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
}
}
RCT_EXPORT_METHOD(getOfflineNum:(nonnull NSString *)mac){
if ([self getBP7WithMac:mac]!=nil) {
__weak typeof(self) weakSelf = self;
[[self getBP7WithMac:mac] commandTransferMemoryTotalCount:^(NSNumber *count) {
NSDictionary* response = @{
kACTION:kACTION_HISTORICAL_NUM_BP,
kHISTORICAL_NUM_BP:count
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
} errorBlock:^(BPDeviceError error) {
}];
}else{
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
}
// if ([self getBP7WithMac:mac]!=nil) {
// __weak typeof(self) weakSelf = self;
//
// [[self getBP7WithMac:mac] commandBatchUpload:^(NSNumber *count) {
// NSDictionary* response = @{
// kACTION:kACTION_HISTORICAL_NUM_BP,
// kHISTORICAL_NUM_BP:count
// };
// [BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
//
// } progress:^(NSNumber *progressValue) {
//
// } dataArray:^(NSArray *bachArray) {
// NSMutableArray * historyDataArray = [NSMutableArray array];
//
// for(NSDictionary *dataDict in bachArray)
// {
//
// NSDate *date = [dataDict objectForKey:@"time"];
//
// //将时间格式转化成字符串,适配plugin和react native
// NSDateFormatter *mydateFormatter = [[NSDateFormatter alloc] init];
// [mydateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
// NSString *dateStr = [mydateFormatter stringFromDate:date];
// NSDictionary* historyDataDict = @{
// kMEASUREMENT_DATE_BP:dateStr,
// kHIGH_BLOOD_PRESSURE_BP:dataDict[@"sys"],
// kLOW_BLOOD_PRESSURE_BP:dataDict[@"dia"],
// kPULSE_BP:dataDict[@"heartRate"],
// kMEASUREMENT_AHR_BP:dataDict[@"irregular"],
// // kMEASUREMENT_HSD_BP:dataDict[@"hsdValue"],
// kDATAID:dataDict[@"dataID"]
// };
// [historyDataArray addObject:historyDataDict];
//
//
// }
//
// if (historyDataArray.count > 0) {
// NSDictionary* deviceInfo = @{kACTION:kACTION_HISTORICAL_DATA_BP,kHISTORICAL_DATA_BP:[historyDataArray copy] };
// [BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:deviceInfo];
// }
//
// } errorBlock:^(BPDeviceError error) {
// [BPProfileModule sendErrorToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithCode:error];
//
// }];
//
// }else{
// [BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
// }
}
RCT_EXPORT_METHOD(getOfflineData:(nonnull NSString *)mac){
if ([self getBP7WithMac:mac]!=nil) {
__weak typeof(self) weakSelf = self;
[[self getBP7WithMac:mac] commandBatchUpload:^(NSNumber *count) {
NSDictionary* response = @{
kACTION:kACTION_HISTORICAL_NUM_BP,
kHISTORICAL_NUM_BP:count
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
} progress:^(NSNumber *progressValue) {
} dataArray:^(NSArray *bachArray) {
NSMutableArray * historyDataArray = [NSMutableArray array];
for(NSDictionary *dataDict in bachArray)
{
NSDate *date = [dataDict objectForKey:@"time"];
//将时间格式转化成字符串,适配plugin和react native
NSDateFormatter *mydateFormatter = [[NSDateFormatter alloc] init];
[mydateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSString *dateStr = [mydateFormatter stringFromDate:date];
NSDictionary* historyDataDict = @{
kMEASUREMENT_DATE_BP:dateStr,
kHIGH_BLOOD_PRESSURE_BP:dataDict[@"sys"],
kLOW_BLOOD_PRESSURE_BP:dataDict[@"dia"],
kPULSE_BP:dataDict[@"heartRate"],
kMEASUREMENT_AHR_BP:dataDict[@"irregular"],
// kMEASUREMENT_HSD_BP:dataDict[@"hsdValue"],
kDATAID:dataDict[@"dataID"]
};
[historyDataArray addObject:historyDataDict];
}
if (historyDataArray.count > 0) {
NSDictionary* deviceInfo = @{kACTION:kACTION_HISTORICAL_DATA_BP,kHISTORICAL_DATA_BP:[historyDataArray copy] };
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:deviceInfo];
}
} errorBlock:^(BPDeviceError error) {
[BPProfileModule sendErrorToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithCode:error];
}];
}else{
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
}
}
RCT_EXPORT_METHOD(disconnect:(nonnull NSString *)mac){
NSLog(@"iOS doesn't support disconnect normal BT devices");
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:900];
}
@end
|