2023-10-05 15:39:33 +02:00
|
|
|
use std::{collections::HashMap, fs, io, path::Path};
|
2023-09-13 01:16:47 +02:00
|
|
|
|
|
|
|
use crate::{indexchanges::IndexChange, indexfile::IndexFile};
|
|
|
|
|
2023-11-04 15:11:20 +01:00
|
|
|
pub fn perform_index_diff<'a>(
|
|
|
|
source: &Path,
|
|
|
|
index: &'a Path,
|
|
|
|
mut ignore_subdirs: Vec<&'a Path>,
|
|
|
|
) -> io::Result<Vec<IndexChange>> {
|
2023-09-13 01:16:47 +02:00
|
|
|
let mut changes = Vec::new();
|
2023-11-04 15:11:20 +01:00
|
|
|
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);
|
|
|
|
}
|
2023-09-13 01:16:47 +02:00
|
|
|
rec(
|
|
|
|
source.as_ref(),
|
|
|
|
Path::new(""),
|
|
|
|
index,
|
|
|
|
&mut changes,
|
2023-11-04 15:11:20 +01:00
|
|
|
&ignore_subdirs,
|
2023-09-13 01:16:47 +02:00
|
|
|
)?;
|
|
|
|
Ok(changes)
|
|
|
|
}
|
|
|
|
fn rec(
|
2023-10-05 15:39:33 +02:00
|
|
|
// location of source files
|
2023-09-13 01:16:47 +02:00
|
|
|
source: &Path,
|
2023-10-05 15:39:33 +02:00
|
|
|
// relative path used on this iteration
|
2023-09-13 01:16:47 +02:00
|
|
|
rel_path: &Path,
|
2023-10-05 15:39:33 +02:00
|
|
|
// location of the index
|
2023-09-13 01:16:47 +02:00
|
|
|
index_files: &Path,
|
2023-10-05 15:39:33 +02:00
|
|
|
// list of changes to be made
|
2023-09-13 01:16:47 +02:00
|
|
|
changes: &mut Vec<IndexChange>,
|
2023-10-05 15:39:33 +02:00
|
|
|
// if the index is part of `source`, where exactly is it?
|
2023-11-04 15:11:20 +01:00
|
|
|
ignore_subdirs: &Vec<&Path>,
|
2023-09-13 01:16:47 +02:00
|
|
|
) -> Result<(), io::Error> {
|
2023-11-04 15:11:20 +01:00
|
|
|
for ii in ignore_subdirs {
|
2023-09-13 01:16:47 +02:00
|
|
|
if rel_path.starts_with(ii) {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-05 15:39:33 +02:00
|
|
|
// 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 {
|
2023-09-13 01:16:47 +02:00
|
|
|
let entry = entry?;
|
|
|
|
let metadata = entry.metadata()?;
|
2023-10-05 15:39:33 +02:00
|
|
|
let in_index_and_is_dir = index_entries.remove(&entry.file_name());
|
2023-09-13 01:16:47 +02:00
|
|
|
if metadata.is_dir() {
|
2023-10-05 15:39:33 +02:00
|
|
|
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())));
|
|
|
|
}
|
2023-09-13 01:16:47 +02:00
|
|
|
rec(
|
|
|
|
source,
|
|
|
|
&rel_path.join(entry.file_name()),
|
|
|
|
index_files,
|
|
|
|
changes,
|
2023-11-04 15:11:20 +01:00
|
|
|
ignore_subdirs,
|
2023-09-13 01:16:47 +02:00
|
|
|
)?;
|
|
|
|
} else {
|
2023-10-05 15:39:33 +02:00
|
|
|
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())));
|
|
|
|
}
|
2023-09-13 01:16:47 +02:00
|
|
|
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,
|
|
|
|
)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-10-05 15:39:33 +02:00
|
|
|
// 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))
|
|
|
|
});
|
|
|
|
}
|
2023-09-13 01:16:47 +02:00
|
|
|
Ok(())
|
|
|
|
}
|