http1/response/
sse.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
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
use std::{
    fmt::Display,
    sync::mpsc::{channel, Receiver, Sender, TryRecvError},
};

use crate::body::{http_body::HttpBody, Body};

#[derive(Debug)]
pub struct SseSendError;

pub struct SseStream(Option<Receiver<SseEvent>>);

impl SseStream {
    pub fn new() -> (SseBroadcast, Self) {
        let (sender, receiver) = channel();

        let sse_broadcast = SseBroadcast(sender);
        (sse_broadcast, SseStream(Some(receiver)))
    }
}

impl From<SseStream> for Body {
    fn from(value: SseStream) -> Self {
        Body::new(value)
    }
}

#[derive(Debug)]
pub struct InvalidSseStreamError;

impl Display for InvalidSseStreamError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "Failed to send server-sent event")
    }
}

impl std::error::Error for InvalidSseStreamError {}

impl HttpBody for SseStream {
    type Err = InvalidSseStreamError;
    type Data = Vec<u8>;

    fn read_next(&mut self) -> Result<Option<Self::Data>, Self::Err> {
        fn to_bytes(event: SseEvent) -> Vec<u8> {
            event.to_string().into_bytes()
        }

        match self.0.as_mut() {
            Some(receiver) => {
                match receiver.try_recv() {
                    Ok(event) => Ok(Some(to_bytes(event))),
                    Err(TryRecvError::Disconnected) => {
                        let _ = self.0.take(); // drop the receiver
                        Err(InvalidSseStreamError)
                    }
                    Err(TryRecvError::Empty) => {
                        // Wait until the next message
                        match receiver.recv() {
                            Ok(event) => Ok(Some(to_bytes(event))),
                            Err(_) => {
                                let _ = self.0.take(); // drop the receiver
                                Err(InvalidSseStreamError)
                            }
                        }
                    }
                }
            }
            None => Ok(None),
        }
    }
}

#[derive(Clone)]
pub struct SseBroadcast(Sender<SseEvent>);

impl SseBroadcast {
    pub fn send(&self, event: SseEvent) -> Result<(), SseSendError> {
        self.0.send(event).map_err(|_| SseSendError)
    }
}

#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct SseEvent {
    id: Option<String>,
    event: Option<String>,
    data: String,
    retry: Option<usize>,
}

impl SseEvent {
    pub fn builder() -> Builder {
        Builder::new()
    }

    pub fn with_data(data: impl Display) -> Self {
        // SAFETY: This should never fail
        Builder::new()
            .data(data.to_string())
            .expect("invalid server-sent event")
    }

    pub fn with_event_data(
        event: impl Into<String>,
        data: impl Display,
    ) -> Result<Self, InvalidSseEvent> {
        Builder::new().event(event).data(data)
    }

    pub fn id(&self) -> Option<&str> {
        self.id.as_deref()
    }

    pub fn event(&self) -> Option<&str> {
        self.event.as_deref()
    }

    pub fn data(&self) -> &str {
        self.data.as_str()
    }

    pub fn retry(&self) -> Option<usize> {
        self.retry
    }
}

impl Display for SseEvent {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        if let Some(id) = &self.id {
            writeln!(f, "id: {id}")?;
        }

        if let Some(event) = &self.event {
            writeln!(f, "event: {event}")?;
        }

        if let Some(retry) = &self.retry {
            writeln!(f, "retry: {retry}")?;
        }

        for line in self.data.lines() {
            writeln!(f, "data: {line}")?;
        }

        writeln!(f)?;
        Ok(())
    }
}

#[derive(Debug, Default)]
struct Parts {
    id: Option<String>,
    event: Option<String>,
    retry: Option<usize>,
}

#[derive(Debug)]
pub enum InvalidSseEvent {
    InvalidIdLineBreak,
    InvalidEventLineBreak,
}

impl Display for InvalidSseEvent {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            InvalidSseEvent::InvalidIdLineBreak => write!(f, "'id' cannot contain a line-break"),
            InvalidSseEvent::InvalidEventLineBreak => {
                write!(f, "'event' cannot contain a line-break")
            }
        }
    }
}

#[derive(Debug)]
pub struct Builder(Result<Parts, InvalidSseEvent>);

impl Builder {
    pub fn new() -> Self {
        Default::default()
    }

    fn update<F: FnOnce(&mut Parts) -> Result<(), InvalidSseEvent>>(mut self, f: F) -> Self {
        self.0 = self.0.and_then(|mut parts| {
            f(&mut parts)?;
            Ok(parts)
        });

        self
    }

    pub fn id(self, id: impl Into<String>) -> Self {
        let id: String = id.into();

        self.update(|parts| {
            if has_line_break(&id) {
                return Err(InvalidSseEvent::InvalidIdLineBreak);
            }

            parts.id = Some(id);
            Ok(())
        })
    }

    pub fn event(self, event: impl Into<String>) -> Self {
        let event: String = event.into();

        self.update(|parts| {
            if has_line_break(&event) {
                return Err(InvalidSseEvent::InvalidEventLineBreak);
            }

            parts.event = Some(event);
            Ok(())
        })
    }

    pub fn retry(self, retry: usize) -> Self {
        self.update(|parts| {
            parts.retry = Some(retry);
            Ok(())
        })
    }

    pub fn data(self, data: impl Display) -> Result<SseEvent, InvalidSseEvent> {
        let Parts { event, id, retry } = self.0?;
        let data = data.to_string();

        Ok(SseEvent {
            id,
            event,
            data,
            retry,
        })
    }
}

impl Default for Builder {
    fn default() -> Self {
        Self(Ok(Parts::default()))
    }
}

fn has_line_break(s: &str) -> bool {
    s.bytes().any(|c| c == b'\n')
}