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
use async_trait::async_trait;
use futures_util::pin_mut;
use futures_util::stream::StreamExt;
use log::*;
use std::collections::HashMap;
use std::io::SeekFrom;
use tokio::io::{AsyncRead, AsyncReadExt, AsyncSeek, AsyncSeekExt, AsyncWrite, AsyncWriteExt};
use crate::{Archive, ChunkIndex, Chunker, Error, HashSum, Reader, ReorderOp};
#[async_trait]
pub trait CloneOutput {
async fn write_chunk(
&mut self,
hash: &HashSum,
offsets: &[u64],
buf: &[u8],
) -> Result<(), Error>;
}
#[async_trait]
impl<T> CloneOutput for T
where
T: AsyncWrite + AsyncSeek + Unpin + Send,
{
async fn write_chunk(&mut self, _: &HashSum, offsets: &[u64], buf: &[u8]) -> Result<(), Error> {
for &offset in offsets {
self.seek(SeekFrom::Start(offset)).await?;
self.write_all(buf).await?;
}
Ok(())
}
}
#[derive(Default, Clone)]
pub struct CloneOptions {
pub max_buffered_chunks: usize,
}
impl CloneOptions {
pub fn max_buffered_chunks(mut self, num: usize) -> Self {
self.max_buffered_chunks = num;
self
}
pub(crate) fn get_max_buffered_chunks(&self) -> usize {
if self.max_buffered_chunks == 0 {
match num_cpus::get() {
0 | 1 => 1,
n => n * 2,
}
} else {
self.max_buffered_chunks
}
}
}
pub async fn clone_in_place<T>(
opts: &CloneOptions,
chunks: &mut ChunkIndex,
archive: &Archive,
target: &mut T,
) -> Result<u64, Error>
where
T: AsyncRead + AsyncWrite + AsyncSeek + Unpin + Send,
{
let mut total_moved: u64 = 0;
target.seek(SeekFrom::Start(0)).await?;
let target_index = ChunkIndex::from_readable(
&archive.chunker_config(),
archive.chunk_hash_length(),
opts.get_max_buffered_chunks(),
target,
)
.await?;
let (already_in_place, in_place_total_size) =
target_index.strip_chunks_already_in_place(chunks);
debug!(
"{} chunks ({}) are already in place in target",
already_in_place, in_place_total_size
);
let reorder_ops = target_index.reorder_ops(chunks);
let mut temp_store: HashMap<&HashSum, Vec<u8>> = HashMap::new();
for op in &reorder_ops {
match op {
ReorderOp::Copy { hash, source, dest } => {
let buf = if let Some(buf) = temp_store.remove(hash) {
buf
} else {
let mut buf: Vec<u8> = Vec::new();
buf.resize(source.size, 0);
target.seek(SeekFrom::Start(source.offset)).await?;
target.read_exact(&mut buf[..]).await?;
buf
};
target.write_chunk(hash, &dest[..], &buf[..]).await?;
total_moved += source.size as u64;
chunks.remove(hash);
}
ReorderOp::StoreInMem { hash, source } => {
if !temp_store.contains_key(hash) {
let mut buf: Vec<u8> = Vec::new();
buf.resize(source.size, 0);
target.seek(SeekFrom::Start(source.offset)).await?;
target.read_exact(&mut buf[..]).await?;
temp_store.insert(hash, buf);
}
}
}
}
Ok(total_moved + in_place_total_size)
}
pub async fn clone_from_readable<I>(
opts: &CloneOptions,
input: &mut I,
archive: &Archive,
chunks: &mut ChunkIndex,
output: &mut dyn CloneOutput,
) -> Result<u64, Error>
where
I: AsyncRead + Unpin,
{
let mut total_read = 0;
let hash_length = archive.chunk_hash_length();
let seed_chunker = Chunker::new(archive.chunker_config(), input);
let mut found_chunks = seed_chunker
.map(|result| {
tokio::task::spawn(async move {
result.map(|(_offset, chunk)| {
(HashSum::b2_digest(&chunk, hash_length as usize), chunk)
})
})
})
.buffered(opts.get_max_buffered_chunks())
.map(|result| match result {
Ok(Ok((hash, chunk))) => Ok((hash, chunk)),
Ok(Err(err)) => Err(err),
Err(err) => Err(err.into()),
});
if chunks.is_empty() {
return Ok(0);
}
while let Some(result) = found_chunks.next().await {
if chunks.is_empty() {
break;
}
let (hash, chunk) = result?;
if !chunks.remove(&hash) {
continue;
}
debug!("Chunk '{}', size {} used", hash, chunk.len());
let offsets: Vec<u64> = archive
.source_index()
.offsets(&hash)
.unwrap_or_else(|| panic!("missing chunk ({}) in source!?", hash))
.collect();
output.write_chunk(&hash, &offsets[..], &chunk).await?;
total_read += chunk.len() as u64;
}
Ok(total_read)
}
pub async fn clone_from_archive(
opts: &CloneOptions,
reader: &mut dyn Reader,
archive: &Archive,
chunks: &mut ChunkIndex,
output: &mut dyn CloneOutput,
) -> Result<u64, Error> {
let mut total_fetched = 0u64;
let grouped_chunks = archive.grouped_chunks(&chunks);
for group in grouped_chunks {
let start_offset = archive.chunk_data_offset() + group[0].archive_offset;
let compression = archive.chunk_compression();
let archive_chunk_stream = reader
.read_chunks(
start_offset,
group.iter().map(|c| c.archive_size as usize).collect(),
)
.enumerate()
.map(|(index, read_result)| {
let checksum = group[index].checksum.clone();
let source_size = group[index].source_size as usize;
if let Ok(chunk) = &read_result {
total_fetched += chunk.len() as u64;
}
tokio::task::spawn(async move {
let chunk = read_result?;
Ok::<_, Error>((
checksum.clone(),
Archive::decompress_and_verify(compression, &checksum, source_size, chunk)?,
))
})
})
.buffered(opts.get_max_buffered_chunks());
pin_mut!(archive_chunk_stream);
while let Some(result) = archive_chunk_stream.next().await {
let result = result?;
let (hash, chunk) = result?;
let offsets: Vec<u64> = archive
.source_index()
.offsets(&hash)
.unwrap_or_else(|| panic!("missing chunk ({}) in source", hash))
.collect();
debug!("Chunk '{}', size {} used from archive", hash, chunk.len());
output.write_chunk(&hash, &offsets[..], &chunk).await?;
}
}
Ok(total_fetched)
}