telltale-language 11.2.0

Shared choreography frontend for Telltale DSL parsing, projection, and macro code generation
Documentation
//! Abstract Syntax Tree for choreographic protocols
//!
//! This module defines the core AST types used to represent choreographic protocols,
//! including global protocols, local (projected) types, roles, and messages.
//!
//! Core types (GlobalType, LocalTypeR, Label, PayloadSort) are re-exported from
//! `telltale-types` for Lean correspondence. Extended types (LocalType, Protocol)
//! are defined here for DSL-specific features.

/// Typed protocol annotations
pub mod annotation;

/// Choreography definitions (global protocols with metadata)
pub mod choreography;

/// Execution hints for code generation (deployment-level concerns)
pub mod execution_hints;

/// Conversion utilities between DSL types and theory types
pub mod convert;

/// Global types for multiparty session type protocols (extended, uses telltale-types)
pub mod global_type;

/// Local types resulting from projection (extended, uses telltale-types)
pub mod local_type;

/// Message type definitions
pub mod message;

/// Non-empty collection utilities
pub mod non_empty;

/// Protocol combinators (global protocol constructs)
pub mod protocol;

/// Role definitions
pub mod role;

/// Validation errors and utilities
pub mod validation;

// Re-export core types from telltale-types for Lean correspondence
pub use telltale_types::{
    Action, GlobalType as GlobalTypeCore, Label, LocalAction, LocalTypeR, PayloadSort,
};

// Re-export DSL-specific types
pub use annotation::{Annotations, DslAnnotationEntry, ProtocolAnnotation};
pub use choreography::{
    AgreementProfileDeclaration, AuthorityMetatheoryStatus, AuthorityMetatheoryTier,
    ChildEffectAggregation, ChildEffectAggregationPolicy, Choreography, EffectAuthorityClass,
    EffectContractDeclaration, EffectInterfaceDeclaration, EffectOperationDeclaration,
    ExecutionProfileDeclaration, GuestRuntimeDeclaration, LanguageTier, LanguageTierStatus,
    OperationAgreementAttachment, OperationDeclaration, OperationParameterDeclaration,
    ProgressAttachment, RegionDeclaration, RoleSetDeclaration, TheoremPackDeclaration,
    TopologyDeclaration, TypeConstructorDeclaration, TypeDeclaration,
};
pub use execution_hints::{
    ChoreographyWithHints, ExecutionHints, ExecutionHintsBuilder, OperationHints, OperationPath,
    OperationStep,
};
pub use global_type::GlobalType; // Extended GlobalType with DSL features
pub use local_type::LocalType; // Extended LocalType for code generation
pub use message::MessageType;
pub use non_empty::{NonEmptyError, NonEmptyVec};
pub use protocol::{
    AuthorityBindingMode, AuthorityExpr, Branch, CaseBranch, CasePattern, ChoiceGuard,
    CommitmentOutcome, Condition, Protocol,
};
pub use role::{
    RangeExpr, Role, RoleBoundsChecker, RoleIndex, RoleParam, RoleRange, RoleValidationError,
    RoleValidationResult, MAX_RANGE_COUNT, MAX_ROLE_COUNT, MAX_ROLE_INDEX,
};
pub use validation::ValidationError;

// Re-export conversion utilities
pub use convert::{
    choreography_to_global, local_to_local_r, local_types_equivalent, protocol_to_global,
    ConversionError, ConversionResult,
};