2019-05-06 20:25:11 +08:00
|
|
|
use std::io::{Read, Write};
|
|
|
|
|
2019-03-30 00:38:57 +08:00
|
|
|
use hashbrown::HashMap;
|
|
|
|
use meilidb_core::DocumentId;
|
2019-05-29 21:26:18 +08:00
|
|
|
use meilidb_schema::SchemaAttr;
|
2019-05-06 20:25:11 +08:00
|
|
|
|
2019-05-29 21:26:18 +08:00
|
|
|
use crate::Number;
|
2019-03-30 00:38:57 +08:00
|
|
|
|
2019-05-06 20:25:11 +08:00
|
|
|
#[derive(Debug, Default, Clone, PartialEq, Eq)]
|
|
|
|
pub struct RankedMap(HashMap<(DocumentId, SchemaAttr), Number>);
|
|
|
|
|
|
|
|
impl RankedMap {
|
2019-05-25 18:12:24 +08:00
|
|
|
pub fn len(&self) -> usize {
|
|
|
|
self.0.len()
|
|
|
|
}
|
|
|
|
|
2019-05-06 20:25:11 +08:00
|
|
|
pub fn insert(&mut self, document: DocumentId, attribute: SchemaAttr, number: Number) {
|
|
|
|
self.0.insert((document, attribute), number);
|
|
|
|
}
|
|
|
|
|
2019-05-21 19:26:49 +08:00
|
|
|
pub fn remove(&mut self, document: DocumentId, attribute: SchemaAttr) {
|
|
|
|
self.0.remove(&(document, attribute));
|
|
|
|
}
|
|
|
|
|
2019-05-06 20:25:11 +08:00
|
|
|
pub fn get(&self, document: DocumentId, attribute: SchemaAttr) -> Option<Number> {
|
|
|
|
self.0.get(&(document, attribute)).cloned()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn read_from_bin<R: Read>(reader: R) -> bincode::Result<RankedMap> {
|
|
|
|
bincode::deserialize_from(reader).map(RankedMap)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn write_to_bin<W: Write>(&self, writer: W) -> bincode::Result<()> {
|
|
|
|
bincode::serialize_into(writer, &self.0)
|
|
|
|
}
|
|
|
|
}
|