mirror of
https://github.com/nushell/nushell
synced 2025-01-10 20:29:06 +00:00
77 lines
2.2 KiB
Rust
77 lines
2.2 KiB
Rust
use crate::errors::ShellError;
|
|
use crate::parser::hir::SyntaxType;
|
|
use crate::parser::registry::{CommandConfig, NamedType, PositionalType};
|
|
use crate::prelude::*;
|
|
|
|
use glob::glob;
|
|
use indexmap::IndexMap;
|
|
|
|
pub struct Remove;
|
|
|
|
impl Command for Remove {
|
|
fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
rm(args)
|
|
}
|
|
|
|
fn name(&self) -> &str {
|
|
"rm"
|
|
}
|
|
|
|
fn config(&self) -> CommandConfig {
|
|
let mut named: IndexMap<String, NamedType> = IndexMap::new();
|
|
named.insert("recursive".to_string(), NamedType::Switch);
|
|
|
|
CommandConfig {
|
|
name: self.name().to_string(),
|
|
positional: vec![PositionalType::mandatory("file", SyntaxType::Path)],
|
|
rest_positional: false,
|
|
named,
|
|
is_sink: false,
|
|
is_filter: false,
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn rm(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
let mut full_path = args.env.lock().unwrap().path().to_path_buf();
|
|
|
|
match args
|
|
.nth(0)
|
|
.ok_or_else(|| ShellError::string(&format!("No file or directory specified")))?
|
|
.as_string()?
|
|
.as_str()
|
|
{
|
|
"." | ".." => return Err(ShellError::string("\".\" and \"..\" may not be removed")),
|
|
file => full_path.push(file),
|
|
}
|
|
|
|
let entries = glob(&full_path.to_string_lossy());
|
|
|
|
if entries.is_err() {
|
|
return Err(ShellError::string("Invalid pattern."));
|
|
}
|
|
|
|
let entries = entries.unwrap();
|
|
|
|
for entry in entries {
|
|
match entry {
|
|
Ok(path) => {
|
|
if path.is_dir() {
|
|
if !args.has("recursive") {
|
|
return Err(ShellError::labeled_error(
|
|
"is a directory",
|
|
"",
|
|
args.call_info.name_span,
|
|
));
|
|
}
|
|
std::fs::remove_dir_all(&path).expect("can not remove directory");
|
|
} else if path.is_file() {
|
|
std::fs::remove_file(&path).expect("can not remove file");
|
|
}
|
|
}
|
|
Err(e) => return Err(ShellError::string(&format!("{:?}", e))),
|
|
}
|
|
}
|
|
|
|
Ok(OutputStream::empty())
|
|
}
|