nushell/crates/nu-command/src/core_commands/register.rs

69 lines
2.1 KiB
Rust
Raw Normal View History

2021-10-31 09:17:01 +01:00
use nu_protocol::ast::Call;
use nu_protocol::engine::{Command, EngineState, Stack};
use nu_protocol::{Category, Example, PipelineData, Signature, SyntaxShape};
2021-10-31 09:17:01 +01:00
#[derive(Clone)]
pub struct Register;
impl Command for Register {
fn name(&self) -> &str {
"register"
}
fn usage(&self) -> &str {
"Register a plugin"
}
fn signature(&self) -> nu_protocol::Signature {
Signature::build("register")
.required(
"plugin",
SyntaxShape::Filepath,
"path of executable for plugin",
)
.required_named(
"encoding",
SyntaxShape::String,
"Encoding used to communicate with plugin. Options: [capnp, json]",
Some('e'),
)
.optional(
"signature",
SyntaxShape::Any,
"Block with signature description as json object",
)
.named(
"shell",
SyntaxShape::Filepath,
"path of shell used to run plugin (cmd, sh, python, etc)",
Some('s'),
)
.category(Category::Core)
2021-10-31 09:17:01 +01:00
}
fn run(
&self,
_engine_state: &EngineState,
_stack: &mut Stack,
call: &Call,
2021-10-31 09:17:01 +01:00
_input: PipelineData,
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
Ok(PipelineData::new(call.head))
2021-10-31 09:17:01 +01:00
}
fn examples(&self) -> Vec<Example> {
vec![
Example {
description: "Register `nu_plugin_extra_query` plugin from ~/.cargo/bin/ dir",
example: r#"register -e capnp ~/.cargo/bin/nu_plugin_extra_query"#,
result: None,
},
Example {
description: "Register `nu_plugin_extra_query` plugin from `nu -c`(plugin will be available in that nu session only)",
example: r#"let plugin = ((which nu).path.0 | path dirname | path join 'nu_plugin_extra_query'); nu -c $'register -e capnp ($plugin); version'"#,
result: None,
},
]
}
2021-10-31 09:17:01 +01:00
}