nushell/src/commands/what.rs

56 lines
1.3 KiB
Rust
Raw Normal View History

2019-11-04 16:47:03 +01:00
use crate::commands::WholeStreamCommand;
use crate::data::value;
2019-11-04 16:47:03 +01:00
use crate::prelude::*;
use futures::StreamExt;
use futures_util::pin_mut;
use nu_protocol::{ReturnSuccess, ReturnValue, Signature};
use nu_errors::ShellError;
use nu_source::PrettyDebug;
2019-11-04 16:47:03 +01:00
pub struct What;
#[derive(Deserialize)]
pub struct WhatArgs {}
impl WholeStreamCommand for What {
fn name(&self) -> &str {
"what?"
}
fn signature(&self) -> Signature {
Signature::build("what?")
}
fn usage(&self) -> &str {
"Describes the objects in the stream."
}
fn run(
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
args.process(registry, what)?.run()
}
}
pub fn what(
WhatArgs {}: WhatArgs,
RunnableContext { input, .. }: RunnableContext,
2019-11-04 16:47:03 +01:00
) -> Result<OutputStream, ShellError> {
let stream = async_stream! {
let values = input.values;
pin_mut!(values);
while let Some(row) = values.next().await {
let name = value::format_leaf(&row).plain_string(100000);
yield ReturnSuccess::value(value::string(name).into_value(Tag::unknown_anchor(row.tag.span)));
2019-11-04 16:47:03 +01:00
}
};
let stream: BoxStream<'static, ReturnValue> = stream.boxed();
Ok(OutputStream::from(stream))
}