use meilisearch_auth::error::AuthControllerError; use meilisearch_error::{internal_error, Code, ErrorCode}; use crate::{index_resolver::error::IndexResolverError, tasks::error::TaskError}; pub type Result = std::result::Result; #[derive(thiserror::Error, Debug)] pub enum DumpError { #[error("A dump is already processing. You must wait until the current process is finished before requesting another dump.")] DumpAlreadyRunning, #[error("Dump `{0}` not found.")] DumpDoesNotExist(String), #[error("An internal error has occurred. `{0}`.")] Internal(Box), #[error("{0}")] IndexResolver(#[from] IndexResolverError), } internal_error!( DumpError: milli::heed::Error, std::io::Error, tokio::task::JoinError, tokio::sync::oneshot::error::RecvError, serde_json::error::Error, tempfile::PersistError, fs_extra::error::Error, AuthControllerError, TaskError ); impl ErrorCode for DumpError { fn error_code(&self) -> Code { match self { DumpError::DumpAlreadyRunning => Code::DumpAlreadyInProgress, DumpError::DumpDoesNotExist(_) => Code::DumpNotFound, DumpError::Internal(_) => Code::Internal, DumpError::IndexResolver(e) => e.error_code(), } } }