summaryrefslogtreecommitdiff
path: root/libs/ihealth-sdk/android/src/main/java/com/ihealth/ihealthlibrary/ECGUSBModule.java
blob: 94f3451397f53fc75407c4767835cc688815b5de (plain)
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
package com.ihealth.ihealthlibrary;

import android.text.TextUtils;
import android.util.Log;

import com.facebook.react.bridge.Arguments;
import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.react.bridge.ReactMethod;
import com.facebook.react.bridge.ReadableArray;
import com.facebook.react.bridge.WritableArray;
import com.facebook.react.bridge.WritableMap;
import com.facebook.react.module.annotations.ReactModule;
import com.ihealth.communication.control.ECG3Profile;
import com.ihealth.communication.control.ECG3USBControl;
import com.ihealth.communication.manager.iHealthDevicesManager;
import com.facebook.react.bridge.Callback;

import org.json.JSONException;
import org.json.JSONObject;

import java.util.HashMap;
import java.util.List;
import java.util.Map;


import static com.ihealth.ihealthlibrary.ECGProfileModule.ACTION_FILTER;
import static com.ihealth.ihealthlibrary.ECGProfileModule.ACTION_SPLICE;
import static com.ihealth.ihealthlibrary.ECGProfileModule.ACTION_GET_CACHE;
import static com.ihealth.ihealthlibrary.ECGProfileModule.ACTION_SYNCDATAINFO_ECGUSB;
import static com.ihealth.ihealthlibrary.ECGProfileModule.ACTION_SYNCDATAPROGRESS_ECGUSB;
import static com.ihealth.ihealthlibrary.ECGProfileModule.DATAINFO;
import static com.ihealth.ihealthlibrary.ECGProfileModule.GET_CACHE_DATA;
import static com.ihealth.ihealthlibrary.ECGProfileModule.FILTER_DATA;
import static com.ihealth.ihealthlibrary.ECGProfileModule.SPLICE_DATA;
import static com.ihealth.ihealthlibrary.ECGProfileModule.PROGRESS;
import static com.ihealth.ihealthlibrary.ECGProfileModule.FILEPATH;


/**
 * Created by zhaoyongguang on 2018/1/22.
 */
@ReactModule(name = "ECGUSBModule")
public class ECGUSBModule extends iHealthBaseModule {
    private static final String modelName = "ECGUSBModule";
    private static final String TAG = "ECGUSBModule";
    private static final String mac = "000000000000";
    private static final String EVENT_NOTIFY = "event_notify_ecg3_usb";

    public ECGUSBModule(ReactApplicationContext reactContext) {
        super(TAG, reactContext);
    }

    @Override
    public Map<String, Object> getConstants() {
        Map<String, Object> map = new HashMap<>();
        map.put("Event_Notify", EVENT_NOTIFY);
        return map;
    }

    @Override
    public void handleNotify(String mac, String deviceType, String action, String message) {
        if (action.equals(ECG3Profile.ACTION_SYNC_OFFLINE_DATA)){
            WritableMap params = Arguments.createMap();
            try {
                JSONObject jsonObject = new JSONObject(message);
                //split progress
                if (jsonObject.getBoolean(ECG3Profile.OFFLINE_DATA_SYNC_FINISH)) {
                    WritableMap paramsFinish = Arguments.createMap();
                    paramsFinish.putString("action", ACTION_SYNCDATAPROGRESS_ECGUSB);
                    paramsFinish.putDouble(PROGRESS, 100);
                    paramsFinish.putString("mac", mac);
                    paramsFinish.putString("type", deviceType);
                    sendEvent(EVENT_NOTIFY, paramsFinish);


                    params.putString("action", ACTION_SYNCDATAINFO_ECGUSB);
                    params.putArray(DATAINFO, Utils.getWritableArrayFromJSONArray(jsonObject.getJSONArray(ECG3Profile.OFFLINE_DATAS)));
                    params.putString("mac", mac);
                    params.putString("type", deviceType);
//                    params.putString(FILEPATH, jsonObject.getString(ECG3Profile.FILE_PATH));
                    sendEvent(EVENT_NOTIFY, params);
                } else {
                    params.putString("action", ACTION_SYNCDATAPROGRESS_ECGUSB);
                    params.putDouble(PROGRESS, jsonObject.getDouble(ECG3Profile.OFFLINE_DATA_SYNC_PROGRESS));
                    params.putString("mac", mac);
                    params.putString("type", deviceType);
                    sendEvent(EVENT_NOTIFY, params);
                }

            } catch (Exception e) {
                e.printStackTrace();
            }

            return;
        }
       if (action.equals(ECG3Profile.ACTION_SPLICING_DATA)) {
           WritableMap params = Arguments.createMap();
           try {
               JSONObject jsonObject = new JSONObject(message);
               params.putString("action", ACTION_SPLICE);
               params.putMap(SPLICE_DATA, Utils.getMapFromJSONObject(jsonObject.getJSONObject(ECG3Profile.GET_SPLICING_DATA)));
               params.putString("mac", mac);
               params.putString("type", deviceType);
               params.putString(FILEPATH, jsonObject.getString(ECG3Profile.FILE_PATH));
               sendEvent(EVENT_NOTIFY, params);
           } catch (Exception e) {
               e.printStackTrace();
           }

           return;
       }
       if (action.equals(ECG3Profile.ACTION_GET_CACHE_DATA))
       {
           WritableMap params = Arguments.createMap();
           try {
               JSONObject jsonObject = new JSONObject(message);
               params.putString("action", ACTION_GET_CACHE);
               params.putArray(GET_CACHE_DATA, Utils.getWritableArrayFromJSONArray(jsonObject.getJSONArray(GET_CACHE_DATA)));
               params.putString("mac", mac);
               params.putString("type", deviceType);
               params.putString(FILEPATH, jsonObject.getString(ECG3Profile.FILE_PATH));
               sendEvent(EVENT_NOTIFY, params);
           } catch (
                   Exception e)
           {
               e.printStackTrace();
           }

           return;
       }
       if (action.equals(ECG3Profile.ACTION_GET_FILTER_FILES))
       {
           WritableMap params = Arguments.createMap();
           try {
               JSONObject jsonObject = new JSONObject(message);
               params.putString("action", ACTION_FILTER);
               params.putArray(FILTER_DATA, Utils.getWritableArrayFromJSONArray(jsonObject.getJSONArray(ECG3Profile.GET_FILTER_DATA)));
               params.putString("mac", mac);
               params.putString("type", deviceType);
               params.putString(FILEPATH, jsonObject.getString(ECG3Profile.FILE_PATH));
               sendEvent(EVENT_NOTIFY, params);
           } catch (
                   Exception e)
           {
               e.printStackTrace();
           }

           return;
       }
        if (action.equals(ECG3Profile.ACTION_GET_IDPS)){
            WritableMap params = Arguments.createMap();
            params.putString("action", action);
            params.putString("mac", mac);
            params.putString("type", deviceType);
            try {
                params.putMap("idps", Utils.getMapFromJSONObject(new JSONObject(message)));
            } catch (JSONException e) {
                e.printStackTrace();
            }
            sendEvent(EVENT_NOTIFY, params);
            return;
        }
        WritableMap params = Arguments.createMap();
        params.putString("action", action);
        params.putString("mac", mac);
        params.putString("type", deviceType);
        if (!TextUtils.isEmpty(message)) {
            Utils.jsonToMap(message, params);
        }
        sendEvent(EVENT_NOTIFY, params);
    }

    /**
     * @return the name of this module. This will be the name used to {@code require()} this module
     * from javascript.
     */
    @Override
    public String getName() {
        return modelName;
    }

    private static ECG3USBControl getControl() {
        return iHealthDevicesManager.getInstance().getECG3USBControl(mac);
    }

    @ReactMethod
    public void syncData() {
        ECG3USBControl control = getControl();
        if (control != null) {
            control.syncData();
        } else {
            WritableMap params = Arguments.createMap();
            params.putInt("errorid", 400);
            sendEvent("Error", params);
        }
    }

    @ReactMethod
    public void getIdps() {
        ECG3USBControl control = getControl();
        if (control != null) {
            control.getIdps();
        } else {
            WritableMap params = Arguments.createMap();
            params.putInt("errorid", 400);
            sendEvent("Error", params);
        }
    }

    @ReactMethod
    public void deleteData() {
        ECG3USBControl control = getControl();
        if (control != null) {
            control.deleteAll();
        } else {
            WritableMap params = Arguments.createMap();
            params.putInt("errorid", 400);
            sendEvent("Error", params);
        }
    }

    @ReactMethod
    public void getAllConnectedDevices() {
        List<String> devices = iHealthDevicesManager.getInstance().getECG3USBDevices();
        WritableMap params = Arguments.createMap();
        if (devices.size() > 0) {
            WritableArray array = Arguments.createArray();
            for (String device : devices) {
                array.pushString(device);
            }
            params.putArray("devices", array);
            params.putString("action", ACTION_GET_ALL_CONNECTED_DEVICES);
        }
        sendEvent(EVENT_NOTIFY, params);
    }

    @ReactMethod
    public void spliceData(ReadableArray filesNames) {
        ECG3USBControl control = getControl();
        if (control != null && filesNames != null) {

            String[] files = new String[filesNames.size()];
            for (int x = 0; x < filesNames.size(); x++) {
                files[x] = filesNames.getString(x);
            }
            control.spliceWithFileNames(files);
        } else {
            WritableMap params = Arguments.createMap();
            params.putInt("errorid", 400);
            sendEvent("Error", params);
        }
    }

    @ReactMethod
    public void getCache() {
        ECG3USBControl control = getControl();
        if (control != null) {
            control.getCacheData();
        } else {
            WritableMap params = Arguments.createMap();
            params.putInt("errorid", 400);
            sendEvent("Error", params);
        }
    }

    @ReactMethod
    public void deleteCacheData() {
        ECG3USBControl control = getControl();
        if (control != null) {
            control.deleteCacheData();
        } else {
            WritableMap params = Arguments.createMap();
            params.putInt("errorid", 400);
            sendEvent("Error", params);
        }
    }

    @ReactMethod
    public void getFilterDataByFileName(String dataFileName,String markFileName) {
        ECG3USBControl control = getControl();
        if (control != null) {
            control.getFilterDataByFileName(dataFileName,markFileName);
        } else {
            WritableMap params = Arguments.createMap();
            params.putInt("errorid", 400);
            sendEvent("Error", params);
        }
    }

}