pasta_dsl 0.2.4

Pasta DSL - Independent DSL parser and AST definitions
Documentation
//! Error types for Pasta DSL parsing layer.
//!
//! This module defines parse-related errors that are language-independent.
//! These error types are specific to DSL parsing and do not depend on
//! any backend or registry implementation.

use thiserror::Error;

/// Result type alias for parse operations.
pub type ParseResult<T> = std::result::Result<T, ParseError>;

/// Parse error with source location information.
#[derive(Error, Debug, Clone)]
pub enum ParseError {
    /// Syntax error at a specific location.
    #[error("Parse error: {file}:{line}:{column}: {message}")]
    SyntaxError {
        file: String,
        line: usize,
        column: usize,
        message: String,
    },

    /// Pest parser error.
    #[error("Pest parse error: {0}")]
    PestError(String),

    /// IO error (file reading).
    #[error("IO error: {0}")]
    IoError(String),

    /// Multiple parse errors accumulated.
    #[error("Multiple parse errors: {} errors", .errors.len())]
    MultipleErrors { errors: Vec<ParseErrorInfo> },
}

/// Individual parse error information for MultipleErrors.
#[derive(Debug, Clone, PartialEq)]
pub struct ParseErrorInfo {
    pub file: String,
    pub line: usize,
    pub column: usize,
    pub message: String,
}

impl ParseError {
    /// Create a new syntax error with source location.
    pub fn syntax_error(
        file: impl Into<String>,
        line: usize,
        column: usize,
        message: impl Into<String>,
    ) -> Self {
        ParseError::SyntaxError {
            file: file.into(),
            line,
            column,
            message: message.into(),
        }
    }

    /// Create a new pest parse error.
    pub fn pest_error(message: impl Into<String>) -> Self {
        ParseError::PestError(message.into())
    }

    /// Create a new IO error from a string message.
    pub fn io_error(message: impl Into<String>) -> Self {
        ParseError::IoError(message.into())
    }
}

impl From<std::io::Error> for ParseError {
    fn from(err: std::io::Error) -> Self {
        ParseError::IoError(err.to_string())
    }
}