volga 0.8.9

Easy & Fast Web Framework for Rust
Documentation
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
//! Utilities for SSE (Server-Sent Events)

use crate::{ByteStream, error::Error, utils::str::memchr_split};
use bytes::{BufMut, Bytes, BytesMut};
use futures_util::stream::{Stream, TryStream};
use pin_project_lite::pin_project;
use serde::Serialize;
use std::fmt::Debug;
use std::pin::Pin;
use std::task::{Context, Poll};
use std::time::Duration;

const ID: &str = "id";
const EVENT: &str = "event";
const DATA: &str = "data";
const RETRY: &[u8] = b"retry:";
const ERROR: &str = "error";
const NEW_LINE: u8 = b'\n';
const EMPTY: &[u8] = b":\n";

pin_project! {
    /// Wrapper type for SSE streams.
    pub struct SseStream<S> {
        #[pin]
        inner: S,
    }
}

impl<S> Debug for SseStream<S> {
    #[inline]
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("SseStream(...)").finish()
    }
}

impl SseStream<()> {
    /// Creates a new [`SseStream`] from an inner stream.
    ///
    /// Safe: takes `Message` items and encodes them to SSE bytes.
    #[inline]
    pub fn from_try_messages<T>(
        stream: T,
    ) -> SseStream<impl Stream<Item = Result<Message, Error>> + Send + 'static>
    where
        T: TryStream<Ok = Message, Error = Error> + Send + 'static,
    {
        use futures_util::TryStreamExt;
        SseStream::new(stream.into_stream())
    }
}

impl<S> SseStream<S>
where
    S: Stream<Item = Result<Message, Error>> + Send + 'static,
{
    /// Creates a new [`SseStream`].
    #[inline]
    pub fn new(inner: S) -> Self {
        Self { inner }
    }

    /// Consumes the stream of SSE messages and returns the stream of bytes.
    #[inline]
    pub fn into_bytes(self) -> impl Stream<Item = Result<Bytes, Error>> + Send + 'static {
        use futures_util::StreamExt;
        self.map(|m| m.map(Bytes::from))
    }

    /// Consumes the stream of SSE messages and returns the [`ByteStream`].
    #[inline]
    pub fn into_byte_stream(
        self,
    ) -> ByteStream<impl Stream<Item = Result<Bytes, Error>> + Send + 'static> {
        ByteStream::new(self.into_bytes())
    }

    /// Consumes the wrapper and returns the inner stream.
    #[inline]
    pub fn into_inner(self) -> S {
        self.inner
    }
}

impl<S> Stream for SseStream<S>
where
    S: Stream<Item = Result<Message, Error>> + Send + 'static,
{
    type Item = Result<Message, Error>;

    #[inline]
    fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
        match self.project().inner.poll_next(cx) {
            Poll::Ready(Some(item)) => Poll::Ready(Some(item)),
            Poll::Ready(None) => Poll::Ready(None),
            Poll::Pending => Poll::Pending,
        }
    }
}

/// Creates an asynchronous SSE stream
///
/// # Example
/// ```no_run
/// use volga::{http::sse::Message, error::Error, sse_stream};
///
/// # async fn docs() {
/// let stream = sse_stream! {
///     // ...
/// # let some_error = false;
///     if some_error {
///         Err(Error::client_error("some error"))?; // terminate SSE
///     }
///
///     yield Message::new().data("ok");
/// };
/// # }
/// ```
#[macro_export]
macro_rules! sse_stream {
    { $($tt:tt)* } => {{
        $crate::http::sse::SseStream::from_try_messages(
            $crate::__async_stream::try_stream! { $($tt)* }
        )
    }};
}

/// Represents a single SSE message
///
/// # Example
/// ```no_run
/// use volga::http::sse::Message;
///
/// let msg = Message::new()
///     .data("Hello, World!");
/// ```
#[derive(Debug, Default, Clone)]
pub struct Message {
    fields: Vec<SseField>,
}

/// Represents a field kind in an SSE message
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum FieldKind {
    Comment,
    Data,
    Event,
    Id,
    Retry,
}

/// Represents a single field in an SSE message
#[derive(Debug, Clone)]
struct SseField {
    kind: FieldKind,
    bytes: Bytes,
}

impl Message {
    /// Creates a new [`Message`]
    #[inline]
    pub fn new() -> Self {
        Self::default()
    }

    /// Creates a stream that yields this message once.
    #[inline]
    pub fn once(self) -> SseStream<impl Stream<Item = Result<Message, Error>> + Send> {
        SseStream::new(futures_util::stream::iter([Ok(self)]))
    }

    /// Creates a stream that produces this message repeatedly.
    #[inline]
    pub fn repeat(self) -> SseStream<impl Stream<Item = Result<Message, Error>> + Send> {
        SseStream::new(futures_util::stream::repeat_with(move || Ok(self.clone())))
    }

    /// Creates an empty [`Message`] (":\n")
    ///
    /// This can be useful as a keep-alive mechanism if messages might not be sent regularly.
    #[inline]
    pub fn empty() -> Self {
        let mut msg = Self::default();
        msg.fields.push(SseField {
            kind: FieldKind::Comment,
            bytes: Bytes::from_static(EMPTY),
        });
        msg
    }

    /// Specifies a text `data` for a [`Message`]
    ///
    /// # Example
    /// ```no_run
    /// use volga::http::sse::Message;
    ///
    /// let msg = Message::new()
    ///     .data("Hello, World!");
    /// ```
    #[inline]
    pub fn data(mut self, value: impl AsRef<[u8]>) -> Self {
        let mut buffer = BytesMut::new();
        for line in memchr_split(NEW_LINE, value.as_ref()) {
            buffer.extend(Self::field(DATA, line));
        }
        self.remove_fields(FieldKind::Data);
        self.fields.push(SseField {
            kind: FieldKind::Data,
            bytes: buffer.freeze(),
        });
        self
    }

    /// Appends a text `data` to an existing data field in a [`Message`]
    ///
    /// # Example
    /// ```no_run
    /// use volga::http::sse::Message;
    ///
    /// let msg = Message::new()
    ///     .data("Hello, ")
    ///     .append("World!");
    /// ```
    #[inline]
    pub fn append(mut self, value: impl AsRef<[u8]>) -> Self {
        let mut buffer = BytesMut::new();
        for line in memchr_split(NEW_LINE, value.as_ref()) {
            buffer.extend(Self::field(DATA, line));
        }
        self.fields.push(SseField {
            kind: FieldKind::Data,
            bytes: buffer.freeze(),
        });
        self
    }

    /// Specifies a JSON `data` for a [`Message`]
    ///
    /// # Example
    /// ```no_run
    /// use futures_util::TryStreamExt;
    /// use volga::http::sse::Message;
    /// use serde::Serialize;
    ///
    /// #[derive(Serialize)]
    /// struct Event {
    ///     msg: String
    /// }
    ///
    /// let event = Event {
    ///     msg: String::from("Hello, World!")
    /// };
    ///
    /// let msg = Message::new()
    ///     .json(event);
    /// ```
    #[inline]
    pub fn json<T: Serialize>(self, value: T) -> Self {
        match serde_json::to_vec(&value) {
            Ok(v) => self.data(v),
            Err(err) => self.event(ERROR).data(err.to_string()),
        }
    }

    /// Specifies the `event` field for a [`Message`]
    ///
    /// # Example
    /// ```no_run
    /// use volga::http::sse::Message;
    ///
    /// let msg = Message::new()
    ///     .event("greeting")
    ///     .data("Hello, World!");
    /// ```
    #[inline]
    pub fn event(mut self, name: &str) -> Self {
        self.remove_fields(FieldKind::Event);
        self.fields.push(SseField {
            kind: FieldKind::Event,
            bytes: Self::field(EVENT, name),
        });
        self
    }

    /// Specifies the event `id` field for a [`Message`]
    ///
    /// # Example
    /// ```no_run
    /// use volga::http::sse::Message;
    ///
    /// let msg = Message::new()
    ///     .id("id")
    ///     .event("greeting")
    ///     .data("Hello, World!");
    /// ```
    #[inline]
    pub fn id(mut self, value: impl AsRef<[u8]>) -> Self {
        self.remove_fields(FieldKind::Id);
        self.fields.push(SseField {
            kind: FieldKind::Id,
            bytes: Self::field(ID, value),
        });
        self
    }

    /// Specifies the `retry` field for a [`Message`]
    ///
    /// This represents the reconnection time. If the connection to the server is lost,
    /// the client will wait for the specified time before attempting to reconnect.
    ///
    /// # Example
    /// ```no_run
    /// use volga::http::sse::Message;
    /// use std::time::Duration;
    ///
    /// let msg = Message::new()
    ///     .data("Hello, World!")
    ///     .retry(Duration::from_secs(10));
    /// ```
    #[inline]
    pub fn retry(mut self, duration: Duration) -> Self {
        let mut buffer = BytesMut::new();

        buffer.extend_from_slice(RETRY);
        buffer.extend_from_slice(itoa::Buffer::new().format(duration.as_millis()).as_ref());
        buffer.put_u8(NEW_LINE);

        self.remove_fields(FieldKind::Retry);
        self.fields.push(SseField {
            kind: FieldKind::Retry,
            bytes: buffer.freeze(),
        });
        self
    }

    /// Adds a new comment for a [`Message`].
    ///
    /// Multiple calls add multiple comments
    ///
    /// # Example
    /// ```no_run
    /// use volga::http::sse::Message;
    ///
    /// let msg = Message::new()
    ///     .data("Hello, World!")
    ///     .comment("comment 1")
    ///     .comment("comment 2");
    /// ```
    #[inline]
    pub fn comment(mut self, value: impl AsRef<[u8]>) -> Self {
        self.fields.push(SseField {
            kind: FieldKind::Comment,
            bytes: Self::field("", value),
        });
        self
    }

    /// Removes all fields of a given kind from a [`Message`]
    #[inline]
    fn remove_fields(&mut self, kind: FieldKind) {
        self.fields.retain(|field| field.kind != kind);
    }

    /// Encodes bytes into SSE message format
    #[inline]
    fn field(name: &str, value: impl AsRef<[u8]>) -> Bytes {
        let mut buffer = BytesMut::new();

        buffer.extend_from_slice(name.as_bytes());
        buffer.put_u8(b':');
        buffer.put_u8(b' ');
        buffer.extend_from_slice(value.as_ref());
        buffer.put_u8(NEW_LINE);

        buffer.freeze()
    }
}

impl<T: Serialize> From<T> for Message {
    #[inline]
    fn from(value: T) -> Self {
        Self::default().json(value)
    }
}

impl From<Message> for Bytes {
    #[inline]
    fn from(message: Message) -> Self {
        let mut buffer = BytesMut::new();

        for field in message.fields {
            buffer.extend(field.bytes);
        }

        buffer.put_u8(NEW_LINE);
        buffer.freeze()
    }
}

#[cfg(test)]
mod tests {
    use super::Message;
    use bytes::Bytes;
    use futures_util::{StreamExt, TryStreamExt, pin_mut};
    use serde::Serialize;
    use std::time::Duration;

    #[tokio::test]
    async fn it_creates_message_repeat_stream() {
        let stream = Message::new().data("hi!").repeat();
        pin_mut!(stream);
        let bytes = Bytes::from(stream.next().await.unwrap().unwrap());
        assert_eq!(String::from_utf8_lossy(&bytes), "data: hi!\n\n");

        let bytes = Bytes::from(stream.next().await.unwrap().unwrap());
        assert_eq!(String::from_utf8_lossy(&bytes), "data: hi!\n\n");
    }

    #[tokio::test]
    async fn it_creates_message_once_stream() {
        let stream = Message::new().data("hi!").once();
        pin_mut!(stream);

        let bytes = Bytes::from(stream.next().await.unwrap().unwrap());

        assert_eq!(String::from_utf8_lossy(&bytes), "data: hi!\n\n");
        assert!(stream.next().await.is_none());
    }

    #[tokio::test]
    async fn it_creates_sse_stream() {
        let stream = sse_stream! {
            yield Message::new().data("hi!");
            yield Message::new().data("hi!");
            yield Message::new().data("hi!");
        };

        pin_mut!(stream);

        let bytes = Bytes::from(stream.next().await.unwrap().unwrap());
        assert_eq!(String::from_utf8_lossy(&bytes), "data: hi!\n\n");

        let bytes = Bytes::from(stream.next().await.unwrap().unwrap());
        assert_eq!(String::from_utf8_lossy(&bytes), "data: hi!\n\n");

        let bytes = Bytes::from(stream.next().await.unwrap().unwrap());
        assert_eq!(String::from_utf8_lossy(&bytes), "data: hi!\n\n");

        assert!(stream.next().await.is_none());
    }

    #[tokio::test]
    async fn it_creates_sse_stream_with_loop() {
        let stream = sse_stream! {
            loop {
                yield Message::new().data("hi!");
            }
        };

        pin_mut!(stream);

        let bytes = Bytes::from(stream.next().await.unwrap().unwrap());
        assert_eq!(String::from_utf8_lossy(&bytes), "data: hi!\n\n");

        let bytes = Bytes::from(stream.next().await.unwrap().unwrap());
        assert_eq!(String::from_utf8_lossy(&bytes), "data: hi!\n\n");

        let bytes = Bytes::from(stream.next().await.unwrap().unwrap());
        assert_eq!(String::from_utf8_lossy(&bytes), "data: hi!\n\n");
    }

    #[tokio::test]
    async fn it_modifies_sse_stream() {
        let stream = sse_stream! {
            yield Message::new().data("hi!");
        };

        let stream = stream.map_ok(|msg| msg.comment("some comment"));

        pin_mut!(stream);

        let bytes = Bytes::from(stream.next().await.unwrap().unwrap());
        assert_eq!(
            String::from_utf8_lossy(&bytes),
            "data: hi!\n: some comment\n\n"
        );

        assert!(stream.next().await.is_none());
    }

    #[tokio::test]
    async fn it_converts_into_bytes() {
        let stream = sse_stream! {
            yield Message::new().data("hi!");
        };

        let stream = stream.into_bytes();

        pin_mut!(stream);

        let bytes = stream.next().await.unwrap().unwrap();
        assert_eq!(String::from_utf8_lossy(&bytes), "data: hi!\n\n");

        assert!(stream.next().await.is_none());
    }

    #[tokio::test]
    async fn it_converts_into_byte_stream() {
        let stream = sse_stream! {
            yield Message::new().data("hi!");
        };

        let stream = stream.into_byte_stream();

        pin_mut!(stream);

        let bytes = stream.next().await.unwrap().unwrap();
        assert_eq!(String::from_utf8_lossy(&bytes), "data: hi!\n\n");

        assert!(stream.next().await.is_none());
    }

    #[test]
    fn it_creates_default_message() {
        let event = Message::default();

        let bytes: Bytes = event.into();

        assert_eq!(String::from_utf8_lossy(&bytes), "\n");
    }

    #[test]
    fn it_creates_empty_message() {
        let event = Message::empty();

        let bytes: Bytes = event.into();

        assert_eq!(String::from_utf8_lossy(&bytes), ":\n\n");
    }

    #[test]
    fn it_creates_data_message_with_comment() {
        let event = Message::new().comment("some comment").data("hi!");

        let bytes: Bytes = event.into();

        assert_eq!(
            String::from_utf8_lossy(&bytes),
            ": some comment\ndata: hi!\n\n"
        );
    }

    #[test]
    fn it_creates_data_message_with_multiple_comment() {
        let event = Message::new()
            .comment("some comment")
            .data("hi!")
            .comment("another comment")
            .comment("one more comment");

        let bytes: Bytes = event.into();

        assert_eq!(
            String::from_utf8_lossy(&bytes),
            ": some comment\ndata: hi!\n: another comment\n: one more comment\n\n"
        );
    }

    #[test]
    fn it_creates_string_message() {
        let event = Message::new().data("hi!");

        let bytes: Bytes = event.into();

        assert_eq!(String::from_utf8_lossy(&bytes), "data: hi!\n\n");
    }

    #[test]
    fn it_appends_string_data() {
        let event = Message::new().data("Hello").append("World");

        let bytes: Bytes = event.into();

        assert_eq!(
            String::from_utf8_lossy(&bytes),
            "data: Hello\ndata: World\n\n"
        );
    }

    #[test]
    fn it_creates_multiline_string_data() {
        let event = Message::new().data("Hello \nbeautiful \nworld!");

        let bytes: Bytes = event.into();

        assert_eq!(
            String::from_utf8_lossy(&bytes),
            "data: Hello \ndata: beautiful \ndata: world!\n\n"
        );
    }

    #[test]
    fn it_creates_string_event() {
        let event = Message::new().event("greet").data("hi!");

        let bytes: Bytes = event.into();

        assert_eq!(
            String::from_utf8_lossy(&bytes),
            "event: greet\ndata: hi!\n\n"
        );
    }

    #[test]
    fn it_creates_string_event_with_id() {
        let event = Message::new().id("some id").event("greet").data("hi!");

        let bytes: Bytes = event.into();

        assert_eq!(
            String::from_utf8_lossy(&bytes),
            "id: some id\nevent: greet\ndata: hi!\n\n"
        );
    }

    #[test]
    fn it_creates_message_with_retry() {
        let event = Message::new().data("hi!").retry(Duration::from_secs(5));

        let bytes: Bytes = event.into();

        assert_eq!(String::from_utf8_lossy(&bytes), "data: hi!\nretry:5000\n\n");
    }

    #[test]
    fn it_creates_json_event() {
        let event = Message::new().json(Test {
            value: "test".into(),
        });

        let bytes: Bytes = event.into();

        assert_eq!(
            String::from_utf8_lossy(&bytes),
            "data: {\"value\":\"test\"}\n\n"
        );
    }

    #[test]
    fn it_converts_json_into_event() {
        let data = Test {
            value: "test".into(),
        };
        let event: Message = data.into();

        let bytes: Bytes = event.into();

        assert_eq!(
            String::from_utf8_lossy(&bytes),
            "data: {\"value\":\"test\"}\n\n"
        );
    }

    #[derive(Serialize)]
    struct Test {
        value: String,
    }
}