nushell/src/commands/command.rs

32 lines
642 B
Rust
Raw Normal View History

2019-05-10 18:59:12 +02:00
use crate::errors::ShellError;
use crate::object::Value;
2019-05-11 10:08:21 +02:00
use std::path::PathBuf;
2019-05-10 18:59:12 +02:00
2019-05-11 10:08:21 +02:00
pub trait CommandBlueprint {
fn create(
&self,
2019-05-11 09:00:33 +02:00
args: Vec<String>,
2019-05-10 18:59:12 +02:00
host: &dyn crate::Host,
env: &mut crate::Environment,
2019-05-11 10:08:21 +02:00
) -> Box<dyn Command>;
}
crate enum CommandAction {
ChangeCwd(PathBuf),
}
pub struct CommandSuccess {
crate value: Value,
crate action: Vec<CommandAction>,
}
pub trait Command {
fn begin(&mut self) -> Result<(), ShellError> {
Ok(())
}
fn run(&mut self) -> Result<CommandSuccess, ShellError>;
fn end(&mut self) -> Result<(), ShellError> {
Ok(())
}
2019-05-10 18:59:12 +02:00
}