Skip to content

Commit 4dc1491

Browse files
committed
ios: parse json product info
So the backend knows what kind of product/version the product is, analoguous to the USB HID descriptor info.
1 parent be8c848 commit 4dc1491

File tree

2 files changed

+35
-16
lines changed

2 files changed

+35
-16
lines changed

frontends/ios/BitBoxApp/BitBoxApp/BitBoxAppApp.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ class GoEnvironment: NSObject, MobileserverGoEnvironmentInterfaceProtocol, UIDoc
6868
return nil
6969
}
7070

71-
let productStr = bluetoothManager.productStr();
72-
if productStr == "" || productStr == "no connection" {
71+
let productInfo = bluetoothManager.parseProduct();
72+
guard let productInfo = productInfo else {
7373
// Not ready or explicitly not connected (waiting for the device to enter
7474
// firmware or bootloader)
7575
return nil
7676
}
77-
return BluetoothDeviceInfo(bluetoothManager: bluetoothManager)
77+
return BluetoothDeviceInfo(bluetoothManager: bluetoothManager, productInfo: productInfo)
7878
}
7979

8080
func nativeLocale() -> String {

frontends/ios/BitBoxApp/BitBoxApp/Bluetooth.swift

+32-13
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@
88
import CoreBluetooth
99
import Mobileserver
1010

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+
1122
struct State {
1223
var bluetoothAvailable: Bool
1324
var discoveredPeripherals: [UUID: PeripheralMetadata]
@@ -32,7 +43,7 @@ var pairedDeviceIdentifiers: Set<String> {
3243

3344
class BluetoothManager: NSObject, ObservableObject, CBCentralManagerDelegate, CBPeripheralDelegate {
3445
private var state: State = State(bluetoothAvailable: false, discoveredPeripherals: [:], connecting: false)
35-
46+
3647
var centralManager: CBCentralManager!
3748
var connectedPeripheral: CBPeripheral?
3849
var pWriter: CBCharacteristic?
@@ -82,7 +93,7 @@ class BluetoothManager: NSObject, ObservableObject, CBCentralManagerDelegate, CB
8293
func centralManagerDidUpdateState(_ central: CBCentralManager) {
8394
state.bluetoothAvailable = centralManager.state == .poweredOn
8495
updateBackendState()
85-
96+
8697
switch central.state {
8798
case .poweredOn:
8899
print("BLE: on")
@@ -229,8 +240,8 @@ class BluetoothManager: NSObject, ObservableObject, CBCentralManagerDelegate, CB
229240
// Signal the semaphore to unblock `readBlocking`
230241
semaphore.signal()
231242
}
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()))")
234245
// Invoke device manager to scan now, which will make it detect the device being connected
235246
// (or disconnected, in case the product string indicates that) now instead of waiting for
236247
// the next scan.
@@ -271,14 +282,20 @@ class BluetoothManager: NSObject, ObservableObject, CBCentralManagerDelegate, CB
271282
return data
272283
}
273284

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
277289
}
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
280298
}
281-
return String(data: value, encoding: .utf8) ?? ""
282299
}
283300

284301
// Encode the Bluetooth state as JSON so it can be sent to the backend-
@@ -335,9 +352,11 @@ class BluetoothManager: NSObject, ObservableObject, CBCentralManagerDelegate, CB
335352
// product, version, etc.
336353
class BluetoothDeviceInfo: NSObject, MobileserverGoDeviceInfoInterfaceProtocol {
337354
private let bluetoothManager: BluetoothManager
355+
private let productInfo: ProductInfo
338356

339-
init(bluetoothManager: BluetoothManager) {
357+
init(bluetoothManager: BluetoothManager, productInfo: ProductInfo) {
340358
self.bluetoothManager = bluetoothManager
359+
self.productInfo = productInfo
341360
super.init()
342361

343362
}
@@ -360,7 +379,7 @@ class BluetoothDeviceInfo: NSObject, MobileserverGoDeviceInfoInterfaceProtocol {
360379

361380
func product() -> String {
362381
// TODO: return bluetoothManager.productStr() and have the backend identify and handle it
363-
return "BitBox02BTC"
382+
return productInfo.product
364383
}
365384

366385
func vendorID() -> Int {
@@ -372,7 +391,7 @@ class BluetoothDeviceInfo: NSObject, MobileserverGoDeviceInfoInterfaceProtocol {
372391
}
373392

374393
func serial() -> String {
375-
return "v9.21.0"
394+
return "v" + productInfo.version
376395
}
377396

378397
func usagePage() -> Int {

0 commit comments

Comments
 (0)