1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#[cfg(test)]
mod state_test;

use std::fmt;

// ConnectionState is an enum showing the state of a ICE Connection
// List of supported States
#[derive(Debug, Copy, Clone, PartialEq)]
pub enum ConnectionState {
    Unspecified,

    // ConnectionStateNew ICE agent is gathering addresses
    New,

    // ConnectionStateChecking ICE agent has been given local and remote candidates, and is attempting to find a match
    Checking,

    // ConnectionStateConnected ICE agent has a pairing, but is still checking other pairs
    Connected,

    // ConnectionStateCompleted ICE agent has finished
    Completed,

    // ConnectionStateFailed ICE agent never could successfully connect
    Failed,

    // ConnectionStateDisconnected ICE agent connected successfully, but has entered a failed state
    Disconnected,

    // ConnectionStateClosed ICE agent has finished and is no longer handling requests
    Closed,
}

impl Default for ConnectionState {
    fn default() -> Self {
        ConnectionState::Unspecified
    }
}

impl fmt::Display for ConnectionState {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let s = match *self {
            ConnectionState::Unspecified => "Unspecified",
            ConnectionState::New => "New",
            ConnectionState::Checking => "Checking",
            ConnectionState::Connected => "Connected",
            ConnectionState::Completed => "Completed",
            ConnectionState::Failed => "Failed",
            ConnectionState::Disconnected => "Disconnected",
            ConnectionState::Closed => "Closed",
        };
        write!(f, "{}", s)
    }
}

// GatheringState describes the state of the candidate gathering process
#[derive(PartialEq, Copy, Clone)]
pub enum GatheringState {
    Unspecified,

    // GatheringStateNew indicates candidate gathering is not yet started
    New,

    // GatheringStateGathering indicates candidate gathering is ongoing
    Gathering,

    // GatheringStateComplete indicates candidate gathering has been completed
    Complete,
}

impl From<u8> for GatheringState {
    fn from(v: u8) -> Self {
        match v {
            1 => GatheringState::New,
            2 => GatheringState::Gathering,
            3 => GatheringState::Complete,
            _ => GatheringState::Unspecified,
        }
    }
}

impl Default for GatheringState {
    fn default() -> Self {
        GatheringState::Unspecified
    }
}

impl fmt::Display for GatheringState {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let s = match *self {
            GatheringState::New => "new",
            GatheringState::Gathering => "gathering",
            GatheringState::Complete => "complete",
            GatheringState::Unspecified => "unspecified",
        };
        write!(f, "{}", s)
    }
}