-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBluetooth_Transfer_Protobuf.js
More file actions
355 lines (300 loc) · 10.4 KB
/
Copy pathBluetooth_Transfer_Protobuf.js
File metadata and controls
355 lines (300 loc) · 10.4 KB
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
/**
* Bluetooth class.
*/
class Bluetooth_Send_Protobuf {
/**
* Create preconfigured Bluetooth instance.
* @param {!(number|string)} [serviceUuid=0xFFE0] - Service UUID
* @param {!(number|string)} [characteristicUuid=0xFFE1] - Characteristic UUID
*/
constructor(serviceUuid = 0xFFE0, characteristicUuid = 0xFFE1) {
// Used private variables.
this._receiveBuffer = []; // Buffer containing not separated data.
this._maxCharacteristicValueLength = 20; // Max characteristic value length.
this._device = null; // Device object cache.
this._characteristic = null; // Characteristic object cache.
// Bound functions used to add and remove appropriate event handlers.
this._boundHandleDisconnection = this._handleDisconnection.bind(this);
this._boundHandleCharacteristicValueChanged =
this._handleCharacteristicValueChanged.bind(this);
// Configure with specified parameters.
this.setServiceUuid(serviceUuid);
this.setCharacteristicUuid(characteristicUuid);
}
/**
* Set number or string representing service UUID used.
* @param {!(number|string)} uuid - Service UUID
*/
setServiceUuid(uuid) {
if (!Number.isInteger(uuid) &&
!(typeof uuid === 'string' || uuid instanceof String)) {
throw new Error('UUID type is neither a number nor a string');
}
if (!uuid) {
throw new Error('UUID cannot be a null');
}
this._serviceUuid = uuid;
}
/**
* Set number or string representing characteristic UUID used.
* @param {!(number|string)} uuid - Characteristic UUID
*/
setCharacteristicUuid(uuid) {
if (!Number.isInteger(uuid) &&
!(typeof uuid === 'string' || uuid instanceof String)) {
throw new Error('UUID type is neither a number nor a string');
}
if (!uuid) {
throw new Error('UUID cannot be a null');
}
this._characteristicUuid = uuid;
}
/**
* Launch Bluetooth device chooser and connect to the selected device.
* @return {Promise} Promise which will be fulfilled when notifications will
* be started or rejected if something went wrong
*/
connect() {
return this._connectToDevice(this._device);
}
/**
* Disconnect from the connected device.
*/
disconnect() {
this._disconnectFromDevice(this._device);
if (this._characteristic) {
this._characteristic.removeEventListener('characteristicvaluechanged',
this._boundHandleCharacteristicValueChanged);
this._characteristic = null;
}
this._device = null;
}
/**
* Data receiving handler which called whenever the new data comes from
* the connected device, override it to handle incoming data.
* @param {string} data - Data
* @return {bool} true => Data complete reset buffer
*/
receive(data) {
// Handle incoming data.
}
/**
* Send data to the connected device.
* @param {Uint8Array} data - Data
* @return {Promise} Promise which will be fulfilled when data will be sent or
* rejected if something went wrong
*/
send(Data) {
// Return rejected promise immediately if Data is empty.
if (!Data) {
return Promise.reject('Data must be not empty');
}
let len = Math.ceil(Data.byteLength / this._maxCharacteristicValueLength);
let chunks = new Array(len);
for (let x = 0; x < len; x++) {
chunks[x] = Data.slice(x * this._maxCharacteristicValueLength, (x + 1) * this._maxCharacteristicValueLength);
}
let promise = this._writeToCharacteristic(this._characteristic, chunks[0]);
for (let x = 1; x < len; x++) {
promise = promise.then(() => new Promise((resolve, reject) => {
// Reject promise if the device has been disconnected.
if (!this._characteristic) {
reject('Device has been disconnected');
}
// Write chunk to the characteristic and resolve the promise.
this._writeToCharacteristic(this._characteristic, chunks[x]).
then(resolve).
catch(reject);
}));
}
/* // Return rejected promise immediately if there is no connected device.
if (!this._characteristic) {
return Promise.reject('There is no connected device');
}
let chunk = Data.slice(0, this._maxCharacteristicValueLength);
let promise = this._writeToCharacteristic(this._characteristic, chunk);
for (let x = this._maxCharacteristicValueLength; x < Data.byteLength; x += this._maxCharacteristicValueLength) {
chunk = Data.slice(x , (x + this._maxCharacteristicValueLength));
promise = promise.then(() => new Promise((resolve, reject) => {
// Reject promise if the device has been disconnected.
if (!this._characteristic) {
reject('Device has been disconnected');
}
// Write chunk to the characteristic and resolve the promise.
this._writeToCharacteristic(this._characteristic, chunk).
then(resolve).
catch(reject);
}));
}*/
return promise;
}
/**
* Get the connected device name.
* @return {string} Device name or empty string if not connected
*/
getDeviceName() {
if (!this._device) {
return '';
}
return this._device.name;
}
/*
* Connect to device.
* @param {Object} device
* @return {Promise}
* @private
*/
_connectToDevice(device) {
return (device ? Promise.resolve(device) : this._requestBluetoothDevice()).
then((device) => this._connectDeviceAndCacheCharacteristic(device)).
then((characteristic) => this._startNotifications(characteristic)).
catch((error) => {
this._log(error);
return Promise.reject(error);
});
}
/*
* Disconnect from device.
* @param {Object} device
* @private
*/
_disconnectFromDevice(device) {
if (!device) {
return;
}
this._log('Disconnecting from "' + device.name + '" bluetooth device...');
device.removeEventListener('gattserverdisconnected',
this._boundHandleDisconnection);
if (!device.gatt.connected) {
this._log('"' + device.name +
'" bluetooth device is already disconnected');
return;
}
device.gatt.disconnect();
this._log('"' + device.name + '" bluetooth device disconnected');
}
/*
* Request bluetooth device.
* @return {Promise}
* @private
*/
_requestBluetoothDevice() {
this._log('Requesting bluetooth device...');
return navigator.bluetooth.requestDevice({
filters: [{services: [this._serviceUuid]}],
}).
then((device) => {
this._log('"' + device.name + '" bluetooth device selected');
this._device = device; // Remember device.
this._device.addEventListener('gattserverdisconnected',
this._boundHandleDisconnection);
return this._device;
});
}
/*
* Connect device and cache characteristic.
* @param {Object} device
* @return {Promise}
* @private
*/
_connectDeviceAndCacheCharacteristic(device) {
// Check remembered characteristic.
if (device.gatt.connected && this._characteristic) {
return Promise.resolve(this._characteristic);
}
this._log('Connecting to GATT server...');
return device.gatt.connect().
then((server) => {
this._log('GATT server connected', 'Getting service...');
return server.getPrimaryService(this._serviceUuid);
}).
then((service) => {
this._log('Service found', 'Getting characteristic...');
return service.getCharacteristic(this._characteristicUuid);
}).
then((characteristic) => {
this._log('Characteristic found');
this._characteristic = characteristic; // Remember characteristic.
return this._characteristic;
});
}
/*
* Start notifications.
* @param {Object} characteristic
* @return {Promise}
* @private
*/
_startNotifications(characteristic) {
this._log('Starting notifications...');
return characteristic.startNotifications().
then(() => {
this._log('Notifications started');
characteristic.addEventListener('characteristicvaluechanged',
this._boundHandleCharacteristicValueChanged);
});
}
/*
* Stop notifications.
* @param {Object} characteristic
* @return {Promise}
* @private
*/
_stopNotifications(characteristic) {
this._log('Stopping notifications...');
return characteristic.stopNotifications().
then(() => {
this._log('Notifications stopped');
characteristic.removeEventListener('characteristicvaluechanged',
this._boundHandleCharacteristicValueChanged);
});
}
/*
* Handle disconnection.
* @param {Object} event
* @private
*/
_handleDisconnection(event) {
let device = event.target;
this._log('"' + device.name +
'" bluetooth device disconnected, trying to reconnect...');
this._connectDeviceAndCacheCharacteristic(device).
then((characteristic) => this._startNotifications(characteristic)).
catch((error) => this._log(error));
}
/*
* Handle characteristic value changed.
* @param {Object} event
* @private
*/
_handleCharacteristicValueChanged(event) {
for (var x = 0 ; x < event.target.value.byteLength; x++) {
this._receiveBuffer.push(event.target.value.getInt8(x));
}
if (this.receive(this._receiveBuffer) === true) {
this._receiveBuffer = [];
}
}
/*
* Write to characteristic.
* @param {Object} characteristic
* @param {string} data
* @return {Promise}
* @private
*/
_writeToCharacteristic(characteristic, data) {
return characteristic.writeValue(data);
}
/*
* Log.
* @param {Array} messages
* @private
*/
_log(...messages) {
console.log(...messages); // eslint-disable-line no-console
}
}
// Export class as a module to support requiring.
/* istanbul ignore next */
if (typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports = BluetoothTerminal;
}