nushell/crates/nu-parser/src/lite_parse.rs

185 lines
4.6 KiB
Rust
Raw Normal View History

2021-09-02 03:29:43 +02:00
use crate::{ParseError, Token, TokenContents};
use nu_protocol::Span;
2021-06-30 03:42:56 +02:00
#[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 LitePipeline {
2021-06-30 03:42:56 +02:00
pub commands: Vec<LiteCommand>,
}
impl Default for LitePipeline {
2021-06-30 03:42:56 +02:00
fn default() -> Self {
Self::new()
}
}
impl LitePipeline {
2021-06-30 03:42:56 +02:00
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<LitePipeline>,
2021-06-30 03:42:56 +02:00
}
impl Default for LiteBlock {
fn default() -> Self {
Self::new()
}
}
impl LiteBlock {
pub fn new() -> Self {
Self { block: vec![] }
}
pub fn push(&mut self, pipeline: LitePipeline) {
2021-06-30 03:42:56 +02:00
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 = LitePipeline::new();
2021-06-30 03:42:56 +02:00
let mut curr_command = LiteCommand::new();
let mut last_token = TokenContents::Eol;
let mut curr_comment: Option<Vec<Span>> = None;
2021-08-30 20:36:07 +02:00
for token in tokens.iter() {
2021-06-30 03:42:56 +02:00
match &token.contents {
TokenContents::Item => {
// If we have a comment, go ahead and attach it
if let Some(curr_comment) = curr_comment.take() {
curr_command.comments = curr_comment;
}
curr_command.push(token.span);
last_token = TokenContents::Item;
}
2021-06-30 03:42:56 +02:00
TokenContents::Pipe => {
if !curr_command.is_empty() {
curr_pipeline.push(curr_command);
curr_command = LiteCommand::new();
}
last_token = TokenContents::Pipe;
2021-06-30 03:42:56 +02:00
}
TokenContents::Eol => {
if last_token != TokenContents::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 = LitePipeline::new();
}
}
if last_token == TokenContents::Eol {
// Clear out the comment as we're entering a new comment
curr_comment = None;
}
last_token = TokenContents::Eol;
}
TokenContents::Semicolon => {
2021-09-01 22:05:37 +02:00
if !curr_command.is_empty() {
2021-06-30 03:42:56 +02:00
curr_pipeline.push(curr_command);
2021-09-01 22:05:37 +02:00
curr_command = LiteCommand::new();
2021-06-30 03:42:56 +02:00
}
if !curr_pipeline.is_empty() {
block.push(curr_pipeline);
2021-09-01 22:05:37 +02:00
curr_pipeline = LitePipeline::new();
2021-06-30 03:42:56 +02:00
}
last_token = TokenContents::Semicolon;
2021-06-30 03:42:56 +02:00
}
TokenContents::Comment => {
// Comment is beside something
if last_token != TokenContents::Eol {
curr_command.comments.push(token.span);
curr_comment = None;
} else {
// Comment precedes something
if let Some(curr_comment) = &mut curr_comment {
curr_comment.push(token.span);
} else {
curr_comment = Some(vec![token.span]);
}
}
last_token = TokenContents::Comment;
2021-06-30 03:42:56 +02:00
}
}
}
2021-08-30 20:36:07 +02:00
2021-06-30 03:42:56 +02:00
if !curr_command.is_empty() {
curr_pipeline.push(curr_command);
}
if !curr_pipeline.is_empty() {
block.push(curr_pipeline);
}
if last_token == TokenContents::Pipe {
(
block,
Some(ParseError::UnexpectedEof(
"pipeline missing end".into(),
tokens[tokens.len() - 1].span,
)),
)
} else {
(block, None)
}
2021-06-30 03:42:56 +02:00
}