2019-08-19 02:12:28 +02:00
|
|
|
use crate::commands::command::RunnablePerItemContext;
|
2019-08-14 22:08:10 +02:00
|
|
|
use crate::errors::ShellError;
|
|
|
|
use crate::parser::hir::SyntaxType;
|
|
|
|
use crate::parser::registry::{CommandRegistry, Signature};
|
|
|
|
use crate::prelude::*;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
use crate::utils::FileStructure;
|
|
|
|
|
|
|
|
pub struct Move;
|
|
|
|
|
2019-08-19 02:12:28 +02:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct MoveArgs {
|
|
|
|
source: Tagged<PathBuf>,
|
|
|
|
destination: Tagged<PathBuf>,
|
|
|
|
}
|
|
|
|
|
2019-08-15 07:02:02 +02:00
|
|
|
impl PerItemCommand for Move {
|
2019-08-14 22:08:10 +02:00
|
|
|
fn run(
|
|
|
|
&self,
|
2019-08-15 07:02:02 +02:00
|
|
|
call_info: &CallInfo,
|
|
|
|
_registry: &CommandRegistry,
|
|
|
|
shell_manager: &ShellManager,
|
|
|
|
_input: Tagged<Value>,
|
|
|
|
) -> Result<VecDeque<ReturnValue>, ShellError> {
|
2019-08-19 02:12:28 +02:00
|
|
|
call_info.process(shell_manager, mv)?.run()
|
2019-08-14 22:08:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"mv"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
2019-08-19 02:12:28 +02:00
|
|
|
Signature::build("mv")
|
|
|
|
.required("source", SyntaxType::Path)
|
|
|
|
.required("destination", SyntaxType::Path)
|
|
|
|
.named("file", SyntaxType::Any)
|
2019-08-14 22:08:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-15 07:02:02 +02:00
|
|
|
pub fn mv(
|
2019-08-19 02:12:28 +02:00
|
|
|
args: MoveArgs,
|
|
|
|
context: &RunnablePerItemContext,
|
2019-08-15 07:02:02 +02:00
|
|
|
) -> Result<VecDeque<ReturnValue>, ShellError> {
|
2019-08-19 02:12:28 +02:00
|
|
|
let mut source = PathBuf::from(context.shell_manager.path());
|
|
|
|
let mut destination = PathBuf::from(context.shell_manager.path());
|
|
|
|
let name_span = context.name;
|
2019-08-14 22:08:10 +02:00
|
|
|
|
2019-08-19 02:12:28 +02:00
|
|
|
source.push(&args.source.item);
|
2019-08-14 22:08:10 +02:00
|
|
|
|
2019-08-19 02:12:28 +02:00
|
|
|
destination.push(&args.destination.item);
|
2019-08-14 22:08:10 +02:00
|
|
|
|
2019-08-19 02:12:28 +02:00
|
|
|
let sources: Vec<_> = match glob::glob(&source.to_string_lossy()) {
|
|
|
|
Ok(files) => files.collect(),
|
|
|
|
Err(_) => {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
"Invalid pattern.",
|
|
|
|
"Invalid pattern.",
|
|
|
|
args.source.tag,
|
|
|
|
))
|
|
|
|
}
|
|
|
|
};
|
2019-08-14 22:08:10 +02:00
|
|
|
|
2019-08-19 02:12:28 +02:00
|
|
|
let destination_file_name = {
|
|
|
|
let path = &destination;
|
2019-08-14 22:08:10 +02:00
|
|
|
|
2019-08-19 02:12:28 +02:00
|
|
|
match path.file_name() {
|
|
|
|
Some(name) => PathBuf::from(name),
|
|
|
|
None => {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
"Rename aborted. Not a valid destination",
|
|
|
|
"Rename aborted. Not a valid destination",
|
|
|
|
name_span,
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-08-14 22:08:10 +02:00
|
|
|
|
|
|
|
if sources.len() == 1 {
|
|
|
|
if let Ok(entry) = &sources[0] {
|
2019-08-19 02:12:28 +02:00
|
|
|
let entry_file_name = match entry.file_name() {
|
|
|
|
Some(name) => name,
|
|
|
|
None => {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
"Rename aborted. Not a valid entry name",
|
|
|
|
"Rename aborted. Not a valid entry name",
|
|
|
|
name_span,
|
|
|
|
))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-08-14 22:08:10 +02:00
|
|
|
if destination.exists() && destination.is_dir() {
|
2019-08-19 02:12:28 +02:00
|
|
|
destination = match dunce::canonicalize(&destination) {
|
|
|
|
Ok(path) => path,
|
|
|
|
Err(e) => {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
format!("Rename aborted. {:}", e.to_string()),
|
|
|
|
format!("Rename aborted. {:}", e.to_string()),
|
|
|
|
name_span,
|
|
|
|
))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
destination.push(entry_file_name);
|
2019-08-14 22:08:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if entry.is_file() {
|
|
|
|
match std::fs::rename(&entry, &destination) {
|
|
|
|
Err(e) => {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
format!(
|
|
|
|
"Rename {:?} to {:?} aborted. {:}",
|
2019-08-19 02:12:28 +02:00
|
|
|
entry_file_name,
|
|
|
|
destination_file_name,
|
2019-08-14 22:08:10 +02:00
|
|
|
e.to_string(),
|
|
|
|
),
|
|
|
|
format!(
|
|
|
|
"Rename {:?} to {:?} aborted. {:}",
|
2019-08-19 02:12:28 +02:00
|
|
|
entry_file_name,
|
|
|
|
destination_file_name,
|
2019-08-14 22:08:10 +02:00
|
|
|
e.to_string(),
|
|
|
|
),
|
2019-08-19 02:12:28 +02:00
|
|
|
name_span,
|
2019-08-14 22:08:10 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
Ok(o) => o,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
if entry.is_dir() {
|
|
|
|
match std::fs::create_dir_all(&destination) {
|
|
|
|
Err(e) => {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
format!(
|
|
|
|
"Rename {:?} to {:?} aborted. {:}",
|
2019-08-19 02:12:28 +02:00
|
|
|
entry_file_name,
|
|
|
|
destination_file_name,
|
2019-08-14 22:08:10 +02:00
|
|
|
e.to_string(),
|
|
|
|
),
|
|
|
|
format!(
|
|
|
|
"Rename {:?} to {:?} aborted. {:}",
|
2019-08-19 02:12:28 +02:00
|
|
|
entry_file_name,
|
|
|
|
destination_file_name,
|
2019-08-14 22:08:10 +02:00
|
|
|
e.to_string(),
|
|
|
|
),
|
2019-08-19 02:12:28 +02:00
|
|
|
name_span,
|
2019-08-14 22:08:10 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
Ok(o) => o,
|
|
|
|
};
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
{
|
|
|
|
match std::fs::rename(&entry, &destination) {
|
|
|
|
Err(e) => {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
format!(
|
|
|
|
"Rename {:?} to {:?} aborted. {:}",
|
2019-08-19 02:12:28 +02:00
|
|
|
entry_file_name,
|
|
|
|
destination_file_name,
|
2019-08-14 22:08:10 +02:00
|
|
|
e.to_string(),
|
|
|
|
),
|
|
|
|
format!(
|
|
|
|
"Rename {:?} to {:?} aborted. {:}",
|
2019-08-19 02:12:28 +02:00
|
|
|
entry_file_name,
|
|
|
|
destination_file_name,
|
2019-08-14 22:08:10 +02:00
|
|
|
e.to_string(),
|
|
|
|
),
|
2019-08-19 02:12:28 +02:00
|
|
|
name_span,
|
2019-08-14 22:08:10 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
Ok(o) => o,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
|
|
{
|
|
|
|
let mut sources: FileStructure = FileStructure::new();
|
|
|
|
|
2019-08-19 02:12:28 +02:00
|
|
|
sources.walk_decorate(&entry)?;
|
2019-08-14 22:08:10 +02:00
|
|
|
|
|
|
|
let strategy = |(source_file, depth_level)| {
|
|
|
|
let mut new_dst = destination.clone();
|
2019-08-19 02:12:28 +02:00
|
|
|
|
2019-08-14 22:08:10 +02:00
|
|
|
let path = dunce::canonicalize(&source_file).unwrap();
|
|
|
|
|
|
|
|
let mut comps: Vec<_> = path
|
|
|
|
.components()
|
|
|
|
.map(|fragment| fragment.as_os_str())
|
|
|
|
.rev()
|
|
|
|
.take(1 + depth_level)
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
comps.reverse();
|
|
|
|
|
|
|
|
for fragment in comps.iter() {
|
|
|
|
new_dst.push(fragment);
|
|
|
|
}
|
|
|
|
|
|
|
|
(PathBuf::from(&source_file), PathBuf::from(new_dst))
|
|
|
|
};
|
|
|
|
|
|
|
|
for (ref src, ref dst) in sources.paths_applying_with(strategy) {
|
|
|
|
if src.is_dir() {
|
|
|
|
if !dst.exists() {
|
|
|
|
match std::fs::create_dir_all(dst) {
|
|
|
|
Err(e) => {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
format!(
|
|
|
|
"Rename {:?} to {:?} aborted. {:}",
|
2019-08-19 02:12:28 +02:00
|
|
|
entry_file_name,
|
|
|
|
destination_file_name,
|
2019-08-14 22:08:10 +02:00
|
|
|
e.to_string(),
|
|
|
|
),
|
|
|
|
format!(
|
|
|
|
"Rename {:?} to {:?} aborted. {:}",
|
2019-08-19 02:12:28 +02:00
|
|
|
entry_file_name,
|
|
|
|
destination_file_name,
|
2019-08-14 22:08:10 +02:00
|
|
|
e.to_string(),
|
|
|
|
),
|
2019-08-19 02:12:28 +02:00
|
|
|
name_span,
|
2019-08-14 22:08:10 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
Ok(o) => o,
|
2019-08-19 02:12:28 +02:00
|
|
|
}
|
2019-08-14 22:08:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if src.is_file() {
|
|
|
|
match std::fs::rename(src, dst) {
|
|
|
|
Err(e) => {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
format!(
|
|
|
|
"Rename {:?} to {:?} aborted. {:}",
|
2019-08-19 02:12:28 +02:00
|
|
|
entry_file_name,
|
|
|
|
destination_file_name,
|
2019-08-14 22:08:10 +02:00
|
|
|
e.to_string(),
|
|
|
|
),
|
|
|
|
format!(
|
|
|
|
"Rename {:?} to {:?} aborted. {:}",
|
2019-08-19 02:12:28 +02:00
|
|
|
entry_file_name,
|
|
|
|
destination_file_name,
|
2019-08-14 22:08:10 +02:00
|
|
|
e.to_string(),
|
|
|
|
),
|
2019-08-19 02:12:28 +02:00
|
|
|
name_span,
|
2019-08-14 22:08:10 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
Ok(o) => o,
|
2019-08-19 02:12:28 +02:00
|
|
|
}
|
2019-08-14 22:08:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-19 02:12:28 +02:00
|
|
|
match std::fs::remove_dir_all(entry) {
|
|
|
|
Err(e) => {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
format!(
|
|
|
|
"Rename {:?} to {:?} aborted. {:}",
|
|
|
|
entry_file_name,
|
|
|
|
destination_file_name,
|
|
|
|
e.to_string(),
|
|
|
|
),
|
|
|
|
format!(
|
|
|
|
"Rename {:?} to {:?} aborted. {:}",
|
|
|
|
entry_file_name,
|
|
|
|
destination_file_name,
|
|
|
|
e.to_string(),
|
|
|
|
),
|
|
|
|
name_span,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
Ok(o) => o,
|
|
|
|
};
|
2019-08-14 22:08:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if destination.exists() {
|
2019-08-19 02:12:28 +02:00
|
|
|
if !sources.iter().all(|x| {
|
|
|
|
if let Ok(entry) = x.as_ref() {
|
|
|
|
entry.is_file()
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}) {
|
2019-08-14 22:08:10 +02:00
|
|
|
return Err(ShellError::labeled_error(
|
2019-08-14 23:44:23 +02:00
|
|
|
"Rename aborted (directories found). Renaming in patterns not supported yet (try moving the directory directly)",
|
|
|
|
"Rename aborted (directories found). Renaming in patterns not supported yet (try moving the directory directly)",
|
2019-08-19 02:12:28 +02:00
|
|
|
args.source.tag,
|
2019-08-14 22:08:10 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
for entry in sources {
|
|
|
|
if let Ok(entry) = entry {
|
2019-08-19 02:12:28 +02:00
|
|
|
let entry_file_name = match entry.file_name() {
|
|
|
|
Some(name) => name,
|
|
|
|
None => {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
"Rename aborted. Not a valid entry name",
|
|
|
|
"Rename aborted. Not a valid entry name",
|
|
|
|
name_span,
|
|
|
|
))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-08-14 22:08:10 +02:00
|
|
|
let mut to = PathBuf::from(&destination);
|
2019-08-19 02:12:28 +02:00
|
|
|
to.push(entry_file_name);
|
2019-08-14 22:08:10 +02:00
|
|
|
|
|
|
|
if entry.is_file() {
|
|
|
|
match std::fs::rename(&entry, &to) {
|
|
|
|
Err(e) => {
|
|
|
|
return Err(ShellError::labeled_error(
|
|
|
|
format!(
|
|
|
|
"Rename {:?} to {:?} aborted. {:}",
|
2019-08-19 02:12:28 +02:00
|
|
|
entry_file_name,
|
|
|
|
destination_file_name,
|
2019-08-14 22:08:10 +02:00
|
|
|
e.to_string(),
|
|
|
|
),
|
|
|
|
format!(
|
|
|
|
"Rename {:?} to {:?} aborted. {:}",
|
2019-08-19 02:12:28 +02:00
|
|
|
entry_file_name,
|
|
|
|
destination_file_name,
|
2019-08-14 22:08:10 +02:00
|
|
|
e.to_string(),
|
|
|
|
),
|
2019-08-19 02:12:28 +02:00
|
|
|
name_span,
|
2019-08-14 22:08:10 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
Ok(o) => o,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return Err(ShellError::labeled_error(
|
2019-08-19 02:12:28 +02:00
|
|
|
format!("Rename aborted. (Does {:?} exist?)", destination_file_name),
|
|
|
|
format!("Rename aborted. (Does {:?} exist?)", destination_file_name),
|
|
|
|
args.destination.span(),
|
2019-08-14 22:08:10 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-15 07:02:02 +02:00
|
|
|
Ok(VecDeque::new())
|
2019-08-14 22:08:10 +02:00
|
|
|
}
|