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

36 lines
921 B
Rust
Raw Normal View History

2021-03-23 11:00:50 +01:00
mod actor;
2021-06-15 17:55:27 +02:00
pub mod error;
2021-03-23 11:00:50 +01:00
mod handle_impl;
mod message;
2021-05-26 20:42:09 +02:00
pub mod store;
2021-03-23 11:00:50 +01:00
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 uuid::Uuid;
use actor::UuidResolverActor;
2021-06-17 14:38:52 +02:00
use error::Result;
2021-03-23 11:00:50 +01:00
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-03-23 11:00:50 +01:00
pub use handle_impl::UuidResolverHandleImpl;
2021-05-24 16:05:43 +02:00
pub use store::HeedUuidStore;
2021-03-23 11:00:50 +01:00
const UUID_STORE_SIZE: usize = 1_073_741_824; //1GiB
#[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) -> Result<()>;
async fn delete(&self, name: String) -> Result<Uuid>;
async fn list(&self) -> 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-05-24 16:05:43 +02:00
async fn dump(&self, path: PathBuf) -> Result<HashSet<Uuid>>;
2021-03-23 11:00:50 +01:00
}