mirror of
https://github.com/nushell/nushell.git
synced 2025-01-20 21:29:04 +01:00
89 lines
2.4 KiB
Rust
89 lines
2.4 KiB
Rust
|
use crate::commands::WholeStreamCommand;
|
||
|
use crate::prelude::*;
|
||
|
use nu_errors::ShellError;
|
||
|
use nu_protocol::{Primitive, ReturnSuccess, Signature, SyntaxShape, UntaggedValue, Value};
|
||
|
|
||
|
use num_bigint::ToBigInt;
|
||
|
|
||
|
pub struct IntoInt;
|
||
|
|
||
|
#[derive(Deserialize)]
|
||
|
pub struct IntoIntArgs {
|
||
|
pub rest: Vec<Value>,
|
||
|
}
|
||
|
|
||
|
#[async_trait]
|
||
|
impl WholeStreamCommand for IntoInt {
|
||
|
fn name(&self) -> &str {
|
||
|
"into-int"
|
||
|
}
|
||
|
|
||
|
fn signature(&self) -> Signature {
|
||
|
Signature::build("into-int").rest(SyntaxShape::Any, "the values to into-int")
|
||
|
}
|
||
|
|
||
|
fn usage(&self) -> &str {
|
||
|
"Convert value to integer"
|
||
|
}
|
||
|
|
||
|
async fn run(
|
||
|
&self,
|
||
|
args: CommandArgs,
|
||
|
registry: &CommandRegistry,
|
||
|
) -> Result<OutputStream, ShellError> {
|
||
|
into_int(args, registry).await
|
||
|
}
|
||
|
|
||
|
fn examples(&self) -> Vec<Example> {
|
||
|
vec![Example {
|
||
|
description: "Convert filesize to integer",
|
||
|
example: "echo 1kb | into-int $it | = $it / 1024",
|
||
|
result: Some(vec![UntaggedValue::int(1).into()]),
|
||
|
}]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
async fn into_int(
|
||
|
args: CommandArgs,
|
||
|
registry: &CommandRegistry,
|
||
|
) -> Result<OutputStream, ShellError> {
|
||
|
let registry = registry.clone();
|
||
|
let (args, _): (IntoIntArgs, _) = args.process(®istry).await?;
|
||
|
|
||
|
let stream = args.rest.into_iter().map(|i| match i {
|
||
|
Value {
|
||
|
value: UntaggedValue::Primitive(primitive_val),
|
||
|
tag,
|
||
|
} => match primitive_val {
|
||
|
Primitive::Filesize(size) => OutputStream::one(Ok(ReturnSuccess::Value(Value {
|
||
|
value: UntaggedValue::int(size.to_bigint().expect("Conversion should never fail.")),
|
||
|
tag,
|
||
|
}))),
|
||
|
Primitive::Int(_) => OutputStream::one(Ok(ReturnSuccess::Value(Value {
|
||
|
value: UntaggedValue::Primitive(primitive_val),
|
||
|
tag,
|
||
|
}))),
|
||
|
_ => OutputStream::one(Err(ShellError::labeled_error(
|
||
|
"Could not convert int value",
|
||
|
"original value",
|
||
|
tag,
|
||
|
))),
|
||
|
},
|
||
|
_ => OutputStream::one(Ok(ReturnSuccess::Value(i))),
|
||
|
});
|
||
|
|
||
|
Ok(futures::stream::iter(stream).flatten().to_output_stream())
|
||
|
}
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod tests {
|
||
|
use super::IntoInt;
|
||
|
|
||
|
#[test]
|
||
|
fn examples_work_as_expected() {
|
||
|
use crate::examples::test as test_examples;
|
||
|
|
||
|
test_examples(IntoInt {})
|
||
|
}
|
||
|
}
|