mirror of
https://github.com/nushell/nushell.git
synced 2025-04-20 19:28:21 +02:00
* Output error when ls into a file without permission * math sqrt * added test to check fails when ls into prohibited dir * fix lint * math sqrt with tests and doc * trigger wasm build * Update filesystem_shell.rs * converted math commands to outputstream and new method for arg evaluation * fmt * clippy Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
119 lines
3.6 KiB
Rust
119 lines
3.6 KiB
Rust
use crate::prelude::*;
|
|
use nu_engine::WholeStreamCommand;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{Primitive, Signature, SyntaxShape, UntaggedValue, Value};
|
|
use nu_source::Tagged;
|
|
|
|
pub struct SubCommand;
|
|
|
|
impl WholeStreamCommand for SubCommand {
|
|
fn name(&self) -> &str {
|
|
"math eval"
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Evaluate a math expression into a number"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("math eval").desc(self.usage()).optional(
|
|
"math expression",
|
|
SyntaxShape::String,
|
|
"the math expression to evaluate",
|
|
)
|
|
}
|
|
|
|
fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
eval(args)
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
description: "Evalulate math in the pipeline",
|
|
example: "echo '10 / 4' | math eval",
|
|
result: Some(vec![UntaggedValue::decimal_from_float(
|
|
2.5,
|
|
Span::unknown(),
|
|
)
|
|
.into()]),
|
|
}]
|
|
}
|
|
}
|
|
|
|
pub fn eval(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
let args = args.evaluate_once()?;
|
|
let expression: Option<Result<Tagged<String>, ShellError>> = args.opt(0);
|
|
let name = args.call_info.name_tag.clone();
|
|
let input = args.input;
|
|
|
|
if let Some(Ok(string)) = expression {
|
|
match parse(&string, &string.tag) {
|
|
Ok(value) => Ok(OutputStream::one(value)),
|
|
Err(err) => Err(ShellError::labeled_error(
|
|
"Math evaluation error",
|
|
err,
|
|
&string.tag.span,
|
|
)),
|
|
}
|
|
} else {
|
|
let mapped: Result<Vec<_>, _> = input
|
|
.map(move |x| {
|
|
if let Some(Ok(Tagged {
|
|
tag,
|
|
item: expression,
|
|
})) = &expression
|
|
{
|
|
UntaggedValue::string(expression).into_value(tag)
|
|
} else {
|
|
x
|
|
}
|
|
})
|
|
.map(move |input| {
|
|
if let Ok(string) = input.as_string() {
|
|
match parse(&string, &input.tag) {
|
|
Ok(value) => Ok(value),
|
|
Err(err) => Err(ShellError::labeled_error(
|
|
"Math evaluation error",
|
|
err,
|
|
&input.tag.span,
|
|
)),
|
|
}
|
|
} else {
|
|
Err(ShellError::labeled_error(
|
|
"Expected a string from pipeline",
|
|
"requires string input",
|
|
name.clone(),
|
|
))
|
|
}
|
|
})
|
|
.collect();
|
|
match mapped {
|
|
Ok(values) => Ok(OutputStream::from(values)),
|
|
Err(e) => Err(e),
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn parse<T: Into<Tag>>(math_expression: &str, tag: T) -> Result<Value, String> {
|
|
let mut ctx = meval::Context::new();
|
|
ctx.var("tau", std::f64::consts::TAU);
|
|
match meval::eval_str_with_context(math_expression, &ctx) {
|
|
Ok(num) if num.is_infinite() || num.is_nan() => Err("cannot represent result".to_string()),
|
|
Ok(num) => Ok(UntaggedValue::from(Primitive::from(num)).into_value(tag)),
|
|
Err(error) => Err(error.to_string().to_lowercase()),
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::ShellError;
|
|
use super::SubCommand;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() -> Result<(), ShellError> {
|
|
use crate::examples::test as test_examples;
|
|
|
|
test_examples(SubCommand {})
|
|
}
|
|
}
|