* Moves off of draining between filters. Instead, the sink will pull on the stream, and will drain element-wise. This moves the whole stream to being lazy. * Adds ctrl-c support and connects it into some of the key points where we pull on the stream. If a ctrl-c is detect, we immediately halt pulling on the stream and return to the prompt. * Moves away from having a SourceMap where anchor locations are stored. Now AnchorLocation is kept directly in the Tag. * To make this possible, split tag and span. Span is largely used in the parser and is copyable. Tag is now no longer copyable.
86 lines
2.4 KiB
Rust
86 lines
2.4 KiB
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::data::{Primitive, TaggedDictBuilder, Value};
|
|
use crate::prelude::*;
|
|
|
|
pub struct FromURL;
|
|
|
|
impl WholeStreamCommand for FromURL {
|
|
fn name(&self) -> &str {
|
|
"from-url"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("from-url")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Parse url-encoded string as a table."
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
from_url(args, registry)
|
|
}
|
|
}
|
|
|
|
fn from_url(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
|
let args = args.evaluate_once(registry)?;
|
|
let tag = args.name_tag();
|
|
let input = args.input;
|
|
|
|
let stream = async_stream! {
|
|
let values: Vec<Tagged<Value>> = input.values.collect().await;
|
|
|
|
let mut concat_string = String::new();
|
|
let mut latest_tag: Option<Tag> = None;
|
|
|
|
for value in values {
|
|
let value_tag = value.tag();
|
|
latest_tag = Some(value_tag.clone());
|
|
match value.item {
|
|
Value::Primitive(Primitive::String(s)) => {
|
|
concat_string.push_str(&s);
|
|
}
|
|
_ => yield Err(ShellError::labeled_error_with_secondary(
|
|
"Expected a string from pipeline",
|
|
"requires string input",
|
|
&tag,
|
|
"value originates from here",
|
|
&value_tag,
|
|
)),
|
|
|
|
}
|
|
}
|
|
|
|
let result = serde_urlencoded::from_str::<Vec<(String, String)>>(&concat_string);
|
|
|
|
match result {
|
|
Ok(result) => {
|
|
let mut row = TaggedDictBuilder::new(tag);
|
|
|
|
for (k,v) in result {
|
|
row.insert(k, Value::string(v));
|
|
}
|
|
|
|
yield ReturnSuccess::value(row.into_tagged_value());
|
|
}
|
|
_ => {
|
|
if let Some(last_tag) = latest_tag {
|
|
yield Err(ShellError::labeled_error_with_secondary(
|
|
"String not compatible with url-encoding",
|
|
"input not url-encoded",
|
|
tag,
|
|
"value originates from here",
|
|
last_tag,
|
|
));
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
Ok(stream.to_output_stream())
|
|
}
|