obzenflow_core 0.2.4

Core domain layer for ObzenFlow - pure abstractions with minimal dependencies
Documentation
// SPDX-License-Identifier: MIT OR Apache-2.0
// SPDX-FileCopyrightText: 2025-2026 ObzenFlow Contributors
// https://obzenflow.dev

//! Processing outcome types
//!
//! Defines the possible outcomes of processing an event, including
//! structured error classification via `ErrorKind`.

use serde::{Deserialize, Serialize};

/// Structured classification for processing errors (FLOWIP-082h).
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Hash)]
pub enum ErrorKind {
    /// Timeout talking to a remote dependency.
    Timeout,
    /// Remote/transport failures (HTTP 5xx, connection refused, etc.).
    Remote,
    /// Remote dependency throttled the request and suggested backoff.
    RateLimited,
    /// Permanent failure where retry is not expected to help (auth, bad credentials, etc.).
    PermanentFailure,
    /// Unable to deserialize/parse the input payload.
    Deserialization,
    /// Business rule violation (invalid input, out-of-range value, etc.).
    Validation,
    /// Broader domain logic failure.
    Domain,
    /// Unclassified error; treated conservatively by default.
    #[serde(other)]
    Unknown,
}

/// The outcome of processing an event
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub enum ProcessingStatus {
    /// Event was processed successfully
    #[default]
    Success,

    /// Processing failed with an error
    Error {
        /// Human-readable error message
        message: String,
        /// Structured classification for this error (optional until fully wired)
        #[serde(skip_serializing_if = "Option::is_none")]
        kind: Option<ErrorKind>,
    },
}

impl ProcessingStatus {
    /// Create a success outcome
    pub fn success() -> Self {
        ProcessingStatus::Success
    }

    /// Create a generic error outcome with no specific ErrorKind.
    pub fn error(msg: impl Into<String>) -> Self {
        ProcessingStatus::Error {
            message: msg.into(),
            kind: None,
        }
    }

    /// Create an error outcome with an explicit ErrorKind.
    pub fn error_with_kind(msg: impl Into<String>, kind: Option<ErrorKind>) -> Self {
        ProcessingStatus::Error {
            message: msg.into(),
            kind,
        }
    }

    /// Access the ErrorKind, if present.
    pub fn kind(&self) -> Option<&ErrorKind> {
        match self {
            ProcessingStatus::Error { kind, .. } => kind.as_ref(),
            _ => None,
        }
    }

    /// Check if this outcome is terminal (no more processing needed)
    pub fn is_terminal(&self) -> bool {
        matches!(self, Self::Success | Self::Error { .. })
    }

    /// Check if processing was successful
    pub fn is_success(&self) -> bool {
        matches!(self, Self::Success)
    }
}