use fidl_fuchsia_bluetooth as fidl;
use fuchsia_inspect_contrib::log::WriteInspect;
use std::fmt;
use crate::error::Error;
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq)]
pub enum Address {
Public(AddressBytes),
Random(AddressBytes),
}
const NUM_ADDRESS_BYTES: usize = 6;
pub type AddressBytes = [u8; NUM_ADDRESS_BYTES];
fn addr_to_string(bytes: &AddressBytes) -> String {
format!(
"{:02X}:{:02X}:{:02X}:{:02X}:{:02X}:{:02X}",
bytes[5], bytes[4], bytes[3], bytes[2], bytes[1], bytes[0]
)
}
pub fn addresses_to_custom_string(addresses: &Vec<Address>, separator: &str) -> String {
addresses.iter().map(|addr| format!("{}", addr)).collect::<Vec<String>>().join(separator)
}
impl Address {
fn to_fidl(&self) -> fidl::Address {
match self {
Address::Public(b) => {
fidl::Address { type_: fidl::AddressType::Public, bytes: b.clone() }
}
Address::Random(b) => {
fidl::Address { type_: fidl::AddressType::Random, bytes: b.clone() }
}
}
}
pub fn public_from_str(s: &str) -> Result<Address, Error> {
Ok(Address::Public(le_bytes_from_be_str(s)?))
}
pub fn random_from_str(s: &str) -> Result<Address, Error> {
Ok(Address::Random(le_bytes_from_be_str(s)?))
}
pub fn address_type_string(&self) -> String {
match self {
Address::Public(_) => "public".to_string(),
Address::Random(_) => "random".to_string(),
}
}
pub fn as_hex_string(&self) -> String {
addr_to_string(self.bytes())
}
pub fn bytes(&self) -> &AddressBytes {
match self {
Address::Public(b) => b,
Address::Random(b) => b,
}
}
}
impl PartialEq<str> for Address {
fn eq(&self, other: &str) -> bool {
match le_bytes_from_be_str(other) {
Err(_) => false,
Ok(bytes) => &bytes == self.bytes(),
}
}
}
fn le_bytes_from_be_str(s: &str) -> Result<AddressBytes, Error> {
let mut bytes = [0; 6];
let mut insert_cursor = 6; for octet in s.split(|c| c == ':') {
if insert_cursor == 0 {
return Err(Error::other("too many octets in Address string"));
}
bytes[insert_cursor - 1] = u8::from_str_radix(octet, 16).map_err(Error::external)?;
insert_cursor -= 1;
}
if insert_cursor != 0 {
return Err(Error::other("too few octets in Address string"));
}
Ok(bytes)
}
impl From<&fidl::Address> for Address {
fn from(src: &fidl::Address) -> Address {
match src.type_ {
fidl::AddressType::Public => Address::Public(src.bytes.clone()),
fidl::AddressType::Random => Address::Random(src.bytes.clone()),
}
}
}
impl From<fidl::Address> for Address {
fn from(src: fidl::Address) -> Address {
Address::from(&src)
}
}
impl Into<fidl::Address> for Address {
fn into(self) -> fidl::Address {
self.to_fidl()
}
}
impl Into<fidl::Address> for &Address {
fn into(self) -> fidl::Address {
self.to_fidl()
}
}
impl fmt::Display for Address {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(fmt, "[address ({}) {}]", self.address_type_string(), addr_to_string(self.bytes()))
}
}
impl WriteInspect for Address {
fn write_inspect(
&self,
writer: &fuchsia_inspect::Node,
key: impl Into<fuchsia_inspect::StringReference>,
) {
writer.record_string(key, self.to_string());
}
}
pub(crate) mod proptest_util {
use super::*;
use proptest::prelude::*;
pub fn any_public_address() -> impl Strategy<Value = Address> {
any::<[u8; 6]>().prop_map(Address::Public)
}
pub fn any_random_address() -> impl Strategy<Value = Address> {
any::<[u8; 6]>().prop_map(Address::Random)
}
pub fn any_address() -> impl Strategy<Value = Address> {
prop_oneof![any_public_address(), any_random_address()]
}
}
#[cfg(test)]
mod tests {
use super::proptest_util::*;
use super::*;
use assert_matches::assert_matches;
use proptest::prelude::*;
proptest! {
#[test]
fn public_address_str_roundtrip(address in any_public_address()) {
let str_rep = addr_to_string(address.bytes());
assert_eq!(
Address::public_from_str(&str_rep).map_err(|e| e.to_string()),
Ok(address),
);
}
#[test]
fn random_address_str_roundtrip(address in any_random_address()) {
let str_rep = addr_to_string(address.bytes());
assert_eq!(
Address::random_from_str(&str_rep).map_err(|e| e.to_string()),
Ok(address),
);
}
#[test]
fn any_address_fidl_roundtrip(address in any_address()) {
let fidl_address: fidl::Address = address.into();
assert_eq!(address, Address::from(fidl_address));
}
}
#[test]
fn address_to_string() {
let address = Address::Public([0x01, 0x02, 0x03, 0xDD, 0xEE, 0xFF]);
assert_eq!("[address (public) FF:EE:DD:03:02:01]", address.to_string());
}
#[test]
fn address_from_string_too_few_octets() {
let str_rep = "01:02:03:04:05";
let parsed = Address::public_from_str(&str_rep);
assert_matches!(parsed, Err(Error::Other(_)));
}
#[test]
fn address_from_string_too_many_octets() {
let str_rep = "01:02:03:04:05:06:07";
let parsed = Address::public_from_str(&str_rep);
assert_matches!(parsed, Err(Error::Other(_)));
}
#[test]
fn address_from_string_non_hex_chars() {
let str_rep = "01:02:03:04:05:0G";
let parsed = Address::public_from_str(&str_rep);
assert_matches!(parsed, Err(Error::Other(_)));
}
#[test]
fn public_address_from_fidl() {
let fidl_address =
fidl::Address { type_: fidl::AddressType::Public, bytes: [1, 2, 3, 4, 5, 6] };
let address: Address = fidl_address.into();
assert_eq!(Address::Public([1, 2, 3, 4, 5, 6]), address);
}
#[test]
fn random_address_from_fidl() {
let fidl_address =
fidl::Address { type_: fidl::AddressType::Random, bytes: [1, 2, 3, 4, 5, 6] };
let address: Address = fidl_address.into();
assert_eq!(Address::Random([1, 2, 3, 4, 5, 6]), address);
}
#[test]
fn public_address_into_fidl() {
let address = Address::Public([1, 2, 3, 4, 5, 6]);
let fidl_address: fidl::Address = address.into();
assert_eq!(fidl::AddressType::Public, fidl_address.type_);
assert_eq!([1, 2, 3, 4, 5, 6], fidl_address.bytes);
}
#[test]
fn random_address_into_fidl() {
let address = Address::Random([1, 2, 3, 4, 5, 6]);
let fidl_address: fidl::Address = address.into();
assert_eq!(fidl::AddressType::Random, fidl_address.type_);
assert_eq!([1, 2, 3, 4, 5, 6], fidl_address.bytes);
}
}