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
|
//
// BP5SModule.m
// ReactNativeIOSLibrary
//
// Created by soso on 2019/4/17.
// Copyright © 2019 daiqingquan. All rights reserved.
//
#import "BP5SModule.h"
#import "BPProfileModule.h"
#import "BPMacroFile.h"
#import "BP5SController.h"
#import "BP5S.h"
#import "iHealthDeviceManagerModule.h"
#import "ScanDeviceController.h"
#import "ConnectDeviceController.h"
#define EVENT_NOTIFY @"BP5S.MODULE.NOTIFY"
@interface BP5SModule ()
@property (nonatomic, assign) BOOL isMeasuring;
@end
@implementation BP5SModule
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;
}
-(BP5S*)getDeviceWithMac:(NSString*)mac{
BP5SController *controller = [BP5SController sharedController];
NSArray *bpDeviceArray = [controller getAllCurrentInstance];
for(BP5S *tempDevice in bpDeviceArray){
if([mac isEqualToString:tempDevice.serialNumber]){
return tempDevice;
}
}
return nil;
}
#pragma mark - Method
#pragma mark-获取连接设备
RCT_EXPORT_METHOD(getAllConnectedDevices){
NSArray *bp5sArray= [[BP5SController sharedController] getAllCurrentInstance];
NSMutableArray *deviceMacArray = [NSMutableArray array];
for (int i=0; i<[bp5sArray count]; i++) {
BP5S *bp5s=[bp5sArray objectAtIndex:i];
[deviceMacArray addObject:bp5s.serialNumber];
}
NSDictionary* deviceInfo = @{@"action":@"ACTION_GET_ALL_CONNECTED_DEVICES",@"devices":deviceMacArray};
[self sendEventWithName:EVENT_NOTIFY body:deviceInfo];
}
//开始测量
RCT_EXPORT_METHOD(startMeasure:(nonnull NSString *)mac){
if ([self getDeviceWithMac:mac]!=nil) {
__weak typeof(self) weakSelf = self;
[[self getDeviceWithMac:mac] commandStartMeasureWithZeroingState:^(BOOL isComplete) {
weakSelf.isMeasuring = YES;
NSDictionary* response = @{
@"mac":mac,
kACTION:isComplete ? kACTION_ZOREING_BP : kACTION_ZOREOVER_BP,
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
} pressure:^(NSArray *pressureArr) {
weakSelf.isMeasuring = YES;
NSLog(@"pressure %@",pressureArr);
NSDictionary* response = @{
@"mac":mac,
kACTION:kACTION_ONLINE_PRESSURE_BP,
kBLOOD_PRESSURE_BP:pressureArr.firstObject,
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
} waveletWithHeartbeat:^(NSArray *waveletArr) {
weakSelf.isMeasuring = YES;
NSLog(@"xiaoboWithHeart %@",waveletArr);
NSDictionary* response = @{
@"mac":mac,
kACTION:kACTION_ONLINE_PULSEWAVE_BP,
kFLAG_HEARTBEAT_BP:@(1),
kPULSEWAVE_BP:waveletArr
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
} waveletWithoutHeartbeat:^(NSArray *waveletArr) {
weakSelf.isMeasuring = YES;
NSLog(@"xiaoboNoHeart %@",waveletArr);
NSDictionary* response = @{
@"mac":mac,
kACTION:kACTION_ONLINE_PULSEWAVE_BP,
kFLAG_HEARTBEAT_BP:@(0),
kPULSEWAVE_BP:waveletArr
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
} result:^(NSDictionary *resultDict) {
weakSelf.isMeasuring = NO;
NSLog(@"result %@",resultDict);
NSDictionary* response = @{
@"mac":mac,
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) {
weakSelf.isMeasuring = NO;
NSLog(@"error %lu",(unsigned long)error);
[BPProfileModule sendErrorToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithCode:error];
}];
}else{
self.isMeasuring = NO;
NSLog(@"error %lu",(unsigned long)BPDidDisconnect);
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
}
}
//停止测量
RCT_EXPORT_METHOD(stopMeasure:(nonnull NSString *)mac){
if (!self.isMeasuring) {
NSLog(@"error %d",401);
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:401];
return;
}
__weak typeof(self) weakSelf = self;
if ([self getDeviceWithMac:mac]!=nil) {
[[self getDeviceWithMac:mac] stopBPMeassureSuccessBlock:^{
weakSelf.isMeasuring = NO;
NSDictionary* response = @{
@"mac":mac,
kACTION:kACTION_INTERRUPTED_BP,
};
[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{
weakSelf.isMeasuring = NO;
NSLog(@"error %lu",(unsigned long)BPDidDisconnect);
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
}
}
//删除功能
RCT_EXPORT_METHOD(deleteData:(nonnull NSString *)mac){
if ([self getDeviceWithMac:mac]!=nil) {
__weak typeof(self) weakSelf = self;
[[self getDeviceWithMac:mac] commandDeleteDataSuccessBlock:^{
NSDictionary* response = @{
@"mac":mac,
kACTION:kACTION_Delete_BP,
};
[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 mode:(nonnull NSNumber *)mode){
if ([self getDeviceWithMac:mac]!=nil) {
__block BOOL success = YES;
__weak typeof(self) weakSelf = self;
BOOL flag;
if ([mode boolValue] == YES) {
flag = YES;
}else{
flag = NO;
}
[[self getDeviceWithMac:mac] commandSetOffline:flag success:^{
if (flag == YES) {
NSDictionary* response = @{
@"mac":mac,
kACTION:kACTION_ENABLE_OFFLINE_BP,
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
}else{
NSDictionary* response = @{
@"mac":mac,
kACTION:kACTION_DISENABLE_OFFLINE_BP,
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
}
} error:^(BPDeviceError error) {
success = NO;
[BPProfileModule sendErrorToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithCode:error];
}];
}else{
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
}
}
//查电量
RCT_EXPORT_METHOD(getBattery:(nonnull NSString *)mac){
if ([self getDeviceWithMac:mac]!=nil) {
__weak typeof(self) weakSelf = self;
[[self getDeviceWithMac:mac] commandEnergy:^(NSNumber *energyValue) {
NSDictionary* response = @{
@"mac":mac,
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(getOffLineNum:(nonnull NSString *)mac){
if ([self getDeviceWithMac:mac]!=nil) {
__weak typeof(self) weakSelf = self;
[[self getDeviceWithMac:mac]commandTransferMemoryTotalCount:^(NSNumber *num) {
NSDictionary* response = @{
@"mac":mac,
kACTION:kACTION_HISTORICAL_NUM_BP,
kHISTORICAL_NUM_BP:num
};
[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(getOffLineData:(nonnull NSString *)mac){
if ([self getDeviceWithMac:mac]!=nil) {
__weak typeof(self) weakSelf = self;
[[self getDeviceWithMac:mac] commandTransferMemoryDataWithTotalCount:^(NSNumber *count) {
if ([count integerValue] == 0) {
NSDictionary* response = @{@"mac":mac,kACTION:kACTION_HISTORICAL_DATA_BP };
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
}
} progress:^(NSNumber *progress) {
} dataArray:^(NSArray *array) {
NSMutableArray * tempArr = [[NSMutableArray alloc]init];
for(NSDictionary *history in array)
{
NSNumber *dateNum = [history objectForKey:@"time"];
NSDate *tempDate = [NSDate dateWithTimeIntervalSince1970:[dateNum integerValue]];
//将时间格式转化成字符串,适配plugin和react native
NSDateFormatter *mydateFormatter = [[NSDateFormatter alloc] init];
[mydateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSString *dateStr = [mydateFormatter stringFromDate:tempDate];
NSNumber*bpHSD=[history valueForKey:@"hsdValue"];
NSDictionary *dic=[NSDictionary dictionary];
if (bpHSD!=nil) {
dic = @{
@"mac":mac,
kMEASUREMENT_DATE_BP: dateStr,
kLOW_BLOOD_PRESSURE_BP: [history objectForKey:@"dia"],
kHIGH_BLOOD_PRESSURE_BP: [history objectForKey:@"sys"],
kMEASUREMENT_AHR_BP: [history objectForKey:@"irregular"],
kPULSE_BP: [history objectForKey:@"heartRate"],
kDATAID: [history objectForKey:@"dataID"],
kMEASUREMENT_HSD_BP: history[@"hsdValue"]
};
}else{
dic = @{
@"mac":mac,
kMEASUREMENT_DATE_BP: dateStr,
kLOW_BLOOD_PRESSURE_BP: [history objectForKey:@"dia"],
kHIGH_BLOOD_PRESSURE_BP: [history objectForKey:@"sys"],
kMEASUREMENT_AHR_BP: [history objectForKey:@"irregular"],
kPULSE_BP: [history objectForKey:@"heartRate"],
kDATAID: [history objectForKey:@"dataID"]
};
}
[tempArr addObject:dic];
}
if (tempArr.count > 0) {
NSDictionary* response = @{
@"mac":mac,
kACTION:kACTION_HISTORICAL_DATA_BP,
kHISTORICAL_DATA_BP:[tempArr copy]
};
[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(getFunctionInfo:(nonnull NSString *)mac){
if ([self getDeviceWithMac:mac]!=nil) {
__weak typeof(self) weakSelf = self;
[[self getDeviceWithMac:mac] commandFunction:^(NSDictionary *dic) {
NSDictionary* response = @{
@"mac":mac,
kACTION:kACTION_FUNCTION_INFORMATION_BP,
kFUNCTION_IS_UPAIR_MEASURE: [dic objectForKey:@"upAirMeasureFlg"],
kFUNCTION_IS_ARM_MEASURE: [dic objectForKey:@"armMeasureFlg"],
kFUNCTION_HAVE_ANGLE_SENSOR: [dic objectForKey:@"haveAngleSensor"],
kFUNCTION_HAVE_OFFLINE: [dic objectForKey:@"haveOffline"],
kFUNCTION_HAVE_HSD: [dic objectForKey:@"haveHSD"],
kFUNCTION_IS_MULTI_UPLOAD: [dic objectForKey:@"mutableUpload"],
kFUNCTION_HAVE_SELF_UPDATE: [dic objectForKey: @"selfUpdate"]};
[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(disconnect:(nonnull NSString *)mac){
if ([self getDeviceWithMac:mac]!=nil) {
[[self getDeviceWithMac:mac] commandDisconnectDevice];
}else{
NSLog(@"error %lu",(unsigned long)BPDidDisconnect);
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
}
}
@end
|