-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent.rs
117 lines (109 loc) · 3.57 KB
/
event.rs
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
/// Server-Sent Events (SSE)
/// - <https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events>
/// - <https://html.spec.whatwg.org/multipage/server-sent-events.html#server-sent-events>
use crate::util::escape_and_elide;
use futures_lite::FutureExt;
use safina::sync::SyncSender;
use std::io::{Read, Write};
use std::pin::Pin;
use std::task::{Context, Poll};
#[derive(Clone, Debug, Eq, Hash, Ord, PartialOrd, PartialEq)]
pub enum Event {
/// Message(data)
Message(String),
/// `Custom(event_type, data)`
///
/// Use [`Event::custom`] to make this variant.
Custom(String, String),
}
impl Event {
/// # Errors
/// Returns an error when `event` contains newlines.
pub fn custom(event_type: impl AsRef<str>, data: String) -> Result<Self, String> {
if event_type.as_ref().contains('\r') || event_type.as_ref().contains('\n') {
Err(format!(
"Event::message called with `event_type` containing newlines: {}",
escape_and_elide(event_type.as_ref().as_bytes(), 100)
))
} else {
Ok(Self::Custom(event_type.as_ref().to_string(), data))
}
}
/// # Errors
/// Returns `ErrorKind::WriteZero` when `buf` is not big enough to hold the event data.
#[allow(clippy::write_with_newline)]
pub fn write_to(&self, mut buf: &mut [u8]) -> Result<usize, std::io::Error> {
let original_buf_len = buf.len();
let data = match self {
Event::Message(data) => data,
Event::Custom(event_type, data) => {
write!(buf, "event: {event_type}\n")?;
data
}
};
for line in data.lines() {
write!(buf, "data: {line}\n")?;
}
Ok(original_buf_len - buf.len())
}
#[allow(clippy::write_with_newline)]
pub fn push_to(&self, buf: &mut Vec<u8>) {
let data = match self {
Event::Message(data) => data,
Event::Custom(event_type, data) => {
write!(buf, "event: {event_type}\n").unwrap();
data
}
};
for line in data.lines() {
write!(buf, "data: {line}\n").unwrap();
}
}
}
#[allow(clippy::module_name_repetitions)]
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct EventSender(pub Option<SyncSender<Event>>);
impl EventSender {
#[must_use]
pub fn unconnected() -> Self {
Self(None)
}
pub fn send(&mut self, event: Event) {
if let Some(sender) = &self.0 {
if sender.try_send(event).is_err() {
self.0.take();
}
}
}
pub fn disconnect(&mut self) {
self.0.take();
}
#[must_use]
pub fn is_connected(&self) -> bool {
self.0.is_some()
}
}
// TODO: Support reading messages that are larger than `buf`.
#[allow(clippy::module_name_repetitions)]
pub struct EventReceiver(pub safina::sync::Receiver<Event>);
impl futures_io::AsyncRead for EventReceiver {
fn poll_read(
mut self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &mut [u8],
) -> Poll<Result<usize, std::io::Error>> {
match Pin::new(&mut self.0).poll(cx) {
Poll::Pending => Poll::Pending,
Poll::Ready(Ok(event)) => Poll::Ready(event.write_to(buf)),
Poll::Ready(Err(_recv_error)) => Poll::Ready(Ok(0)),
}
}
}
impl Read for EventReceiver {
fn read(&mut self, buf: &mut [u8]) -> Result<usize, std::io::Error> {
match self.0.recv() {
Ok(event) => event.write_to(buf),
Err(_) => Ok(0),
}
}
}