noxu-log 3.0.2

Log-structured storage engine for Noxu DB
Documentation
//! Error types for the log layer.
//!

use std::io;
use thiserror::Error;

/// Errors that can occur in the log layer.
#[derive(Debug, Error)]
pub enum NoxuLogError {
    /// I/O error during file operations.
    #[error("Log I/O error: {0}")]
    Io(#[from] io::Error),

    /// File not found (specific log file).
    #[error("Log file not found: {0}")]
    FileNotFound(String),

    /// Checksum validation failed.
    #[error("Checksum validation failed at LSN {lsn}: {message}")]
    Checksum { lsn: noxu_util::lsn::Lsn, message: String },

    /// Invalid file header.
    #[error("Invalid file header in file {file_num:08x}: {message}")]
    InvalidHeader { file_num: u32, message: String },

    /// Version mismatch between log file and current version.
    #[error(
        "Version mismatch: expected {expected}, found {found} in file {file_num:08x}"
    )]
    VersionMismatch { expected: u32, found: u32, file_num: u32 },

    /// Environment is locked by another process.
    #[error("Environment locked: {0}")]
    EnvironmentLocked(String),

    /// Invalid environment directory.
    #[error("Invalid environment directory: {0}")]
    InvalidDirectory(String),

    /// Log write failed.
    #[error("Log write failed: {0}")]
    WriteFailed(String),

    /// Invalid entry type number.
    #[error("Invalid entry type {type_num} at LSN {lsn}")]
    InvalidEntryType { type_num: u8, lsn: noxu_util::lsn::Lsn },

    /// Invalid entry size.
    #[error("Invalid entry size {size} at LSN {lsn}")]
    InvalidEntrySize { size: i32, lsn: noxu_util::lsn::Lsn },

    /// Unexpected end of data.
    #[error("Unexpected EOF at LSN {lsn}: {message}")]
    UnexpectedEof { lsn: noxu_util::lsn::Lsn, message: String },

    /// Buffer overflow.
    #[error("Buffer overflow: {0}")]
    BufferOverflow(String),

    /// Log corruption detected.
    #[error("Log corrupt: {0}")]
    LogCorrupt(String),

    /// Latch acquisition timed out (maps to EnvironmentFailure/LatchTimeout).
    #[error("Latch acquisition timed out: {0}")]
    LatchTimeout(String),

    /// Internal consistency error.
    #[error("Internal error: {0}")]
    Internal(String),
}

/// Alias for backward compatibility with code using `LogError`.
pub type LogError = NoxuLogError;

pub type Result<T> = std::result::Result<T, NoxuLogError>;