MeiliSearch/meilisearch-http/src/index_controller/uuid_resolver/mod.rs

53 lines
1.4 KiB
Rust
Raw Normal View History

2021-03-23 11:00:50 +01:00
mod actor;
mod handle_impl;
mod message;
mod store;
2021-04-22 10:14:29 +02:00
use std::collections::HashSet;
2021-03-23 11:00:50 +01:00
use std::path::PathBuf;
use thiserror::Error;
use uuid::Uuid;
use actor::UuidResolverActor;
use message::UuidResolveMsg;
2021-05-10 20:23:12 +02:00
use store::UuidStore;
2021-03-23 11:00:50 +01:00
2021-03-23 16:19:01 +01:00
#[cfg(test)]
use mockall::automock;
2021-05-10 20:23:12 +02:00
pub use store::HeedUuidStore;
2021-03-23 11:00:50 +01:00
pub use handle_impl::UuidResolverHandleImpl;
const UUID_STORE_SIZE: usize = 1_073_741_824; //1GiB
pub type Result<T> = std::result::Result<T, UuidError>;
#[async_trait::async_trait]
2021-03-23 16:19:01 +01:00
#[cfg_attr(test, automock)]
2021-03-23 11:00:50 +01:00
pub trait UuidResolverHandle {
2021-03-25 14:21:05 +01:00
async fn get(&self, name: String) -> Result<Uuid>;
async fn insert(&self, name: String, uuid: Uuid) -> anyhow::Result<()>;
2021-03-23 11:00:50 +01:00
async fn create(&self, name: String) -> anyhow::Result<Uuid>;
async fn delete(&self, name: String) -> anyhow::Result<Uuid>;
async fn list(&self) -> anyhow::Result<Vec<(String, Uuid)>>;
2021-04-22 10:14:29 +02:00
async fn snapshot(&self, path: PathBuf) -> Result<HashSet<Uuid>>;
async fn get_size(&self) -> Result<u64>;
2021-03-23 11:00:50 +01:00
}
#[derive(Debug, Error)]
pub enum UuidError {
#[error("Name already exist.")]
NameAlreadyExist,
#[error("Index \"{0}\" doesn't exist.")]
UnexistingIndex(String),
#[error("Error performing task: {0}")]
TokioTask(#[from] tokio::task::JoinError),
#[error("Database error: {0}")]
Heed(#[from] heed::Error),
#[error("Uuid error: {0}")]
Uuid(#[from] uuid::Error),
#[error("Badly formatted index uid: {0}")]
BadlyFormatted(String),
}