ggen-core 26.6.11

Core graph-aware code generation engine
Documentation
//! Universal lifecycle system for ggen (80/20 Implementation)
//!
//! This module implements the lifecycle orchestration system that enables
//! cross-language project management through make.toml
//!
//! # 80/20 Philosophy
//!
//! This implementation focuses on the 20% of features that provide 80% of value:
//! - Simple phase execution (init, setup, build, test, deploy)
//! - Sequential execution with optional workspace parallelism
//! - File-based state persistence
//! - Deterministic caching
//! - Before/after hooks with recursion detection
//!
//! # Excluded Complexity (YAGNI until proven needed)
//!
//! - DAG-based dependency resolution (hooks provide enough ordering)
//! - Complex execution modes and visualization (keep output simple)
//! - Error recovery strategies (fail fast, report clearly)
//! - Advanced caching strategies (SHA256 is sufficient)

pub mod cache;
pub mod error;
pub mod exec;
pub mod hooks;
pub mod loader;
pub mod model;
pub mod poka_yoke;
pub mod state;
pub mod state_machine;
pub mod state_validation;

// Production readiness tracking (80/20 rule implementation)
pub mod production;
pub mod validation;

// Performance optimization for <60s deployment target
pub mod optimization;

// Template generation phase integration
// TEMPORARILY DISABLED: needs ggen_template crate which doesn't exist yet
// pub mod template_phase;

// Future enhancements (available but not in public API):
#[allow(dead_code)]
mod dag; // DAG resolution - use direct hooks for now
#[allow(dead_code)]
mod dx; // Developer experience helpers - keep output simple for now

#[cfg(test)]
mod integration_test;

// Public API (minimal and focused)
pub use cache::cache_key;
pub use error::{LifecycleError, Result};
pub use exec::{run_phase, run_pipeline, Context};
pub use hooks::{validate_hooks, HookValidationError, ValidatedHooks};
pub use loader::load_make;
pub use model::{Hooks, Make, Phase, PhaseBuilder, Project, ValidatedPhase, Workspace};
pub use state::{load_state, save_state, LifecycleState};
pub use state_machine::{
    Built, Deployed, Initial, Initialized, LifecycleStateMachine, Setup, Tested,
};
pub use state_validation::{StateValidationError, ValidatedLifecycleState};

// Poka-yoke (error prevention) types
pub use poka_yoke::{
    Closed, Counter, EmptyPathError, EmptyStringError, FileHandle, NonEmptyPath, NonEmptyString,
    Open,
};

// Production readiness exports
pub use production::{Placeholder, PlaceholderProcessor, PlaceholderRegistry};
pub use production::{
    ReadinessCategory, ReadinessReport, ReadinessRequirement, ReadinessStatus, ReadinessTracker,
};
pub use validation::{ReadinessValidator, ValidationIssue, ValidationResult, ValidationSeverity};

// Performance optimization exports
pub use optimization::{
    run_fast_validation, run_optimized_pipeline, ContainerPool, DependencyCache,
    ParallelOrchestrator, PerformanceTargets, PipelineProfiler, StageMetrics,
};

// Template phase exports
// TEMPORARILY DISABLED: needs ggen_template crate which doesn't exist yet
// pub use template_phase::{
//     execute_template_phase, register_template_phase, TemplatePhaseConfig,
// };