adguard-flm 2.6.1

This crate represents a library for managing AdGuard filter lists
Documentation
//! Common database errors
use rusqlite::{Error, ErrorCode};

/// Common database errors enum
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
#[cfg_attr(test, derive(PartialEq))]
pub enum DatabaseError {
    /// Cannot open file by the following path
    #[error("Cannot open database")]
    CannotOpen,

    /// File opened that is not a database file
    #[error("This file is not a database")]
    NotADatabase,

    #[error("Database is busy")]
    DatabaseBusy,

    /// Cannot operate, because disc is full
    #[error("Disk is full")]
    DiskFull,

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

impl From<Error> for DatabaseError {
    fn from(value: Error) -> Self {
        match value {
            Error::SqliteFailure(code, _) => match code.code {
                ErrorCode::DiskFull => Self::DiskFull,
                ErrorCode::CannotOpen => Self::CannotOpen,
                ErrorCode::NotADatabase => Self::NotADatabase,
                ErrorCode::DatabaseBusy => Self::DatabaseBusy,
                _ => Self::Other(value.to_string()),
            },
            _ => Self::Other(value.to_string()),
        }
    }
}