mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-23 13:24:27 +01:00
120 lines
3.5 KiB
Rust
120 lines
3.5 KiB
Rust
use crate::serde::{DeserializerError, SerializerError};
|
|
use serde_json::Error as SerdeJsonError;
|
|
use std::{error, fmt, io};
|
|
|
|
pub type MResult<T> = Result<T, Error>;
|
|
|
|
#[derive(Debug)]
|
|
pub enum Error {
|
|
Io(io::Error),
|
|
IndexAlreadyExists,
|
|
SchemaDiffer,
|
|
SchemaMissing,
|
|
WordIndexMissing,
|
|
MissingDocumentId,
|
|
DuplicateDocument,
|
|
Zlmdb(heed::Error),
|
|
Fst(fst::Error),
|
|
SerdeJson(SerdeJsonError),
|
|
Bincode(bincode::Error),
|
|
Serializer(SerializerError),
|
|
Deserializer(DeserializerError),
|
|
UnsupportedOperation(UnsupportedOperation),
|
|
}
|
|
|
|
impl From<io::Error> for Error {
|
|
fn from(error: io::Error) -> Error {
|
|
Error::Io(error)
|
|
}
|
|
}
|
|
|
|
impl From<heed::Error> for Error {
|
|
fn from(error: heed::Error) -> Error {
|
|
Error::Zlmdb(error)
|
|
}
|
|
}
|
|
|
|
impl From<fst::Error> for Error {
|
|
fn from(error: fst::Error) -> Error {
|
|
Error::Fst(error)
|
|
}
|
|
}
|
|
|
|
impl From<SerdeJsonError> for Error {
|
|
fn from(error: SerdeJsonError) -> Error {
|
|
Error::SerdeJson(error)
|
|
}
|
|
}
|
|
|
|
impl From<bincode::Error> for Error {
|
|
fn from(error: bincode::Error) -> Error {
|
|
Error::Bincode(error)
|
|
}
|
|
}
|
|
|
|
impl From<SerializerError> for Error {
|
|
fn from(error: SerializerError) -> Error {
|
|
Error::Serializer(error)
|
|
}
|
|
}
|
|
|
|
impl From<DeserializerError> for Error {
|
|
fn from(error: DeserializerError) -> Error {
|
|
Error::Deserializer(error)
|
|
}
|
|
}
|
|
|
|
impl From<UnsupportedOperation> for Error {
|
|
fn from(op: UnsupportedOperation) -> Error {
|
|
Error::UnsupportedOperation(op)
|
|
}
|
|
}
|
|
|
|
impl fmt::Display for Error {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
use self::Error::*;
|
|
match self {
|
|
Io(e) => write!(f, "{}", e),
|
|
IndexAlreadyExists => write!(f, "index already exists"),
|
|
SchemaDiffer => write!(f, "schemas differ"),
|
|
SchemaMissing => write!(f, "this index does not have a schema"),
|
|
WordIndexMissing => write!(f, "this index does not have a word index"),
|
|
MissingDocumentId => write!(f, "document id is missing"),
|
|
DuplicateDocument => write!(f, "update contains documents with the same id"),
|
|
Zlmdb(e) => write!(f, "heed error; {}", e),
|
|
Fst(e) => write!(f, "fst error; {}", e),
|
|
SerdeJson(e) => write!(f, "serde json error; {}", e),
|
|
Bincode(e) => write!(f, "bincode error; {}", e),
|
|
Serializer(e) => write!(f, "serializer error; {}", e),
|
|
Deserializer(e) => write!(f, "deserializer error; {}", e),
|
|
UnsupportedOperation(op) => write!(f, "unsupported operation; {}", op),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl error::Error for Error {}
|
|
|
|
#[derive(Debug)]
|
|
pub enum UnsupportedOperation {
|
|
SchemaAlreadyExists,
|
|
CannotUpdateSchemaIdentifier,
|
|
CannotReorderSchemaAttribute,
|
|
CannotIntroduceNewSchemaAttribute,
|
|
CannotRemoveSchemaAttribute,
|
|
}
|
|
|
|
impl fmt::Display for UnsupportedOperation {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
use self::UnsupportedOperation::*;
|
|
match self {
|
|
SchemaAlreadyExists => write!(f, "Cannot update index which already have a schema"),
|
|
CannotUpdateSchemaIdentifier => write!(f, "Cannot update the identifier of a schema"),
|
|
CannotReorderSchemaAttribute => write!(f, "Cannot reorder the attributes of a schema"),
|
|
CannotIntroduceNewSchemaAttribute => {
|
|
write!(f, "Cannot introduce new attributes in a schema")
|
|
}
|
|
CannotRemoveSchemaAttribute => write!(f, "Cannot remove attributes from a schema"),
|
|
}
|
|
}
|
|
}
|