mirror of
https://github.com/nushell/nushell.git
synced 2025-03-03 18:01:27 +01:00
This commit extracts Tag, Span, Text, as well as source-related debug facilities into a new crate called nu_source. This change is much bigger than one might have expected because the previous code relied heavily on implementing inherent methods on `Tagged<T>` and `Spanned<T>`, which is no longer possible. As a result, this change creates more concrete types instead of using `Tagged<T>`. One notable example: Tagged<Value> became Value, and Value became UntaggedValue. This change clarifies the intent of the code in many places, but it does make it a big change.
53 lines
1.2 KiB
Rust
53 lines
1.2 KiB
Rust
use crate::commands::WholeStreamCommand;
|
|
|
|
use crate::errors::ShellError;
|
|
use crate::prelude::*;
|
|
use futures::StreamExt;
|
|
use futures_util::pin_mut;
|
|
|
|
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,
|
|
) -> Result<OutputStream, ShellError> {
|
|
let stream = async_stream! {
|
|
let values = input.values;
|
|
pin_mut!(values);
|
|
|
|
while let Some(row) = values.next().await {
|
|
let name = row.format_leaf().plain_string(100000);
|
|
yield ReturnSuccess::value(UntaggedValue::string(name).into_value(Tag::unknown_anchor(row.tag.span)));
|
|
}
|
|
};
|
|
|
|
let stream: BoxStream<'static, ReturnValue> = stream.boxed();
|
|
|
|
Ok(OutputStream::from(stream))
|
|
}
|