MeiliSearch/index-scheduler/src/error.rs

60 lines
2.1 KiB
Rust
Raw Normal View History

use meilisearch_types::error::{Code, ErrorCode};
2022-10-20 18:00:07 +02:00
use meilisearch_types::{heed, milli};
use thiserror::Error;
use crate::TaskId;
#[derive(Error, Debug)]
pub enum Error {
#[error("Index `{0}` not found.")]
IndexNotFound(String),
#[error("Index `{0}` already exists.")]
IndexAlreadyExists(String),
2022-09-06 23:49:19 +02:00
#[error("Corrupted task queue.")]
CorruptedTaskQueue,
2022-10-16 01:39:01 +02:00
#[error("Corrupted dump.")]
CorruptedDump,
#[error("Task `{0}` not found.")]
TaskNotFound(TaskId),
#[error("Query parameters to filter the tasks to delete are missing. Available query parameters are: `uid`, `indexUid`, `status`, `type`.")]
TaskDeletionWithEmptyQuery,
#[error("Query parameters to filter the tasks to cancel are missing. Available query parameters are: `uid`, `indexUid`, `status`, `type`.")]
TaskCancelationWithEmptyQuery,
2022-10-13 15:02:59 +02:00
#[error(transparent)]
Dump(#[from] dump::Error),
2022-09-06 23:49:19 +02:00
#[error(transparent)]
Heed(#[from] heed::Error),
#[error(transparent)]
Milli(#[from] milli::Error),
#[error(transparent)]
FileStore(#[from] file_store::Error),
#[error(transparent)]
IoError(#[from] std::io::Error),
2022-09-06 23:49:19 +02:00
#[error(transparent)]
Anyhow(#[from] anyhow::Error),
}
impl ErrorCode for Error {
fn error_code(&self) -> Code {
match self {
Error::IndexNotFound(_) => Code::IndexNotFound,
Error::IndexAlreadyExists(_) => Code::IndexAlreadyExists,
Error::TaskNotFound(_) => Code::TaskNotFound,
Error::TaskDeletionWithEmptyQuery => Code::TaskDeletionWithEmptyQuery,
Error::TaskCancelationWithEmptyQuery => Code::TaskCancelationWithEmptyQuery,
2022-09-22 12:47:09 +02:00
2022-10-13 15:02:59 +02:00
Error::Dump(e) => e.error_code(),
Error::Milli(e) => e.error_code(),
2022-10-16 01:39:01 +02:00
// TODO: TAMO: are all these errors really internal?
2022-09-22 12:47:09 +02:00
Error::Heed(_) => Code::Internal,
Error::FileStore(_) => Code::Internal,
Error::IoError(_) => Code::Internal,
Error::Anyhow(_) => Code::Internal,
Error::CorruptedTaskQueue => Code::Internal,
2022-10-16 01:39:01 +02:00
Error::CorruptedDump => Code::Internal,
}
}
}