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
use Entity;
use bytes::Buf;
use futures::{Sink, Stream};
use futures_cpupool::CpuPool;
use http::header::{HeaderMap, HeaderValue};
use std::io;
use std::ops::Range;
use std::os::unix::fs::{FileExt, MetadataExt};
use std::sync::Arc;
use std::time::{self, SystemTime};
static CHUNK_SIZE: u64 = 65_536;
#[derive(Clone)]
pub struct ChunkedReadFile<
D: 'static + Send + Buf + From<Vec<u8>> + From<&'static [u8]>,
E: 'static + Send + Into<Box<::std::error::Error + Send + Sync>> + From<Box<::std::io::Error>>,
> {
inner: Arc<ChunkedReadFileInner>,
phantom: ::std::marker::PhantomData<(D, E)>,
}
struct ChunkedReadFileInner {
len: u64,
inode: u64,
mtime: SystemTime,
f: ::std::fs::File,
pool: Option<CpuPool>,
headers: HeaderMap,
}
impl<D, E> ChunkedReadFile<D, E>
where
D: 'static + Send + Buf + From<Vec<u8>> + From<&'static [u8]>,
E: 'static + Send + Into<Box<::std::error::Error + Send + Sync>> + From<Box<::std::io::Error>>,
{
pub fn new(
file: ::std::fs::File,
pool: Option<CpuPool>,
headers: HeaderMap,
) -> Result<Self, io::Error> {
let m = file.metadata()?;
Ok(ChunkedReadFile {
inner: Arc::new(ChunkedReadFileInner {
len: m.len(),
inode: m.ino(),
mtime: m.modified()?,
headers,
f: file,
pool: pool,
}),
phantom: ::std::marker::PhantomData,
})
}
}
impl<D, E> Entity for ChunkedReadFile<D, E>
where
D: 'static + Send + Buf + From<Vec<u8>> + From<&'static [u8]>,
E: 'static + Send + Into<Box<::std::error::Error + Send + Sync>> + From<Box<::std::io::Error>>,
{
type Data = D;
type Error = E;
fn len(&self) -> u64 {
self.inner.len
}
fn get_range(
&self,
range: Range<u64>,
) -> Box<Stream<Item = Self::Data, Error = Self::Error> + Send> {
let stream =
::futures::stream::unfold((range, Arc::clone(&self.inner)), move |(left, inner)| {
if left.start == left.end {
return None;
}
let chunk_size = ::std::cmp::min(CHUNK_SIZE, left.end - left.start) as usize;
let mut chunk = Vec::with_capacity(chunk_size);
unsafe { chunk.set_len(chunk_size) };
let bytes_read = match inner.f.read_at(&mut chunk, left.start) {
Err(e) => return Some(Err(Box::new(e).into())),
Ok(b) => b,
};
chunk.truncate(bytes_read);
Some(Ok((
chunk.into(),
(left.start + bytes_read as u64..left.end, inner),
)))
});
let stream: Box<Stream<Item = D, Error = E> + Send> = match self.inner.pool {
Some(ref p) => {
let (snd, rcv) = ::futures::sync::mpsc::channel(0);
p.spawn(snd.send_all(stream.then(Ok))).forget();
Box::new(
rcv.map_err(|()| unreachable!())
.and_then(::futures::future::result),
)
}
None => Box::new(stream),
};
stream.into()
}
fn add_headers(&self, h: &mut HeaderMap) {
h.extend(
self.inner
.headers
.iter()
.map(|(k, v)| (k.clone(), v.clone())),
);
}
fn etag(&self) -> Option<HeaderValue> {
let dur = self.inner
.mtime
.duration_since(time::UNIX_EPOCH)
.expect("modification time must be after epoch");
#[allow(dead_code)]
static HEX_U64_LEN: usize = 16;
#[allow(dead_code)]
static HEX_U32_LEN: usize = 16;
Some(fmt_ascii_val!(
HEX_U64_LEN * 3 + HEX_U64_LEN + 5,
"\"{:x}:{:x}:{:x}:{:x}\"",
self.inner.inode,
self.inner.len,
dur.as_secs(),
dur.subsec_nanos()
))
}
fn last_modified(&self) -> Option<SystemTime> {
Some(self.inner.mtime)
}
}
#[cfg(test)]
mod tests {
extern crate tempdir;
use self::tempdir::TempDir;
use super::ChunkedReadFile;
use super::Entity;
use futures::{Future, Stream};
use futures_cpupool::CpuPool;
use http::header::HeaderMap;
use hyper::Chunk;
use std::fs::File;
use std::io::Write;
type CRF = ChunkedReadFile<Chunk, Box<::std::error::Error + Sync + Send>>;
fn basic_tests(pool: Option<CpuPool>) {
let tmp = TempDir::new("http-file").unwrap();
let p = tmp.path().join("f");
let mut f = File::create(&p).unwrap();
f.write_all(b"asdf").unwrap();
let crf = CRF::new(File::open(&p).unwrap(), pool.clone(), HeaderMap::new()).unwrap();
assert_eq!(4, crf.len());
let etag1 = crf.etag();
assert_eq!(
&crf.get_range(0..4).concat2().wait().unwrap().as_ref(),
b"asdf"
);
assert_eq!(
&crf.get_range(1..3).concat2().wait().unwrap().as_ref(),
b"sd"
);
f.write_all(b"jkl;").unwrap();
let crf = CRF::new(File::open(&p).unwrap(), pool, HeaderMap::new()).unwrap();
assert_eq!(8, crf.len());
let etag2 = crf.etag();
assert_ne!(etag1, etag2);
}
#[test]
fn with_pool() {
basic_tests(Some(CpuPool::new(1)));
}
#[test]
fn without_pool() {
basic_tests(None);
}
}