bakare/src/backup.rs
2019-09-01 11:05:22 +01:00

28 lines
698 B
Rust

use std::path::Path;
use walkdir::WalkDir;
use crate::error::BakareError;
use crate::repository::Repository;
pub struct Engine<'a> {
source_path: &'a Path,
repository: &'a mut Repository<'a>,
}
impl<'a> Engine<'a> {
pub fn new(source_path: &'a Path, repository: &'a mut Repository<'a>) -> Self {
Engine { source_path, repository }
}
pub fn backup(&mut self) -> Result<(), BakareError> {
let walker = WalkDir::new(self.source_path);
for maybe_entry in walker {
let entry = maybe_entry?;
if entry.path() != self.source_path {
self.repository.store(entry.path())?;
}
}
Ok(())
}
}