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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
use super::events::{Code, Key};
use super::util::maybe_utf8;
use hex;
use serde_json::Value;
use std::error::Error;
use std::fmt;
#[derive(PartialEq)]
pub enum APIEvent {
Start,
AllocateCode(usize), InputCode,
InputHelperRefreshNameplates,
InputHelperChooseNameplate(String),
InputHelperChooseWords(String),
SetCode(Code),
Close,
Send(Vec<u8>),
}
impl fmt::Debug for APIEvent {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
use self::APIEvent::*;
let t = match *self {
Start => "Start".to_string(),
AllocateCode(ref num_words) => {
format!("AllocateCode({})", num_words)
}
InputCode => "InputCode".to_string(),
InputHelperRefreshNameplates => {
"InputHelperRefreshNameplates".to_string()
}
InputHelperChooseNameplate(ref nameplate) => {
format!("InputHelperChooseNameplate({})", nameplate)
}
InputHelperChooseWords(ref words) => {
format!("InputHelperChooseWords({})", words)
}
SetCode(ref code) => format!("SetCode({:?})", code),
Close => "Close".to_string(),
Send(ref msg) => format!("Send({})", maybe_utf8(msg)),
};
write!(f, "APIEvent::{}", t)
}
}
#[derive(Debug, PartialEq)]
pub enum InputHelperError {
Inactive,
MustChooseNameplateFirst,
AlreadyChoseNameplate,
AlreadyChoseWords,
}
impl fmt::Display for InputHelperError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match *self {
InputHelperError::Inactive => write!(f, "Inactive"),
InputHelperError::MustChooseNameplateFirst => {
write!(f, "Should Choose Nameplate first")
}
InputHelperError::AlreadyChoseNameplate => {
write!(f, "nameplate already chosen, can't go back")
}
InputHelperError::AlreadyChoseWords => {
write!(f, "Words are already chosen")
}
}
}
}
impl Error for InputHelperError {
fn description(&self) -> &str {
match *self {
InputHelperError::Inactive => "Input is not yet started",
InputHelperError::MustChooseNameplateFirst => {
"You should input name plate first!"
}
InputHelperError::AlreadyChoseNameplate => {
"Nameplate is already chosen, you can't go back!"
}
InputHelperError::AlreadyChoseWords => {
"Words are already chosen you can't go back!"
}
}
}
}
#[derive(Debug, PartialEq, Copy, Clone)]
pub enum Mood {
Happy,
Lonely,
Error,
Scared,
Unwelcome,
}
impl Mood {
fn to_protocol_string(self) -> String {
match self {
Mood::Happy => "happy".to_string(),
Mood::Lonely => "lonely".to_string(),
Mood::Error => "errory".to_string(),
Mood::Scared => "scary".to_string(),
Mood::Unwelcome => "unwelcome".to_string(),
}
}
}
impl fmt::Display for Mood {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.to_protocol_string())
}
}
#[derive(PartialEq)]
pub enum APIAction {
GotWelcome(Value),
GotCode(Code), GotUnverifiedKey(Key),
GotVerifier(Vec<u8>),
GotVersions(Value),
GotMessage(Vec<u8>),
GotClosed(Mood),
}
impl fmt::Debug for APIAction {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
use self::APIAction::*;
let t = match *self {
GotWelcome(ref welcome) => format!("GotWelcome({:?})", welcome),
GotCode(ref code) => format!("GotCode({:?})", code),
GotUnverifiedKey(ref _key) => {
"GotUnverifiedKey(REDACTED)".to_string()
}
GotVerifier(ref v) => format!("GotVerifier({})", hex::encode(v)),
GotVersions(ref versions) => format!("GotVersions({:?})", versions),
GotMessage(ref msg) => format!("GotMessage({})", maybe_utf8(msg)),
GotClosed(ref mood) => format!("GotClosed({:?})", mood),
};
write!(f, "APIAction::{}", t)
}
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub struct TimerHandle {
id: u32,
}
impl TimerHandle {
pub fn new(id: u32) -> TimerHandle {
TimerHandle { id }
}
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub struct WSHandle {
id: u32,
}
impl WSHandle {
pub fn new(id: u32) -> WSHandle {
WSHandle { id }
}
}
#[derive(Debug, PartialEq)]
pub enum IOEvent {
TimerExpired(TimerHandle),
WebSocketConnectionMade(WSHandle),
WebSocketMessageReceived(WSHandle, String),
WebSocketConnectionLost(WSHandle),
}
#[derive(Debug, PartialEq)]
pub enum IOAction {
StartTimer(TimerHandle, f32),
CancelTimer(TimerHandle),
WebSocketOpen(WSHandle, String), WebSocketSendMessage(WSHandle, String),
WebSocketClose(WSHandle),
}
#[derive(Debug, PartialEq)]
pub enum Action {
IO(IOAction),
API(APIAction),
}
#[cfg_attr(tarpaulin, skip)]
#[cfg(test)]
mod test {
use super::*;
use serde_json::{json, Value};
#[test]
fn test_display() {
let w: Value = json!("howdy");
assert_eq!(
format!("{:?}", APIAction::GotWelcome(w)),
r#"APIAction::GotWelcome(String("howdy"))"#
);
assert_eq!(
format!("{:?}", APIAction::GotCode(Code("4-code".into()))),
r#"APIAction::GotCode(Code("4-code"))"#
);
assert_eq!(
format!(
"{:?}",
APIAction::GotUnverifiedKey(Key("secret_key".into()))
),
r#"APIAction::GotUnverifiedKey(REDACTED)"#
);
assert_eq!(
format!("{:?}", APIAction::GotVerifier("verf".into())),
r#"APIAction::GotVerifier(76657266)"#
);
let v: Value = json!("v1");
assert_eq!(
format!("{:?}", APIAction::GotVersions(v)),
r#"APIAction::GotVersions(String("v1"))"#
);
assert_eq!(
format!("{:?}", APIAction::GotMessage("howdy".into())),
r#"APIAction::GotMessage((s=howdy))"#
);
assert_eq!(
format!("{:?}", APIAction::GotClosed(Mood::Happy)),
r#"APIAction::GotClosed(Happy)"#
);
}
}