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
use crate::core;
use crate::core::futures::sync::mpsc;
use std::sync::Arc;
use crate::subscription::Session;
pub type TransportSender = mpsc::Sender<String>;
pub type TransportError = mpsc::SendError<String>;
pub type SinkResult = core::futures::sink::Send<TransportSender>;
pub trait PubSubMetadata: core::Metadata {
fn session(&self) -> Option<Arc<Session>>;
}
impl PubSubMetadata for Arc<Session> {
fn session(&self) -> Option<Arc<Session>> {
Some(self.clone())
}
}
impl<T: PubSubMetadata> PubSubMetadata for Option<T> {
fn session(&self) -> Option<Arc<Session>> {
self.as_ref().and_then(|s| s.session())
}
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum SubscriptionId {
Number(u64),
String(String),
}
impl SubscriptionId {
pub fn parse_value(val: &core::Value) -> Option<SubscriptionId> {
match *val {
core::Value::String(ref val) => Some(SubscriptionId::String(val.clone())),
core::Value::Number(ref val) => val.as_u64().map(SubscriptionId::Number),
_ => None,
}
}
}
impl From<String> for SubscriptionId {
fn from(other: String) -> Self {
SubscriptionId::String(other)
}
}
impl From<SubscriptionId> for core::Value {
fn from(sub: SubscriptionId) -> Self {
match sub {
SubscriptionId::Number(val) => core::Value::Number(val.into()),
SubscriptionId::String(val) => core::Value::String(val),
}
}
}
macro_rules! impl_from_num {
($num:ty) => {
impl From<$num> for SubscriptionId {
fn from(other: $num) -> Self {
SubscriptionId::Number(other.into())
}
}
};
}
impl_from_num!(u8);
impl_from_num!(u16);
impl_from_num!(u32);
impl_from_num!(u64);
#[cfg(test)]
mod tests {
use super::SubscriptionId;
use crate::core::Value;
#[test]
fn should_convert_between_number_value_and_subscription_id() {
let val = Value::Number(5.into());
let res = SubscriptionId::parse_value(&val);
assert_eq!(res, Some(SubscriptionId::Number(5)));
assert_eq!(Value::from(res.unwrap()), val);
}
#[test]
fn should_convert_between_string_value_and_subscription_id() {
let val = Value::String("asdf".into());
let res = SubscriptionId::parse_value(&val);
assert_eq!(res, Some(SubscriptionId::String("asdf".into())));
assert_eq!(Value::from(res.unwrap()), val);
}
#[test]
fn should_convert_between_null_value_and_subscription_id() {
let val = Value::Null;
let res = SubscriptionId::parse_value(&val);
assert_eq!(res, None);
}
#[test]
fn should_convert_from_u8_to_subscription_id() {
let val = 5u8;
let res: SubscriptionId = val.into();
assert_eq!(res, SubscriptionId::Number(5));
}
#[test]
fn should_convert_from_u16_to_subscription_id() {
let val = 5u16;
let res: SubscriptionId = val.into();
assert_eq!(res, SubscriptionId::Number(5));
}
#[test]
fn should_convert_from_u32_to_subscription_id() {
let val = 5u32;
let res: SubscriptionId = val.into();
assert_eq!(res, SubscriptionId::Number(5));
}
#[test]
fn should_convert_from_u64_to_subscription_id() {
let val = 5u64;
let res: SubscriptionId = val.into();
assert_eq!(res, SubscriptionId::Number(5));
}
#[test]
fn should_convert_from_string_to_subscription_id() {
let val = "String".to_string();
let res: SubscriptionId = val.into();
assert_eq!(res, SubscriptionId::String("String".to_string()));
}
}