2019-05-10 18:59:12 +02:00
|
|
|
use crate::errors::ShellError;
|
|
|
|
use crate::object::Value;
|
2019-05-28 08:45:18 +02:00
|
|
|
use crate::parser::CommandConfig;
|
2019-05-13 19:30:51 +02:00
|
|
|
use crate::prelude::*;
|
2019-06-07 08:34:42 +02:00
|
|
|
use core::future::Future;
|
2019-05-11 10:08:21 +02:00
|
|
|
use std::path::PathBuf;
|
2019-05-10 18:59:12 +02:00
|
|
|
|
2019-05-23 09:23:06 +02:00
|
|
|
pub struct CommandArgs {
|
2019-05-24 06:34:43 +02:00
|
|
|
pub host: Arc<Mutex<dyn Host + Send>>,
|
2019-05-23 09:23:06 +02:00
|
|
|
pub env: Arc<Mutex<Environment>>,
|
2019-06-01 07:50:16 +02:00
|
|
|
pub positional: Vec<Value>,
|
|
|
|
pub named: indexmap::IndexMap<String, Value>,
|
2019-05-23 09:23:06 +02:00
|
|
|
pub input: InputStream,
|
2019-05-16 02:21:46 +02:00
|
|
|
}
|
|
|
|
|
2019-05-23 09:23:06 +02:00
|
|
|
impl CommandArgs {
|
2019-05-22 09:12:03 +02:00
|
|
|
crate fn from_context(
|
|
|
|
ctx: &'caller mut Context,
|
2019-06-01 07:50:16 +02:00
|
|
|
positional: Vec<Value>,
|
2019-05-23 09:23:06 +02:00
|
|
|
input: InputStream,
|
|
|
|
) -> CommandArgs {
|
2019-05-22 09:12:03 +02:00
|
|
|
CommandArgs {
|
2019-05-23 09:23:06 +02:00
|
|
|
host: ctx.host.clone(),
|
|
|
|
env: ctx.env.clone(),
|
2019-06-01 07:50:16 +02:00
|
|
|
positional,
|
|
|
|
named: indexmap::IndexMap::default(),
|
2019-05-22 09:12:03 +02:00
|
|
|
input,
|
|
|
|
}
|
|
|
|
}
|
2019-05-11 10:08:21 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 08:34:42 +02:00
|
|
|
pub struct SinkCommandArgs {
|
|
|
|
pub ctx: Context,
|
|
|
|
pub positional: Vec<Value>,
|
|
|
|
pub named: indexmap::IndexMap<String, Value>,
|
|
|
|
pub input: Vec<Value>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SinkCommandArgs {
|
|
|
|
crate fn from_context(
|
|
|
|
ctx: &'caller mut Context,
|
|
|
|
positional: Vec<Value>,
|
|
|
|
input: Vec<Value>,
|
|
|
|
) -> SinkCommandArgs {
|
|
|
|
SinkCommandArgs {
|
|
|
|
ctx: ctx.clone(),
|
|
|
|
positional,
|
|
|
|
named: indexmap::IndexMap::default(),
|
|
|
|
input,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-15 18:12:38 +02:00
|
|
|
#[derive(Debug)]
|
2019-05-13 19:30:51 +02:00
|
|
|
pub enum CommandAction {
|
2019-05-11 10:08:21 +02:00
|
|
|
ChangeCwd(PathBuf),
|
|
|
|
}
|
|
|
|
|
2019-05-15 18:12:38 +02:00
|
|
|
#[derive(Debug)]
|
2019-05-13 19:30:51 +02:00
|
|
|
pub enum ReturnValue {
|
|
|
|
Value(Value),
|
|
|
|
Action(CommandAction),
|
2019-05-11 10:08:21 +02:00
|
|
|
}
|
|
|
|
|
2019-05-13 19:30:51 +02:00
|
|
|
impl ReturnValue {
|
|
|
|
crate fn change_cwd(path: PathBuf) -> ReturnValue {
|
|
|
|
ReturnValue::Action(CommandAction::ChangeCwd(path))
|
2019-05-11 10:08:21 +02:00
|
|
|
}
|
2019-05-10 18:59:12 +02:00
|
|
|
}
|
2019-05-13 19:30:51 +02:00
|
|
|
|
|
|
|
pub trait Command {
|
2019-05-23 09:23:06 +02:00
|
|
|
fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError>;
|
2019-05-28 08:45:18 +02:00
|
|
|
fn name(&self) -> &str;
|
|
|
|
|
|
|
|
fn config(&self) -> CommandConfig {
|
|
|
|
CommandConfig {
|
|
|
|
name: self.name().to_string(),
|
|
|
|
mandatory_positional: vec![],
|
|
|
|
optional_positional: vec![],
|
|
|
|
rest_positional: true,
|
|
|
|
named: indexmap::IndexMap::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-07 08:34:42 +02:00
|
|
|
pub trait Sink {
|
|
|
|
fn run(&self, args: SinkCommandArgs) -> Result<(), ShellError>;
|
|
|
|
fn name(&self) -> &str;
|
|
|
|
|
|
|
|
fn config(&self) -> CommandConfig {
|
|
|
|
CommandConfig {
|
|
|
|
name: self.name().to_string(),
|
|
|
|
mandatory_positional: vec![],
|
|
|
|
optional_positional: vec![],
|
|
|
|
rest_positional: true,
|
|
|
|
named: indexmap::IndexMap::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-28 08:45:18 +02:00
|
|
|
pub struct FnCommand {
|
|
|
|
name: String,
|
|
|
|
func: fn(CommandArgs) -> Result<OutputStream, ShellError>,
|
2019-05-13 19:30:51 +02:00
|
|
|
}
|
2019-05-22 09:12:03 +02:00
|
|
|
|
2019-05-28 08:45:18 +02:00
|
|
|
impl Command for FnCommand {
|
2019-05-23 09:23:06 +02:00
|
|
|
fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
2019-05-28 08:45:18 +02:00
|
|
|
(self.func)(args)
|
2019-05-22 09:12:03 +02:00
|
|
|
}
|
2019-05-28 08:45:18 +02:00
|
|
|
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
&self.name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn command(
|
|
|
|
name: &str,
|
|
|
|
func: fn(CommandArgs) -> Result<OutputStream, ShellError>,
|
|
|
|
) -> Arc<dyn Command> {
|
|
|
|
Arc::new(FnCommand {
|
|
|
|
name: name.to_string(),
|
|
|
|
func,
|
|
|
|
})
|
2019-05-22 09:12:03 +02:00
|
|
|
}
|
2019-06-07 08:34:42 +02:00
|
|
|
|
|
|
|
pub struct FnSink {
|
|
|
|
name: String,
|
|
|
|
func: fn(SinkCommandArgs) -> Result<(), ShellError>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Sink for FnSink {
|
|
|
|
fn run(&self, args: SinkCommandArgs) -> Result<(), ShellError> {
|
|
|
|
(self.func)(args)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
&self.name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn sink(name: &str, func: fn(SinkCommandArgs) -> Result<(), ShellError>) -> Arc<dyn Sink> {
|
|
|
|
Arc::new(FnSink {
|
|
|
|
name: name.to_string(),
|
|
|
|
func,
|
|
|
|
})
|
|
|
|
}
|