mirror of
https://github.com/nushell/nushell.git
synced 2025-04-22 04:08:20 +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>
79 lines
1.9 KiB
Rust
79 lines
1.9 KiB
Rust
use crate::commands::math::utils::run_with_numerical_functions_on_stream;
|
|
use crate::prelude::*;
|
|
use bigdecimal::One;
|
|
use nu_engine::WholeStreamCommand;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{Signature, UntaggedValue, Value};
|
|
|
|
pub struct SubCommand;
|
|
|
|
impl WholeStreamCommand for SubCommand {
|
|
fn name(&self) -> &str {
|
|
"math floor"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("math floor")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Applies the floor function to a list of numbers"
|
|
}
|
|
|
|
fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
let input = args.input;
|
|
|
|
run_with_numerical_functions_on_stream(
|
|
input,
|
|
floor_big_int,
|
|
floor_big_decimal,
|
|
floor_default,
|
|
)
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
description: "Apply the floor function to a list of numbers",
|
|
example: "echo [1.5 2.3 -3.1] | math floor",
|
|
result: Some(vec![
|
|
UntaggedValue::int(1).into(),
|
|
UntaggedValue::int(2).into(),
|
|
UntaggedValue::int(-4).into(),
|
|
]),
|
|
}]
|
|
}
|
|
}
|
|
|
|
fn floor_big_int(val: BigInt) -> Value {
|
|
UntaggedValue::int(val).into()
|
|
}
|
|
|
|
fn floor_big_decimal(val: BigDecimal) -> Value {
|
|
let mut maybe_floored = val.round(0);
|
|
if maybe_floored > val {
|
|
maybe_floored -= BigDecimal::one();
|
|
}
|
|
let (floored, _) = maybe_floored.into_bigint_and_exponent();
|
|
UntaggedValue::int(floored).into()
|
|
}
|
|
|
|
fn floor_default(_: UntaggedValue) -> Value {
|
|
UntaggedValue::Error(ShellError::unexpected(
|
|
"Only numerical values are supported",
|
|
))
|
|
.into()
|
|
}
|
|
|
|
#[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 {})
|
|
}
|
|
}
|