Functionality useful when creating parsers.
Project description
Contents
Overview
dbrownell_ParserLib is a Python library that provides utility functionality for creating parsers, with a primary focus on ANTLR (Another Tool for Language Recognition) integration. The library simplifies the process of building parsers that produce strongly-typed abstract syntax trees (ASTs) with comprehensive source location tracking.
Key Features
- ANTLR Integration: Streamlined wrapper around ANTLR for Python, handling grammar compilation and parser generation
- AST Representation: Expression-based AST nodes with automatic parent-child relationship management
- Source Location Tracking: Every AST node tracks its source file location (filename, line, column ranges) for detailed error reporting
- Visitor Pattern: Flexible visitor pattern implementation with fine-grained traversal control
- Error Handling: Rich error objects that associate messages with source locations and extract Python exception tracebacks
- Multi-threaded Parsing: Built-in support for parsing multiple files concurrently
- Workspace Support: Parse entire directory trees with customizable file filtering
- Whitespace Handling: Mixins for both insignificant and significant whitespace grammars (e.g., Python-like indentation)
How to use dbrownell_ParserLib
The typical workflow for creating a parser with this library involves the following steps. For detailed examples, see the test files in the repository, particularly the end-to-end tests that demonstrate complete parsing workflows.
1. Define an ANTLR Grammar
Create a .g4 grammar file defining your language syntax:
grammar Calculator;
expr : expr ('*'|'/') expr # BinaryOp
| expr ('+'|'-') expr # BinaryOp
| INT # Number
;
INT : [0-9]+ ;
WS : [ \t\n\r]+ -> skip ;
2. Build the Grammar
Use BuildAntlrGrammar to generate the lexer and parser:
from pathlib import Path
from dbrownell_ParserLib import BuildAntlrGrammar
BuildAntlrGrammar(
dm, # DoneManager instance
Path("Calculator.g4"),
Path("output_dir"),
)
3. Create Custom Visitor
Implement a visitor that converts ANTLR parse trees to Expression objects:
from dataclasses import dataclass
from dbrownell_ParserLib import (
Expression,
InsignificantWhitespaceAntlrVisitorMixin,
TerminalExpression,
)
from CalculatorVisitor import CalculatorVisitor as GeneratedVisitor
@dataclass(eq=False)
class BinaryExpression(Expression):
left: Expression
operator: TerminalExpression[str]
right: Expression
def _GenerateAcceptDetails(self):
yield "left", self.left
yield "operator", self.operator
yield "right", self.right
class CalculatorVisitor(InsignificantWhitespaceAntlrVisitorMixin, GeneratedVisitor):
def visitExpr(self, ctx):
children = self.GetChildren(ctx)
assert len(children) == 2, children
self._stack.append(
BinaryExpression(
self.CreateRegion(ctx),
children[0],
TerminalExpression[str](self.CreateRegion(ctx.children[1]), ctx.children[1].getText()),
children[1],
)
)
def visitNumber(self, ctx):
self._stack.append(
TerminalExpression(self.CreateRegion(ctx), int(ctx.getText()))
)
4. Create Parser Instance
Use CreateAntlrParser to build a callable parser:
from dbrownell_ParserLib import CreateAntlrParser
parser = CreateAntlrParser(
CalculatorLexer,
CalculatorParser,
CalculatorVisitor,
lambda p: p.expr(), # Entry point rule
)
5. Parse Files
Parse single files, multiple files, or entire workspaces:
from dbrownell_ParserLib import Error
# Parse a single file
results = parser(dm, Path("input.txt"), None)
# Parse multiple files
results = parser(dm, [Path("file1.txt"), Path("file2.txt")], None)
# Check results
for filepath, result in results.items():
if isinstance(result, Error):
print(f"Parse error in {filepath}: {result}")
else:
# result is the visitor containing the parsed AST
ast = result._stack[0]
# Process the AST
6. Traverse the AST
Use the visitor pattern to process your AST:
from contextlib import contextmanager
from dbrownell_ParserLib import ExpressionVisitorHelper, VisitResult
class EvaluatorVisitor(ExpressionVisitorHelper):
@contextmanager
def OnBinaryExpression(self, expression):
# Process binary expressions
yield VisitResult.Continue
ast.Accept(EvaluatorVisitor())
Installation
| Installation Method | Command |
|---|---|
| Via uv | uv add dbrownell_ParserLib |
| Via pip | pip install dbrownell_ParserLib |
Verifying Signed Artifacts
Artifacts are signed and verified using py-minisign and the public key in the file ./minisign_key.pub.
To verify that an artifact is valid, visit the latest release and download the .minisign signature file that corresponds to the artifact, then run the following command, replacing <filename> with the name of the artifact to be verified:
uv run --with py-minisign python -c "import minisign; minisign.PublicKey.from_file('minisign_key.pub').verify_file('<filename>'); print('The file has been verified.')"
Development
Please visit Contributing and Development for information on contributing to this project.
Additional Information
Additional information can be found at these locations.
| Title | Document | Description |
|---|---|---|
| Code of Conduct | CODE_OF_CONDUCT.md | Information about the norms, rules, and responsibilities we adhere to when participating in this open source community. |
| Contributing | CONTRIBUTING.md | Information about contributing to this project. |
| Development | DEVELOPMENT.md | Information about development activities involved in making changes to this project. |
| Governance | GOVERNANCE.md | Information about how this project is governed. |
| Maintainers | MAINTAINERS.md | Information about individuals who maintain this project. |
| Security | SECURITY.md | Information about how to privately report security issues associated with this project. |
License
dbrownell_ParserLib is licensed under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dbrownell_parserlib-0.9.0.tar.gz.
File metadata
- Download URL: dbrownell_parserlib-0.9.0.tar.gz
- Upload date:
- Size: 2.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
570882256818f1df195b6d9a1651a4145d18f6bf06347e92c3d807bc55de7e1e
|
|
| MD5 |
8c1c179183f77288a0ee83a9c4ef6225
|
|
| BLAKE2b-256 |
57e530e2a773329d397e7bc8d83143e123d3698e7a2e00ff044ea38e7eb0540c
|
File details
Details for the file dbrownell_parserlib-0.9.0-py3-none-any.whl.
File metadata
- Download URL: dbrownell_parserlib-0.9.0-py3-none-any.whl
- Upload date:
- Size: 2.0 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7a03ed134c33f8656527db0832542c85e8d75cd9d33812202793a470041bdef
|
|
| MD5 |
26f861e4f1d0878d41d9c2f2fe959b09
|
|
| BLAKE2b-256 |
c724a8d2ec05d567349bd31b6a2c68019077385a1f9f9cbe8f325622deda5794
|