blob: c7d241b8607f38a771d19a24ef714dd766635371 [file] [log] [blame]
// Copyright 2022 Google LLC
//
// 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.
//! Data types shared between V0 and V1 advertisements
/// Power in dBm, calibrated as per
/// [Eddystone](https://github.com/google/eddystone/tree/master/eddystone-uid#tx-power)
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub struct TxPower {
/// Power in `[-100, 20]`
power: i8,
}
impl TxPower {
/// Power in `[-100, 20]`
pub fn as_i8(&self) -> i8 {
self.power
}
}
impl TryFrom<i8> for TxPower {
type Error = TxPowerOutOfRange;
fn try_from(value: i8) -> Result<Self, Self::Error> {
if !(-100..=20).contains(&value) {
Err(TxPowerOutOfRange)
} else {
Ok(TxPower { power: value })
}
}
}
/// Tx power was out of the valid range `[-100, 20]`.
#[derive(Debug, PartialEq, Eq)]
pub struct TxPowerOutOfRange;
/// MDP's context sync number, used to inform other devices that they have stale context.
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub struct ContextSyncSeqNum {
/// 4-bit sequence
num: u8,
}
impl ContextSyncSeqNum {
/// Returns the context seq num as a u8
pub fn as_u8(&self) -> u8 {
self.num
}
}
impl TryFrom<u8> for ContextSyncSeqNum {
type Error = ContextSyncSeqNumOutOfRange;
fn try_from(value: u8) -> Result<Self, Self::Error> {
// must only have low nibble
if value > 0x0F {
Err(ContextSyncSeqNumOutOfRange)
} else {
Ok(ContextSyncSeqNum { num: value })
}
}
}
/// Seq num must be in `[0-15]`.
#[derive(Debug, PartialEq, Eq)]
pub struct ContextSyncSeqNumOutOfRange;
#[allow(clippy::unwrap_used)]
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn tx_power_out_of_range() {
assert_eq!(TxPowerOutOfRange, TxPower::try_from(-101).unwrap_err());
assert_eq!(TxPowerOutOfRange, TxPower::try_from(21).unwrap_err());
}
#[test]
fn tx_power_ok() {
assert_eq!(-100, TxPower::try_from(-100).unwrap().power);
assert_eq!(20, TxPower::try_from(20).unwrap().power);
}
#[test]
fn context_sync_seq_num_out_of_range() {
assert_eq!(ContextSyncSeqNumOutOfRange, ContextSyncSeqNum::try_from(0x10).unwrap_err());
}
#[test]
fn context_sync_seq_num_ok() {
assert_eq!(0x0F, ContextSyncSeqNum::try_from(0x0F).unwrap().num);
}
}