conch-parser 0.1.1

A library for parsing programs written in the shell programming language.
Documentation
  • Coverage
  • 100%
    392 out of 392 items documented1 out of 105 items with examples
  • Size
  • Source code size: 467.22 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 31.88 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 15s Average build duration of successful builds.
  • all releases: 15s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • ipetkov

conch-parser

Crates.io Documentation Build Status Build Status Coverage

A Rust library for parsing Unix shell commands.

Quick Start

First, add this to your Cargo.toml:

[dependencies]
conch-parser = "0.1.0"

Next, you can get started with:

extern crate conch_parser;

use conch_parser::lexer::Lexer;
use conch_parser::parse::DefaultParser;

fn main() {
    // Initialize our token lexer and shell parser with the program's input
    let lex = Lexer::new("echo foo bar".chars());
    let parser = DefaultParser::new(lex);

    // Parse our input!
    for t in parser {
        println!("{:?}", t);
    }
}

About

This library offers parsing shell commands as defined by the POSIX.1-2008 standard. The parser remains agnostic to the final AST representation by passing intermediate results to an AST Builder, allowing for easy changes to the final AST structure without having to walk and transform an entire AST produced by the parser. See the documentation for more information.

Goals

  • Provide shell command parser which is correct and efficient, and agnostic to the final AST representation
  • Parsing should never require any form of runtime, thus no part of the source should have to be executed or evaluated when parsing

Non-goals

  • 100% POSIX.1-2008 compliance: the standard is used as a baseline for implementation and features may be further added (or dropped) based on what makes sense or is most useful
  • Feature parity with all major shells: unless a specific feature is widely used (and considered common) or another compelling reason exists for inclusion. However, this is not to say that the library will never support extensions for adding additional syntax features.

Supported grammar

  • Conditional lists (foo && bar || baz)
  • Pipelines (! foo | bar)
  • Compound commands
    • Brace blocks ({ foo; })
    • Subshells ($(foo))
    • for / case / if / while / until
  • Function declarations
  • Redirections
  • Heredocs
  • Comments
  • Parameters ($foo, $@, etc.)
  • Parameter substitutions (${foo:-bar})
  • Quoting (single, double, backticks, escaping)
  • Arithmetic substitutions
    • Common arithmetic operations required by the standard
    • Variable expansion
    • Other inner abitrary parameter/substitution expansion

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.