MeiliSearch/milli/src/search/criteria/mod.rs

774 lines
28 KiB
Rust
Raw Normal View History

2021-02-17 15:27:35 +01:00
use std::borrow::Cow;
2021-06-16 18:33:33 +02:00
use std::collections::HashMap;
2021-02-17 15:27:35 +01:00
2021-02-25 16:34:29 +01:00
use roaring::RoaringBitmap;
2021-03-02 11:58:32 +01:00
use self::asc_desc::AscDesc;
2021-03-11 11:48:55 +01:00
use self::attribute::Attribute;
2021-05-04 13:44:55 +02:00
use self::exactness::Exactness;
2021-03-23 15:25:46 +01:00
use self::initial::Initial;
use self::proximity::Proximity;
2021-06-16 18:33:33 +02:00
use self::r#final::Final;
2021-03-23 15:25:46 +01:00
use self::typo::Typo;
use self::words::Words;
2021-06-16 18:33:33 +02:00
use super::query_tree::{Operation, PrimitiveQueryPart, Query, QueryKind};
use crate::criterion::{AscDesc as AscDescName, Member};
use crate::search::criteria::geo::Geo;
2021-06-16 18:33:33 +02:00
use crate::search::{word_derivations, WordDerivationsCache};
use crate::{DocumentId, FieldId, Index, Result, TreeLevel};
2021-02-19 15:14:00 +01:00
2021-03-09 12:04:52 +01:00
mod asc_desc;
mod geo;
2021-03-11 11:48:55 +01:00
mod attribute;
2021-05-04 13:44:55 +02:00
mod exactness;
2021-06-16 18:33:33 +02:00
pub mod r#final;
2021-03-23 15:25:46 +01:00
mod initial;
mod proximity;
mod typo;
mod words;
2021-02-19 15:14:00 +01:00
pub trait Criterion {
fn next(&mut self, params: &mut CriterionParameters) -> Result<Option<CriterionResult>>;
}
/// The result of a call to the parent criterion.
2021-02-24 10:25:22 +01:00
#[derive(Debug, Clone, PartialEq)]
pub struct CriterionResult {
/// The query tree that must be used by the children criterion to fetch candidates.
2021-03-09 12:04:52 +01:00
query_tree: Option<Operation>,
/// The candidates that this criterion is allowed to return subsets of,
/// if None, it is up to the child to compute the candidates itself.
candidates: Option<RoaringBitmap>,
2021-05-10 12:33:37 +02:00
/// The candidates, coming from facet filters, that this criterion is allowed to return subsets of.
filtered_candidates: Option<RoaringBitmap>,
/// Candidates that comes from the current bucket of the initial criterion.
2021-05-05 20:46:56 +02:00
bucket_candidates: Option<RoaringBitmap>,
2021-02-19 15:14:00 +01:00
}
#[derive(Debug, PartialEq)]
pub struct CriterionParameters<'a> {
wdcache: &'a mut WordDerivationsCache,
excluded_candidates: &'a RoaringBitmap,
}
2021-02-19 15:14:00 +01:00
/// Either a set of candidates that defines the candidates
/// that are allowed to be returned,
/// or the candidates that must never be returned.
2021-02-19 15:45:15 +01:00
#[derive(Debug)]
2021-02-19 15:14:00 +01:00
enum Candidates {
Allowed(RoaringBitmap),
2021-06-16 18:33:33 +02:00
Forbidden(RoaringBitmap),
2021-02-19 15:14:00 +01:00
}
impl Default for Candidates {
fn default() -> Self {
Self::Forbidden(RoaringBitmap::new())
}
}
2021-03-23 15:25:46 +01:00
pub trait Context<'c> {
2021-02-25 16:34:29 +01:00
fn documents_ids(&self) -> heed::Result<RoaringBitmap>;
2021-02-17 18:16:21 +01:00
fn word_docids(&self, word: &str) -> heed::Result<Option<RoaringBitmap>>;
fn word_prefix_docids(&self, word: &str) -> heed::Result<Option<RoaringBitmap>>;
2021-06-16 18:33:33 +02:00
fn word_pair_proximity_docids(
&self,
left: &str,
right: &str,
proximity: u8,
) -> heed::Result<Option<RoaringBitmap>>;
fn word_prefix_pair_proximity_docids(
&self,
left: &str,
right: &str,
proximity: u8,
) -> heed::Result<Option<RoaringBitmap>>;
2021-02-17 15:27:35 +01:00
fn words_fst<'t>(&self) -> &'t fst::Set<Cow<[u8]>>;
2021-02-17 18:16:21 +01:00
fn in_prefix_cache(&self, word: &str) -> bool;
2021-06-16 18:33:33 +02:00
fn docid_words_positions(
&self,
docid: DocumentId,
) -> heed::Result<HashMap<String, RoaringBitmap>>;
fn word_position_iterator(
&self,
word: &str,
level: TreeLevel,
in_prefix_cache: bool,
left: Option<u32>,
right: Option<u32>,
) -> heed::Result<
Box<
dyn Iterator<Item = heed::Result<((&'c str, TreeLevel, u32, u32), RoaringBitmap)>> + 'c,
>,
>;
fn word_position_last_level(
&self,
word: &str,
in_prefix_cache: bool,
) -> heed::Result<Option<TreeLevel>>;
2021-05-04 13:44:55 +02:00
fn synonyms(&self, word: &str) -> heed::Result<Option<Vec<Vec<String>>>>;
2021-06-16 18:33:33 +02:00
fn searchable_fields_ids(&self) -> Result<Vec<FieldId>>;
fn field_id_word_count_docids(
&self,
field_id: FieldId,
word_count: u8,
) -> heed::Result<Option<RoaringBitmap>>;
fn word_level_position_docids(
&self,
word: &str,
level: TreeLevel,
left: u32,
right: u32,
) -> heed::Result<Option<RoaringBitmap>>;
2021-02-17 15:27:35 +01:00
}
2021-03-02 11:58:32 +01:00
pub struct CriteriaBuilder<'t> {
2021-02-17 15:27:35 +01:00
rtxn: &'t heed::RoTxn<'t>,
index: &'t Index,
words_fst: fst::Set<Cow<'t, [u8]>>,
2021-02-17 15:49:44 +01:00
words_prefixes_fst: fst::Set<Cow<'t, [u8]>>,
2021-02-17 15:27:35 +01:00
}
impl<'c> Context<'c> for CriteriaBuilder<'c> {
2021-02-25 16:34:29 +01:00
fn documents_ids(&self) -> heed::Result<RoaringBitmap> {
self.index.documents_ids(self.rtxn)
}
2021-02-17 18:16:21 +01:00
fn word_docids(&self, word: &str) -> heed::Result<Option<RoaringBitmap>> {
self.index.word_docids.get(self.rtxn, &word)
2021-02-17 15:27:35 +01:00
}
2021-02-17 18:16:21 +01:00
fn word_prefix_docids(&self, word: &str) -> heed::Result<Option<RoaringBitmap>> {
self.index.word_prefix_docids.get(self.rtxn, &word)
}
2021-06-16 18:33:33 +02:00
fn word_pair_proximity_docids(
&self,
left: &str,
right: &str,
proximity: u8,
) -> heed::Result<Option<RoaringBitmap>> {
2021-02-17 18:16:21 +01:00
let key = (left, right, proximity);
self.index.word_pair_proximity_docids.get(self.rtxn, &key)
}
2021-06-16 18:33:33 +02:00
fn word_prefix_pair_proximity_docids(
&self,
left: &str,
right: &str,
proximity: u8,
) -> heed::Result<Option<RoaringBitmap>> {
2021-02-17 18:16:21 +01:00
let key = (left, right, proximity);
self.index.word_prefix_pair_proximity_docids.get(self.rtxn, &key)
2021-02-17 15:27:35 +01:00
}
fn words_fst<'t>(&self) -> &'t fst::Set<Cow<[u8]>> {
&self.words_fst
}
2021-02-17 18:16:21 +01:00
fn in_prefix_cache(&self, word: &str) -> bool {
self.words_prefixes_fst.contains(word)
}
2021-06-16 18:33:33 +02:00
fn docid_words_positions(
&self,
docid: DocumentId,
) -> heed::Result<HashMap<String, RoaringBitmap>> {
let mut words_positions = HashMap::new();
for result in self.index.docid_word_positions.prefix_iter(self.rtxn, &(docid, ""))? {
let ((_, word), positions) = result?;
words_positions.insert(word.to_string(), positions);
}
Ok(words_positions)
}
fn word_position_iterator(
&self,
word: &str,
level: TreeLevel,
in_prefix_cache: bool,
left: Option<u32>,
2021-06-16 18:33:33 +02:00
right: Option<u32>,
) -> heed::Result<
Box<
dyn Iterator<Item = heed::Result<((&'c str, TreeLevel, u32, u32), RoaringBitmap)>> + 'c,
>,
> {
let range = {
let left = left.unwrap_or(u32::min_value());
let right = right.unwrap_or(u32::max_value());
let left = (word, level, left, left);
let right = (word, level, right, right);
left..=right
};
let db = match in_prefix_cache {
true => self.index.word_prefix_level_position_docids,
false => self.index.word_level_position_docids,
};
Ok(Box::new(db.range(self.rtxn, &range)?))
}
2021-06-16 18:33:33 +02:00
fn word_position_last_level(
&self,
word: &str,
in_prefix_cache: bool,
) -> heed::Result<Option<TreeLevel>> {
let range = {
let left = (word, TreeLevel::min_value(), u32::min_value(), u32::min_value());
let right = (word, TreeLevel::max_value(), u32::max_value(), u32::max_value());
left..=right
};
let db = match in_prefix_cache {
true => self.index.word_prefix_level_position_docids,
false => self.index.word_level_position_docids,
};
let last_level = db
.remap_data_type::<heed::types::DecodeIgnore>()
2021-06-16 18:33:33 +02:00
.range(self.rtxn, &range)?
.last()
.transpose()?
.map(|((_, level, _, _), _)| level);
Ok(last_level)
}
2021-05-04 13:44:55 +02:00
fn synonyms(&self, word: &str) -> heed::Result<Option<Vec<Vec<String>>>> {
self.index.words_synonyms(self.rtxn, &[word])
}
fn searchable_fields_ids(&self) -> Result<Vec<FieldId>> {
2021-05-04 13:44:55 +02:00
match self.index.searchable_fields_ids(self.rtxn)? {
Some(searchable_fields_ids) => Ok(searchable_fields_ids),
None => Ok(self.index.fields_ids_map(self.rtxn)?.ids().collect()),
}
}
2021-05-04 13:44:55 +02:00
2021-06-16 18:33:33 +02:00
fn field_id_word_count_docids(
&self,
field_id: FieldId,
word_count: u8,
) -> heed::Result<Option<RoaringBitmap>> {
let key = (field_id, word_count);
self.index.field_id_word_count_docids.get(self.rtxn, &key)
2021-05-04 13:44:55 +02:00
}
2021-06-16 18:33:33 +02:00
fn word_level_position_docids(
&self,
word: &str,
level: TreeLevel,
left: u32,
right: u32,
) -> heed::Result<Option<RoaringBitmap>> {
2021-05-04 13:44:55 +02:00
let key = (word, level, left, right);
self.index.word_level_position_docids.get(self.rtxn, &key)
}
2021-02-17 15:27:35 +01:00
}
2021-03-02 11:58:32 +01:00
impl<'t> CriteriaBuilder<'t> {
pub fn new(rtxn: &'t heed::RoTxn<'t>, index: &'t Index) -> Result<Self> {
2021-02-17 15:27:35 +01:00
let words_fst = index.words_fst(rtxn)?;
2021-02-17 15:49:44 +01:00
let words_prefixes_fst = index.words_prefixes_fst(rtxn)?;
2021-03-02 11:58:32 +01:00
Ok(Self { rtxn, index, words_fst, words_prefixes_fst })
}
2021-02-17 15:27:35 +01:00
2021-03-02 11:58:32 +01:00
pub fn build(
&'t self,
2021-03-23 15:25:46 +01:00
query_tree: Option<Operation>,
2021-05-04 13:44:55 +02:00
primitive_query: Option<Vec<PrimitiveQueryPart>>,
filtered_candidates: Option<RoaringBitmap>,
2021-08-23 11:37:18 +02:00
sort_criteria: Option<Vec<AscDescName>>,
2021-06-16 18:33:33 +02:00
) -> Result<Final<'t>> {
use crate::criterion::Criterion as Name;
2021-03-02 11:58:32 +01:00
2021-05-04 13:44:55 +02:00
let primitive_query = primitive_query.unwrap_or_default();
2021-06-16 18:33:33 +02:00
let mut criterion =
Box::new(Initial::new(query_tree, filtered_candidates)) as Box<dyn Criterion>;
2021-03-02 11:58:32 +01:00
for name in self.index.criteria(&self.rtxn)? {
2021-03-23 15:25:46 +01:00
criterion = match name {
2021-08-20 18:09:17 +02:00
Name::Words => Box::new(Words::new(self, criterion)),
2021-08-23 11:37:18 +02:00
Name::Typo => Box::new(Typo::new(self, criterion)),
Name::Sort => match sort_criteria {
Some(ref sort_criteria) => {
for asc_desc in sort_criteria {
criterion = match asc_desc {
AscDescName::Asc(Member::Field(field)) => {
Box::new(AscDesc::asc(
&self.index,
&self.rtxn,
criterion,
field.to_string(),
)?)
}
AscDescName::Desc(Member::Field(field)) => {
Box::new(AscDesc::desc(
&self.index,
&self.rtxn,
criterion,
field.to_string(),
)?)
}
AscDescName::Asc(Member::Geo(point)) => {
Box::new(Geo::new(&self.index, &self.rtxn, criterion, point.clone())?)
}
AscDescName::Desc(Member::Geo(_point)) => {
panic!("You can't desc geosort"); // TODO: TAMO: remove this
}
2021-08-23 11:37:18 +02:00
};
}
criterion
}
None => criterion,
},
2021-03-23 15:25:46 +01:00
Name::Proximity => Box::new(Proximity::new(self, criterion)),
Name::Attribute => Box::new(Attribute::new(self, criterion)),
2021-05-04 13:44:55 +02:00
Name::Exactness => Box::new(Exactness::new(self, criterion, &primitive_query)?),
2021-06-16 18:33:33 +02:00
Name::Asc(field) => {
Box::new(AscDesc::asc(&self.index, &self.rtxn, criterion, field)?)
2021-06-16 18:33:33 +02:00
}
Name::Desc(field) => {
Box::new(AscDesc::desc(&self.index, &self.rtxn, criterion, field)?)
2021-06-16 18:33:33 +02:00
}
2021-03-23 15:25:46 +01:00
};
2021-03-02 11:58:32 +01:00
}
2021-03-23 15:25:46 +01:00
Ok(Final::new(self, criterion))
2021-02-17 15:27:35 +01:00
}
2021-02-17 18:16:21 +01:00
}
2021-02-17 15:49:44 +01:00
2021-02-25 16:34:29 +01:00
pub fn resolve_query_tree<'t>(
ctx: &'t dyn Context,
query_tree: &Operation,
wdcache: &mut WordDerivationsCache,
2021-06-16 18:33:33 +02:00
) -> Result<RoaringBitmap> {
2021-02-25 16:34:29 +01:00
fn resolve_operation<'t>(
ctx: &'t dyn Context,
query_tree: &Operation,
wdcache: &mut WordDerivationsCache,
2021-06-16 18:33:33 +02:00
) -> Result<RoaringBitmap> {
use Operation::{And, Or, Phrase, Query};
2021-02-25 16:34:29 +01:00
match query_tree {
And(ops) => {
2021-06-16 18:33:33 +02:00
let mut ops = ops
.iter()
.map(|op| resolve_operation(ctx, op, wdcache))
.collect::<Result<Vec<_>>>()?;
2021-02-25 16:34:29 +01:00
ops.sort_unstable_by_key(|cds| cds.len());
let mut candidates = RoaringBitmap::new();
let mut first_loop = true;
for docids in ops {
if first_loop {
candidates = docids;
first_loop = false;
} else {
candidates &= &docids;
2021-02-25 16:34:29 +01:00
}
}
Ok(candidates)
2021-06-16 18:33:33 +02:00
}
Phrase(words) => {
2021-02-25 16:34:29 +01:00
let mut candidates = RoaringBitmap::new();
let mut first_loop = true;
for slice in words.windows(2) {
let (left, right) = (&slice[0], &slice[1]);
match ctx.word_pair_proximity_docids(left, right, 1)? {
Some(pair_docids) => {
if pair_docids.is_empty() {
return Ok(RoaringBitmap::new());
} else if first_loop {
candidates = pair_docids;
first_loop = false;
} else {
candidates &= pair_docids;
2021-02-25 16:34:29 +01:00
}
2021-06-16 18:33:33 +02:00
}
None => return Ok(RoaringBitmap::new()),
2021-02-25 16:34:29 +01:00
}
}
Ok(candidates)
2021-06-16 18:33:33 +02:00
}
2021-02-25 16:34:29 +01:00
Or(_, ops) => {
let mut candidates = RoaringBitmap::new();
for op in ops {
2021-05-05 20:46:56 +02:00
let docids = resolve_operation(ctx, op, wdcache)?;
candidates |= docids;
2021-02-25 16:34:29 +01:00
}
Ok(candidates)
2021-06-16 18:33:33 +02:00
}
Query(q) => Ok(query_docids(ctx, q, wdcache)?),
2021-02-25 16:34:29 +01:00
}
}
2021-05-05 20:46:56 +02:00
resolve_operation(ctx, query_tree, wdcache)
2021-02-25 16:34:29 +01:00
}
2021-02-17 18:16:21 +01:00
fn all_word_pair_proximity_docids<T: AsRef<str>, U: AsRef<str>>(
ctx: &dyn Context,
left_words: &[(T, u8)],
right_words: &[(U, u8)],
2021-06-16 18:33:33 +02:00
proximity: u8,
) -> Result<RoaringBitmap> {
2021-02-17 18:16:21 +01:00
let mut docids = RoaringBitmap::new();
for (left, _l_typo) in left_words {
for (right, _r_typo) in right_words {
2021-06-16 18:33:33 +02:00
let current_docids = ctx
.word_pair_proximity_docids(left.as_ref(), right.as_ref(), proximity)?
.unwrap_or_default();
docids |= current_docids;
2021-02-17 18:16:21 +01:00
}
2021-02-17 15:49:44 +01:00
}
2021-02-17 18:16:21 +01:00
Ok(docids)
}
2021-02-17 16:21:21 +01:00
fn query_docids(
ctx: &dyn Context,
query: &Query,
wdcache: &mut WordDerivationsCache,
2021-06-16 18:33:33 +02:00
) -> Result<RoaringBitmap> {
2021-02-17 18:16:21 +01:00
match &query.kind {
QueryKind::Exact { word, .. } => {
if query.prefix && ctx.in_prefix_cache(&word) {
Ok(ctx.word_prefix_docids(&word)?.unwrap_or_default())
} else if query.prefix {
let words = word_derivations(&word, true, 0, ctx.words_fst(), wdcache)?;
2021-02-17 18:16:21 +01:00
let mut docids = RoaringBitmap::new();
for (word, _typo) in words {
let current_docids = ctx.word_docids(&word)?.unwrap_or_default();
docids |= current_docids;
2021-02-17 18:16:21 +01:00
}
Ok(docids)
} else {
Ok(ctx.word_docids(&word)?.unwrap_or_default())
}
2021-06-16 18:33:33 +02:00
}
2021-02-17 18:16:21 +01:00
QueryKind::Tolerant { typo, word } => {
let words = word_derivations(&word, query.prefix, *typo, ctx.words_fst(), wdcache)?;
2021-02-17 18:16:21 +01:00
let mut docids = RoaringBitmap::new();
for (word, _typo) in words {
let current_docids = ctx.word_docids(&word)?.unwrap_or_default();
docids |= current_docids;
2021-02-17 16:21:21 +01:00
}
2021-02-17 18:16:21 +01:00
Ok(docids)
2021-06-16 18:33:33 +02:00
}
2021-02-17 18:16:21 +01:00
}
}
fn query_pair_proximity_docids(
ctx: &dyn Context,
left: &Query,
right: &Query,
proximity: u8,
wdcache: &mut WordDerivationsCache,
2021-06-16 18:33:33 +02:00
) -> Result<RoaringBitmap> {
2021-02-24 15:36:57 +01:00
if proximity >= 8 {
let mut candidates = query_docids(ctx, left, wdcache)?;
let right_candidates = query_docids(ctx, right, wdcache)?;
candidates &= right_candidates;
2021-02-24 15:36:57 +01:00
return Ok(candidates);
}
2021-02-17 18:16:21 +01:00
2021-02-24 15:36:57 +01:00
let prefix = right.prefix;
2021-02-17 18:16:21 +01:00
match (&left.kind, &right.kind) {
(QueryKind::Exact { word: left, .. }, QueryKind::Exact { word: right, .. }) => {
if prefix {
match ctx.word_prefix_pair_proximity_docids(
left.as_str(),
right.as_str(),
proximity,
)? {
Some(docids) => Ok(docids),
None => {
let r_words = word_derivations(&right, true, 0, ctx.words_fst(), wdcache)?;
all_word_pair_proximity_docids(ctx, &[(left, 0)], &r_words, proximity)
}
}
2021-02-17 18:16:21 +01:00
} else {
2021-06-16 18:33:33 +02:00
Ok(ctx
.word_pair_proximity_docids(left.as_str(), right.as_str(), proximity)?
.unwrap_or_default())
2021-02-17 18:16:21 +01:00
}
2021-06-16 18:33:33 +02:00
}
2021-02-17 18:16:21 +01:00
(QueryKind::Tolerant { typo, word: left }, QueryKind::Exact { word: right, .. }) => {
2021-06-16 18:33:33 +02:00
let l_words =
word_derivations(&left, false, *typo, ctx.words_fst(), wdcache)?.to_owned();
if prefix {
2021-02-17 18:16:21 +01:00
let mut docids = RoaringBitmap::new();
for (left, _) in l_words {
let current_docids = match ctx.word_prefix_pair_proximity_docids(
left.as_str(),
right.as_str(),
proximity,
)? {
Some(docids) => Ok(docids),
None => {
let r_words =
word_derivations(&right, true, 0, ctx.words_fst(), wdcache)?;
all_word_pair_proximity_docids(ctx, &[(left, 0)], &r_words, proximity)
}
}?;
docids |= current_docids;
2021-02-17 18:16:21 +01:00
}
Ok(docids)
} else {
all_word_pair_proximity_docids(ctx, &l_words, &[(right, 0)], proximity)
}
2021-06-16 18:33:33 +02:00
}
2021-02-17 18:16:21 +01:00
(QueryKind::Exact { word: left, .. }, QueryKind::Tolerant { typo, word: right }) => {
let r_words = word_derivations(&right, prefix, *typo, ctx.words_fst(), wdcache)?;
2021-02-17 18:16:21 +01:00
all_word_pair_proximity_docids(ctx, &[(left, 0)], &r_words, proximity)
2021-06-16 18:33:33 +02:00
}
(
QueryKind::Tolerant { typo: l_typo, word: left },
QueryKind::Tolerant { typo: r_typo, word: right },
) => {
let l_words =
word_derivations(&left, false, *l_typo, ctx.words_fst(), wdcache)?.to_owned();
let r_words = word_derivations(&right, prefix, *r_typo, ctx.words_fst(), wdcache)?;
2021-02-17 18:16:21 +01:00
all_word_pair_proximity_docids(ctx, &l_words, &r_words, proximity)
2021-06-16 18:33:33 +02:00
}
2021-02-17 16:21:21 +01:00
}
2021-02-17 15:27:35 +01:00
}
2021-02-24 10:25:22 +01:00
#[cfg(test)]
pub mod test {
2021-06-16 18:33:33 +02:00
use std::collections::HashMap;
2021-02-24 10:25:22 +01:00
use maplit::hashmap;
2021-06-16 18:33:33 +02:00
use rand::rngs::StdRng;
use rand::{Rng, SeedableRng};
2021-02-24 10:25:22 +01:00
use super::*;
2021-06-16 18:33:33 +02:00
fn s(s: &str) -> String {
s.to_string()
}
2021-02-24 10:25:22 +01:00
pub struct TestContext<'t> {
words_fst: fst::Set<Cow<'t, [u8]>>,
word_docids: HashMap<String, RoaringBitmap>,
word_prefix_docids: HashMap<String, RoaringBitmap>,
word_pair_proximity_docids: HashMap<(String, String, i32), RoaringBitmap>,
word_prefix_pair_proximity_docids: HashMap<(String, String, i32), RoaringBitmap>,
2021-03-18 13:49:55 +01:00
docid_words: HashMap<u32, Vec<String>>,
2021-02-24 10:25:22 +01:00
}
impl<'c> Context<'c> for TestContext<'c> {
2021-02-25 16:34:29 +01:00
fn documents_ids(&self) -> heed::Result<RoaringBitmap> {
Ok(self.word_docids.iter().fold(RoaringBitmap::new(), |acc, (_, docids)| acc | docids))
}
2021-02-24 10:25:22 +01:00
fn word_docids(&self, word: &str) -> heed::Result<Option<RoaringBitmap>> {
Ok(self.word_docids.get(&word.to_string()).cloned())
}
fn word_prefix_docids(&self, word: &str) -> heed::Result<Option<RoaringBitmap>> {
Ok(self.word_prefix_docids.get(&word.to_string()).cloned())
}
2021-06-16 18:33:33 +02:00
fn word_pair_proximity_docids(
&self,
left: &str,
right: &str,
proximity: u8,
) -> heed::Result<Option<RoaringBitmap>> {
2021-02-24 10:25:22 +01:00
let key = (left.to_string(), right.to_string(), proximity.into());
Ok(self.word_pair_proximity_docids.get(&key).cloned())
}
2021-06-16 18:33:33 +02:00
fn word_prefix_pair_proximity_docids(
&self,
left: &str,
right: &str,
proximity: u8,
) -> heed::Result<Option<RoaringBitmap>> {
2021-02-24 10:25:22 +01:00
let key = (left.to_string(), right.to_string(), proximity.into());
Ok(self.word_prefix_pair_proximity_docids.get(&key).cloned())
}
fn words_fst<'t>(&self) -> &'t fst::Set<Cow<[u8]>> {
&self.words_fst
}
fn in_prefix_cache(&self, word: &str) -> bool {
self.word_prefix_docids.contains_key(&word.to_string())
}
2021-06-16 18:33:33 +02:00
fn docid_words_positions(
&self,
docid: DocumentId,
) -> heed::Result<HashMap<String, RoaringBitmap>> {
2021-03-18 13:49:55 +01:00
if let Some(docid_words) = self.docid_words.get(&docid) {
Ok(docid_words
.iter()
.enumerate()
2021-06-16 18:33:33 +02:00
.map(|(i, w)| {
(w.clone(), RoaringBitmap::from_sorted_iter(std::iter::once(i as u32)))
})
.collect())
2021-03-18 13:49:55 +01:00
} else {
Ok(HashMap::new())
}
}
2021-06-16 18:33:33 +02:00
fn word_position_iterator(
&self,
_word: &str,
_level: TreeLevel,
_in_prefix_cache: bool,
_left: Option<u32>,
_right: Option<u32>,
) -> heed::Result<
Box<
dyn Iterator<Item = heed::Result<((&'c str, TreeLevel, u32, u32), RoaringBitmap)>>
+ 'c,
>,
> {
todo!()
}
2021-06-16 18:33:33 +02:00
fn word_position_last_level(
&self,
_word: &str,
_in_prefix_cache: bool,
) -> heed::Result<Option<TreeLevel>> {
todo!()
}
2021-05-04 13:44:55 +02:00
fn synonyms(&self, _word: &str) -> heed::Result<Option<Vec<Vec<String>>>> {
2021-05-04 13:44:55 +02:00
todo!()
}
2021-06-16 18:33:33 +02:00
fn searchable_fields_ids(&self) -> Result<Vec<FieldId>> {
2021-05-04 13:44:55 +02:00
todo!()
}
2021-06-16 18:33:33 +02:00
fn word_level_position_docids(
&self,
_word: &str,
_level: TreeLevel,
_left: u32,
_right: u32,
) -> heed::Result<Option<RoaringBitmap>> {
2021-05-04 13:44:55 +02:00
todo!()
}
2021-06-16 18:33:33 +02:00
fn field_id_word_count_docids(
&self,
_field_id: FieldId,
_word_count: u8,
) -> heed::Result<Option<RoaringBitmap>> {
todo!()
}
2021-02-24 10:25:22 +01:00
}
impl<'a> Default for TestContext<'a> {
fn default() -> TestContext<'a> {
let mut rng = StdRng::seed_from_u64(102);
let rng = &mut rng;
fn random_postings<R: Rng>(rng: &mut R, len: usize) -> RoaringBitmap {
let mut values = Vec::<u32>::with_capacity(len);
while values.len() != len {
values.push(rng.gen());
}
values.sort_unstable();
RoaringBitmap::from_sorted_iter(values.into_iter())
}
2021-06-16 18:33:33 +02:00
let word_docids = hashmap! {
2021-02-24 10:25:22 +01:00
s("hello") => random_postings(rng, 1500),
s("hi") => random_postings(rng, 4000),
s("word") => random_postings(rng, 2500),
s("split") => random_postings(rng, 400),
s("ngrams") => random_postings(rng, 1400),
s("world") => random_postings(rng, 15_000),
s("earth") => random_postings(rng, 8000),
s("2021") => random_postings(rng, 100),
s("2020") => random_postings(rng, 500),
s("is") => random_postings(rng, 50_000),
s("this") => random_postings(rng, 50_000),
s("good") => random_postings(rng, 1250),
s("morning") => random_postings(rng, 125),
};
2021-03-18 13:49:55 +01:00
let mut docid_words = HashMap::new();
for (word, docids) in word_docids.iter() {
for docid in docids {
let words = docid_words.entry(docid).or_insert(vec![]);
words.push(word.clone());
}
}
2021-06-16 18:33:33 +02:00
let word_prefix_docids = hashmap! {
2021-02-24 10:25:22 +01:00
s("h") => &word_docids[&s("hello")] | &word_docids[&s("hi")],
s("wor") => &word_docids[&s("word")] | &word_docids[&s("world")],
s("20") => &word_docids[&s("2020")] | &word_docids[&s("2021")],
};
2021-03-18 13:49:55 +01:00
let mut word_pair_proximity_docids = HashMap::new();
let mut word_prefix_pair_proximity_docids = HashMap::new();
for (lword, lcandidates) in &word_docids {
for (rword, rcandidates) in &word_docids {
2021-06-16 18:33:33 +02:00
if lword == rword {
continue;
}
2021-03-18 13:49:55 +01:00
let candidates = lcandidates & rcandidates;
for candidate in candidates {
if let Some(docid_words) = docid_words.get(&candidate) {
let lposition = docid_words.iter().position(|w| w == lword).unwrap();
let rposition = docid_words.iter().position(|w| w == rword).unwrap();
let key = if lposition < rposition {
(s(lword), s(rword), (rposition - lposition) as i32)
} else {
(s(lword), s(rword), (lposition - rposition + 1) as i32)
};
2021-06-16 18:33:33 +02:00
let docids = word_pair_proximity_docids
.entry(key)
.or_insert(RoaringBitmap::new());
2021-03-18 13:49:55 +01:00
docids.push(candidate);
}
}
}
for (pword, pcandidates) in &word_prefix_docids {
2021-06-16 18:33:33 +02:00
if lword.starts_with(pword) {
continue;
}
2021-03-18 13:49:55 +01:00
let candidates = lcandidates & pcandidates;
for candidate in candidates {
if let Some(docid_words) = docid_words.get(&candidate) {
let lposition = docid_words.iter().position(|w| w == lword).unwrap();
2021-06-16 18:33:33 +02:00
let rposition =
docid_words.iter().position(|w| w.starts_with(pword)).unwrap();
2021-03-18 13:49:55 +01:00
let key = if lposition < rposition {
(s(lword), s(pword), (rposition - lposition) as i32)
} else {
(s(lword), s(pword), (lposition - rposition + 1) as i32)
};
2021-06-16 18:33:33 +02:00
let docids = word_prefix_pair_proximity_docids
.entry(key)
.or_insert(RoaringBitmap::new());
2021-03-18 13:49:55 +01:00
docids.push(candidate);
}
}
}
}
2021-02-24 10:25:22 +01:00
let mut keys = word_docids.keys().collect::<Vec<_>>();
keys.sort_unstable();
let words_fst = fst::Set::from_iter(keys).unwrap().map_data(|v| Cow::Owned(v)).unwrap();
TestContext {
words_fst,
word_docids,
word_prefix_docids,
word_pair_proximity_docids,
word_prefix_pair_proximity_docids,
2021-03-18 13:49:55 +01:00
docid_words,
2021-02-24 10:25:22 +01:00
}
}
}
}