nushell/crates/nu-cli/src/commands/evaluate_by.rs

84 lines
2.1 KiB
Rust
Raw Normal View History

2019-11-12 08:07:43 +01:00
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};
2019-12-09 19:52:01 +01:00
use nu_value_ext::ValueExt;
2019-11-12 08:07:43 +01:00
pub struct EvaluateBy;
#[derive(Deserialize)]
pub struct EvaluateByArgs {
evaluate_with: Option<Tagged<String>>,
}
2020-05-29 10:22:52 +02:00
#[async_trait]
2019-11-12 08:07:43 +01:00
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'),
2019-11-12 08:07:43 +01:00
)
}
fn usage(&self) -> &str {
"Creates a new table with the data from the tables rows evaluated by the column given."
}
2020-05-29 10:22:52 +02:00
async fn run(
2019-11-12 08:07:43 +01:00
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
evaluate_by(args, registry).await
2019-11-12 08:07:43 +01:00
}
}
pub async fn evaluate_by(
args: CommandArgs,
registry: &CommandRegistry,
2019-11-12 08:07:43 +01:00
) -> Result<OutputStream, ShellError> {
let registry = registry.clone();
let name = args.call_info.name_tag.clone();
let (EvaluateByArgs { evaluate_with }, mut input) = args.process(&registry).await?;
let values: Vec<Value> = input.collect().await;
2019-11-12 08:07:43 +01:00
if values.is_empty() {
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())
2019-11-12 08:07:43 +01:00
} else {
None
};
2019-11-12 08:07:43 +01:00
match evaluate(&values[0], evaluate_with, name) {
Ok(evaluated) => Ok(OutputStream::one(ReturnSuccess::value(evaluated))),
Err(err) => Err(err),
2019-11-12 08:07:43 +01:00
}
}
2019-11-12 08:07:43 +01:00
}
#[cfg(test)]
mod tests {
use super::EvaluateBy;
#[test]
fn examples_work_as_expected() {
use crate::examples::test as test_examples;
test_examples(EvaluateBy {})
}
}