Metadata-Version: 2.4
Name: sawmill-parser
Version: 0.2.3
Summary: A configurable TUI for post-processing and filtering structured tool logs
Project-URL: Homepage, https://github.com/sawmill/sawmill
Project-URL: Documentation, https://github.com/sawmill/sawmill#readme
Project-URL: Repository, https://github.com/sawmill/sawmill
Author: Sawmill Contributors
License: MIT
Keywords: eda,filter,log,terminal,tui
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Requires-Dist: pluggy>=1.3.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: rich-click>=1.7.0
Requires-Dist: rich>=13.0.0
Requires-Dist: textual>=0.40.0
Requires-Dist: tomli-w>=1.0.0
Requires-Dist: tomli>=2.0.0
Provides-Extra: dev
Requires-Dist: mypy>=1.0.0; extra == 'dev'
Requires-Dist: pre-commit>=3.0.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Requires-Dist: ruff>=0.4.0; extra == 'dev'
Description-Content-Type: text/markdown

<p align="center">
  <img src="assets/sawmill.png" alt="Sawmill - Cutting through the noise" width="600">
</p>

<h1 align="center">Sawmill</h1>

<p align="center">
  <strong>A plugin-driven terminal log analyzer</strong>
</p>

<p align="center">
  <a href="#installation">Installation</a> •
  <a href="#quick-start">Quick Start</a> •
  <a href="#features">Features</a> •
  <a href="#plugins">Plugins</a> •
  <a href="#ci-integration">CI Integration</a>
</p>

---

Sawmill helps you filter, analyze, and understand complex log files from tools like Vivado, Quartus, and more. Through a plugin architecture, it provides tool-specific intelligence while remaining extensible to any log format.

## Features

- **Smart Parsing** - Plugins understand tool-specific message formats, multi-line grouping, and file references
- **Summary Views** - Quick overview of errors and warnings by severity and message ID
- **Flexible Grouping** - Group messages by severity, ID, file, category, or plugin-defined fields
- **Regex Filtering** - Include or exclude messages with powerful pattern matching
- **CI Integration** - Exit codes and waiver system for build pipeline integration
- **Extensible** - Write plugins for any log format with full customization

## Installation

```bash
# Install from source
pip install -e .

# With development dependencies
pip install -e ".[dev]"
```

## Quick Start

```bash
# Analyze a log file (auto-detects format)
sawmill vivado.log

# Show summary by severity with ID breakdown
sawmill vivado.log --summary

# Group messages by ID, file, or category
sawmill vivado.log --group-by id
sawmill vivado.log --group-by file
sawmill vivado.log --group-by category

# Filter by severity level (name or number)
sawmill vivado.log --severity warning
sawmill vivado.log --severity 1  # Same as above

# List available severity levels for a plugin
sawmill --list-severity --plugin vivado

# Filter with regex pattern
sawmill vivado.log --filter "timing"

# Exclude messages by pattern or ID
sawmill vivado.log --suppress "Synth 8-7129"
sawmill vivado.log --suppress-id "Synth 8-7129"
```

## CLI Options

| Option | Description |
|--------|-------------|
| `--summary` | Show summary counts by severity and message ID |
| `--group-by` | Group output by `severity`, `id`, `file`, or `category` |
| `--top N` | Limit messages per group (default: 5, 0 = no limit) |
| `--severity` | Filter to severity level and above (name or number) |
| `--list-severity` | List available severity levels from the plugin |
| `--filter` | Regex pattern to include messages |
| `--suppress` | Regex pattern to exclude messages |
| `--suppress-id` | Exclude specific message IDs |
| `--format` | Output format: `text`, `json`, or `count` |
| `--ci` | CI mode: exit 1 on errors/critical warnings |
| `--waivers` | Path to waiver TOML file |

## Plugins

Sawmill uses a plugin architecture to support different log formats. Plugins are auto-detected based on log content.

### Built-in Plugins

| Plugin | Description |
|--------|-------------|
| `vivado` | Xilinx Vivado synthesis and implementation logs |

### External Plugins

Plugins can be installed separately and auto-register with sawmill:

```bash
# List available plugins
sawmill --list-plugins

# List available severity levels
sawmill --list-severity --plugin vivado

# List available grouping fields
sawmill --list-groupings --plugin vivado
```

### Writing Plugins

Plugins implement the `SawmillPlugin` interface with hooks for:

- `can_handle(path)` - Detect if plugin can parse a file
- `load_and_parse(path)` - Parse file into `Message` objects
- `get_filters()` - Provide pre-defined filter definitions
- `get_severity_levels()` - Define severity ordering and styling
- `get_grouping_fields()` - Declare available grouping dimensions

## CI Integration

Sawmill can be used in CI pipelines to fail builds on errors:

```bash
# Exit 1 if errors or critical warnings found
sawmill vivado.log --ci

# Also fail on regular warnings
sawmill vivado.log --ci --strict

# Use waivers to allow known issues
sawmill vivado.log --ci --waivers waivers.toml
```

### Waiver Files

Waiver files are TOML files that specify known issues to ignore:

```toml
[[waiver]]
id = "Synth 8-7129"
reason = "Expected warning for RAM inference"
expires = "2025-12-31"

[[waiver]]
pattern = "timing.*slack"
reason = "Timing constraints not finalized"
```

## Development

```bash
# Run tests
pytest tests/ -v

# Run tests with coverage
pytest tests/ --cov=sawmill

# Check linting
ruff check sawmill/
```

## License

MIT
