wujingjing
2024-03-19 40f0a88d0669461f57f3b703596c36f4b2d10df8
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
/**
 * html+ 串口蓝牙操作
 * 2021.04.23 uni-app版本
 * @auth boolTrue
 */
 
/**
 * 初始化参数
 */
//#ifdef APP-PLUS
let BluetoothAdapter = plus.android.importClass("android.bluetooth.BluetoothAdapter");
let Intent = plus.android.importClass("android.content.Intent");
let IntentFilter = plus.android.importClass("android.content.IntentFilter");
let BluetoothDevice = plus.android.importClass("android.bluetooth.BluetoothDevice");
let UUID = plus.android.importClass("java.util.UUID");
let Toast = plus.android.importClass("android.widget.Toast");
let StandardCharsets = plus.android.importClass('java.nio.charset.StandardCharsets')
//连接串口设备的 UUID
let MY_UUID = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");
 
let invoke = plus.android.invoke;
let btAdapter = BluetoothAdapter.getDefaultAdapter();
let activity = plus.android.runtimeMainActivity();
 
let btSocket = null;
let btInStream = null;
let btOutStream = null;
let setIntervalId = 0;
 
let btFindReceiver = null; //蓝牙搜索广播接收器
let btStatusReceiver = null; //蓝牙状态监听广播
//#endif
/**
 * 构造对象
 */
var blueToothTool = {
    state: {
        bluetoothEnable: false, //蓝牙是否开启
        bluetoothState: "", //当前蓝牙状态
        discoveryDeviceState: false, //是否正在搜索蓝牙设备
        readThreadState: false, //数据读取线程状态
    },
    options: {
        /**
         * 监听蓝牙状态回调
         * @param {String} state
         */
        listenBTStatusCallback: function(state) {},
        /**
         * 搜索到新的蓝牙设备回调
         * @param {Device} newDevice
         */
        discoveryDeviceCallback: function(newDevice) {},
        /**
         * 蓝牙搜索完成回调
         */
        discoveryFinishedCallback: function() {},
        /**
         * 接收到数据回调
         * @param {Array} dataByteArr
         */
        readDataCallback: function(dataByteArr) {},
        /**
         * 蓝牙连接中断回调
         * @param {Exception} e
         */
        connExceptionCallback: function(e) {}
    },
    init(setOptions) {
        Object.assign(this.options, setOptions);
        this.state.bluetoothEnable = this.getBluetoothStatus();
        this.listenBluetoothStatus();
    },
    shortToast(msg) {
        Toast.makeText(activity, msg, Toast.LENGTH_SHORT).show();
    },
    /**
     * 是否支持蓝牙
     * @return {boolean}
     */
    isSupportBluetooth() {
        if (btAdapter != null) {
            return true;
        }
        return false;
    },
    /**
     * 获取蓝牙的状态
     * @return {boolean} 是否已开启
     */
    getBluetoothStatus() {
        if (btAdapter != null) {
            return btAdapter.isEnabled();
        }
        return false;
    },
    /**
     * 打开蓝牙
     * @param activity
     * @param requestCode
     */
    turnOnBluetooth() {
        if (btAdapter == null) {
            shortToast("没有蓝牙");
            return;
        }
        if (!btAdapter.isEnabled()) {
            if (activity == null) {
                shortToast("未获取到activity");
                return;
            } else {
                let intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
                let requestCode = 1;
                activity.startActivityForResult(intent, requestCode);
                return;
            }
        } else {
            shortToast("蓝牙已经打开");
        }
    },
    /**
     * 关闭蓝牙
     */
    turnOffBluetooth() {
        if (btAdapter != null && btAdapter.isEnabled()) {
            btAdapter.disable();
        }
        if (btFindReceiver != null) {
            try {
                activity.unregisterReceiver(btFindReceiver);
            } catch (e) {
 
            }
            btFindReceiver = null;
        }
        this.state.bluetoothEnable = false;
        this.cancelDiscovery();
        closeBtSocket();
 
        if (btAdapter != null && btAdapter.isEnabled()) {
            btAdapter.disable();
            shortToast("蓝牙关闭成功");
        } else {
            shortToast("蓝牙已经关闭");
        }
    },
    /**
     * 获取已经配对的设备
     * @return {Array} connetedDevices
     */
    getPairedDevices() {
        let pairedDevices = [];
 
        //蓝牙连接android原生对象,是一个set集合
        let pairedDevicesAndroid = null;
        if (btAdapter != null && btAdapter.isEnabled()) {
            pairedDevicesAndroid = btAdapter.getBondedDevices();
        } else {
            shortToast("蓝牙未开启");
        }
 
        if (!pairedDevicesAndroid) {
            return pairedDevices;
        }
 
        //遍历连接设备的set集合,转换为js数组
        let it = invoke(pairedDevicesAndroid, "iterator");
        while (invoke(it, "hasNext")) {
            let device = invoke(it, "next");
            pairedDevices.push({
                "name": invoke(device, "getName"),
                "address": invoke(device, "getAddress"),
                "isConnected": invoke(device, "isConnected"),
                "status": invoke(device, "getBondState"),
                "uuids": invoke(device, "uuids"),
            });
        }
        return pairedDevices;
    },
    /**
     * 发现设备
     */
    discoveryNewDevice() {
        if (btFindReceiver != null) {
            try {
                activity.unregisterReceiver(btFindReceiver);
            } catch (e) {
                console.error(e);
            }
            btFindReceiver = null;
            this.cancelDiscovery();
        }
        let Build = plus.android.importClass("android.os.Build");
 
        //6.0以后的如果需要利用本机查找周围的wifi和蓝牙设备, 申请权限
        if (Build.VERSION.SDK_INT >= 6.0) {
 
        }
        let options = this.options
        btFindReceiver = plus.android.implements("io.dcloud.android.content.BroadcastReceiver", {
            "onReceive": function(context, intent) {
                plus.android.importClass(context);
                plus.android.importClass(intent);
                let action = intent.getAction();
 
                if (BluetoothDevice.ACTION_FOUND == action) { // 找到设备
                    let device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                    let newDevice = {
                        "name": plus.android.invoke(device, "getName"),
                        "address": plus.android.invoke(device, "getAddress")
                    }
                    options.discoveryDeviceCallback && options.discoveryDeviceCallback(newDevice);
                }
                if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED == action) { // 搜索完成
                    cancelDiscovery();
                    options.discoveryFinishedCallback && options.discoveryFinishedCallback();
                }
            }
        });
        let filter = new IntentFilter();
        filter.addAction(BluetoothDevice.ACTION_FOUND);
        filter.addAction(BluetoothAdapter.ACTION_DISCOVERY_FINISHED);
        activity.registerReceiver(btFindReceiver, filter);
        btAdapter.startDiscovery(); //开启搜索
        this.state.discoveryDeviceState = true;
    },
    /**
     * 蓝牙状态监听
     * @param {Activity} activity
     */
    listenBluetoothStatus() {
        if (btStatusReceiver != null) {
            try {
                activity.unregisterReceiver(btStatusReceiver);
            } catch (e) {
                console.error(e);
            }
            btStatusReceiver = null;
        }
        btStatusReceiver = plus.android.implements("io.dcloud.android.content.BroadcastReceiver", {
            "onReceive": (context, intent) => {
                plus.android.importClass(context);
                plus.android.importClass(intent);
 
                let action = intent.getAction();
                switch (action) {
                    case BluetoothAdapter.ACTION_STATE_CHANGED:
                        let blueState = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, 0);
                        let stateStr = "";
                        switch (blueState) {
                            case BluetoothAdapter.STATE_TURNING_ON:
                                stateStr = "STATE_TURNING_ON";
                                break;
                            case BluetoothAdapter.STATE_ON:
                                this.state.bluetoothEnable = true;
                                stateStr = "STATE_ON";
                                break;
                            case BluetoothAdapter.STATE_TURNING_OFF:
                                stateStr = "STATE_TURNING_OFF";
                                break;
                            case BluetoothAdapter.STATE_OFF:
                                stateStr = "STATE_OFF";
                                this.state.bluetoothEnable = false;
                                break;
                        }
                        this.state.bluetoothState = stateStr;
                        this.options.listenBTStatusCallback && this.options.listenBTStatusCallback(
                            stateStr);
                        break;
                }
            }
        });
        let filter = new IntentFilter();
        filter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
        activity.registerReceiver(btStatusReceiver, filter);
        // 首次连接 状态回调
        if (this.state.bluetoothEnable) {
            this.options.listenBTStatusCallback && this.options.listenBTStatusCallback('STATE_ON');
        }
    },
    /**
     * 根据蓝牙地址,连接设备
     * @param {Stirng} address
     * @return {Boolean}
     */
    connDevice(address, callback) {
        let InputStream = plus.android.importClass("java.io.InputStream");
        let OutputStream = plus.android.importClass("java.io.OutputStream");
        let BluetoothSocket = plus.android.importClass("android.bluetooth.BluetoothSocket");
 
        this.cancelDiscovery();
        if (btSocket != null) {
            this.closeBtSocket();
        }
        this.state.readThreadState = false;
 
        try {
            let device = invoke(btAdapter, "getRemoteDevice", address);
            btSocket = invoke(device, "createRfcommSocketToServiceRecord", MY_UUID);
        } catch (e) {
            console.error(e);
            shortToast("连接失败,获取Socket失败!");
            callback(false)
            return false;
        }
 
        invoke(btSocket, "connect");
        if (btSocket.isConnected()) {
            this.readData(); //读数据
            this.shortToast("连接成功");
            callback(true)
        } else {
            this.shortToast("连接失败");
            callback(false)
            try {
                btSocket.close();
                btSocket = null;
            } catch (e1) {
                console.error(e1);
            }
            return false;
        }
        return true;
    },
    /**
     * 断开连接设备
     * @param {Object} address
     * @return {Boolean}
     */
    disConnDevice() {
        if (btSocket != null) {
            this.closeBtSocket();
        }
        this.state.readThreadState = false;
        this.shortToast("断开连接成功");
    },
    /**
     * 断开连接设备
     * @param {Object} address
     * @return {Boolean}
     */
    closeBtSocket() {
        this.state.readThreadState = false;
        if (!btSocket) {
            return;
        }
        try {
            btSocket.close();
        } catch (e) {
            console.error(e);
            btSocket = null;
        }
    },
    /**
     * 取消发现
     */
    cancelDiscovery() {
        if (btAdapter.isDiscovering()) {
            btAdapter.cancelDiscovery();
        }
        if (btFindReceiver != null) {
            activity.unregisterReceiver(btFindReceiver);
            btFindReceiver = null;
        }
        this.state.discoveryDeviceState = false;
    },
    /**
     * 读取数据
     * @param {Object} activity
     * @param {Function} callback
     * @return {Boolean}
     */
    readData() {
        if (!btSocket) {
            this.shortToast("请先连接蓝牙设备!");
            return false;
        }
        try {
            btInStream = invoke(btSocket, "getInputStream");
            btOutStream = invoke(btSocket, "getOutputStream");
        } catch (e) {
            console.error(e);
            this.shortToast("创建输入输出流失败!");
            this.closeBtSocket();
            return false;
        }
        this.read();
        this.state.readThreadState = true;
        return true;
    },
    /**
     * 模拟java多线程读取数据
     */
    read() {
        let setTimeCount = 0;
        clearInterval(setIntervalId);
        setIntervalId = setInterval(() => {
            setTimeCount++;
            if (this.state.readThreadState) {
                let t = new Date().getTime();
                //心跳检测
                if (setTimeCount % 20 == 0) {
                    try {
                        // btOutStream.write([0b00]);
                    } catch (e) {
                        this.state.readThreadState = false;
                        this.options.connExceptionCallback && this.options.connExceptionCallback(e);
                    }
                }
                let dataArr = [];
                while (invoke(btInStream, "available") !== 0) {
                    let data = invoke(btInStream, "read");
                    dataArr.push(data);
                    let ct = new Date().getTime();
                    if (ct - t > 20) {
                        break;
                    }
                }
                if (dataArr.length > 0) {
                    this.options.readDataCallback && this.options.readDataCallback(dataArr);
                }
            }
        }, 40);
    },
    /**
     * 发送数据
     * @param {String} dataStr
     * @return {Boolean}
     */
    sendData(dataStr) {
        if (!btOutStream) {
            this.shortToast("创建输出流失败!");
            return;
        }
        let bytes = invoke(dataStr, 'getBytes', StandardCharsets.UTF_8);
        console.log(bytes);
        try {
            btOutStream.write(bytes);
 
        } catch (e) {
            return false;
        }
        return true;
    },
    sendByteData(byteData) {
        if (!btOutStream) {
            this.shortToast("创建输出流失败!");
            return;
        }
        try {
            btOutStream.write(byteData);
        } catch (e) {
            return false;
        }
        return true;
    }
}
 
export default blueToothTool