summaryrefslogtreecommitdiff
path: root/libs/ihealth-sdk/android/src/main/java/com/ihealth/ihealthlibrary/AM4Module.java
blob: ca02e4cd8d4264649322d5c16ac373d82cecf2c3 (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
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
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.Am4Control;
import com.ihealth.communication.manager.iHealthDevicesManager;

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

/**
 * Created by jing on 16/10/20.
 */
@ReactModule(name = "AM4Module")
public class AM4Module extends iHealthBaseModule {
    private static final String modelName = "AM4Module";
    private static final String TAG = "AM4Module";

    private static final String EVENT_NOTIFY = "event_notify_am4";

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

    @Override
    public String getName() {
        return modelName;
    }

    @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) {
        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);
    }

    private static Am4Control getControl(String mac) {
        return iHealthDevicesManager.getInstance().getAm4Control(mac);
    }

    @ReactMethod
    public void getIdps(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            String idps = control.getIdps();
            WritableMap params = Arguments.createMap();
            if (!TextUtils.isEmpty(idps)) {
                Utils.jsonToMap(idps, params);
            }
            sendEvent(EVENT_NOTIFY, params);
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void reset(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.reset(1);
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void getUserId(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.getUserId();
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void getAlarmClockNum(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.getAlarmClockNum();
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void getAlarmClockDetail(String mac, ReadableArray alarmIDArray) {
        Am4Control control = getControl(mac);
        if (control != null) {
            int[] alarmIDs = new int[alarmIDArray.size()];
            for (int i = 0; i< alarmIDArray.size(); i++) {
                alarmIDs[i] = alarmIDArray.getInt(i);
            }
            control.getAlarmClockDetail(alarmIDs);
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void setAlarmClock(String mac, int id, int hour, int min, boolean isRepeat, ReadableArray weekArray, boolean isOn) {
        Am4Control control = getControl(mac);
        if (control != null) {
            int[] weeks = new int[weekArray.size()];
            for (int i = 0; i < weekArray.size(); i++) {
                weeks[i] = weekArray.getInt(i);
            }
            control.setAlarmClock(id, hour, min, isRepeat, weeks, isOn);
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void deleteAlarmClock(String mac, int id) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.deleteAlarmClock(id);
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void getActivityRemind(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.getActivityRemind();
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void setActivityRemind(String mac, int hour, int min, boolean isOn) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.setActivityRemind(hour, min, isOn);
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void queryAMState(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.queryAMState();
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void setUserId(String mac, int id) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.setUserId(id);
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void getUserInfo(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.getUserInfo();
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }
    
    @ReactMethod
    public void setUserBmr(String mac, int bmr){
        Am4Control control = getControl(mac);
        if (control != null) {
            control.setUserBmr(bmr);
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void syncActivityData(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.syncActivityData();
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void syncSleepData(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.syncSleepData();
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void syncRealData(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.syncRealData();
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void syncRealTime(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.syncRealTime();
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void setHourMode(String mac, int hourMode) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.setHourMode(hourMode);
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void getHourMode(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.getHourMode();
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void disconnect(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.disconnect();
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void setUserInfo(String mac, int age, int height, float weight, int gender, int unit, int target, int activityLevel, int min) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.setUserInfo(age, height, weight, gender, unit, target, activityLevel, min);
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void syncStageReportData(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.syncStageReprotData();
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void sendRandom(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.sendRandom();
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void checkSwimPara(String mac) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.checkSwimPara();
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }
    
    @ReactMethod
    public void setSwimPara(String mac, boolean isOpen, int poolLength, int hours, int minutes, int unit) {
        Am4Control control = getControl(mac);
        if (control != null) {
            control.setSwimPara(isOpen, poolLength, hours, minutes, unit);
        } else {
            Log.e(TAG, "Can not find AM4 Control mac:" + mac);
        }
    }

    @ReactMethod
    public void getAllConnectedDevices() {
        List<String> devices = iHealthDevicesManager.getInstance().getAm4Devices();
        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);
    }
}