mirror of
https://github.com/nushell/nushell.git
synced 2025-02-01 11:09:49 +01:00
144 lines
3.5 KiB
Rust
144 lines
3.5 KiB
Rust
use crate::commands::PerItemCommand;
|
|
use crate::context::CommandRegistry;
|
|
use crate::prelude::*;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{
|
|
CallInfo, ReturnSuccess, Signature, SyntaxShape, TaggedDictBuilder, UntaggedValue, Value,
|
|
};
|
|
|
|
use regex::Regex;
|
|
|
|
#[derive(Debug)]
|
|
enum ParseCommand {
|
|
Text(String),
|
|
Column(String),
|
|
}
|
|
|
|
fn parse(input: &str) -> Vec<ParseCommand> {
|
|
let mut output = vec![];
|
|
|
|
//let mut loop_input = input;
|
|
let mut loop_input = input.chars();
|
|
loop {
|
|
let mut before = String::new();
|
|
|
|
while let Some(c) = loop_input.next() {
|
|
if c == '{' {
|
|
break;
|
|
}
|
|
before.push(c);
|
|
}
|
|
|
|
if !before.is_empty() {
|
|
output.push(ParseCommand::Text(before.to_string()));
|
|
}
|
|
// Look for column as we're now at one
|
|
let mut column = String::new();
|
|
|
|
while let Some(c) = loop_input.next() {
|
|
if c == '}' {
|
|
break;
|
|
}
|
|
column.push(c);
|
|
}
|
|
|
|
if !column.is_empty() {
|
|
output.push(ParseCommand::Column(column.to_string()));
|
|
}
|
|
|
|
if before.is_empty() && column.is_empty() {
|
|
break;
|
|
}
|
|
}
|
|
|
|
output
|
|
}
|
|
|
|
fn column_names(commands: &[ParseCommand]) -> Vec<String> {
|
|
let mut output = vec![];
|
|
|
|
for command in commands {
|
|
if let ParseCommand::Column(c) = command {
|
|
output.push(c.clone());
|
|
}
|
|
}
|
|
|
|
output
|
|
}
|
|
|
|
fn build_regex(commands: &[ParseCommand]) -> String {
|
|
let mut output = String::new();
|
|
|
|
for command in commands {
|
|
match command {
|
|
ParseCommand::Text(s) => {
|
|
output.push_str(&s.replace("(", "\\("));
|
|
}
|
|
ParseCommand::Column(_) => {
|
|
output.push_str("(.*)");
|
|
}
|
|
}
|
|
}
|
|
|
|
output
|
|
}
|
|
pub struct Parse;
|
|
|
|
impl PerItemCommand for Parse {
|
|
fn name(&self) -> &str {
|
|
"parse"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("parse").required(
|
|
"pattern",
|
|
SyntaxShape::Any,
|
|
"the pattern to match. Eg) \"{foo}: {bar}\"",
|
|
)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Parse columns from string data using a simple pattern."
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
call_info: &CallInfo,
|
|
_registry: &CommandRegistry,
|
|
_raw_args: &RawCommandArgs,
|
|
value: Value,
|
|
) -> Result<OutputStream, ShellError> {
|
|
//let value_tag = value.tag();
|
|
let pattern = call_info.args.expect_nth(0)?.as_string()?;
|
|
|
|
let parse_pattern = parse(&pattern);
|
|
let parse_regex = build_regex(&parse_pattern);
|
|
|
|
let column_names = column_names(&parse_pattern);
|
|
let regex = Regex::new(&parse_regex).map_err(|_| {
|
|
ShellError::labeled_error("Could not parse regex", "could not parse regex", &value.tag)
|
|
})?;
|
|
|
|
let output = if let Ok(s) = value.as_string() {
|
|
let mut results = vec![];
|
|
for cap in regex.captures_iter(&s) {
|
|
let mut dict = TaggedDictBuilder::new(value.tag());
|
|
|
|
for (idx, column_name) in column_names.iter().enumerate() {
|
|
dict.insert_untagged(
|
|
column_name,
|
|
UntaggedValue::string(&cap[idx + 1].to_string()),
|
|
);
|
|
}
|
|
|
|
results.push(ReturnSuccess::value(dict.into_value()));
|
|
}
|
|
|
|
VecDeque::from(results)
|
|
} else {
|
|
VecDeque::new()
|
|
};
|
|
Ok(output.into())
|
|
}
|
|
}
|