rembackup/src/update_index.rs
2023-11-04 15:11:20 +01:00

100 lines
3.2 KiB
Rust
Executable File

use std::{collections::HashMap, fs, io, path::Path};
use crate::{indexchanges::IndexChange, indexfile::IndexFile};
pub fn perform_index_diff<'a>(
source: &Path,
index: &'a Path,
mut ignore_subdirs: Vec<&'a Path>,
) -> io::Result<Vec<IndexChange>> {
let mut changes = Vec::new();
if let Ok(inner_index) = index.strip_prefix(source) {
eprintln!("[info] source contains index, but index will not be part of the backup.");
ignore_subdirs.push(inner_index);
}
rec(
source.as_ref(),
Path::new(""),
index,
&mut changes,
&ignore_subdirs,
)?;
Ok(changes)
}
fn rec(
// location of source files
source: &Path,
// relative path used on this iteration
rel_path: &Path,
// location of the index
index_files: &Path,
// list of changes to be made
changes: &mut Vec<IndexChange>,
// if the index is part of `source`, where exactly is it?
ignore_subdirs: &Vec<&Path>,
) -> Result<(), io::Error> {
for ii in ignore_subdirs {
if rel_path.starts_with(ii) {
return Ok(());
}
}
// used to find removals
let index_rel_path = index_files.join(rel_path);
let mut index_entries = match fs::read_dir(&index_rel_path) {
Err(_) => {
changes.push(IndexChange::AddDir(rel_path.to_path_buf()));
HashMap::new()
}
Ok(e) => e
.into_iter()
.filter_map(|v| v.ok())
.map(|v| Ok((v.file_name(), v.file_type()?.is_dir())))
.collect::<Result<_, io::Error>>()?,
};
// compare source files with index
let source_files = fs::read_dir(source.join(rel_path))?.collect::<Vec<_>>();
// find changes/adds
for entry in source_files {
let entry = entry?;
let metadata = entry.metadata()?;
let in_index_and_is_dir = index_entries.remove(&entry.file_name());
if metadata.is_dir() {
if let Some(false) = in_index_and_is_dir {
// is dir, but was file -> remove file
changes.push(IndexChange::RemoveFile(rel_path.join(entry.file_name())));
}
rec(
source,
&rel_path.join(entry.file_name()),
index_files,
changes,
ignore_subdirs,
)?;
} else {
if let Some(true) = in_index_and_is_dir {
// is file, but was dir -> remove dir
changes.push(IndexChange::RemoveDir(rel_path.join(entry.file_name())));
}
let newif = IndexFile::new_from_metadata(&metadata);
let oldif = IndexFile::from_path(&index_files.join(rel_path).join(entry.file_name()));
match oldif {
Ok(Ok(oldif)) if oldif == newif => {}
_ => changes.push(IndexChange::AddFile(
rel_path.join(entry.file_name()),
newif,
)),
}
}
}
// removals
for (removed_file, is_dir) in index_entries {
changes.push(if is_dir {
IndexChange::RemoveDir(rel_path.join(removed_file))
} else {
IndexChange::RemoveFile(rel_path.join(removed_file))
});
}
Ok(())
}