oak-bash

Crates.iooak-bash
lib.rsoak-bash
version0.0.1
created_at2025-10-20 10:48:56.030901+00
updated_at2026-01-23 04:16:37.982104+00
descriptionHigh-performance incremental Bash parser for the oak ecosystem with flexible configuration, supporting shell scripting and automation workflows.
homepagehttps://github.com/ygg-lang/oaks
repositoryhttps://github.com/ygg-lang/oaks
max_upload_size
id1891742
size71,350
FuckQQ (fqq)

documentation

https://docs.rs/oak-bash

README

Oak Bash Parser

Crates.io Documentation

High-performance incremental Bash parser for the oak ecosystem with flexible configuration, optimized for script analysis and automation.

🎯 Overview

Oak Bash is a robust parser for Bash, designed to handle complete Bash syntax including modern features like conditionals, loops, and functions. Built on the solid foundation of oak-core, it provides both high-level convenience and detailed AST generation for script analysis and automation.

✨ Features

  • Complete Bash Syntax: Supports all Bash features including modern specifications
  • Full AST Generation: Generates comprehensive Abstract Syntax Trees
  • Lexer Support: Built-in tokenization with proper span information
  • Error Recovery: Graceful handling of syntax errors with detailed diagnostics

🚀 Quick Start

Basic example:

use oak_bash::{Parser, BashLanguage, SourceText};

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let parser = Parser::new();
    let source = SourceText::new(r#"
        #!/bin/bash
        NAME="World"
        echo "Hello, $NAME!"
        if [ "$NAME" == "World" ]; then
            echo "It's a small world."
        fi
    "#);
    
    let result = parser.parse(&source);
    println!("Parsed Bash script successfully.");
    Ok(())
}

📋 Parsing Examples

Script Parsing

use oak_bash::{Parser, BashLanguage, SourceText};

let parser = Parser::new();
let source = SourceText::new(r#"
    #!/bin/bash
    echo "Hello"
    "#);

let result = parser.parse(&source);
println!("Parsed Bash script successfully.");

Command Parsing

use oak_bash::{Parser, BashLanguage, SourceText};

let parser = Parser::new();
let source = SourceText::new(r#"
    ls -la /tmp
    grep "error" /var/log/syslog
    "#);

let result = parser.parse(&source);
println!("Parsed Bash commands successfully.");

🔧 Advanced Features

Token-Level Parsing

use oak_bash::{Parser, BashLanguage, SourceText};

let parser = Parser::new();
let source = SourceText::new("echo \"Hello World\"");
let result = parser.parse(&source);
// Token information is available in the parse result

Error Handling

use oak_bash::{Parser, BashLanguage, SourceText};

let parser = Parser::new();
let source = SourceText::new(r#"
    if [ -f /tmp/file ]; then
        echo "File exists"
    else
        echo "File does not exist"
    fi_invalid
    "#);

let result = parser.parse(&source);
if let Err(e) = result.result {
    println!("Parse error: {:?}", e);
}

🏗️ AST Structure

The parser generates a comprehensive AST with the following main structures:

  • Script: Root container for Bash scripts
  • Command: Simple commands, pipelines, conditionals, loops
  • Expression: Arithmetic, string, file test expressions
  • Word: Literal words, variables, command substitutions

📊 Performance

  • Streaming: Parse large Bash files without loading entirely into memory
  • Incremental: Re-parse only changed sections
  • Memory Efficient: Smart AST node allocation
  • Fast Recovery: Quick error recovery for better IDE integration

🔗 Integration

Oak Bash integrates seamlessly with:

  • Shell Scripting Tools: Integration with linters, formatters
  • Automation: Parsing scripts for automated tasks
  • IDE Support: Language server protocol compatibility
  • Security Analysis: Analyzing scripts for vulnerabilities

📚 Examples

Check out the examples directory for comprehensive examples:

  • Complete Bash script parsing
  • Command and expression analysis
  • Code transformation
  • Integration with development workflows

🤝 Contributing

Contributions are welcome!

Please feel free to submit pull requests at the project repository or open issues.

Commit count: 80

cargo fmt