blob: 981db5951894b3245a9f185a742162b6575c249f [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
use anyhow::{format_err, Error};
use fidl_fuchsia_bluetooth_avdtp::PeerControllerProxy;
use fidl_fuchsia_bluetooth_gatt::{
AttributePermissions, Characteristic, Descriptor, ReadByTypeResult, SecurityRequirements,
ServiceInfo,
};
use fidl_fuchsia_bluetooth_sys::Peer;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
/// Handling different sessions.
/// Key is a generic id that is generated by the tool that is associated with a remote peer.
/// Value is the controller associated with the remote peer.
pub type PeerFactoryMap = HashMap<String, PeerControllerProxy>;
/// BleScan result type
/// TODO(fxbug.dev/875): Add support for RemoteDevices when clone() is implemented
#[derive(Serialize, Clone, Debug)]
pub struct BleScanResponse {
pub id: String,
pub name: String,
pub connectable: bool,
}
impl BleScanResponse {
pub fn new(id: String, name: String, connectable: bool) -> BleScanResponse {
BleScanResponse { id, name, connectable }
}
}
/// BleAdvertise result type (only uuid)
/// TODO(fxbug.dev/875): Add support for AdvertisingData when clone() is implemented
#[derive(Serialize, Clone, Debug)]
pub struct BleAdvertiseResponse {
pub name: Option<String>,
}
impl BleAdvertiseResponse {
pub fn new(name: Option<String>) -> BleAdvertiseResponse {
BleAdvertiseResponse { name }
}
}
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct SecurityRequirementsContainer {
pub encryption_required: bool,
pub authentication_required: bool,
pub authorization_required: bool,
}
impl SecurityRequirementsContainer {
pub fn new(info: Option<Box<SecurityRequirements>>) -> SecurityRequirementsContainer {
match info {
Some(s) => {
let sec = *s;
SecurityRequirementsContainer {
encryption_required: sec.encryption_required,
authentication_required: sec.authentication_required,
authorization_required: sec.authorization_required,
}
}
None => SecurityRequirementsContainer {
encryption_required: false,
authentication_required: false,
authorization_required: false,
},
}
}
}
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct AttributePermissionsContainer {
pub read: SecurityRequirementsContainer,
pub write: SecurityRequirementsContainer,
pub update: SecurityRequirementsContainer,
}
impl AttributePermissionsContainer {
pub fn new(
info: Option<Box<AttributePermissions>>,
) -> Result<AttributePermissionsContainer, Error> {
match info {
Some(p) => {
let perm = *p;
Ok(AttributePermissionsContainer {
read: SecurityRequirementsContainer::new(perm.read),
write: SecurityRequirementsContainer::new(perm.write),
update: SecurityRequirementsContainer::new(perm.update),
})
}
None => return Err(format_err!("Unable to get information of AttributePermissions.")),
}
}
}
// Discover Characteristic response to hold characteristic info
// as Characteristics are not serializable.
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct GattcDiscoverDescriptorResponse {
pub id: u64,
pub permissions: Option<AttributePermissionsContainer>,
pub uuid_type: String,
}
impl GattcDiscoverDescriptorResponse {
pub fn new(info: Vec<Descriptor>) -> Vec<GattcDiscoverDescriptorResponse> {
let mut res = Vec::new();
for v in info {
let copy = GattcDiscoverDescriptorResponse {
id: v.id,
permissions: match AttributePermissionsContainer::new(v.permissions) {
Ok(n) => Some(n),
Err(_) => None,
},
uuid_type: v.type_,
};
res.push(copy)
}
res
}
}
// Discover Characteristic response to hold characteristic info
// as Characteristics are not serializable.
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct GattcDiscoverCharacteristicResponse {
pub id: u64,
pub properties: u32,
pub permissions: Option<AttributePermissionsContainer>,
pub uuid_type: String,
pub descriptors: Vec<GattcDiscoverDescriptorResponse>,
}
impl GattcDiscoverCharacteristicResponse {
pub fn new(info: Vec<Characteristic>) -> Vec<GattcDiscoverCharacteristicResponse> {
let mut res = Vec::new();
for v in info {
let copy = GattcDiscoverCharacteristicResponse {
id: v.id,
properties: v.properties,
permissions: match AttributePermissionsContainer::new(v.permissions) {
Ok(n) => Some(n),
Err(_) => None,
},
uuid_type: v.type_,
descriptors: {
match v.descriptors {
Some(d) => GattcDiscoverDescriptorResponse::new(d),
None => Vec::new(),
}
},
};
res.push(copy)
}
res
}
}
/// BleConnectPeripheral response (aka ServiceInfo)
/// TODO(fxbug.dev/875): Add support for ServiceInfo when clone(), serialize(), derived
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct BleConnectPeripheralResponse {
pub id: u64,
pub primary: bool,
pub uuid_type: String,
}
impl BleConnectPeripheralResponse {
pub fn new(info: Vec<ServiceInfo>) -> Vec<BleConnectPeripheralResponse> {
let mut res = Vec::new();
for v in info {
let copy =
BleConnectPeripheralResponse { id: v.id, primary: v.primary, uuid_type: v.type_ };
res.push(copy)
}
res
}
}
#[derive(Clone, Debug, Serialize)]
pub struct SerializablePeer {
pub address: Option<[u8; 6]>,
pub appearance: Option<u32>,
pub device_class: Option<u32>,
pub id: Option<u64>,
pub name: Option<String>,
pub connected: Option<bool>,
pub bonded: Option<bool>,
pub rssi: Option<i8>,
pub services: Option<Vec<[u8; 16]>>,
pub technology: Option<u32>,
pub tx_power: Option<i8>,
}
impl From<&Peer> for SerializablePeer {
fn from(peer: &Peer) -> Self {
let services = match &peer.services {
Some(s) => {
let mut service_list = Vec::new();
for item in s {
service_list.push(item.value);
}
Some(service_list)
}
None => None,
};
SerializablePeer {
address: peer.address.map(|a| a.bytes),
appearance: peer.appearance.map(|a| a as u32),
device_class: peer.device_class.map(|d| d.value),
id: peer.id.map(|i| i.value),
name: peer.name.clone(),
connected: peer.connected,
bonded: peer.bonded,
rssi: peer.rssi,
services: services,
technology: peer.technology.map(|t| t as u32),
tx_power: peer.tx_power,
}
}
}
#[derive(Clone, Debug, Serialize)]
pub struct SerializableReadByTypeResult {
pub id: Option<u64>,
pub value: Option<Vec<u8>>,
}
impl SerializableReadByTypeResult {
pub fn new(result: &ReadByTypeResult) -> Self {
SerializableReadByTypeResult { id: result.id.clone(), value: result.value.clone() }
}
}