2022-09-22 12:14:51 +02:00
|
|
|
use meilisearch_types::error::{Code, ErrorCode};
|
2022-09-06 23:49:19 +02:00
|
|
|
use milli::heed;
|
2022-09-06 16:43:59 +02:00
|
|
|
use thiserror::Error;
|
|
|
|
|
2022-09-21 17:13:09 +02:00
|
|
|
use crate::TaskId;
|
|
|
|
|
2022-09-06 16:43:59 +02:00
|
|
|
#[derive(Error, Debug)]
|
|
|
|
pub enum Error {
|
2022-09-07 21:27:06 +02:00
|
|
|
#[error("Index `{0}` not found")]
|
2022-09-07 20:08:07 +02:00
|
|
|
IndexNotFound(String),
|
2022-09-07 21:27:06 +02:00
|
|
|
#[error("Index `{0}` already exists")]
|
2022-09-07 20:08:07 +02:00
|
|
|
IndexAlreadyExists(String),
|
2022-09-06 23:49:19 +02:00
|
|
|
#[error("Corrupted task queue.")]
|
|
|
|
CorruptedTaskQueue,
|
2022-09-21 17:13:09 +02:00
|
|
|
#[error("Task `{0}` not found")]
|
|
|
|
TaskNotFound(TaskId),
|
2022-09-22 12:14:51 +02:00
|
|
|
|
|
|
|
// maybe the two next errors are going to move to the frontend
|
|
|
|
#[error("`{0}` is not a status. Available status are")]
|
|
|
|
InvalidStatus(String),
|
|
|
|
#[error("`{0}` is not a type. Available types are")]
|
|
|
|
InvalidKind(String),
|
|
|
|
|
2022-09-06 23:49:19 +02:00
|
|
|
#[error(transparent)]
|
|
|
|
Heed(#[from] heed::Error),
|
|
|
|
#[error(transparent)]
|
|
|
|
Milli(#[from] milli::Error),
|
2022-09-14 16:16:53 +02:00
|
|
|
#[error(transparent)]
|
2022-09-07 20:30:33 +02:00
|
|
|
IndexError(#[from] index::error::IndexError),
|
2022-09-07 21:27:06 +02:00
|
|
|
#[error(transparent)]
|
2022-09-14 16:16:53 +02:00
|
|
|
FileStore(#[from] file_store::Error),
|
|
|
|
#[error(transparent)]
|
2022-09-07 21:27:06 +02:00
|
|
|
IoError(#[from] std::io::Error),
|
2022-09-06 23:49:19 +02:00
|
|
|
|
|
|
|
#[error(transparent)]
|
|
|
|
Anyhow(#[from] anyhow::Error),
|
2022-09-06 16:43:59 +02:00
|
|
|
}
|
2022-09-22 12:14:51 +02:00
|
|
|
|
|
|
|
impl ErrorCode for Error {
|
|
|
|
fn error_code(&self) -> Code {
|
|
|
|
match self {
|
|
|
|
Error::IndexNotFound(_) => Code::IndexNotFound,
|
|
|
|
Error::IndexAlreadyExists(_) => Code::IndexAlreadyExists,
|
|
|
|
Error::TaskNotFound(_) => Code::TaskNotFound,
|
|
|
|
Error::InvalidStatus(_) => todo!(),
|
|
|
|
Error::InvalidKind(_) => todo!(),
|
|
|
|
Error::Heed(_) => todo!(),
|
|
|
|
Error::Milli(_) => todo!(),
|
|
|
|
Error::IndexError(_) => todo!(),
|
|
|
|
Error::FileStore(_) => todo!(),
|
|
|
|
Error::IoError(_) => todo!(),
|
|
|
|
Error::Anyhow(_) => Code::Internal,
|
|
|
|
Error::CorruptedTaskQueue => Code::Internal,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|