mirror of
https://github.com/nushell/nushell
synced 2025-01-07 18:59:04 +00:00
c9dcd212ba
* Allow pipelines across multiple lines if end in pipe * Add validation support
158 lines
3.5 KiB
Rust
158 lines
3.5 KiB
Rust
use crate::{ParseError, Token, TokenContents};
|
|
use nu_protocol::Span;
|
|
|
|
#[derive(Debug)]
|
|
pub struct LiteCommand {
|
|
pub comments: Vec<Span>,
|
|
pub parts: Vec<Span>,
|
|
}
|
|
|
|
impl Default for LiteCommand {
|
|
fn default() -> Self {
|
|
Self::new()
|
|
}
|
|
}
|
|
|
|
impl LiteCommand {
|
|
pub fn new() -> Self {
|
|
Self {
|
|
comments: vec![],
|
|
parts: vec![],
|
|
}
|
|
}
|
|
|
|
pub fn push(&mut self, span: Span) {
|
|
self.parts.push(span);
|
|
}
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
self.parts.is_empty()
|
|
}
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub struct LiteStatement {
|
|
pub commands: Vec<LiteCommand>,
|
|
}
|
|
|
|
impl Default for LiteStatement {
|
|
fn default() -> Self {
|
|
Self::new()
|
|
}
|
|
}
|
|
|
|
impl LiteStatement {
|
|
pub fn new() -> Self {
|
|
Self { commands: vec![] }
|
|
}
|
|
|
|
pub fn push(&mut self, command: LiteCommand) {
|
|
self.commands.push(command);
|
|
}
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
self.commands.is_empty()
|
|
}
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub struct LiteBlock {
|
|
pub block: Vec<LiteStatement>,
|
|
}
|
|
|
|
impl Default for LiteBlock {
|
|
fn default() -> Self {
|
|
Self::new()
|
|
}
|
|
}
|
|
|
|
impl LiteBlock {
|
|
pub fn new() -> Self {
|
|
Self { block: vec![] }
|
|
}
|
|
|
|
pub fn push(&mut self, pipeline: LiteStatement) {
|
|
self.block.push(pipeline);
|
|
}
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
self.block.is_empty()
|
|
}
|
|
}
|
|
|
|
pub fn lite_parse(tokens: &[Token]) -> (LiteBlock, Option<ParseError>) {
|
|
let mut block = LiteBlock::new();
|
|
let mut curr_pipeline = LiteStatement::new();
|
|
let mut curr_command = LiteCommand::new();
|
|
|
|
let mut last_token_was_pipe = false;
|
|
|
|
for token in tokens.iter() {
|
|
match &token.contents {
|
|
TokenContents::Item => {
|
|
curr_command.push(token.span);
|
|
last_token_was_pipe = false;
|
|
}
|
|
TokenContents::Pipe => {
|
|
if !curr_command.is_empty() {
|
|
curr_pipeline.push(curr_command);
|
|
curr_command = LiteCommand::new();
|
|
}
|
|
last_token_was_pipe = true;
|
|
}
|
|
TokenContents::Eol => {
|
|
if !last_token_was_pipe {
|
|
if !curr_command.is_empty() {
|
|
curr_pipeline.push(curr_command);
|
|
|
|
curr_command = LiteCommand::new();
|
|
}
|
|
|
|
if !curr_pipeline.is_empty() {
|
|
block.push(curr_pipeline);
|
|
|
|
curr_pipeline = LiteStatement::new();
|
|
}
|
|
}
|
|
}
|
|
TokenContents::Semicolon => {
|
|
if !curr_command.is_empty() {
|
|
curr_pipeline.push(curr_command);
|
|
|
|
curr_command = LiteCommand::new();
|
|
}
|
|
|
|
if !curr_pipeline.is_empty() {
|
|
block.push(curr_pipeline);
|
|
|
|
curr_pipeline = LiteStatement::new();
|
|
}
|
|
|
|
last_token_was_pipe = false;
|
|
}
|
|
TokenContents::Comment => {
|
|
curr_command.comments.push(token.span);
|
|
}
|
|
}
|
|
}
|
|
|
|
if !curr_command.is_empty() {
|
|
curr_pipeline.push(curr_command);
|
|
}
|
|
|
|
if !curr_pipeline.is_empty() {
|
|
block.push(curr_pipeline);
|
|
}
|
|
|
|
if last_token_was_pipe {
|
|
(
|
|
block,
|
|
Some(ParseError::UnexpectedEof(
|
|
"pipeline missing end".into(),
|
|
tokens[tokens.len() - 1].span,
|
|
)),
|
|
)
|
|
} else {
|
|
(block, None)
|
|
}
|
|
}
|