openthread/ot/
border_agent.rs

1// Copyright 2022 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use crate::prelude_internal::*;
6use num::FromPrimitive;
7
8/// Represents the thread joiner state.
9///
10/// Functional equivalent of [`otsys::otJoinerState`](crate::otsys::otJoinerState).
11#[derive(
12    Debug,
13    Copy,
14    Clone,
15    Eq,
16    Ord,
17    PartialOrd,
18    PartialEq,
19    num_derive::FromPrimitive,
20    num_derive::ToPrimitive,
21)]
22pub enum BorderAgentEphemeralKeyState {
23    /// Functional equivalent of [`otsys::OT_BORDER_AGENT_STATE_DISABLED`](crate::otsys::OT_BORDER_AGENT_STATE_DISABLED).
24    Disabled = OT_BORDER_AGENT_STATE_DISABLED as isize,
25
26    /// Functional equivalent of [`otsys::OT_BORDER_AGENT_STATE_STOPPED`](crate::otsys::OT_BORDER_AGENT_STATE_STOPPED).
27    Stopped = OT_BORDER_AGENT_STATE_STOPPED as isize,
28
29    /// Functional equivalent of [`otsys::OT_BORDER_AGENT_STATE_STARTED`](crate::otsys::OT_BORDER_AGENT_STATE_STARTED).
30    Started = OT_BORDER_AGENT_STATE_STARTED as isize,
31
32    /// Functional equivalent of [`otsys::OT_BORDER_AGENT_STATE_CONNECTED`](crate::otsys::OT_BORDER_AGENT_STATE_CONNECTED).
33    Connected = OT_BORDER_AGENT_STATE_CONNECTED as isize,
34
35    /// Functional equivalent of [`otsys::OT_BORDER_AGENT_STATE_ACCEPTED`](crate::otsys::OT_BORDER_AGENT_STATE_ACCEPTED).
36    Accepted = OT_BORDER_AGENT_STATE_ACCEPTED as isize,
37}
38
39impl From<otBorderAgentEphemeralKeyState> for BorderAgentEphemeralKeyState {
40    fn from(x: otBorderAgentEphemeralKeyState) -> Self {
41        Self::from_u32(x)
42            .unwrap_or_else(|| panic!("Unknown otBorderAgentEphemeralKeyState value: {x}"))
43    }
44}
45
46impl From<BorderAgentEphemeralKeyState> for otBorderAgentEphemeralKeyState {
47    fn from(x: BorderAgentEphemeralKeyState) -> Self {
48        x as otBorderAgentEphemeralKeyState
49    }
50}
51
52/// Methods from the [OpenThread "Border Agent" Module][1].
53///
54/// [1]: https://openthread.io/reference/group/api-border-agent
55pub trait BorderAgent {
56    /// Functional equivalent of
57    /// [`otsys::otBorderAgentGetState`](crate::otsys::otBorderAgentGetState).
58    fn border_agent_is_active(&self) -> bool;
59
60    /// Functional equivalent of
61    /// [`otsys::otBorderAgentUdpPort`](crate::otsys::otBorderAgentGetUdpPort).
62    fn border_agent_get_udp_port(&self) -> u16;
63}
64
65impl<T: BorderAgent + Boxable> BorderAgent for ot::Box<T> {
66    fn border_agent_is_active(&self) -> bool {
67        self.as_ref().border_agent_is_active()
68    }
69
70    fn border_agent_get_udp_port(&self) -> u16 {
71        self.as_ref().border_agent_get_udp_port()
72    }
73}
74
75impl BorderAgent for Instance {
76    fn border_agent_is_active(&self) -> bool {
77        unsafe { otBorderAgentIsActive(self.as_ot_ptr()) }
78    }
79
80    fn border_agent_get_udp_port(&self) -> u16 {
81        unsafe { otBorderAgentGetUdpPort(self.as_ot_ptr()) }
82    }
83}