Oak Bash Parser
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 BashParser;
📋 Parsing Examples
Script Parsing
use ;
let parser = new;
let bash_code = r#"
#!/bin/bash
echo "Hello"
"#;
let script = parser.parse_script?;
println!;
Command Parsing
use ;
let parser = new;
let bash_code = r#"
ls -la /tmp
grep "error" /var/log/syslog
"#;
let script = parser.parse_script?;
for command in &script.commands
🔧 Advanced Features
Token-Level Parsing
use ;
let parser = new;
let tokens = parser.tokenize?;
for token in tokens
Error Handling
use BashParser;
let parser = new;
let invalid_bash = r#"
if [ -f /tmp/file ]; then
echo "File exists"
else
echo "File does not exist"
fi_invalid
"#;
match parser.parse_script
🏗️ 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.