mirror of
https://github.com/nushell/nushell.git
synced 2025-04-11 06:48:31 +02:00
# Description This allows plugins to make calls back to the engine to get config, evaluate closures, and do other things that must be done within the engine process. Engine calls can both produce and consume streams as necessary. Closures passed to plugins can both accept stream input and produce stream output sent back to the plugin. Engine calls referring to a plugin call's context can be processed as long either the response hasn't been received, or the response created streams that haven't ended yet. This is a breaking API change for plugins. There are some pretty major changes to the interface that plugins must implement, including: 1. Plugins now run with `&self` and must be `Sync`. Executing multiple plugin calls in parallel is supported, and there's a chance that a closure passed to a plugin could invoke the same plugin. Supporting state across plugin invocations is left up to the plugin author to do in whichever way they feel best, but the plugin object itself is still shared. Even though the engine doesn't run multiple plugin calls through the same process yet, I still considered it important to break the API in this way at this stage. We might want to consider an optional threadpool feature for performance. 2. Plugins take a reference to `EngineInterface`, which can be cloned. This interface allows plugins to make calls back to the engine, including for getting config and running closures. 3. Plugins no longer take the `config` parameter. This can be accessed from the interface via the `.get_plugin_config()` engine call. # User-Facing Changes <!-- List of all changes that impact the user experience here. This helps us keep track of breaking changes. --> Not only does this have plugin protocol changes, it will require plugins to make some code changes before they will work again. But on the plus side, the engine call feature is extensible, and we can add more things to it as needed. Plugin maintainers will have to change the trait signature at the very least. If they were using `config`, they will have to call `engine.get_plugin_config()` instead. If they were using the mutable reference to the plugin, they will have to come up with some strategy to work around it (for example, for `Inc` I just cloned it). This shouldn't be such a big deal at the moment as it's not like plugins have ever run as daemons with persistent state in the past, and they don't in this PR either. But I thought it was important to make the change before we support plugins as daemons, as an exclusive mutable reference is not compatible with parallel plugin calls. I suggest this gets merged sometime *after* the current pending release, so that we have some time to adjust to the previous plugin protocol changes that don't require code changes before making ones that do. # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib` # After Submitting I will document the additional protocol features (`EngineCall`, `EngineCallResponse`), and constraints on plugin call processing if engine calls are used - basically, to be aware that an engine call could result in a nested plugin call, so the plugin should be able to handle that.
208 lines
6.4 KiB
Rust
208 lines
6.4 KiB
Rust
use std::sync::{atomic::AtomicBool, Arc};
|
|
|
|
use nu_engine::get_eval_block_with_early_return;
|
|
use nu_protocol::{
|
|
ast::Call,
|
|
engine::{Closure, EngineState, Stack},
|
|
Config, PipelineData, ShellError, Span, Spanned, Value,
|
|
};
|
|
|
|
use super::PluginIdentity;
|
|
|
|
/// Object safe trait for abstracting operations required of the plugin context.
|
|
pub(crate) trait PluginExecutionContext: Send + Sync {
|
|
/// The [Span] for the command execution (`call.head`)
|
|
fn command_span(&self) -> Span;
|
|
/// The name of the command being executed
|
|
fn command_name(&self) -> &str;
|
|
/// The interrupt signal, if present
|
|
fn ctrlc(&self) -> Option<&Arc<AtomicBool>>;
|
|
/// Get engine configuration
|
|
fn get_config(&self) -> Result<Config, ShellError>;
|
|
/// Get plugin configuration
|
|
fn get_plugin_config(&self) -> Result<Option<Value>, ShellError>;
|
|
/// Evaluate a closure passed to the plugin
|
|
fn eval_closure(
|
|
&self,
|
|
closure: Spanned<Closure>,
|
|
positional: Vec<Value>,
|
|
input: PipelineData,
|
|
redirect_stdout: bool,
|
|
redirect_stderr: bool,
|
|
) -> Result<PipelineData, ShellError>;
|
|
}
|
|
|
|
/// The execution context of a plugin command.
|
|
pub(crate) struct PluginExecutionCommandContext {
|
|
identity: Arc<PluginIdentity>,
|
|
engine_state: EngineState,
|
|
stack: Stack,
|
|
call: Call,
|
|
}
|
|
|
|
impl PluginExecutionCommandContext {
|
|
pub fn new(
|
|
identity: Arc<PluginIdentity>,
|
|
engine_state: &EngineState,
|
|
stack: &Stack,
|
|
call: &Call,
|
|
) -> PluginExecutionCommandContext {
|
|
PluginExecutionCommandContext {
|
|
identity,
|
|
engine_state: engine_state.clone(),
|
|
stack: stack.clone(),
|
|
call: call.clone(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl PluginExecutionContext for PluginExecutionCommandContext {
|
|
fn command_span(&self) -> Span {
|
|
self.call.head
|
|
}
|
|
|
|
fn command_name(&self) -> &str {
|
|
self.engine_state.get_decl(self.call.decl_id).name()
|
|
}
|
|
|
|
fn ctrlc(&self) -> Option<&Arc<AtomicBool>> {
|
|
self.engine_state.ctrlc.as_ref()
|
|
}
|
|
|
|
fn get_config(&self) -> Result<Config, ShellError> {
|
|
Ok(nu_engine::get_config(&self.engine_state, &self.stack))
|
|
}
|
|
|
|
fn get_plugin_config(&self) -> Result<Option<Value>, ShellError> {
|
|
// Fetch the configuration for a plugin
|
|
//
|
|
// The `plugin` must match the registered name of a plugin. For
|
|
// `register nu_plugin_example` the plugin config lookup uses `"example"`
|
|
Ok(self
|
|
.get_config()?
|
|
.plugins
|
|
.get(&self.identity.plugin_name)
|
|
.cloned()
|
|
.map(|value| {
|
|
let span = value.span();
|
|
match value {
|
|
Value::Closure { val, .. } => {
|
|
let input = PipelineData::Empty;
|
|
|
|
let block = self.engine_state.get_block(val.block_id).clone();
|
|
let mut stack = self.stack.captures_to_stack(val.captures);
|
|
|
|
let eval_block_with_early_return =
|
|
get_eval_block_with_early_return(&self.engine_state);
|
|
|
|
match eval_block_with_early_return(
|
|
&self.engine_state,
|
|
&mut stack,
|
|
&block,
|
|
input,
|
|
false,
|
|
false,
|
|
) {
|
|
Ok(v) => v.into_value(span),
|
|
Err(e) => Value::error(e, self.call.head),
|
|
}
|
|
}
|
|
_ => value.clone(),
|
|
}
|
|
}))
|
|
}
|
|
|
|
fn eval_closure(
|
|
&self,
|
|
closure: Spanned<Closure>,
|
|
positional: Vec<Value>,
|
|
input: PipelineData,
|
|
redirect_stdout: bool,
|
|
redirect_stderr: bool,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let block = self
|
|
.engine_state
|
|
.try_get_block(closure.item.block_id)
|
|
.ok_or_else(|| ShellError::GenericError {
|
|
error: "Plugin misbehaving".into(),
|
|
msg: format!(
|
|
"Tried to evaluate unknown block id: {}",
|
|
closure.item.block_id
|
|
),
|
|
span: Some(closure.span),
|
|
help: None,
|
|
inner: vec![],
|
|
})?;
|
|
|
|
let mut stack = self.stack.captures_to_stack(closure.item.captures);
|
|
|
|
// Set up the positional arguments
|
|
for (idx, value) in positional.into_iter().enumerate() {
|
|
if let Some(arg) = block.signature.get_positional(idx) {
|
|
if let Some(var_id) = arg.var_id {
|
|
stack.add_var(var_id, value);
|
|
} else {
|
|
return Err(ShellError::NushellFailedSpanned {
|
|
msg: "Error while evaluating closure from plugin".into(),
|
|
label: "closure argument missing var_id".into(),
|
|
span: closure.span,
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
let eval_block_with_early_return = get_eval_block_with_early_return(&self.engine_state);
|
|
|
|
eval_block_with_early_return(
|
|
&self.engine_state,
|
|
&mut stack,
|
|
block,
|
|
input,
|
|
redirect_stdout,
|
|
redirect_stderr,
|
|
)
|
|
}
|
|
}
|
|
|
|
/// A bogus execution context for testing that doesn't really implement anything properly
|
|
#[cfg(test)]
|
|
pub(crate) struct PluginExecutionBogusContext;
|
|
|
|
#[cfg(test)]
|
|
impl PluginExecutionContext for PluginExecutionBogusContext {
|
|
fn command_span(&self) -> Span {
|
|
Span::test_data()
|
|
}
|
|
|
|
fn command_name(&self) -> &str {
|
|
"bogus"
|
|
}
|
|
|
|
fn ctrlc(&self) -> Option<&Arc<AtomicBool>> {
|
|
None
|
|
}
|
|
|
|
fn get_config(&self) -> Result<Config, ShellError> {
|
|
Err(ShellError::NushellFailed {
|
|
msg: "get_config not implemented on bogus".into(),
|
|
})
|
|
}
|
|
|
|
fn get_plugin_config(&self) -> Result<Option<Value>, ShellError> {
|
|
Ok(None)
|
|
}
|
|
|
|
fn eval_closure(
|
|
&self,
|
|
_closure: Spanned<Closure>,
|
|
_positional: Vec<Value>,
|
|
_input: PipelineData,
|
|
_redirect_stdout: bool,
|
|
_redirect_stderr: bool,
|
|
) -> Result<PipelineData, ShellError> {
|
|
Err(ShellError::NushellFailed {
|
|
msg: "eval_closure not implemented on bogus".into(),
|
|
})
|
|
}
|
|
}
|