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
|
//
// BP3LModule.m
// ReactNativeIOSLibrary
//
// Created by Liu Yanbo on 2016/12/05.
// Copyright © 2016年 Liu Yanbo. All rights reserved.
//
#import "BP3LModule.h"
#import "BPProfileModule.h"
#import "BPMacroFile.h"
#import "BP3LController.h"
#import "BP3L.h"
#import "iHealthDeviceManagerModule.h"
#import "ScanDeviceController.h"
#import "ConnectDeviceController.h"
#define EVENT_NOTIFY @"BP3L.MODULE.NOTIFY"
@interface BP3LModule ()
@property (nonatomic, assign) BOOL isMeasuring;
@end
@implementation BP3LModule
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;
}
-(BP3L*)getDeviceWithMac:(NSString*)mac{
BP3LController *controller = [BP3LController shareBP3LController];
NSArray *bpDeviceArray = [controller getAllCurrentBP3LInstace];
for(BP3L *tempDevice in bpDeviceArray){
if([mac isEqualToString:tempDevice.serialNumber]){
return tempDevice;
}
}
return nil;
}
#pragma mark - Method
#pragma mark-获取连接设备
RCT_EXPORT_METHOD(getAllConnectedDevices){
NSArray*bp3larray= [[BP3LController shareBP3LController] getAllCurrentBP3LInstace];
NSMutableArray*deviceMacArray=[NSMutableArray array];
for (int i=0; i<[bp3larray count]; i++) {
BP3L*bp3l=[bp3larray objectAtIndex:i];
[deviceMacArray addObject:bp3l.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 = @{
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 = @{
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 = @{
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 = @{
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 = @{
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 %d",error);
[BPProfileModule sendErrorToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithCode:error];
}];
}else{
self.isMeasuring = NO;
NSLog(@"error %d",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 = @{
kACTION:kACTION_INTERRUPTED_BP,
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
} errorBlock:^(BPDeviceError error) {
NSLog(@"error %d",error);
weakSelf.isMeasuring = NO;
[BPProfileModule sendErrorToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithCode:error];
}];
}else{
weakSelf.isMeasuring = NO;
NSLog(@"error %d",BPDidDisconnect);
[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 = @{
kACTION:kACTION_BATTERY_BP,
kBATTERY_BP:energyValue
};
[BPProfileModule sendEventToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithDict:response];
} errorBlock:^(BPDeviceError error) {
NSLog(@"error %d",error);
[BPProfileModule sendErrorToEmitter:weakSelf eventNotify:EVENT_NOTIFY WithCode:error];
}];
}else{
NSLog(@"error %d",BPDidDisconnect);
[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 %d",BPDidDisconnect);
[BPProfileModule sendErrorToEmitter:self eventNotify:EVENT_NOTIFY WithCode:BPDidDisconnect];
}
}
@end
|