2019-07-05 08:42:46 +00:00
|
|
|
use std::collections::HashMap;
|
2019-08-26 11:40:24 +00:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
use failure::*;
|
2019-07-03 12:39:13 +00:00
|
|
|
|
|
|
|
use super::BackupReader;
|
|
|
|
use crate::backup::{ReadChunk, DataChunk, CryptConfig};
|
|
|
|
|
|
|
|
/// Read chunks from remote host using ``BackupReader``
|
|
|
|
pub struct RemoteChunkReader {
|
|
|
|
client: Arc<BackupReader>,
|
|
|
|
crypt_config: Option<Arc<CryptConfig>>,
|
2019-07-05 08:42:46 +00:00
|
|
|
cache_hint: HashMap<[u8; 32], usize>,
|
|
|
|
cache: HashMap<[u8; 32], Vec<u8>>,
|
2019-07-03 12:39:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl RemoteChunkReader {
|
|
|
|
|
2019-07-05 08:42:46 +00:00
|
|
|
/// Create a new instance.
|
|
|
|
///
|
|
|
|
/// Chunks listed in ``cache_hint`` are cached and kept in RAM.
|
|
|
|
pub fn new(
|
|
|
|
client: Arc<BackupReader>,
|
|
|
|
crypt_config: Option<Arc<CryptConfig>>,
|
|
|
|
cache_hint: HashMap<[u8; 32], usize>,
|
|
|
|
) -> Self {
|
|
|
|
|
|
|
|
Self { client, crypt_config, cache_hint, cache: HashMap::new() }
|
2019-07-03 12:39:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ReadChunk for RemoteChunkReader {
|
|
|
|
|
|
|
|
fn read_chunk(&mut self, digest:&[u8; 32]) -> Result<Vec<u8>, Error> {
|
|
|
|
|
|
|
|
let writer = Vec::with_capacity(4*1024*1024);
|
|
|
|
|
2019-07-05 08:42:46 +00:00
|
|
|
if let Some(raw_data) = self.cache.get(digest) {
|
|
|
|
return Ok(raw_data.to_vec());
|
|
|
|
}
|
|
|
|
|
|
|
|
let use_cache = self.cache_hint.contains_key(digest);
|
|
|
|
|
2019-08-26 11:40:24 +00:00
|
|
|
let chunk_data = futures::executor::block_on(self.client.download_chunk(&digest, writer))?;
|
2019-07-03 12:39:13 +00:00
|
|
|
|
|
|
|
let chunk = DataChunk::from_raw(chunk_data, *digest)?;
|
|
|
|
chunk.verify_crc()?;
|
|
|
|
|
|
|
|
let raw_data = match self.crypt_config {
|
|
|
|
Some(ref crypt_config) => chunk.decode(Some(crypt_config))?,
|
|
|
|
None => chunk.decode(None)?,
|
|
|
|
};
|
|
|
|
|
2019-07-05 08:42:46 +00:00
|
|
|
if use_cache {
|
|
|
|
self.cache.insert(*digest, raw_data.to_vec());
|
|
|
|
}
|
|
|
|
|
2019-07-03 12:39:13 +00:00
|
|
|
Ok(raw_data)
|
|
|
|
}
|
|
|
|
}
|