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
use std::io::Read;
use crate::{
archiver::{
parent::{ItemWithParent, ParentResult},
tree::TreeType,
tree_archiver::TreeItem,
},
backend::{
decrypt::DecryptWriteBackend,
node::{Node, NodeType},
ReadSourceOpen,
},
blob::{
packer::{Packer, PackerStats},
BlobType,
},
cdc::rolling_hash::Rabin64,
chunker::ChunkIter,
crypto::hasher::hash,
error::ArchiverErrorKind,
error::RusticResult,
index::{indexer::SharedIndexer, IndexedBackend},
progress::Progress,
repofile::configfile::ConfigFile,
};
/// The `FileArchiver` is responsible for archiving files.
/// It will read the file, chunk it, and write the chunks to the backend.
///
/// # Type Parameters
///
/// * `BE` - The backend type.
/// * `I` - The index to read from.
#[derive(Clone)]
pub(crate) struct FileArchiver<BE: DecryptWriteBackend, I: IndexedBackend> {
index: I,
data_packer: Packer<BE>,
rabin: Rabin64,
}
impl<BE: DecryptWriteBackend, I: IndexedBackend> FileArchiver<BE, I> {
/// Creates a new `FileArchiver`.
///
/// # Type Parameters
///
/// * `BE` - The backend type.
/// * `I` - The index to read from.
///
/// # Arguments
///
/// * `be` - The backend to write to.
/// * `index` - The index to read from.
/// * `indexer` - The indexer to write to.
/// * `config` - The config file.
///
/// # Errors
///
/// * [`PackerErrorKind::SendingCrossbeamMessageFailed`] - If sending the message to the raw packer fails.
/// * [`PackerErrorKind::IntConversionFailed`] - If converting the data length to u64 fails
///
/// [`PackerErrorKind::SendingCrossbeamMessageFailed`]: crate::error::PackerErrorKind::SendingCrossbeamMessageFailed
/// [`PackerErrorKind::IntConversionFailed`]: crate::error::PackerErrorKind::IntConversionFailed
pub(crate) fn new(
be: BE,
index: I,
indexer: SharedIndexer<BE>,
config: &ConfigFile,
) -> RusticResult<Self> {
let poly = config.poly()?;
let data_packer = Packer::new(
be,
BlobType::Data,
indexer,
config,
index.total_size(BlobType::Data),
)?;
let rabin = Rabin64::new_with_polynom(6, poly);
Ok(Self {
index,
data_packer,
rabin,
})
}
/// Processes the given item.
///
/// # Type Parameters
///
/// * `O` - The type of the tree item.
///
/// # Arguments
///
/// * `item` - The item to process.
/// * `p` - The progress tracker.
///
/// # Errors
///
/// [`ArchiverErrorKind::UnpackingTreeTypeOptionalFailed`] - If the item could not be unpacked.
///
/// # Returns
///
/// The processed item.
///
/// [`ArchiverErrorKind::UnpackingTreeTypeOptionalFailed`]: crate::error::ArchiverErrorKind::UnpackingTreeTypeOptionalFailed
pub(crate) fn process<O: ReadSourceOpen>(
&self,
item: ItemWithParent<Option<O>>,
p: &impl Progress,
) -> RusticResult<TreeItem> {
Ok(match item {
TreeType::NewTree(item) => TreeType::NewTree(item),
TreeType::EndTree => TreeType::EndTree,
TreeType::Other((path, node, (open, parent))) => {
let (node, filesize) = if matches!(parent, ParentResult::Matched(())) {
let size = node.meta.size;
p.inc(size);
(node, size)
} else if node.node_type == NodeType::File {
let r = open
.ok_or(ArchiverErrorKind::UnpackingTreeTypeOptionalFailed)?
.open()?;
self.backup_reader(r, node, p)?
} else {
(node, 0)
};
TreeType::Other((path, node, (parent, filesize)))
}
})
}
// TODO: add documentation!
fn backup_reader(
&self,
r: impl Read + Send + 'static,
node: Node,
p: &impl Progress,
) -> RusticResult<(Node, u64)> {
let chunks: Vec<_> = ChunkIter::new(
r,
usize::try_from(node.meta.size)
.map_err(ArchiverErrorKind::ConversionFromU64ToUsizeFailed)?,
self.rabin.clone(),
)
.map(|chunk| {
let chunk = chunk.map_err(ArchiverErrorKind::FromStdIo)?;
let id = hash(&chunk);
let size = chunk.len() as u64;
if !self.index.has_data(&id) {
self.data_packer.add(chunk.into(), id)?;
}
p.inc(size);
Ok((id, size))
})
.collect::<RusticResult<_>>()?;
let filesize = chunks.iter().map(|x| x.1).sum();
let content = chunks.into_iter().map(|x| x.0).collect();
let mut node = node;
node.content = Some(content);
Ok((node, filesize))
}
/// Finalizes the archiver.
///
/// # Returns
///
/// The statistics of the archiver.
///
/// # Panics
///
/// If the channel could not be dropped
pub(crate) fn finalize(self) -> RusticResult<PackerStats> {
self.data_packer.finalize()
}
}