rbox 0.1.7

Rust library for interacting with the local and export data of Pioneers Rekordbox DJ software
// Copyright (C) 2026 Dylan Jones
// SPDX-License-Identifier: GPL-3.0-only

#[cfg(feature = "napi")]
use napi::Error as NapiError;
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error("Enviroment variable {0} is not set")]
    EnvionmentNotFound(String),

    #[error("File not found: {0}")]
    FileNotFound(String),

    #[error("{0}")]
    Error(String),

    #[error(transparent)]
    JsonError(#[from] serde_json::Error),

    #[error(transparent)]
    IOError(#[from] std::io::Error),

    #[error(transparent)]
    Utf8Error(#[from] std::str::Utf8Error),

    #[cfg(any(feature = "anlz", feature = "settings"))]
    #[error(transparent)]
    BinReadError(#[from] binrw::error::Error),

    #[error("XML Error: {0}")]
    #[cfg(any(feature = "xml", feature = "master-db"))]
    XmlError(String),

    #[error("Failed to parse options.json: {0}")]
    OptionError(String),

    #[error("Setting Error: {0}")]
    #[cfg(feature = "settings")]
    SettingError(String),

    #[error("Invalid {0} value: {1}")]
    #[cfg(feature = "settings")]
    SettingInvalidValue(String, String),

    #[error("Not a {0} file")]
    #[cfg(feature = "settings")]
    SettingInvalidFile(String),

    #[error("Anlz Error: {0}")]
    #[cfg(feature = "anlz")]
    AnlzError(String),

    #[cfg(any(feature = "master-db", feature = "one-library"))]
    #[error("Diesel error: {0}")]
    Diesel(#[from] diesel::result::Error),

    #[cfg(any(feature = "master-db", feature = "one-library"))]
    #[error("Connection pool error: {0}")]
    Pool(#[from] diesel::r2d2::PoolError),

    #[cfg(any(feature = "master-db", feature = "one-library"))]
    #[error("Database error: {0}")]
    Database(String),

    #[cfg(any(feature = "master-db", feature = "one-library"))]
    #[error("Connection error: {0}")]
    Connection(#[from] diesel::ConnectionError),

    #[error("Rekordbox is running. Please close Rekordbox and try again.")]
    RekordboxRunning,
}

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

impl From<String> for Error {
    fn from(s: String) -> Self {
        Error::Error(s)
    }
}

#[cfg(any(feature = "xml", feature = "master-db"))]
impl From<quick_xml::de::DeError> for Error {
    fn from(error: quick_xml::de::DeError) -> Self {
        Error::XmlError(error.to_string())
    }
}

#[cfg(any(feature = "xml", feature = "master-db"))]
impl From<quick_xml::se::SeError> for Error {
    fn from(error: quick_xml::se::SeError) -> Self {
        Error::XmlError(error.to_string())
    }
}

#[cfg(feature = "napi")]
impl From<Error> for NapiError {
    fn from(error: Error) -> Self {
        Self::from_reason(error.to_string())
    }
}