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
use client::Client;
use futures::Future;
use nfs::{File, NfsError, NfsFuture, data_map};
use self_encryption::SelfEncryptor;
use self_encryption_storage::SelfEncryptionStorage;
use utils::FutureExt;
#[allow(dead_code)]
pub struct Reader<T> {
client: Client<T>,
self_encryptor: SelfEncryptor<SelfEncryptionStorage<T>>,
}
impl<T: 'static> Reader<T> {
pub fn new(client: Client<T>,
storage: SelfEncryptionStorage<T>,
file: &File)
-> Box<NfsFuture<Reader<T>>> {
data_map::get(&client, file.data_map_name())
.and_then(move |data_map| {
let self_encryptor = SelfEncryptor::new(storage, data_map)?;
Ok(Reader {
client: client,
self_encryptor: self_encryptor,
})
})
.into_box()
}
pub fn size(&self) -> u64 {
self.self_encryptor.len()
}
pub fn read(&self, position: u64, length: u64) -> Box<NfsFuture<Vec<u8>>> {
trace!("Reader reading from pos: {} and size: {}.",
position,
length);
if (position + length) > self.size() {
err!(NfsError::InvalidRange)
} else {
debug!("Reading {len} bytes of data from file starting at offset of {pos} bytes ...",
len = length,
pos = position);
self.self_encryptor
.read(position, length)
.map_err(From::from)
.into_box()
}
}
}