blob: 3deace7ec19ca340636dc1973d8966d1e80f2f95 [file] [log] [blame]
// Copyright 2022, The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! This module defines the parameters or responses of the UciManager's methods. Most of them are
//! re-exported from the uwb_uci_packets crate.
use std::collections::{hash_map::RandomState, HashMap};
use std::iter::FromIterator;
// Re-export enums and structs from uwb_uci_packets.
pub use uwb_uci_packets::{
AppConfigStatus, AppConfigTlv as RawAppConfigTlv, AppConfigTlvType, CapTlv, CapTlvType,
Controlee, ControleeStatus, ControleesV2, DeviceConfigId, DeviceConfigStatus, DeviceConfigTlv,
DeviceState, ExtendedAddressDlTdoaRangingMeasurement, ExtendedAddressOwrAoaRangingMeasurement,
ExtendedAddressTwoWayRangingMeasurement, GroupId, MessageType, MulticastUpdateStatusCode,
OwrAoaStatusCode, PowerStats, RangingMeasurementType, ReasonCode, ResetConfig, SessionState,
SessionType, ShortAddressDlTdoaRangingMeasurement, ShortAddressOwrAoaRangingMeasurement,
ShortAddressTwoWayRangingMeasurement, StatusCode, UciPacketPacket, UpdateMulticastListAction,
};
use crate::error::Error;
/// The type of the session identifier.
pub type SessionId = u32;
/// The type of the sub-session identifier.
pub type SubSessionId = u32;
/// Wrap the original AppConfigTlv type to redact the PII fields when logging.
#[derive(Clone, PartialEq)]
pub struct AppConfigTlv {
tlv: RawAppConfigTlv,
}
impl std::fmt::Debug for AppConfigTlv {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
static REDACTED_STR: &str = "redacted";
let mut ds = f.debug_struct("AppConfigTlv");
ds.field("cfg_id", &self.tlv.cfg_id);
if self.tlv.cfg_id == AppConfigTlvType::VendorId
|| self.tlv.cfg_id == AppConfigTlvType::StaticStsIv
{
ds.field("v", &REDACTED_STR);
} else {
ds.field("v", &self.tlv.v);
}
ds.finish()
}
}
impl AppConfigTlv {
/// Create a wrapper of uwb_uci_packets::AppConfigTlv.
///
/// The argument is the same as the uwb_uci_packets::AppConfigTlv's struct.
pub fn new(cfg_id: AppConfigTlvType, v: Vec<u8>) -> Self {
Self { tlv: RawAppConfigTlv { cfg_id, v } }
}
/// Consumes the outter wrapper type, returning the wrapped uwb_uci_packets::AppConfigTlv.
pub fn into_inner(self) -> RawAppConfigTlv {
self.tlv
}
}
impl From<RawAppConfigTlv> for AppConfigTlv {
fn from(tlv: RawAppConfigTlv) -> Self {
Self { tlv }
}
}
impl std::ops::Deref for AppConfigTlv {
type Target = RawAppConfigTlv;
fn deref(&self) -> &Self::Target {
&self.tlv
}
}
impl std::ops::DerefMut for AppConfigTlv {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.tlv
}
}
/// Compare if two AppConfigTlv array are equal. Convert the array to HashMap before comparing
/// because the order of TLV elements doesn't matter.
#[allow(dead_code)]
pub fn app_config_tlvs_eq(a: &[AppConfigTlv], b: &[AppConfigTlv]) -> bool {
app_config_tlvs_to_map(a) == app_config_tlvs_to_map(b)
}
fn app_config_tlvs_to_map(
tlvs: &[AppConfigTlv],
) -> HashMap<AppConfigTlvType, &Vec<u8>, RandomState> {
HashMap::from_iter(tlvs.iter().map(|config| (config.cfg_id, &config.v)))
}
/// Compare if two DeviceConfigTlv array are equal. Convert the array to HashMap before comparing
/// because the order of TLV elements doesn't matter.
#[allow(dead_code)]
pub fn device_config_tlvs_eq(a: &[DeviceConfigTlv], b: &[DeviceConfigTlv]) -> bool {
device_config_tlvs_to_map(a) == device_config_tlvs_to_map(b)
}
fn device_config_tlvs_to_map(
tlvs: &[DeviceConfigTlv],
) -> HashMap<DeviceConfigId, &Vec<u8>, RandomState> {
HashMap::from_iter(tlvs.iter().map(|config| (config.cfg_id, &config.v)))
}
/// The response of the UciManager::core_set_config() method.
#[derive(Debug, Clone, PartialEq)]
pub struct CoreSetConfigResponse {
/// The status code of the response.
pub status: StatusCode,
/// The status of each config TLV.
pub config_status: Vec<DeviceConfigStatus>,
}
/// The response of the UciManager::session_set_app_config() method.
#[derive(Debug, Clone, PartialEq)]
pub struct SetAppConfigResponse {
/// The status code of the response.
pub status: StatusCode,
/// The status of each config TLV.
pub config_status: Vec<AppConfigStatus>,
}
/// The response from UciManager::session_update_active_rounds_dt_tag() method.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct SessionUpdateActiveRoundsDtTagResponse {
/// The status code of the response.
pub status: StatusCode,
/// Indexes of unsuccessful ranging rounds.
pub ranging_round_indexes: Vec<u8>,
}
/// The country code struct that contains 2 uppercase ASCII characters.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct CountryCode([u8; 2]);
impl CountryCode {
/// Create a CountryCode instance.
pub fn new(code: &[u8; 2]) -> Option<Self> {
if !code[0].is_ascii_uppercase() || !code[1].is_ascii_uppercase() {
None
} else {
Some(Self(*code))
}
}
}
impl From<CountryCode> for [u8; 2] {
fn from(item: CountryCode) -> [u8; 2] {
item.0
}
}
impl TryFrom<String> for CountryCode {
type Error = Error;
fn try_from(item: String) -> Result<Self, Self::Error> {
let code = item.as_bytes().try_into().map_err(|_| Error::BadParameters)?;
Self::new(code).ok_or(Error::BadParameters)
}
}
/// The response of the UciManager::core_get_device_info() method.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct GetDeviceInfoResponse {
/// The UCI version.
pub uci_version: u16,
/// The MAC version.
pub mac_version: u16,
/// The physical version.
pub phy_version: u16,
/// The UCI test version.
pub uci_test_version: u16,
/// The vendor spec info.
pub vendor_spec_info: Vec<u8>,
}
/// The raw UCI message for the vendor commands.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct RawUciMessage {
/// The group id of the message.
pub gid: u32,
/// The opcode of the message.
pub oid: u32,
/// The payload of the message.
pub payload: Vec<u8>,
}
impl From<UciPacketPacket> for RawUciMessage {
fn from(packet: UciPacketPacket) -> Self {
Self {
gid: packet.get_group_id() as u32,
oid: packet.get_opcode() as u32,
payload: packet.to_raw_payload(),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_redacted_app_config_tlv() {
// The value of VendorId and StaticStsIv should be redacted.
let tlv = AppConfigTlv::new(AppConfigTlvType::VendorId, vec![12, 34]);
let format_str = format!("{tlv:?}");
assert!(format_str.contains("v: \"redacted\""));
let tlv = AppConfigTlv::new(AppConfigTlvType::StaticStsIv, vec![12, 34]);
let format_str = format!("{tlv:?}");
assert!(format_str.contains("v: \"redacted\""));
// The value of DeviceType should be printed normally.
let tlv = AppConfigTlv::new(AppConfigTlvType::DeviceType, vec![12, 34]);
let format_str = format!("{tlv:?}");
assert_eq!(format_str, "AppConfigTlv { cfg_id: DeviceType, v: [12, 34] }");
}
}