mirror of
https://github.com/nushell/nushell
synced 2025-01-25 03:15:25 +00:00
76 lines
1.5 KiB
Rust
76 lines
1.5 KiB
Rust
use crate::{ast::Call, value::Value, BlockId, Example, PipelineData, ShellError, Signature};
|
|
|
|
use super::EvaluationContext;
|
|
|
|
pub trait Command: Send + Sync + CommandClone {
|
|
fn name(&self) -> &str;
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::new(self.name()).desc(self.usage()).filter()
|
|
}
|
|
|
|
fn usage(&self) -> &str;
|
|
|
|
fn extra_usage(&self) -> &str {
|
|
""
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
context: &EvaluationContext,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError>;
|
|
|
|
fn is_binary(&self) -> bool {
|
|
false
|
|
}
|
|
|
|
// Commands that are not meant to be run by users
|
|
fn is_private(&self) -> bool {
|
|
false
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
Vec::new()
|
|
}
|
|
|
|
// This is a built-in command
|
|
fn is_builtin(&self) -> bool {
|
|
true
|
|
}
|
|
|
|
// Is a sub command
|
|
fn is_sub(&self) -> bool {
|
|
self.name().contains(' ')
|
|
}
|
|
|
|
// Is a plugin command
|
|
fn is_plugin(&self) -> bool {
|
|
false
|
|
}
|
|
|
|
// If command is a block i.e. def blah [] { }, get the block id
|
|
fn get_block_id(&self) -> Option<BlockId> {
|
|
None
|
|
}
|
|
}
|
|
|
|
pub trait CommandClone {
|
|
fn clone_box(&self) -> Box<dyn Command>;
|
|
}
|
|
|
|
impl<T> CommandClone for T
|
|
where
|
|
T: 'static + Command + Clone,
|
|
{
|
|
fn clone_box(&self) -> Box<dyn Command> {
|
|
Box::new(self.clone())
|
|
}
|
|
}
|
|
|
|
impl Clone for Box<dyn Command> {
|
|
fn clone(&self) -> Box<dyn Command> {
|
|
self.clone_box()
|
|
}
|
|
}
|