8
8
import CoreBluetooth
9
9
import Mobileserver
10
10
11
+ struct ProductInfo : Codable {
12
+ let product : String
13
+ let version : String
14
+
15
+ // map struct fields to json keys
16
+ enum CodingKeys : String , CodingKey {
17
+ case product = " p "
18
+ case version = " v "
19
+ }
20
+ }
21
+
11
22
struct State {
12
23
var bluetoothAvailable : Bool
13
24
var discoveredPeripherals : [ UUID : PeripheralMetadata ]
@@ -32,7 +43,7 @@ var pairedDeviceIdentifiers: Set<String> {
32
43
33
44
class BluetoothManager : NSObject , ObservableObject , CBCentralManagerDelegate , CBPeripheralDelegate {
34
45
private var state : State = State ( bluetoothAvailable: false , discoveredPeripherals: [ : ] , connecting: false )
35
-
46
+
36
47
var centralManager : CBCentralManager !
37
48
var connectedPeripheral : CBPeripheral ?
38
49
var pWriter : CBCharacteristic ?
@@ -82,7 +93,7 @@ class BluetoothManager: NSObject, ObservableObject, CBCentralManagerDelegate, CB
82
93
func centralManagerDidUpdateState( _ central: CBCentralManager ) {
83
94
state. bluetoothAvailable = centralManager. state == . poweredOn
84
95
updateBackendState ( )
85
-
96
+
86
97
switch central. state {
87
98
case . poweredOn:
88
99
print ( " BLE: on " )
@@ -229,8 +240,8 @@ class BluetoothManager: NSObject, ObservableObject, CBCentralManagerDelegate, CB
229
240
// Signal the semaphore to unblock `readBlocking`
230
241
semaphore. signal ( )
231
242
}
232
- if characteristic == pProduct, let val = characteristic . value {
233
- print ( " BLE: product changed: \( val ) " )
243
+ if characteristic == pProduct {
244
+ print ( " BLE: product changed: \( String ( describing : parseProduct ( ) ) ) " )
234
245
// Invoke device manager to scan now, which will make it detect the device being connected
235
246
// (or disconnected, in case the product string indicates that) now instead of waiting for
236
247
// the next scan.
@@ -271,14 +282,20 @@ class BluetoothManager: NSObject, ObservableObject, CBCentralManagerDelegate, CB
271
282
return data
272
283
}
273
284
274
- func productStr( ) -> String {
275
- guard let pProduct = self . pProduct else {
276
- return " "
285
+ func parseProduct( ) -> ProductInfo ? {
286
+ guard let pProduct = self . pProduct,
287
+ let value = pProduct. value else {
288
+ return nil
277
289
}
278
- guard let value = pProduct. value else {
279
- return " "
290
+
291
+ do {
292
+ let decoder = JSONDecoder ( )
293
+ let productInfo = try decoder. decode ( ProductInfo . self, from: value)
294
+ return productInfo
295
+ } catch {
296
+ print ( " BLE: Failed to parse product JSON: \( error) " )
297
+ return nil
280
298
}
281
- return String ( data: value, encoding: . utf8) ?? " "
282
299
}
283
300
284
301
// Encode the Bluetooth state as JSON so it can be sent to the backend-
@@ -335,9 +352,11 @@ class BluetoothManager: NSObject, ObservableObject, CBCentralManagerDelegate, CB
335
352
// product, version, etc.
336
353
class BluetoothDeviceInfo : NSObject , MobileserverGoDeviceInfoInterfaceProtocol {
337
354
private let bluetoothManager : BluetoothManager
355
+ private let productInfo : ProductInfo
338
356
339
- init ( bluetoothManager: BluetoothManager ) {
357
+ init ( bluetoothManager: BluetoothManager , productInfo : ProductInfo ) {
340
358
self . bluetoothManager = bluetoothManager
359
+ self . productInfo = productInfo
341
360
super. init ( )
342
361
343
362
}
@@ -360,7 +379,7 @@ class BluetoothDeviceInfo: NSObject, MobileserverGoDeviceInfoInterfaceProtocol {
360
379
361
380
func product( ) -> String {
362
381
// TODO: return bluetoothManager.productStr() and have the backend identify and handle it
363
- return " BitBox02BTC "
382
+ return productInfo . product
364
383
}
365
384
366
385
func vendorID( ) -> Int {
@@ -372,7 +391,7 @@ class BluetoothDeviceInfo: NSObject, MobileserverGoDeviceInfoInterfaceProtocol {
372
391
}
373
392
374
393
func serial( ) -> String {
375
- return " v9.21.0 "
394
+ return " v " + productInfo . version
376
395
}
377
396
378
397
func usagePage( ) -> Int {
0 commit comments