cpdb-rs 0.1.1

Safe Rust bindings for OpenPrinting cpdb-libs — Common Print Dialog Backends
Documentation
//! Crate-wide error type and `Result` alias.

use std::ffi::NulError;
use std::str::Utf8Error;
use thiserror::Error;

/// Errors that originate from the cpdb-rs bindings.
///
/// This type is `#[non_exhaustive]` — match arms must include a wildcard
/// so adding variants in future minor releases is not a breaking change.
#[non_exhaustive]
#[derive(Error, Debug)]
pub enum CpdbError {
    /// A C function returned `NULL` where a valid pointer was required.
    #[error("Null pointer encountered")]
    NullPointer,

    /// A printer object pointer is invalid or has been released.
    #[error("Invalid printer object")]
    InvalidPrinter,

    /// A lookup (printer, option, media, translation, ...) returned no result.
    #[error("Not found: {0}")]
    NotFound(String),

    /// A printer-side operation failed (set default, accept jobs, ...).
    #[error("Printer error: {0}")]
    PrinterError(String),

    /// A print job submission failed.
    #[error("Print job failed: {0}")]
    JobFailed(String),

    /// A backend-side operation failed.
    #[error("Backend error: {0}")]
    BackendError(String),

    /// A frontend-side operation failed (D-Bus, lifecycle, ...).
    #[error("Frontend error: {0}")]
    FrontendError(String),

    /// A printer option could not be parsed or applied.
    #[error("Option error: {0}")]
    OptionError(String),

    /// A byte sequence returned by the backend (cpdb-libs C string or a
    /// D-Bus payload) contained invalid UTF-8.
    #[error("Invalid UTF-8 string: {0}")]
    Utf8Error(#[from] Utf8Error),

    /// A Rust string contained an interior NUL byte.
    #[error("Nul byte in string: {0}")]
    NulError(#[from] NulError),

    /// An I/O error bubbled up from std::io.
    #[error("IO error: {0}")]
    IoError(#[from] std::io::Error),

    /// An unexpected status code was returned.
    #[error("Invalid status code: {0}")]
    InvalidStatus(i32),

    /// The requested operation is not supported.
    #[error("Unsupported operation")]
    Unsupported,

    /// A D-Bus protocol error occurred. The inner string is a
    /// human-readable rendering (typically starts with the D-Bus error
    /// name, e.g. `"org.freedesktop.DBus.Error.UnknownMethod: ..."`).
    ///
    /// The variant is exposed even when the `zbus-backend` feature is
    /// disabled so downstream match arms remain valid across every
    /// feature combination.
    #[error("D-Bus error: {0}")]
    DbusError(String),

    /// A D-Bus FDO (freedesktop.org) standard error occurred. See
    /// [`DbusError`](Self::DbusError) for the rationale on the unconditional
    /// `String` payload.
    #[error("D-Bus FDO error: {0}")]
    FdoError(String),
}

/// Converts a `zbus::Error` into a [`CpdbError::DbusError`] by rendering it
/// with `Display`. Only compiled when the `zbus-backend` feature is enabled.
#[cfg(feature = "zbus-backend")]
impl From<zbus::Error> for CpdbError {
    fn from(e: zbus::Error) -> Self {
        Self::DbusError(e.to_string())
    }
}

/// Converts a `zbus::fdo::Error` into a [`CpdbError::FdoError`] by rendering
/// it with `Display`. Only compiled when the `zbus-backend` feature is
/// enabled.
#[cfg(feature = "zbus-backend")]
impl From<zbus::fdo::Error> for CpdbError {
    fn from(e: zbus::fdo::Error) -> Self {
        Self::FdoError(e.to_string())
    }
}

/// Shorthand `Result` alias used throughout the crate.
pub type Result<T> = std::result::Result<T, CpdbError>;

/// Convert a `cpdb_sys` FFI error into the crate-wide `CpdbError`.
///
/// This allows `?` to work across the FFI boundary when calling functions
/// from `cpdb_sys` modules (e.g. `util`, `printer`) inside `cpdb_rs` code.
#[cfg(feature = "ffi")]
impl From<cpdb_sys::error::CpdbError> for CpdbError {
    fn from(e: cpdb_sys::error::CpdbError) -> Self {
        match e {
            cpdb_sys::error::CpdbError::NullPointer => Self::NullPointer,
            cpdb_sys::error::CpdbError::InvalidPrinter => Self::InvalidPrinter,
            cpdb_sys::error::CpdbError::NotFound(s) => Self::NotFound(s),
            cpdb_sys::error::CpdbError::PrinterError(s) => Self::PrinterError(s),
            cpdb_sys::error::CpdbError::JobFailed(s) => Self::JobFailed(s),
            cpdb_sys::error::CpdbError::BackendError(s) => Self::BackendError(s),
            cpdb_sys::error::CpdbError::FrontendError(s) => Self::FrontendError(s),
            cpdb_sys::error::CpdbError::OptionError(s) => Self::OptionError(s),
            cpdb_sys::error::CpdbError::Utf8Error(e) => Self::Utf8Error(e),
            cpdb_sys::error::CpdbError::NulError(e) => Self::NulError(e),
            cpdb_sys::error::CpdbError::IoError(e) => Self::IoError(e),
            cpdb_sys::error::CpdbError::InvalidStatus(c) => Self::InvalidStatus(c),
            cpdb_sys::error::CpdbError::Unsupported => Self::Unsupported,
            _ => Self::FrontendError(format!("cpdb-sys error: {e}")),
        }
    }
}