working dir duplication

This commit is contained in:
brxken128 2023-01-17 12:13:25 +00:00
parent f81c1b35a8
commit e86ed4e212

View file

@ -2,12 +2,15 @@ use super::{context_menu_fs_info, FsInfo, ObjectType};
use crate::job::{JobError, JobReportUpdate, JobResult, JobState, StatefulJob, WorkerContext};
use serde::{Deserialize, Serialize};
use specta::Type;
use std::{collections::VecDeque, hash::Hash};
use std::{collections::VecDeque, hash::Hash, path::PathBuf};
pub struct FileDuplicatorJob {}
#[derive(Serialize, Deserialize, Debug)]
pub struct FileDuplicatorJobState {}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct FileDuplicatorJobState {
pub root_path: PathBuf,
pub root_type: ObjectType,
}
#[derive(Serialize, Deserialize, Hash, Type)]
pub struct FileDuplicatorJobInit {
@ -15,7 +18,7 @@ pub struct FileDuplicatorJobInit {
pub path_id: i32,
}
#[derive(Serialize, Deserialize, Debug)]
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct FileDuplicatorJobStep {
pub fs_info: FsInfo,
}
@ -40,6 +43,11 @@ impl StatefulJob for FileDuplicatorJob {
)
.await?;
state.data = Some(FileDuplicatorJobState {
root_path: fs_info.obj_path.clone(),
root_type: fs_info.obj_type.clone(),
});
state.steps = VecDeque::new();
state.steps.push_back(FileDuplicatorJobStep { fs_info });
@ -53,29 +61,96 @@ impl StatefulJob for FileDuplicatorJob {
ctx: WorkerContext,
state: &mut JobState<Self>,
) -> Result<(), JobError> {
let step = &state.steps[0];
let step = state.steps[0].clone();
let info = &step.fs_info;
// temporary
let job_state = if let Some(st) = state.data.clone() {
st
} else {
return Err(JobError::CryptoError(sd_crypto::Error::MediaLengthParse));
};
let mut root_path = if job_state.root_type == ObjectType::File {
let mut output_path = info.obj_path.clone();
output_path.set_file_name(
info.obj_path
.file_stem()
.unwrap()
.to_str()
.unwrap()
.to_string() + "-Copy"
+ &info.obj_path.extension().map_or_else(
|| String::from(""),
|x| String::from(".") + x.to_str().unwrap(),
),
);
output_path
} else {
let mut output_path = job_state.root_path.clone();
output_path.set_file_name(
output_path
.file_stem()
.unwrap()
.to_str()
.unwrap()
.to_string() + "-Copy",
);
output_path
};
match info.obj_type {
ObjectType::File => {
let mut output_path = info.obj_path.clone();
output_path.set_file_name(
info.obj_path
.clone()
.file_stem()
.unwrap()
.to_str()
.unwrap()
.to_string() + "-Copy" + "."
+ info
.obj_path
.extension()
.map_or_else(|| "", |x| x.to_str().unwrap()),
);
std::fs::copy(info.obj_path.clone(), output_path)
let mut path = root_path.clone();
if job_state.root_type == ObjectType::Directory {
path.push(
info.obj_path
.strip_prefix(job_state.root_path.clone())
.unwrap(),
);
}
std::fs::copy(info.obj_path.clone(), path.clone())?;
}
ObjectType::Directory => todo!(),
}?;
ObjectType::Directory => {
for entry in std::fs::read_dir(info.obj_path.clone())? {
let entry = entry?;
if entry.metadata()?.is_dir() {
let obj_type = ObjectType::Directory;
state.steps.push_back(FileDuplicatorJobStep {
fs_info: FsInfo {
obj_id: None,
obj_name: String::new(),
obj_path: entry.path(),
obj_type,
},
});
let mut path = root_path.clone();
path.push(
entry
.path()
.strip_prefix(job_state.root_path.clone())
.unwrap(),
);
std::fs::create_dir_all(path)?;
} else {
let obj_type = ObjectType::File;
state.steps.push_back(FileDuplicatorJobStep {
fs_info: FsInfo {
obj_id: None,
obj_name: entry.file_name().to_str().unwrap().to_string(),
obj_path: entry.path(),
obj_type,
},
});
};
ctx.progress(vec![JobReportUpdate::TaskCount(state.steps.len())]);
}
}
};
ctx.progress(vec![JobReportUpdate::CompletedTaskCount(
state.step_number + 1,