pmat 3.11.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
#![cfg_attr(coverage_nightly, coverage(off))]
//! Zero-overhead complexity analysis system
//!
//! This module provides code complexity analysis without increasing binary size
//! beyond 2% by leveraging existing AST infrastructure. It calculates multiple
//! complexity metrics including cyclomatic, cognitive, and nesting complexity.
//!
//! ## Key Features
//!
//! - **`McCabe` Cyclomatic Complexity**: Measures the number of linearly independent paths
//! - **Cognitive Complexity**: Sonar method for measuring how hard code is to understand
//! - **Nesting Depth**: Maximum depth of nested control structures
//! - **Halstead Metrics**: Software science metrics for program complexity
//!
//! ## Quick Start
//!
//! ```rust
//! use pmat::services::complexity::{ComplexityMetrics, HalsteadMetrics};
//!
//! // Create basic complexity metrics
//! let metrics = ComplexityMetrics::new(5, 8, 3, 42);
//! assert_eq!(metrics.cyclomatic, 5);
//! assert_eq!(metrics.cognitive, 8);
//! assert_eq!(metrics.nesting_max, 3);
//! assert_eq!(metrics.lines, 42);
//! assert!(metrics.halstead.is_none());
//!
//! // Create with Halstead metrics
//! let halstead = HalsteadMetrics::new(10, 5, 20, 8);
//! let metrics_with_halstead = ComplexityMetrics::with_halstead(5, 8, 3, 42, halstead);
//! assert!(metrics_with_halstead.halstead.is_some());
//! ```

pub mod aggregation;
pub mod analysis;
pub mod formatting;
pub mod rules;
pub mod types;
pub mod uncached;
pub mod visitor;

// Re-export all public types and functions
pub use aggregation::{aggregate_results, aggregate_results_with_thresholds};
pub use formatting::{format_as_sarif, format_complexity_report, format_complexity_summary};
pub use rules::{CognitiveComplexityRule, ComplexityRule, CyclomaticComplexityRule};
pub use types::{
    ClassComplexity, ComplexityHotspot, ComplexityMetrics, ComplexityReport, ComplexitySummary,
    ComplexityThresholds, FileComplexityMetrics, FunctionComplexity, HalsteadMetrics, Violation,
};
pub use uncached::{analyze_file_complexity_uncached, compute_complexity_cache_key};
pub use visitor::ComplexityVisitor;

#[cfg(test)]
mod tests;

// BROKEN: complexity_tests_part1.rs truncated at line 500
#[cfg(all(test, feature = "broken-tests"))]
#[path = "complexity_tests.rs"]
mod broken_tests;