2021-09-22 10:49:59 +02:00
|
|
|
use std::error::Error;
|
|
|
|
|
2021-06-14 21:26:35 +02:00
|
|
|
use meilisearch_error::Code;
|
|
|
|
use meilisearch_error::ErrorCode;
|
2021-09-24 11:53:11 +02:00
|
|
|
use tokio::task::JoinError;
|
2021-06-14 21:26:35 +02:00
|
|
|
|
2021-06-21 18:42:47 +02:00
|
|
|
use crate::index::error::IndexError;
|
|
|
|
|
2021-06-14 21:26:35 +02:00
|
|
|
use super::dump_actor::error::DumpActorError;
|
2021-09-24 11:53:11 +02:00
|
|
|
use super::index_resolver::error::IndexResolverError;
|
|
|
|
use super::updates::error::UpdateLoopError;
|
2021-06-14 21:26:35 +02:00
|
|
|
|
|
|
|
pub type Result<T> = std::result::Result<T, IndexControllerError>;
|
|
|
|
|
|
|
|
#[derive(Debug, thiserror::Error)]
|
|
|
|
pub enum IndexControllerError {
|
2021-06-24 10:53:51 +02:00
|
|
|
#[error("Index creation must have an uid")]
|
2021-06-14 21:26:35 +02:00
|
|
|
MissingUid,
|
2021-06-24 10:53:51 +02:00
|
|
|
#[error("{0}")]
|
2021-09-24 11:53:11 +02:00
|
|
|
IndexResolver(#[from] IndexResolverError),
|
2021-06-24 10:53:51 +02:00
|
|
|
#[error("{0}")]
|
2021-09-24 11:53:11 +02:00
|
|
|
UpdateLoop(#[from] UpdateLoopError),
|
2021-06-24 10:53:51 +02:00
|
|
|
#[error("{0}")]
|
2021-06-14 21:26:35 +02:00
|
|
|
DumpActor(#[from] DumpActorError),
|
2021-06-24 10:53:51 +02:00
|
|
|
#[error("{0}")]
|
2021-06-21 18:42:47 +02:00
|
|
|
IndexError(#[from] IndexError),
|
2021-09-22 10:49:59 +02:00
|
|
|
#[error("Internal error: {0}")]
|
|
|
|
Internal(Box<dyn Error + Send + Sync + 'static>),
|
2021-06-14 21:26:35 +02:00
|
|
|
}
|
|
|
|
|
2021-09-24 11:53:11 +02:00
|
|
|
internal_error!(IndexControllerError: JoinError);
|
|
|
|
|
2021-06-14 21:26:35 +02:00
|
|
|
impl ErrorCode for IndexControllerError {
|
|
|
|
fn error_code(&self) -> Code {
|
|
|
|
match self {
|
2021-06-24 10:53:51 +02:00
|
|
|
IndexControllerError::MissingUid => Code::BadRequest,
|
2021-09-24 11:53:11 +02:00
|
|
|
IndexControllerError::IndexResolver(e) => e.error_code(),
|
|
|
|
IndexControllerError::UpdateLoop(e) => e.error_code(),
|
2021-06-14 21:26:35 +02:00
|
|
|
IndexControllerError::DumpActor(e) => e.error_code(),
|
2021-06-21 18:42:47 +02:00
|
|
|
IndexControllerError::IndexError(e) => e.error_code(),
|
2021-09-22 10:49:59 +02:00
|
|
|
IndexControllerError::Internal(_) => Code::Internal,
|
2021-06-14 21:26:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|