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
use std::{convert::Infallible, error::Error as StdError};
use actix_web::{
body::{BodyStream, MessageBody},
HttpResponse, Responder,
};
use bytes::{Bytes, BytesMut};
use futures_core::Stream;
use futures_util::TryStreamExt as _;
use mime::Mime;
use pin_project_lite::pin_project;
use serde::Serialize;
use crate::util::{InfallibleStream, MutWriter};
pin_project! {
pub struct Csv<S> {
#[pin]
stream: S,
}
}
impl<S> Csv<S> {
pub fn new(stream: S) -> Self {
Self { stream }
}
}
impl<S> Csv<S> {
pub fn new_infallible(stream: S) -> Csv<InfallibleStream<S>> {
Csv::new(InfallibleStream::new(stream))
}
}
impl<S, T, E> Csv<S>
where
S: Stream<Item = Result<T, E>>,
T: Serialize,
E: Into<Box<dyn StdError>> + 'static,
{
pub fn into_body_stream(self) -> impl MessageBody {
BodyStream::new(self.into_chunk_stream())
}
pub fn into_responder(self) -> impl Responder
where
S: 'static,
T: 'static,
E: 'static,
{
HttpResponse::Ok()
.content_type(mime::TEXT_CSV_UTF_8)
.message_body(self.into_body_stream())
.unwrap()
}
pub fn into_chunk_stream(self) -> impl Stream<Item = Result<Bytes, E>> {
self.stream.map_ok(serialize_csv_row)
}
}
impl Csv<Infallible> {
pub fn mime() -> Mime {
mime::TEXT_CSV_UTF_8
}
}
fn serialize_csv_row(item: impl Serialize) -> Bytes {
let mut buf = BytesMut::new();
let wrt = MutWriter(&mut buf);
let mut csv_wrt = csv::Writer::from_writer(wrt);
csv_wrt.serialize(&item).unwrap();
csv_wrt.flush().unwrap();
drop(csv_wrt);
buf.freeze()
}
#[cfg(test)]
mod tests {
use std::error::Error as StdError;
use actix_web::body;
use futures_util::stream;
use super::*;
#[actix_web::test]
async fn serializes_into_body() {
let ndjson_body = Csv::new_infallible(stream::iter([
[123, 456],
[789, 12],
[345, 678],
[901, 234],
[456, 789],
]))
.into_body_stream();
let body_bytes = body::to_bytes(ndjson_body)
.await
.map_err(Into::<Box<dyn StdError>>::into)
.unwrap();
const EXP_BYTES: &str = "123,456\n\
789,12\n\
345,678\n\
901,234\n\
456,789\n";
assert_eq!(body_bytes, EXP_BYTES);
}
}