2018-10-17 19:35:34 +08:00
|
|
|
use std::hash::Hash;
|
2019-05-07 18:11:22 +08:00
|
|
|
use std::ops::Range;
|
2018-12-16 21:21:06 +08:00
|
|
|
use std::rc::Rc;
|
2019-04-18 20:11:00 +08:00
|
|
|
use std::time::Instant;
|
|
|
|
use std::{cmp, mem};
|
2018-10-10 22:57:21 +08:00
|
|
|
|
2019-06-13 22:38:37 +08:00
|
|
|
use fst::{Streamer, IntoStreamer};
|
2019-06-17 22:01:31 +08:00
|
|
|
use hashbrown::{HashMap, HashSet};
|
2019-01-06 22:01:44 +08:00
|
|
|
use log::info;
|
2019-06-17 22:01:31 +08:00
|
|
|
use meilidb_tokenizer::{is_cjk, split_query_string};
|
|
|
|
use rayon::slice::ParallelSliceMut;
|
|
|
|
use sdset::SetBuf;
|
|
|
|
use slice_group_by::GroupByMut;
|
2018-10-10 22:57:21 +08:00
|
|
|
|
2019-06-13 22:44:09 +08:00
|
|
|
use crate::automaton::{DfaExt, AutomatonExt, build_dfa, build_prefix_dfa};
|
2019-02-25 02:44:24 +08:00
|
|
|
use crate::distinct_map::{DistinctMap, BufferedDistinctMap};
|
|
|
|
use crate::criterion::Criteria;
|
2019-04-20 00:27:57 +08:00
|
|
|
use crate::raw_documents_from_matches;
|
2019-05-07 18:11:22 +08:00
|
|
|
use crate::{Match, DocumentId, Store, RawDocument, Document};
|
2019-02-25 02:44:24 +08:00
|
|
|
|
2019-06-18 00:21:10 +08:00
|
|
|
const NGRAMS: usize = 3;
|
|
|
|
|
2019-06-13 22:38:37 +08:00
|
|
|
fn generate_automatons<S: Store>(query: &str, store: &S) -> Result<Vec<(usize, DfaExt)>, S::Error> {
|
2018-12-11 21:49:45 +08:00
|
|
|
let has_end_whitespace = query.chars().last().map_or(false, char::is_whitespace);
|
2019-06-18 00:21:10 +08:00
|
|
|
let query_words: Vec<_> = split_query_string(query).map(str::to_lowercase).collect();
|
2019-02-23 21:57:13 +08:00
|
|
|
let mut automatons = Vec::new();
|
2019-02-26 01:34:51 +08:00
|
|
|
|
2019-06-13 22:38:37 +08:00
|
|
|
let synonyms = store.synonyms()?;
|
|
|
|
|
2019-06-18 00:21:10 +08:00
|
|
|
for n in 1..=NGRAMS {
|
|
|
|
let mut index = 0;
|
|
|
|
let mut ngrams = query_words.windows(n).peekable();
|
|
|
|
|
|
|
|
while let Some(ngram) = ngrams.next() {
|
|
|
|
let ngram = ngram.join(" ");
|
|
|
|
|
|
|
|
let has_following_word = ngrams.peek().is_some();
|
|
|
|
let not_prefix_dfa = has_following_word || has_end_whitespace || ngram.chars().all(is_cjk);
|
|
|
|
|
|
|
|
let lev = if not_prefix_dfa { build_dfa(&ngram) } else { build_prefix_dfa(&ngram) };
|
|
|
|
let mut stream = synonyms.search(&lev).into_stream();
|
|
|
|
while let Some(word) = stream.next() {
|
|
|
|
if let Some(synonyms) = store.alternatives_to(word)? {
|
|
|
|
let mut stream = synonyms.into_stream();
|
|
|
|
while let Some(synonyms) = stream.next() {
|
|
|
|
let synonyms = std::str::from_utf8(synonyms).unwrap();
|
|
|
|
for synonym in split_query_string(synonyms) {
|
|
|
|
let lev = if not_prefix_dfa { build_dfa(synonym) } else { build_prefix_dfa(synonym) };
|
|
|
|
automatons.push((index, synonym.to_owned(), lev));
|
|
|
|
}
|
2019-06-17 16:28:43 +08:00
|
|
|
}
|
2019-06-13 22:38:37 +08:00
|
|
|
}
|
|
|
|
}
|
2019-06-17 16:44:16 +08:00
|
|
|
|
2019-06-18 00:21:10 +08:00
|
|
|
if n == 1 {
|
|
|
|
automatons.push((index, ngram, lev));
|
|
|
|
}
|
|
|
|
|
|
|
|
index += 1;
|
|
|
|
}
|
2018-11-28 02:11:33 +08:00
|
|
|
}
|
2018-12-11 21:49:45 +08:00
|
|
|
|
2019-06-17 22:01:31 +08:00
|
|
|
automatons.sort_unstable_by(|a, b| (a.0, &a.1).cmp(&(b.0, &b.1)));
|
|
|
|
automatons.dedup_by(|a, b| (a.0, &a.1) == (b.0, &b.1));
|
2019-06-17 16:44:16 +08:00
|
|
|
let automatons = automatons.into_iter().map(|(i, _, a)| (i, a)).collect();
|
|
|
|
|
2019-06-13 22:38:37 +08:00
|
|
|
Ok(automatons)
|
2018-10-17 19:35:34 +08:00
|
|
|
}
|
|
|
|
|
2019-05-07 18:11:22 +08:00
|
|
|
pub struct QueryBuilder<'c, S, FI = fn(DocumentId) -> bool> {
|
|
|
|
store: S,
|
2019-02-24 18:58:22 +08:00
|
|
|
criteria: Criteria<'c>,
|
2019-03-05 23:34:29 +08:00
|
|
|
searchable_attrs: Option<HashSet<u16>>,
|
2018-12-30 03:16:29 +08:00
|
|
|
filter: Option<FI>,
|
2018-10-10 22:57:21 +08:00
|
|
|
}
|
|
|
|
|
2019-05-07 18:11:22 +08:00
|
|
|
impl<'c, S> QueryBuilder<'c, S, fn(DocumentId) -> bool> {
|
|
|
|
pub fn new(store: S) -> Self {
|
|
|
|
QueryBuilder::with_criteria(store, Criteria::default())
|
2018-11-28 02:11:33 +08:00
|
|
|
}
|
2018-10-10 22:57:21 +08:00
|
|
|
|
2019-05-07 18:11:22 +08:00
|
|
|
pub fn with_criteria(store: S, criteria: Criteria<'c>) -> Self {
|
|
|
|
QueryBuilder { store, criteria, searchable_attrs: None, filter: None }
|
2018-11-28 02:11:33 +08:00
|
|
|
}
|
2019-02-03 17:55:16 +08:00
|
|
|
}
|
2018-11-28 02:11:33 +08:00
|
|
|
|
2019-05-07 18:11:22 +08:00
|
|
|
impl<'c, S, FI> QueryBuilder<'c, S, FI>
|
2019-02-03 17:55:16 +08:00
|
|
|
{
|
2019-05-07 18:11:22 +08:00
|
|
|
pub fn with_filter<F>(self, function: F) -> QueryBuilder<'c, S, F>
|
2019-02-24 18:58:22 +08:00
|
|
|
where F: Fn(DocumentId) -> bool,
|
2018-12-30 03:16:29 +08:00
|
|
|
{
|
|
|
|
QueryBuilder {
|
2019-05-07 18:11:22 +08:00
|
|
|
store: self.store,
|
2018-12-30 03:16:29 +08:00
|
|
|
criteria: self.criteria,
|
2019-03-05 23:34:29 +08:00
|
|
|
searchable_attrs: self.searchable_attrs,
|
2019-06-17 22:01:31 +08:00
|
|
|
filter: Some(function),
|
2018-12-30 03:16:29 +08:00
|
|
|
}
|
2018-11-28 02:11:33 +08:00
|
|
|
}
|
|
|
|
|
2019-05-07 18:11:22 +08:00
|
|
|
pub fn with_distinct<F, K>(self, function: F, size: usize) -> DistinctQueryBuilder<'c, S, FI, F>
|
2019-02-24 18:58:22 +08:00
|
|
|
where F: Fn(DocumentId) -> Option<K>,
|
2018-12-30 03:16:29 +08:00
|
|
|
K: Hash + Eq,
|
|
|
|
{
|
2019-05-22 17:00:58 +08:00
|
|
|
DistinctQueryBuilder { inner: self, function, size }
|
2018-10-10 22:57:21 +08:00
|
|
|
}
|
|
|
|
|
2019-03-05 23:34:29 +08:00
|
|
|
pub fn add_searchable_attribute(&mut self, attribute: u16) {
|
|
|
|
let attributes = self.searchable_attrs.get_or_insert_with(HashSet::new);
|
|
|
|
attributes.insert(attribute);
|
|
|
|
}
|
2019-04-18 20:11:00 +08:00
|
|
|
}
|
2019-03-05 23:34:29 +08:00
|
|
|
|
2019-05-07 18:11:22 +08:00
|
|
|
impl<'c, S, FI> QueryBuilder<'c, S, FI>
|
|
|
|
where S: Store,
|
2019-04-18 20:11:00 +08:00
|
|
|
{
|
2019-05-02 18:10:54 +08:00
|
|
|
fn query_all(&self, query: &str) -> Result<Vec<RawDocument>, S::Error> {
|
2019-06-13 22:38:37 +08:00
|
|
|
let automatons = generate_automatons(query, &self.store)?;
|
2019-05-09 20:23:39 +08:00
|
|
|
let words = self.store.words()?.as_fst();
|
2018-11-29 00:12:24 +08:00
|
|
|
|
|
|
|
let mut stream = {
|
2019-04-20 00:27:57 +08:00
|
|
|
let mut op_builder = fst::raw::OpBuilder::new();
|
2019-06-13 21:47:49 +08:00
|
|
|
for (_index, automaton) in &automatons {
|
2019-05-07 18:11:22 +08:00
|
|
|
let stream = words.search(automaton);
|
2018-11-29 00:12:24 +08:00
|
|
|
op_builder.push(stream);
|
|
|
|
}
|
2019-04-20 00:03:32 +08:00
|
|
|
op_builder.r#union()
|
2018-11-29 00:12:24 +08:00
|
|
|
};
|
|
|
|
|
2019-02-02 21:22:31 +08:00
|
|
|
let mut matches = Vec::new();
|
2018-10-11 20:04:41 +08:00
|
|
|
|
2018-11-29 00:12:24 +08:00
|
|
|
while let Some((input, indexed_values)) = stream.next() {
|
2018-10-11 20:04:41 +08:00
|
|
|
for iv in indexed_values {
|
2019-06-13 21:47:49 +08:00
|
|
|
let (index, automaton) = &automatons[iv.index];
|
2018-11-29 00:12:24 +08:00
|
|
|
let distance = automaton.eval(input).to_u8();
|
|
|
|
let is_exact = distance == 0 && input.len() == automaton.query_len();
|
|
|
|
|
2019-05-07 18:11:22 +08:00
|
|
|
let doc_indexes = self.store.word_indexes(input)?;
|
2019-05-09 22:16:07 +08:00
|
|
|
let doc_indexes = match doc_indexes {
|
|
|
|
Some(doc_indexes) => doc_indexes,
|
|
|
|
None => continue,
|
|
|
|
};
|
2018-10-11 20:04:41 +08:00
|
|
|
|
2019-04-20 00:27:57 +08:00
|
|
|
for di in doc_indexes.as_slice() {
|
2019-03-05 23:34:29 +08:00
|
|
|
if self.searchable_attrs.as_ref().map_or(true, |r| r.contains(&di.attribute)) {
|
|
|
|
let match_ = Match {
|
2019-06-13 21:47:49 +08:00
|
|
|
query_index: *index as u32,
|
2019-05-22 17:00:58 +08:00
|
|
|
distance,
|
2019-03-05 23:34:29 +08:00
|
|
|
attribute: di.attribute,
|
|
|
|
word_index: di.word_index,
|
2019-05-22 17:00:58 +08:00
|
|
|
is_exact,
|
2019-03-05 23:34:29 +08:00
|
|
|
char_index: di.char_index,
|
|
|
|
char_length: di.char_length,
|
|
|
|
};
|
|
|
|
matches.push((di.document_id, match_));
|
|
|
|
}
|
2018-10-11 20:04:41 +08:00
|
|
|
}
|
2018-10-10 22:57:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-17 22:01:31 +08:00
|
|
|
matches.par_sort_unstable();
|
|
|
|
|
|
|
|
for document_matches in matches.linear_group_by_mut(|(a, _), (b, _)| a == b) {
|
|
|
|
let mut offset = 0;
|
|
|
|
for query_indexes in document_matches.linear_group_by_mut(|(_, a), (_, b)| a.query_index == b.query_index) {
|
|
|
|
let word_index = query_indexes[0].1.word_index - offset as u16;
|
|
|
|
for (_, match_) in query_indexes.iter_mut() {
|
|
|
|
match_.word_index = word_index;
|
|
|
|
}
|
|
|
|
offset += query_indexes.len() - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-02 21:22:31 +08:00
|
|
|
let total_matches = matches.len();
|
2019-06-17 22:01:31 +08:00
|
|
|
let padded_matches = SetBuf::from_dirty(matches);
|
|
|
|
let raw_documents = raw_documents_from_matches(padded_matches);
|
2019-01-06 22:01:44 +08:00
|
|
|
|
2019-02-02 21:22:31 +08:00
|
|
|
info!("{} total documents to classify", raw_documents.len());
|
|
|
|
info!("{} total matches to classify", total_matches);
|
|
|
|
|
2019-05-02 18:10:54 +08:00
|
|
|
Ok(raw_documents)
|
2018-10-17 19:35:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-07 18:11:22 +08:00
|
|
|
impl<'c, S, FI> QueryBuilder<'c, S, FI>
|
|
|
|
where S: Store,
|
2019-04-18 20:11:00 +08:00
|
|
|
FI: Fn(DocumentId) -> bool,
|
2018-10-17 19:35:34 +08:00
|
|
|
{
|
2019-05-02 18:10:54 +08:00
|
|
|
pub fn query(self, query: &str, range: Range<usize>) -> Result<Vec<Document>, S::Error> {
|
2019-02-03 18:12:34 +08:00
|
|
|
// We delegate the filter work to the distinct query builder,
|
2018-12-30 03:16:59 +08:00
|
|
|
// specifying a distinct rule that has no effect.
|
|
|
|
if self.filter.is_some() {
|
2019-02-24 18:58:22 +08:00
|
|
|
let builder = self.with_distinct(|_| None as Option<()>, 1);
|
2018-12-30 03:16:59 +08:00
|
|
|
return builder.query(query, range);
|
|
|
|
}
|
|
|
|
|
2019-02-17 03:44:16 +08:00
|
|
|
let start = Instant::now();
|
2019-05-02 18:10:54 +08:00
|
|
|
let mut documents = self.query_all(query)?;
|
2019-02-17 03:44:16 +08:00
|
|
|
info!("query_all took {:.2?}", start.elapsed());
|
2019-01-15 04:18:46 +08:00
|
|
|
|
2018-10-17 19:35:34 +08:00
|
|
|
let mut groups = vec![documents.as_mut_slice()];
|
|
|
|
|
2019-05-20 17:18:59 +08:00
|
|
|
'criteria: for criterion in self.criteria.as_ref() {
|
2018-10-17 19:35:34 +08:00
|
|
|
let tmp_groups = mem::replace(&mut groups, Vec::new());
|
2018-12-16 21:21:06 +08:00
|
|
|
let mut documents_seen = 0;
|
|
|
|
|
|
|
|
for group in tmp_groups {
|
|
|
|
// if this group does not overlap with the requested range,
|
|
|
|
// push it without sorting and splitting it
|
|
|
|
if documents_seen + group.len() < range.start {
|
|
|
|
documents_seen += group.len();
|
|
|
|
groups.push(group);
|
|
|
|
continue;
|
|
|
|
}
|
2018-10-17 19:35:34 +08:00
|
|
|
|
2019-02-17 03:44:16 +08:00
|
|
|
let start = Instant::now();
|
|
|
|
group.par_sort_unstable_by(|a, b| criterion.evaluate(a, b));
|
2019-05-20 17:18:59 +08:00
|
|
|
info!("criterion {} sort took {:.2?}", criterion.name(), start.elapsed());
|
2018-12-16 21:21:06 +08:00
|
|
|
|
2019-02-02 21:23:18 +08:00
|
|
|
for group in group.binary_group_by_mut(|a, b| criterion.eq(a, b)) {
|
2019-05-20 17:18:59 +08:00
|
|
|
info!("criterion {} produced a group of size {}", criterion.name(), group.len());
|
|
|
|
|
2018-12-16 21:21:06 +08:00
|
|
|
documents_seen += group.len();
|
2018-10-17 19:35:34 +08:00
|
|
|
groups.push(group);
|
2018-12-16 21:21:06 +08:00
|
|
|
|
|
|
|
// we have sort enough documents if the last document sorted is after
|
|
|
|
// the end of the requested range, we can continue to the next criterion
|
|
|
|
if documents_seen >= range.end { continue 'criteria }
|
2018-10-17 19:35:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-16 21:21:06 +08:00
|
|
|
let offset = cmp::min(documents.len(), range.start);
|
2019-02-02 21:22:31 +08:00
|
|
|
let iter = documents.into_iter().skip(offset).take(range.len());
|
2019-05-02 18:10:54 +08:00
|
|
|
Ok(iter.map(|d| Document::from_raw(&d)).collect())
|
2018-10-17 19:35:34 +08:00
|
|
|
}
|
2018-11-28 02:11:33 +08:00
|
|
|
}
|
2018-10-11 20:04:41 +08:00
|
|
|
|
2019-04-18 20:11:00 +08:00
|
|
|
pub struct DistinctQueryBuilder<'c, I, FI, FD> {
|
|
|
|
inner: QueryBuilder<'c, I, FI>,
|
2018-12-30 03:16:29 +08:00
|
|
|
function: FD,
|
2018-11-28 02:11:33 +08:00
|
|
|
size: usize,
|
|
|
|
}
|
2018-10-17 19:35:34 +08:00
|
|
|
|
2019-04-18 20:11:00 +08:00
|
|
|
impl<'c, I, FI, FD> DistinctQueryBuilder<'c, I, FI, FD>
|
2018-12-30 03:16:29 +08:00
|
|
|
{
|
2019-04-18 20:11:00 +08:00
|
|
|
pub fn with_filter<F>(self, function: F) -> DistinctQueryBuilder<'c, I, F, FD>
|
2019-02-24 18:58:22 +08:00
|
|
|
where F: Fn(DocumentId) -> bool,
|
2018-12-30 03:16:29 +08:00
|
|
|
{
|
|
|
|
DistinctQueryBuilder {
|
|
|
|
inner: self.inner.with_filter(function),
|
|
|
|
function: self.function,
|
|
|
|
size: self.size
|
|
|
|
}
|
|
|
|
}
|
2019-03-05 23:34:29 +08:00
|
|
|
|
|
|
|
pub fn add_searchable_attribute(&mut self, attribute: u16) {
|
|
|
|
self.inner.add_searchable_attribute(attribute);
|
|
|
|
}
|
2018-12-30 03:16:29 +08:00
|
|
|
}
|
|
|
|
|
2019-05-07 18:11:22 +08:00
|
|
|
impl<'c, S, FI, FD, K> DistinctQueryBuilder<'c, S, FI, FD>
|
|
|
|
where S: Store,
|
2019-04-18 20:11:00 +08:00
|
|
|
FI: Fn(DocumentId) -> bool,
|
2019-02-24 18:58:22 +08:00
|
|
|
FD: Fn(DocumentId) -> Option<K>,
|
2018-11-29 00:12:24 +08:00
|
|
|
K: Hash + Eq,
|
2018-11-28 02:11:33 +08:00
|
|
|
{
|
2019-05-02 18:10:54 +08:00
|
|
|
pub fn query(self, query: &str, range: Range<usize>) -> Result<Vec<Document>, S::Error> {
|
2019-02-17 03:44:16 +08:00
|
|
|
let start = Instant::now();
|
2019-05-02 18:10:54 +08:00
|
|
|
let mut documents = self.inner.query_all(query)?;
|
2019-02-17 03:44:16 +08:00
|
|
|
info!("query_all took {:.2?}", start.elapsed());
|
2019-02-02 21:22:31 +08:00
|
|
|
|
2018-11-29 00:12:24 +08:00
|
|
|
let mut groups = vec![documents.as_mut_slice()];
|
2018-12-16 21:22:04 +08:00
|
|
|
let mut key_cache = HashMap::new();
|
2018-10-17 19:35:34 +08:00
|
|
|
|
2018-12-30 03:16:48 +08:00
|
|
|
let mut filter_map = HashMap::new();
|
2018-12-16 21:22:04 +08:00
|
|
|
// these two variables informs on the current distinct map and
|
|
|
|
// on the raw offset of the start of the group where the
|
|
|
|
// range.start bound is located according to the distinct function
|
|
|
|
let mut distinct_map = DistinctMap::new(self.size);
|
|
|
|
let mut distinct_raw_offset = 0;
|
|
|
|
|
2019-05-20 17:18:59 +08:00
|
|
|
'criteria: for criterion in self.inner.criteria.as_ref() {
|
2018-11-29 00:12:24 +08:00
|
|
|
let tmp_groups = mem::replace(&mut groups, Vec::new());
|
2018-12-16 21:22:04 +08:00
|
|
|
let mut buf_distinct = BufferedDistinctMap::new(&mut distinct_map);
|
|
|
|
let mut documents_seen = 0;
|
|
|
|
|
|
|
|
for group in tmp_groups {
|
|
|
|
// if this group does not overlap with the requested range,
|
|
|
|
// push it without sorting and splitting it
|
|
|
|
if documents_seen + group.len() < distinct_raw_offset {
|
|
|
|
documents_seen += group.len();
|
|
|
|
groups.push(group);
|
|
|
|
continue;
|
|
|
|
}
|
2018-10-17 19:35:34 +08:00
|
|
|
|
2019-02-17 03:44:16 +08:00
|
|
|
let start = Instant::now();
|
|
|
|
group.par_sort_unstable_by(|a, b| criterion.evaluate(a, b));
|
2019-05-20 17:18:59 +08:00
|
|
|
info!("criterion {} sort took {:.2?}", criterion.name(), start.elapsed());
|
2018-12-16 21:22:04 +08:00
|
|
|
|
2019-02-02 21:22:31 +08:00
|
|
|
for group in group.binary_group_by_mut(|a, b| criterion.eq(a, b)) {
|
2018-12-16 21:22:04 +08:00
|
|
|
// we must compute the real distinguished len of this sub-group
|
2018-12-13 18:54:09 +08:00
|
|
|
for document in group.iter() {
|
2018-12-30 03:16:48 +08:00
|
|
|
let filter_accepted = match &self.inner.filter {
|
|
|
|
Some(filter) => {
|
|
|
|
let entry = filter_map.entry(document.id);
|
2019-02-24 18:58:22 +08:00
|
|
|
*entry.or_insert_with(|| (filter)(document.id))
|
2018-12-30 03:16:48 +08:00
|
|
|
},
|
2019-01-02 22:07:46 +08:00
|
|
|
None => true,
|
2018-12-13 18:54:09 +08:00
|
|
|
};
|
2018-12-16 21:22:04 +08:00
|
|
|
|
2018-12-30 03:16:48 +08:00
|
|
|
if filter_accepted {
|
|
|
|
let entry = key_cache.entry(document.id);
|
2019-02-24 18:58:22 +08:00
|
|
|
let key = entry.or_insert_with(|| (self.function)(document.id).map(Rc::new));
|
2018-12-30 03:16:48 +08:00
|
|
|
|
|
|
|
match key.clone() {
|
|
|
|
Some(key) => buf_distinct.register(key),
|
|
|
|
None => buf_distinct.register_without_key(),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-12-16 21:22:04 +08:00
|
|
|
// the requested range end is reached: stop computing distinct
|
|
|
|
if buf_distinct.len() >= range.end { break }
|
2018-12-13 18:54:09 +08:00
|
|
|
}
|
2018-12-16 21:22:04 +08:00
|
|
|
|
2019-05-20 17:18:59 +08:00
|
|
|
info!("criterion {} produced a group of size {}", criterion.name(), group.len());
|
|
|
|
|
2018-12-16 21:22:04 +08:00
|
|
|
documents_seen += group.len();
|
2018-11-29 00:12:24 +08:00
|
|
|
groups.push(group);
|
2018-12-16 21:22:04 +08:00
|
|
|
|
|
|
|
// if this sub-group does not overlap with the requested range
|
|
|
|
// we must update the distinct map and its start index
|
|
|
|
if buf_distinct.len() < range.start {
|
|
|
|
buf_distinct.transfert_to_internal();
|
|
|
|
distinct_raw_offset = documents_seen;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we have sort enough documents if the last document sorted is after
|
|
|
|
// the end of the requested range, we can continue to the next criterion
|
|
|
|
if buf_distinct.len() >= range.end { continue 'criteria }
|
2018-11-29 00:12:24 +08:00
|
|
|
}
|
|
|
|
}
|
2018-10-18 21:08:04 +08:00
|
|
|
}
|
|
|
|
|
2018-12-16 21:22:04 +08:00
|
|
|
let mut out_documents = Vec::with_capacity(range.len());
|
|
|
|
let mut seen = BufferedDistinctMap::new(&mut distinct_map);
|
|
|
|
|
|
|
|
for document in documents.into_iter().skip(distinct_raw_offset) {
|
2018-12-30 03:16:48 +08:00
|
|
|
let filter_accepted = match &self.inner.filter {
|
|
|
|
Some(_) => filter_map.remove(&document.id).expect("BUG: filtered not found"),
|
|
|
|
None => true,
|
2018-11-29 00:12:24 +08:00
|
|
|
};
|
2018-10-17 19:35:34 +08:00
|
|
|
|
2018-12-30 03:16:48 +08:00
|
|
|
if filter_accepted {
|
|
|
|
let key = key_cache.remove(&document.id).expect("BUG: cached key not found");
|
|
|
|
let distinct_accepted = match key {
|
|
|
|
Some(key) => seen.register(key),
|
|
|
|
None => seen.register_without_key(),
|
|
|
|
};
|
|
|
|
|
|
|
|
if distinct_accepted && seen.len() > range.start {
|
2019-02-02 21:22:31 +08:00
|
|
|
out_documents.push(Document::from_raw(&document));
|
2018-12-30 03:16:48 +08:00
|
|
|
if out_documents.len() == range.len() { break }
|
|
|
|
}
|
2018-11-29 00:12:24 +08:00
|
|
|
}
|
2018-10-17 19:35:34 +08:00
|
|
|
}
|
|
|
|
|
2019-05-02 18:10:54 +08:00
|
|
|
Ok(out_documents)
|
2018-10-11 20:04:41 +08:00
|
|
|
}
|
2018-10-10 22:57:21 +08:00
|
|
|
}
|
2019-06-13 21:47:49 +08:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
use std::collections::{BTreeSet, HashMap};
|
|
|
|
use std::iter::FromIterator;
|
|
|
|
|
|
|
|
use sdset::SetBuf;
|
2019-06-13 22:20:01 +08:00
|
|
|
use fst::{Set, IntoStreamer};
|
2019-06-13 21:47:49 +08:00
|
|
|
|
|
|
|
use crate::DocIndex;
|
|
|
|
use crate::store::Store;
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
struct InMemorySetStore {
|
|
|
|
set: Set,
|
2019-06-13 22:20:01 +08:00
|
|
|
synonyms: Set,
|
2019-06-13 21:47:49 +08:00
|
|
|
indexes: HashMap<Vec<u8>, SetBuf<DocIndex>>,
|
2019-06-13 22:20:01 +08:00
|
|
|
alternatives: HashMap<Vec<u8>, Set>,
|
2019-06-13 21:47:49 +08:00
|
|
|
}
|
|
|
|
|
2019-06-13 22:20:01 +08:00
|
|
|
fn set_from_stream<'f, I, S>(stream: I) -> Set
|
|
|
|
where
|
|
|
|
I: for<'a> fst::IntoStreamer<'a, Into=S, Item=&'a [u8]>,
|
|
|
|
S: 'f + for<'a> fst::Streamer<'a, Item=&'a [u8]>,
|
|
|
|
{
|
|
|
|
let mut builder = fst::SetBuilder::memory();
|
2019-06-13 22:44:09 +08:00
|
|
|
builder.extend_stream(stream).unwrap();
|
2019-06-13 22:20:01 +08:00
|
|
|
builder.into_inner().and_then(Set::from_bytes).unwrap()
|
|
|
|
}
|
2019-06-13 21:47:49 +08:00
|
|
|
|
2019-06-13 22:20:01 +08:00
|
|
|
fn insert_key(set: &Set, key: &[u8]) -> Set {
|
|
|
|
let unique_key = {
|
|
|
|
let mut builder = fst::SetBuilder::memory();
|
2019-06-13 22:44:09 +08:00
|
|
|
builder.insert(key).unwrap();
|
2019-06-13 22:20:01 +08:00
|
|
|
builder.into_inner().and_then(Set::from_bytes).unwrap()
|
|
|
|
};
|
2019-06-13 21:47:49 +08:00
|
|
|
|
2019-06-13 22:20:01 +08:00
|
|
|
let union_ = set.op().add(unique_key.into_stream()).r#union();
|
|
|
|
|
|
|
|
set_from_stream(union_)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn sdset_into_fstset(set: &sdset::Set<&str>) -> Set {
|
|
|
|
let mut builder = fst::SetBuilder::memory();
|
2019-06-17 17:31:10 +08:00
|
|
|
let set = SetBuf::from_dirty(set.into_iter().map(|s| s.to_lowercase()).collect());
|
2019-06-13 22:44:09 +08:00
|
|
|
builder.extend_iter(set.into_iter()).unwrap();
|
2019-06-13 22:20:01 +08:00
|
|
|
builder.into_inner().and_then(Set::from_bytes).unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
impl InMemorySetStore {
|
|
|
|
pub fn add_synonym(&mut self, word: &str, new: SetBuf<&str>) {
|
2019-06-17 16:28:43 +08:00
|
|
|
let word = word.to_lowercase();
|
2019-06-13 22:20:01 +08:00
|
|
|
let alternatives = self.alternatives.entry(word.as_bytes().to_vec()).or_default();
|
|
|
|
let new = sdset_into_fstset(&new);
|
|
|
|
*alternatives = set_from_stream(alternatives.op().add(new.into_stream()).r#union());
|
|
|
|
|
|
|
|
self.synonyms = insert_key(&self.synonyms, word.as_bytes());
|
2019-06-13 21:47:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-17 17:31:10 +08:00
|
|
|
impl<'a> FromIterator<(&'a str, &'a [DocIndex])> for InMemorySetStore {
|
|
|
|
fn from_iter<I: IntoIterator<Item=(&'a str, &'a [DocIndex])>>(iter: I) -> Self {
|
2019-06-13 21:47:49 +08:00
|
|
|
let mut tree = BTreeSet::new();
|
|
|
|
let mut map = HashMap::new();
|
|
|
|
|
|
|
|
for (word, indexes) in iter {
|
2019-06-17 17:31:10 +08:00
|
|
|
let word = word.to_lowercase().into_bytes();
|
|
|
|
tree.insert(word.clone());
|
|
|
|
map.entry(word).or_insert_with(Vec::new).extend_from_slice(indexes);
|
2019-06-13 21:47:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
InMemorySetStore {
|
|
|
|
set: Set::from_iter(tree).unwrap(),
|
2019-06-13 22:20:01 +08:00
|
|
|
synonyms: Set::default(),
|
2019-06-17 17:31:10 +08:00
|
|
|
indexes: map.into_iter().map(|(k, v)| (k, SetBuf::from_dirty(v))).collect(),
|
2019-06-13 22:20:01 +08:00
|
|
|
alternatives: HashMap::new(),
|
2019-06-13 21:47:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-13 22:20:01 +08:00
|
|
|
impl Store for InMemorySetStore {
|
|
|
|
type Error = std::io::Error;
|
|
|
|
|
|
|
|
fn words(&self) -> Result<&Set, Self::Error> {
|
|
|
|
Ok(&self.set)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn word_indexes(&self, word: &[u8]) -> Result<Option<SetBuf<DocIndex>>, Self::Error> {
|
|
|
|
Ok(self.indexes.get(word).cloned())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn synonyms(&self) -> Result<&Set, Self::Error> {
|
|
|
|
Ok(&self.synonyms)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn alternatives_to(&self, word: &[u8]) -> Result<Option<Set>, Self::Error> {
|
|
|
|
Ok(self.alternatives.get(word).map(|s| Set::from_bytes(s.as_fst().to_vec()).unwrap()))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-13 21:47:49 +08:00
|
|
|
const fn doc_index(document_id: u64, word_index: u16) -> DocIndex {
|
|
|
|
DocIndex {
|
|
|
|
document_id: DocumentId(document_id),
|
|
|
|
attribute: 0,
|
|
|
|
word_index,
|
|
|
|
char_index: 0,
|
|
|
|
char_length: 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-17 22:01:31 +08:00
|
|
|
const fn doc_char_index(document_id: u64, word_index: u16, char_index: u16) -> DocIndex {
|
|
|
|
DocIndex {
|
|
|
|
document_id: DocumentId(document_id),
|
|
|
|
attribute: 0,
|
|
|
|
word_index,
|
|
|
|
char_index,
|
|
|
|
char_length: 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-13 21:47:49 +08:00
|
|
|
#[test]
|
2019-06-13 22:38:37 +08:00
|
|
|
fn simple_synonyms() {
|
|
|
|
let mut store = InMemorySetStore::from_iter(vec![
|
2019-06-17 17:31:10 +08:00
|
|
|
("hello", &[doc_index(0, 0)][..]),
|
2019-06-13 21:47:49 +08:00
|
|
|
]);
|
|
|
|
|
2019-06-13 22:38:37 +08:00
|
|
|
store.add_synonym("bonjour", SetBuf::from_dirty(vec!["hello"]));
|
|
|
|
|
2019-06-13 21:47:49 +08:00
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("hello", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 0);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("bonjour", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 0);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
}
|
|
|
|
|
2019-06-13 22:44:09 +08:00
|
|
|
#[test]
|
|
|
|
fn prefix_synonyms() {
|
|
|
|
let mut store = InMemorySetStore::from_iter(vec![
|
2019-06-17 17:31:10 +08:00
|
|
|
("hello", &[doc_index(0, 0)][..]),
|
2019-06-13 22:44:09 +08:00
|
|
|
]);
|
|
|
|
|
|
|
|
store.add_synonym("bonjour", SetBuf::from_dirty(vec!["hello"]));
|
|
|
|
store.add_synonym("salut", SetBuf::from_dirty(vec!["hello"]));
|
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("sal", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 0);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("bonj", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 0);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("sal blabla", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("bonj blabla", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn levenshtein_synonyms() {
|
|
|
|
let mut store = InMemorySetStore::from_iter(vec![
|
2019-06-17 17:31:10 +08:00
|
|
|
("hello", &[doc_index(0, 0)][..]),
|
2019-06-13 22:44:09 +08:00
|
|
|
]);
|
|
|
|
|
|
|
|
store.add_synonym("salutation", SetBuf::from_dirty(vec!["hello"]));
|
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("salutution", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 0);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("saluttion", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 0);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
}
|
|
|
|
|
2019-06-13 21:47:49 +08:00
|
|
|
#[test]
|
2019-06-13 22:38:37 +08:00
|
|
|
fn harder_synonyms() {
|
|
|
|
let mut store = InMemorySetStore::from_iter(vec![
|
2019-06-17 17:31:10 +08:00
|
|
|
("hello", &[doc_index(0, 0)][..]),
|
|
|
|
("bonjour", &[doc_index(1, 3)]),
|
|
|
|
("salut", &[doc_index(2, 5)]),
|
2019-06-13 21:47:49 +08:00
|
|
|
]);
|
|
|
|
|
2019-06-13 22:38:37 +08:00
|
|
|
store.add_synonym("hello", SetBuf::from_dirty(vec!["bonjour", "salut"]));
|
|
|
|
store.add_synonym("bonjour", SetBuf::from_dirty(vec!["hello", "salut"]));
|
|
|
|
store.add_synonym("salut", SetBuf::from_dirty(vec!["hello", "bonjour"]));
|
|
|
|
|
2019-06-13 21:47:49 +08:00
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("hello", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 0);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(1), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 3);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(2), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 5);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("bonjour", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 0);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(1), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 3);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(2), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 5);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("salut", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 0);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(1), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 3);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(2), matches }) => {
|
|
|
|
assert_eq!(matches.len(), 1);
|
|
|
|
let match_ = matches[0];
|
|
|
|
assert_eq!(match_.query_index, 0);
|
|
|
|
assert_eq!(match_.word_index, 5);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
}
|
2019-06-17 16:28:43 +08:00
|
|
|
|
|
|
|
#[test]
|
2019-06-17 22:01:31 +08:00
|
|
|
/// Unique word has multi-word synonyms
|
|
|
|
fn unique_to_multiword_synonyms() {
|
2019-06-17 16:28:43 +08:00
|
|
|
let mut store = InMemorySetStore::from_iter(vec![
|
2019-06-17 22:01:31 +08:00
|
|
|
("new", &[doc_char_index(0, 0, 0)][..]),
|
|
|
|
("york", &[doc_char_index(0, 1, 1)][..]),
|
|
|
|
("city", &[doc_char_index(0, 2, 2)][..]),
|
|
|
|
("subway", &[doc_char_index(0, 3, 3)][..]),
|
2019-06-17 17:31:10 +08:00
|
|
|
|
2019-06-17 22:01:31 +08:00
|
|
|
("NY", &[doc_char_index(1, 0, 0)][..]),
|
|
|
|
("subway", &[doc_char_index(1, 1, 1)][..]),
|
2019-06-17 16:28:43 +08:00
|
|
|
]);
|
|
|
|
|
2019-06-17 22:01:31 +08:00
|
|
|
store.add_synonym("NY", SetBuf::from_dirty(vec!["NYC", "new york", "new york city"]));
|
|
|
|
store.add_synonym("NYC", SetBuf::from_dirty(vec!["NY", "new york", "new york city"]));
|
2019-06-17 16:28:43 +08:00
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("NY subway", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
2019-06-17 22:01:31 +08:00
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // new = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // york = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // city = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 1, word_index: 1, .. })); // subway
|
|
|
|
assert_matches!(iter.next(), None); // position rewritten ^
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(1), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 1, word_index: 1, .. })); // subway
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("NYC subway", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // new = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // york = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // city = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 1, word_index: 1, .. })); // subway
|
|
|
|
assert_matches!(iter.next(), None); // position rewritten ^
|
|
|
|
});
|
2019-06-17 17:31:10 +08:00
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(1), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 1, word_index: 1, .. })); // subway
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
});
|
2019-06-17 22:01:31 +08:00
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
/// Unique word has multi-word synonyms
|
|
|
|
fn harder_unique_to_multiword_synonyms() {
|
|
|
|
let mut store = InMemorySetStore::from_iter(vec![
|
|
|
|
("new", &[doc_char_index(0, 0, 0)][..]),
|
|
|
|
("york", &[doc_char_index(0, 1, 1)][..]),
|
|
|
|
("city", &[doc_char_index(0, 2, 2)][..]),
|
|
|
|
("yellow", &[doc_char_index(0, 3, 3)][..]),
|
|
|
|
("subway", &[doc_char_index(0, 4, 4)][..]),
|
|
|
|
("broken", &[doc_char_index(0, 5, 5)][..]),
|
|
|
|
|
|
|
|
("NY", &[doc_char_index(1, 0, 0)][..]),
|
|
|
|
("blue", &[doc_char_index(1, 1, 1)][..]),
|
|
|
|
("subway", &[doc_char_index(1, 2, 2)][..]),
|
|
|
|
]);
|
|
|
|
|
|
|
|
store.add_synonym("NY", SetBuf::from_dirty(vec!["NYC", "new york", "new york city"]));
|
|
|
|
store.add_synonym("NYC", SetBuf::from_dirty(vec!["NY", "new york", "new york city"]));
|
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("NY subway", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
2019-06-17 16:28:43 +08:00
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
2019-06-17 22:01:31 +08:00
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // new = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // york = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // city = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 1, word_index: 2, .. })); // subway
|
|
|
|
assert_matches!(iter.next(), None); // position rewritten ^
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(1), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // NY
|
2019-06-17 16:28:43 +08:00
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 1, word_index: 2, .. })); // subway
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("NYC subway", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
2019-06-17 22:01:31 +08:00
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // new = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // york = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // city = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 1, word_index: 2, .. })); // subway
|
|
|
|
assert_matches!(iter.next(), None); // position rewritten ^
|
|
|
|
});
|
2019-06-17 17:31:10 +08:00
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(1), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // NY
|
2019-06-17 22:01:31 +08:00
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 1, word_index: 2, .. })); // subway
|
2019-06-17 17:31:10 +08:00
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
});
|
2019-06-17 22:01:31 +08:00
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
/// Unique word has multi-word synonyms
|
|
|
|
fn even_harder_unique_to_multiword_synonyms() {
|
|
|
|
let mut store = InMemorySetStore::from_iter(vec![
|
|
|
|
("new", &[doc_char_index(0, 0, 0)][..]),
|
|
|
|
("york", &[doc_char_index(0, 1, 1)][..]),
|
|
|
|
("city", &[doc_char_index(0, 2, 2)][..]),
|
|
|
|
("yellow", &[doc_char_index(0, 3, 3)][..]),
|
|
|
|
("underground", &[doc_char_index(0, 4, 4)][..]),
|
|
|
|
("train", &[doc_char_index(0, 5, 5)][..]),
|
|
|
|
("broken", &[doc_char_index(0, 6, 6)][..]),
|
|
|
|
|
|
|
|
("NY", &[doc_char_index(1, 0, 0)][..]),
|
|
|
|
("blue", &[doc_char_index(1, 1, 1)][..]),
|
|
|
|
("subway", &[doc_char_index(1, 2, 2)][..]),
|
|
|
|
]);
|
|
|
|
|
|
|
|
store.add_synonym("NY", SetBuf::from_dirty(vec!["NYC", "new york", "new york city"]));
|
|
|
|
store.add_synonym("NYC", SetBuf::from_dirty(vec!["NY", "new york", "new york city"]));
|
|
|
|
store.add_synonym("subway", SetBuf::from_dirty(vec!["underground train"]));
|
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("NY subway broken", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
2019-06-17 16:28:43 +08:00
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
2019-06-17 22:01:31 +08:00
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // new = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // york = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // city = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 1, word_index: 2, .. })); // underground = subway
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 1, word_index: 2, .. })); // train = subway
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 2, word_index: 3, .. })); // broken
|
|
|
|
assert_matches!(iter.next(), None); // position rewritten ^
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(1), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // NY
|
2019-06-17 16:28:43 +08:00
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 1, word_index: 2, .. })); // subway
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
2019-06-17 22:01:31 +08:00
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("NYC subway", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // new = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // york = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // city = NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 1, word_index: 2, .. })); // underground = subway
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 1, word_index: 2, .. })); // train = subway
|
|
|
|
assert_matches!(iter.next(), None); // position rewritten ^
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(1), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // NY
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 1, word_index: 2, .. })); // subway
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
/// Multi-word has multi-word synonyms
|
|
|
|
fn multiword_to_multiword_synonyms() {
|
|
|
|
let mut store = InMemorySetStore::from_iter(vec![
|
2019-06-18 00:21:10 +08:00
|
|
|
("NY", &[doc_char_index(0, 0, 0)][..]),
|
|
|
|
("subway", &[doc_char_index(0, 1, 1)][..]),
|
|
|
|
|
|
|
|
("NYC", &[doc_char_index(1, 0, 0)][..]),
|
|
|
|
("blue", &[doc_char_index(1, 1, 1)][..]),
|
|
|
|
("subway", &[doc_char_index(1, 2, 2)][..]),
|
|
|
|
("broken", &[doc_char_index(1, 3, 3)][..]),
|
2019-06-17 22:01:31 +08:00
|
|
|
]);
|
|
|
|
|
|
|
|
store.add_synonym("new york", SetBuf::from_dirty(vec!["NYC", "NY", "new york city"]));
|
2019-06-18 00:21:10 +08:00
|
|
|
store.add_synonym("new york city", SetBuf::from_dirty(vec!["NYC", "NY", "new york"]));
|
|
|
|
store.add_synonym("underground train", SetBuf::from_dirty(vec!["subway"]));
|
2019-06-17 22:01:31 +08:00
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
2019-06-18 00:21:10 +08:00
|
|
|
let results = builder.query("new york underground train broken", 0..20).unwrap();
|
2019-06-17 22:01:31 +08:00
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
2019-06-18 00:21:10 +08:00
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(1), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // NYC = new york
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 2, word_index: 2, .. })); // subway = underground train
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 4, word_index: 3, .. })); // broken
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
});
|
2019-06-17 22:01:31 +08:00
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
2019-06-18 00:21:10 +08:00
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // NY = new york
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 2, word_index: 1, .. })); // subway = underground train
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
|
|
|
|
let builder = QueryBuilder::new(&store);
|
|
|
|
let results = builder.query("new york city underground train broken", 0..20).unwrap();
|
|
|
|
let mut iter = results.into_iter();
|
|
|
|
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(1), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // NYC = new york city
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 3, word_index: 2, .. })); // subway = underground train
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 5, word_index: 3, .. })); // broken
|
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), Some(Document { id: DocumentId(0), matches }) => {
|
|
|
|
let mut iter = matches.into_iter();
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 0, word_index: 0, .. })); // NY = new york city
|
|
|
|
assert_matches!(iter.next(), Some(Match { query_index: 3, word_index: 1, .. })); // subway = underground train
|
2019-06-17 22:01:31 +08:00
|
|
|
assert_matches!(iter.next(), None);
|
|
|
|
});
|
|
|
|
assert_matches!(iter.next(), None);
|
2019-06-17 16:28:43 +08:00
|
|
|
}
|
2019-06-13 21:47:49 +08:00
|
|
|
}
|