mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-24 05:44:25 +01:00
83 lines
2.3 KiB
Rust
83 lines
2.3 KiB
Rust
use std::error::Error;
|
|
use std::marker;
|
|
|
|
use rocksdb::rocksdb::{DB, Snapshot};
|
|
use serde::de::DeserializeOwned;
|
|
|
|
use crate::index::schema::Schema;
|
|
use crate::blob::positive::PositiveBlob;
|
|
use crate::database::deserializer::{Deserializer, DeserializerError};
|
|
use crate::database::{DATA_INDEX, DATA_SCHEMA};
|
|
use crate::DocumentId;
|
|
|
|
// FIXME Do not panic!
|
|
fn retrieve_data_schema(snapshot: &Snapshot<&DB>) -> Result<Schema, Box<Error>> {
|
|
match snapshot.get(DATA_SCHEMA)? {
|
|
Some(vector) => Ok(Schema::read_from(&*vector)?),
|
|
None => panic!("BUG: no schema found in the database"),
|
|
}
|
|
}
|
|
|
|
fn retrieve_data_index(snapshot: &Snapshot<&DB>) -> Result<PositiveBlob, Box<Error>> {
|
|
match snapshot.get(DATA_INDEX)? {
|
|
Some(vector) => Ok(bincode::deserialize(&*vector)?),
|
|
None => Ok(PositiveBlob::default()),
|
|
}
|
|
}
|
|
|
|
pub struct DatabaseView<'a> {
|
|
snapshot: Snapshot<&'a DB>,
|
|
schema: Schema,
|
|
}
|
|
|
|
impl<'a> DatabaseView<'a> {
|
|
pub fn new(snapshot: Snapshot<&'a DB>) -> Result<DatabaseView, Box<Error>> {
|
|
let schema = retrieve_data_schema(&snapshot)?;
|
|
Ok(DatabaseView { snapshot, schema })
|
|
}
|
|
|
|
pub fn into_snapshot(self) -> Snapshot<&'a DB> {
|
|
self.snapshot
|
|
}
|
|
|
|
// TODO create an enum error type
|
|
pub fn retrieve_document<D>(&self, id: DocumentId) -> Result<D, Box<Error>>
|
|
where D: DeserializeOwned
|
|
{
|
|
let mut deserializer = Deserializer::new(&self.snapshot, &self.schema, id);
|
|
Ok(D::deserialize(&mut deserializer)?)
|
|
}
|
|
|
|
pub fn retrieve_documents<D, I>(&self, ids: I) -> DocumentIter<D, I::IntoIter>
|
|
where D: DeserializeOwned,
|
|
I: IntoIterator<Item=DocumentId>,
|
|
{
|
|
DocumentIter {
|
|
database_view: self,
|
|
document_ids: ids.into_iter(),
|
|
_phantom: marker::PhantomData,
|
|
}
|
|
}
|
|
}
|
|
|
|
// TODO impl ExactSizeIterator, DoubleEndedIterator
|
|
pub struct DocumentIter<'a, D, I> {
|
|
database_view: &'a DatabaseView<'a>,
|
|
document_ids: I,
|
|
_phantom: marker::PhantomData<D>,
|
|
}
|
|
|
|
impl<'a, D, I> Iterator for DocumentIter<'a, D, I>
|
|
where D: DeserializeOwned,
|
|
I: Iterator<Item=DocumentId>,
|
|
{
|
|
type Item = Result<D, Box<Error>>;
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
match self.document_ids.next() {
|
|
Some(id) => Some(self.database_view.retrieve_document(id)),
|
|
None => None
|
|
}
|
|
}
|
|
}
|