MeiliSearch/meilisearch-lib/src/dump/error.rs

42 lines
1.3 KiB
Rust
Raw Normal View History

use meilisearch_auth::error::AuthControllerError;
use meilisearch_error::{internal_error, Code, ErrorCode};
use crate::{index_resolver::error::IndexResolverError, tasks::error::TaskError};
2022-05-19 14:44:24 +02:00
pub type Result<T> = std::result::Result<T, DumpError>;
#[derive(thiserror::Error, Debug)]
2022-05-19 14:44:24 +02:00
pub enum DumpError {
2021-11-03 14:25:49 +01:00
#[error("A dump is already processing. You must wait until the current process is finished before requesting another dump.")]
DumpAlreadyRunning,
2021-10-26 19:36:48 +02:00
#[error("Dump `{0}` not found.")]
DumpDoesNotExist(String),
2021-11-03 14:25:49 +01:00
#[error("An internal error has occurred. `{0}`.")]
Internal(Box<dyn std::error::Error + Send + Sync + 'static>),
2021-06-24 10:53:51 +02:00
#[error("{0}")]
2021-09-24 11:53:11 +02:00
IndexResolver(#[from] IndexResolverError),
}
internal_error!(
2022-05-19 14:44:24 +02:00
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
);
2022-05-19 14:44:24 +02:00
impl ErrorCode for DumpError {
fn error_code(&self) -> Code {
match self {
2022-05-19 14:44:24 +02:00
DumpError::DumpAlreadyRunning => Code::DumpAlreadyInProgress,
DumpError::DumpDoesNotExist(_) => Code::DumpNotFound,
DumpError::Internal(_) => Code::Internal,
DumpError::IndexResolver(e) => e.error_code(),
}
}
}