# Datasheet: Omni Parser Secure Ingress

## Product Overview
* **Tagline:** C++ AST Secure Ingress Parser
* **Recommended for:** SecOps, DevSecOps, and Automated Code Review gateways.

---

## Core Differentiators
* **Low-Latency AST Parsing:** Scans C++ source code files and generates Abstract Syntax Trees (AST) in milliseconds directly on HTTP request ingress.
* **Compile-Gate Ingress Protection:** Integrates with API gateways to intercept and block code submissions containing security vulnerabilities before they hit compiling networks.
* **FastAPI Gateway Server:** Lightweight, high-concurrency API server wrapper with built-in token-based rate limiting.

---

## System Requirements

### Hardware Specs
| Component | Minimum | Recommended (Production) |
|-----------|---------|-------------------------|
| **CPU** | 1 core | 2+ cores (for API concurrency) |
| **RAM** | 1 GB | 2 GB |
| **Disk** | 200 MB | 1 GB (for temporary code caching) |

### Software & Environment
* **Supported OS:** Linux (CentOS/Ubuntu/Debian), Windows 10+, macOS.
* **Runtimes:** Python >= 3.9.
* **Compilers & Parsing Tools:** Clang/LLVM library bindings (`libclang`).

---

## Deployment & Integration Options
* **Gateway Auth Model:** Header-based API key checking.
* **Output Format:** Clean JSON vulnerability scan records and AST structure maps.
* **Sample API Request:**
```bash
curl -X POST https://api.quantuminfinite.com/v1/parse      -H "X-API-Key: your_secure_key"      -F "file=@main.cpp"
```
