mirror of
https://github.com/nushell/nushell.git
synced 2024-12-12 18:20:55 +01:00
076fde16dd
* WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * Finish adding the baseline refactors for argument invocation * Finish cleanup and add test * Add missing plugin references
76 lines
2.1 KiB
Rust
76 lines
2.1 KiB
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::prelude::*;
|
|
use crate::utils::data_processing::{evaluate, fetch};
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{ReturnSuccess, Signature, SyntaxShape, UntaggedValue, Value};
|
|
use nu_source::{SpannedItem, Tagged};
|
|
use nu_value_ext::ValueExt;
|
|
|
|
pub struct EvaluateBy;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct EvaluateByArgs {
|
|
evaluate_with: Option<Tagged<String>>,
|
|
}
|
|
|
|
impl WholeStreamCommand for EvaluateBy {
|
|
fn name(&self) -> &str {
|
|
"evaluate-by"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("evaluate-by").named(
|
|
"evaluate_with",
|
|
SyntaxShape::String,
|
|
"the name of the column to evaluate by",
|
|
Some('w'),
|
|
)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Creates a new table with the data from the tables rows evaluated by the column given."
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
evaluate_by(args, registry)
|
|
}
|
|
}
|
|
|
|
pub fn evaluate_by(
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
let registry = registry.clone();
|
|
let stream = async_stream! {
|
|
let name = args.call_info.name_tag.clone();
|
|
let (EvaluateByArgs { evaluate_with }, mut input) = args.process(®istry).await?;
|
|
let values: Vec<Value> = input.collect().await;
|
|
|
|
if values.is_empty() {
|
|
yield Err(ShellError::labeled_error(
|
|
"Expected table from pipeline",
|
|
"requires a table input",
|
|
name
|
|
))
|
|
} else {
|
|
|
|
let evaluate_with = if let Some(evaluator) = evaluate_with {
|
|
Some(evaluator.item().clone())
|
|
} else {
|
|
None
|
|
};
|
|
|
|
match evaluate(&values[0], evaluate_with, name) {
|
|
Ok(evaluated) => yield ReturnSuccess::value(evaluated),
|
|
Err(err) => yield Err(err)
|
|
}
|
|
}
|
|
};
|
|
|
|
Ok(stream.to_output_stream())
|
|
}
|