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
use std::fmt;
use std::sync::{atomic, Arc};
use crate::core::futures::sync::mpsc;
use crate::core::{self, futures};
use crate::server_utils::{session, tokio::runtime::TaskExecutor};
use crate::ws;
use crate::error;
use crate::Origin;
#[derive(Clone)]
pub struct Sender {
out: ws::Sender,
active: Arc<atomic::AtomicBool>,
}
impl Sender {
pub fn new(out: ws::Sender, active: Arc<atomic::AtomicBool>) -> Self {
Sender { out, active }
}
fn check_active(&self) -> error::Result<()> {
if self.active.load(atomic::Ordering::SeqCst) {
Ok(())
} else {
Err(error::Error::ConnectionClosed)
}
}
pub fn send<M>(&self, msg: M) -> error::Result<()>
where
M: Into<ws::Message>,
{
self.check_active()?;
self.out.send(msg)?;
Ok(())
}
pub fn broadcast<M>(&self, msg: M) -> error::Result<()>
where
M: Into<ws::Message>,
{
self.check_active()?;
self.out.broadcast(msg)?;
Ok(())
}
pub fn close(&self, code: ws::CloseCode) -> error::Result<()> {
self.check_active()?;
self.out.close(code)?;
Ok(())
}
}
pub struct RequestContext {
pub session_id: session::SessionId,
pub origin: Option<Origin>,
pub protocols: Vec<String>,
pub out: Sender,
pub executor: TaskExecutor,
}
impl RequestContext {
pub fn sender(&self) -> mpsc::Sender<String> {
let out = self.out.clone();
let (sender, receiver) = mpsc::channel(1);
self.executor.spawn(SenderFuture(out, receiver));
sender
}
}
impl fmt::Debug for RequestContext {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_struct("RequestContext")
.field("session_id", &self.session_id)
.field("origin", &self.origin)
.field("protocols", &self.protocols)
.finish()
}
}
pub trait MetaExtractor<M: core::Metadata>: Send + Sync + 'static {
fn extract(&self, _context: &RequestContext) -> M;
}
impl<M, F> MetaExtractor<M> for F
where
M: core::Metadata,
F: Fn(&RequestContext) -> M + Send + Sync + 'static,
{
fn extract(&self, context: &RequestContext) -> M {
(*self)(context)
}
}
#[derive(Debug, Clone)]
pub struct NoopExtractor;
impl<M: core::Metadata + Default> MetaExtractor<M> for NoopExtractor {
fn extract(&self, _context: &RequestContext) -> M {
M::default()
}
}
struct SenderFuture(Sender, mpsc::Receiver<String>);
impl futures::Future for SenderFuture {
type Item = ();
type Error = ();
fn poll(&mut self) -> futures::Poll<Self::Item, Self::Error> {
use self::futures::Stream;
loop {
let item = self.1.poll()?;
match item {
futures::Async::NotReady => {
return Ok(futures::Async::NotReady);
}
futures::Async::Ready(None) => {
return Ok(futures::Async::Ready(()));
}
futures::Async::Ready(Some(val)) => {
if let Err(e) = self.0.send(val) {
warn!("Error sending a subscription update: {:?}", e);
return Ok(futures::Async::Ready(()));
}
}
}
}
}
}