# Description This allows plugins to report their version (and potentially other metadata in the future). The version is shown in `plugin list` and in `version`. The metadata is stored in the registry file, and reflects whatever was retrieved on `plugin add`, not necessarily the running binary. This can help you to diagnose if there's some kind of mismatch with what you expect. We could potentially use this functionality to show a warning or error if a plugin being run does not have the same version as what was in the cache file, suggesting `plugin add` be run again, but I haven't done that at this point. It is optional, and it requires the plugin author to make some code changes if they want to provide it, since I can't automatically determine the version of the calling crate or anything tricky like that to do it. Example: ``` > plugin list | select name version is_running pid ╭───┬────────────────┬─────────┬────────────┬─────╮ │ # │ name │ version │ is_running │ pid │ ├───┼────────────────┼─────────┼────────────┼─────┤ │ 0 │ example │ 0.93.1 │ false │ │ │ 1 │ gstat │ 0.93.1 │ false │ │ │ 2 │ inc │ 0.93.1 │ false │ │ │ 3 │ python_example │ 0.1.0 │ false │ │ ╰───┴────────────────┴─────────┴────────────┴─────╯ ``` cc @maxim-uvarov (he asked for it) # User-Facing Changes - `plugin list` gets a `version` column - `version` shows plugin versions when available - plugin authors *should* add `fn metadata()` to their `impl Plugin`, but don't have to # Tests + Formatting Tested the low level stuff and also the `plugin list` column. # After Submitting - [ ] update plugin guide docs - [ ] update plugin protocol docs (`Metadata` call & response) - [ ] update plugin template (`fn metadata()` should be easy) - [ ] release notes
125 lines
4.2 KiB
Rust
125 lines
4.2 KiB
Rust
use itertools::Itertools;
|
|
use nu_engine::command_prelude::*;
|
|
|
|
#[derive(Clone)]
|
|
pub struct PluginList;
|
|
|
|
impl Command for PluginList {
|
|
fn name(&self) -> &str {
|
|
"plugin list"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("plugin list")
|
|
.input_output_type(
|
|
Type::Nothing,
|
|
Type::Table(
|
|
[
|
|
("name".into(), Type::String),
|
|
("version".into(), Type::String),
|
|
("is_running".into(), Type::Bool),
|
|
("pid".into(), Type::Int),
|
|
("filename".into(), Type::String),
|
|
("shell".into(), Type::String),
|
|
("commands".into(), Type::List(Type::String.into())),
|
|
]
|
|
.into(),
|
|
),
|
|
)
|
|
.category(Category::Plugin)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"List installed plugins."
|
|
}
|
|
|
|
fn search_terms(&self) -> Vec<&str> {
|
|
vec!["scope"]
|
|
}
|
|
|
|
fn examples(&self) -> Vec<nu_protocol::Example> {
|
|
vec![
|
|
Example {
|
|
example: "plugin list",
|
|
description: "List installed plugins.",
|
|
result: Some(Value::test_list(vec![Value::test_record(record! {
|
|
"name" => Value::test_string("inc"),
|
|
"version" => Value::test_string(env!("CARGO_PKG_VERSION")),
|
|
"is_running" => Value::test_bool(true),
|
|
"pid" => Value::test_int(106480),
|
|
"filename" => if cfg!(windows) {
|
|
Value::test_string(r"C:\nu\plugins\nu_plugin_inc.exe")
|
|
} else {
|
|
Value::test_string("/opt/nu/plugins/nu_plugin_inc")
|
|
},
|
|
"shell" => Value::test_nothing(),
|
|
"commands" => Value::test_list(vec![Value::test_string("inc")]),
|
|
})])),
|
|
},
|
|
Example {
|
|
example: "ps | where pid in (plugin list).pid",
|
|
description: "Get process information for running plugins.",
|
|
result: None,
|
|
},
|
|
]
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
engine_state: &EngineState,
|
|
_stack: &mut Stack,
|
|
call: &Call,
|
|
_input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let head = call.head;
|
|
|
|
// Group plugin decls by plugin identity
|
|
let decls = engine_state.plugin_decls().into_group_map_by(|decl| {
|
|
decl.plugin_identity()
|
|
.expect("plugin decl should have identity")
|
|
});
|
|
|
|
// Build plugins list
|
|
let list = engine_state.plugins().iter().map(|plugin| {
|
|
// Find commands that belong to the plugin
|
|
let commands = decls.get(plugin.identity())
|
|
.into_iter()
|
|
.flat_map(|decls| {
|
|
decls.iter().map(|decl| Value::string(decl.name(), head))
|
|
})
|
|
.collect();
|
|
|
|
let pid = plugin
|
|
.pid()
|
|
.map(|p| Value::int(p as i64, head))
|
|
.unwrap_or(Value::nothing(head));
|
|
|
|
let shell = plugin
|
|
.identity()
|
|
.shell()
|
|
.map(|s| Value::string(s.to_string_lossy(), head))
|
|
.unwrap_or(Value::nothing(head));
|
|
|
|
let metadata = plugin.metadata();
|
|
let version = metadata
|
|
.and_then(|m| m.version)
|
|
.map(|s| Value::string(s, head))
|
|
.unwrap_or(Value::nothing(head));
|
|
|
|
let record = record! {
|
|
"name" => Value::string(plugin.identity().name(), head),
|
|
"version" => version,
|
|
"is_running" => Value::bool(plugin.is_running(), head),
|
|
"pid" => pid,
|
|
"filename" => Value::string(plugin.identity().filename().to_string_lossy(), head),
|
|
"shell" => shell,
|
|
"commands" => Value::list(commands, head),
|
|
};
|
|
|
|
Value::record(record, head)
|
|
}).collect();
|
|
|
|
Ok(Value::list(list, head).into_pipeline_data())
|
|
}
|
|
}
|