mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-12 07:58:54 +01:00
105 lines
2.8 KiB
Rust
105 lines
2.8 KiB
Rust
use std::{error, fmt, io};
|
|
use crate::serde::SerializerError;
|
|
|
|
pub type MResult<T> = Result<T, Error>;
|
|
|
|
#[derive(Debug)]
|
|
pub enum Error {
|
|
Io(io::Error),
|
|
SchemaDiffer,
|
|
SchemaMissing,
|
|
WordIndexMissing,
|
|
MissingDocumentId,
|
|
Rkv(rkv::StoreError),
|
|
Fst(fst::Error),
|
|
RmpDecode(rmp_serde::decode::Error),
|
|
RmpEncode(rmp_serde::encode::Error),
|
|
Bincode(bincode::Error),
|
|
Serializer(SerializerError),
|
|
UnsupportedOperation(UnsupportedOperation),
|
|
}
|
|
|
|
impl From<io::Error> for Error {
|
|
fn from(error: io::Error) -> Error {
|
|
Error::Io(error)
|
|
}
|
|
}
|
|
|
|
impl From<rkv::StoreError> for Error {
|
|
fn from(error: rkv::StoreError) -> Error {
|
|
Error::Rkv(error)
|
|
}
|
|
}
|
|
|
|
impl From<fst::Error> for Error {
|
|
fn from(error: fst::Error) -> Error {
|
|
Error::Fst(error)
|
|
}
|
|
}
|
|
|
|
impl From<rmp_serde::decode::Error> for Error {
|
|
fn from(error: rmp_serde::decode::Error) -> Error {
|
|
Error::RmpDecode(error)
|
|
}
|
|
}
|
|
|
|
impl From<rmp_serde::encode::Error> for Error {
|
|
fn from(error: rmp_serde::encode::Error) -> Error {
|
|
Error::RmpEncode(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<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),
|
|
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"),
|
|
Rkv(e) => write!(f, "rkv error; {}", e),
|
|
Fst(e) => write!(f, "fst error; {}", e),
|
|
RmpDecode(e) => write!(f, "rmp decode error; {}", e),
|
|
RmpEncode(e) => write!(f, "rmp encode error; {}", e),
|
|
Bincode(e) => write!(f, "bincode error; {}", e),
|
|
Serializer(e) => write!(f, "serializer error; {}", e),
|
|
UnsupportedOperation(op) => write!(f, "unsupported operation; {}", op),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl error::Error for Error { }
|
|
|
|
#[derive(Debug)]
|
|
pub enum UnsupportedOperation {
|
|
SchemaAlreadyExists,
|
|
}
|
|
|
|
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"),
|
|
}
|
|
}
|
|
}
|