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
use crate::member::Member;
use crate::poll::{Poll, Vote};
use crate::session::EstimateSession;
use crate::{Error, Result};
use serde::{Deserialize, Serialize};
use uuid::Uuid;
#[allow(variant_size_differences)]
#[derive(Debug, Serialize, Deserialize)]
pub enum ResponseMessage {
Hello {
u: Box<crate::profile::UserProfile>,
b: bool
},
ServerError {
reason: String,
content: String
},
Pong {
v: i64
},
SessionNotFound {
id: Uuid
},
SessionJoined {
session: Box<EstimateSession>,
members: Vec<Member>,
connected: Vec<Uuid>,
polls: Vec<Poll>,
votes: Vec<Vote>
},
SessionUpdate {
session: EstimateSession
},
MemberStatusUpdate {
user_id: Uuid,
connected: bool
},
MemberUpdate {
member: Member
},
PollUpdate {
poll: Poll
},
VoteUpdate {
vote: Vote
}
}
impl ResponseMessage {
pub fn from_json(s: &str) -> Result<ResponseMessage> {
serde_json::from_str(&s).map_err(|e| Error::from(format!("Can't decode json ResponseMessage: {}", e)))
}
pub fn to_json(&self) -> Result<String> {
serde_json::to_string_pretty(&self).map_err(|e| Error::from(format!("Can't encode json ResponseMessage: {}", e)))
}
pub fn from_binary(b: &[u8]) -> Result<ResponseMessage> {
bincode::deserialize(&b).map_err(|e| Error::from(format!("Can't decode binary ResponseMessage: {}", e)))
}
pub fn to_binary(&self) -> Result<Vec<u8>> {
bincode::serialize(&self).map_err(|e| Error::from(format!("Can't encode binary ResponseMessage: {}", e)))
}
}