2020-01-08 00:40:58 +08:00
|
|
|
use std::borrow::Cow;
|
|
|
|
use std::collections::HashMap;
|
2020-01-13 20:29:47 +08:00
|
|
|
use std::hash::{Hash, Hasher};
|
|
|
|
use std::ops::Range;
|
2020-01-08 00:40:58 +08:00
|
|
|
use std::time::Instant;
|
|
|
|
use std::{cmp, fmt, iter::once};
|
|
|
|
|
|
|
|
use sdset::{Set, SetBuf, SetOperation};
|
|
|
|
use slice_group_by::StrGroupBy;
|
|
|
|
use itertools::{EitherOrBoth, merge_join_by};
|
2020-01-08 18:58:50 +08:00
|
|
|
use fst::{IntoStreamer, Streamer};
|
2020-01-08 00:40:58 +08:00
|
|
|
|
|
|
|
use crate::database::MainT;
|
|
|
|
use crate::{store, DocumentId, DocIndex, MResult};
|
2020-01-08 18:58:50 +08:00
|
|
|
use crate::automaton::{build_dfa, build_prefix_dfa, build_exact_dfa};
|
2020-01-13 20:29:47 +08:00
|
|
|
use crate::QueryWordsMapper;
|
2020-01-08 00:40:58 +08:00
|
|
|
|
2020-01-13 20:29:47 +08:00
|
|
|
#[derive(Clone, PartialEq, Eq, Hash)]
|
2020-01-08 00:40:58 +08:00
|
|
|
pub enum Operation {
|
|
|
|
And(Vec<Operation>),
|
|
|
|
Or(Vec<Operation>),
|
|
|
|
Query(Query),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Debug for Operation {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
fn pprint_tree(f: &mut fmt::Formatter<'_>, op: &Operation, depth: usize) -> fmt::Result {
|
|
|
|
match op {
|
|
|
|
Operation::And(children) => {
|
|
|
|
writeln!(f, "{:1$}AND", "", depth * 2)?;
|
|
|
|
children.iter().try_for_each(|c| pprint_tree(f, c, depth + 1))
|
|
|
|
},
|
|
|
|
Operation::Or(children) => {
|
|
|
|
writeln!(f, "{:1$}OR", "", depth * 2)?;
|
|
|
|
children.iter().try_for_each(|c| pprint_tree(f, c, depth + 1))
|
|
|
|
},
|
|
|
|
Operation::Query(query) => writeln!(f, "{:2$}{:?}", "", query, depth * 2),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pprint_tree(f, self, 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-13 20:29:47 +08:00
|
|
|
impl Operation {
|
|
|
|
fn tolerant(id: QueryId, prefix: bool, s: &str) -> Operation {
|
|
|
|
Operation::Query(Query { id, prefix, kind: QueryKind::Tolerant(s.to_string()) })
|
|
|
|
}
|
|
|
|
|
|
|
|
fn exact(id: QueryId, prefix: bool, s: &str) -> Operation {
|
|
|
|
Operation::Query(Query { id, prefix, kind: QueryKind::Exact(s.to_string()) })
|
|
|
|
}
|
|
|
|
|
|
|
|
fn phrase2(id: QueryId, prefix: bool, (left, right): (&str, &str)) -> Operation {
|
|
|
|
Operation::Query(Query { id, prefix, kind: QueryKind::Phrase(vec![left.to_owned(), right.to_owned()]) })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-08 00:40:58 +08:00
|
|
|
pub type QueryId = usize;
|
|
|
|
|
2020-01-13 20:29:47 +08:00
|
|
|
#[derive(Clone, Eq)]
|
2020-01-08 18:58:50 +08:00
|
|
|
pub struct Query {
|
|
|
|
pub id: QueryId,
|
|
|
|
pub prefix: bool,
|
|
|
|
pub kind: QueryKind,
|
|
|
|
}
|
|
|
|
|
2020-01-13 20:29:47 +08:00
|
|
|
impl PartialEq for Query {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.prefix == other.prefix && self.kind == other.kind
|
2020-01-08 00:40:58 +08:00
|
|
|
}
|
2020-01-13 20:29:47 +08:00
|
|
|
}
|
2020-01-08 00:40:58 +08:00
|
|
|
|
2020-01-13 20:29:47 +08:00
|
|
|
impl Hash for Query {
|
|
|
|
fn hash<H: Hasher>(&self, state: &mut H) {
|
|
|
|
self.prefix.hash(state);
|
|
|
|
self.kind.hash(state);
|
2020-01-08 00:40:58 +08:00
|
|
|
}
|
2020-01-13 20:29:47 +08:00
|
|
|
}
|
2020-01-08 00:40:58 +08:00
|
|
|
|
2020-01-13 20:29:47 +08:00
|
|
|
#[derive(Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub enum QueryKind {
|
|
|
|
Tolerant(String),
|
|
|
|
Exact(String),
|
|
|
|
Phrase(Vec<String>),
|
2020-01-08 18:58:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Debug for Query {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
let Query { id, prefix, kind } = self;
|
|
|
|
let prefix = if *prefix { String::from("Prefix") } else { String::default() };
|
|
|
|
match kind {
|
|
|
|
QueryKind::Exact(word) => {
|
|
|
|
f.debug_struct(&(prefix + "Exact")).field("id", &id).field("word", &word).finish()
|
|
|
|
},
|
|
|
|
QueryKind::Tolerant(word) => {
|
|
|
|
f.debug_struct(&(prefix + "Tolerant")).field("id", &id).field("word", &word).finish()
|
|
|
|
},
|
|
|
|
QueryKind::Phrase(words) => {
|
|
|
|
f.debug_struct(&(prefix + "Phrase")).field("id", &id).field("words", &words).finish()
|
|
|
|
},
|
|
|
|
}
|
2020-01-08 00:40:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Default)]
|
|
|
|
pub struct PostingsList {
|
|
|
|
docids: SetBuf<DocumentId>,
|
|
|
|
matches: SetBuf<DocIndex>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Context {
|
2020-01-08 20:37:22 +08:00
|
|
|
pub words_set: fst::Set,
|
|
|
|
pub synonyms: store::Synonyms,
|
|
|
|
pub postings_lists: store::PostingsLists,
|
|
|
|
pub prefix_postings_lists: store::PrefixPostingsListsCache,
|
2020-01-08 00:40:58 +08:00
|
|
|
}
|
|
|
|
|
2020-01-08 20:37:22 +08:00
|
|
|
fn split_best_frequency<'a>(reader: &heed::RoTxn<MainT>, ctx: &Context, word: &'a str) -> MResult<Option<(&'a str, &'a str)>> {
|
2020-01-08 00:40:58 +08:00
|
|
|
let chars = word.char_indices().skip(1);
|
|
|
|
let mut best = None;
|
|
|
|
|
|
|
|
for (i, _) in chars {
|
|
|
|
let (left, right) = word.split_at(i);
|
|
|
|
|
2020-01-08 22:30:43 +08:00
|
|
|
let left_freq = ctx.postings_lists
|
|
|
|
.postings_list(reader, left.as_bytes())?
|
|
|
|
.map(|p| p.docids.len())
|
|
|
|
.unwrap_or(0);
|
|
|
|
let right_freq = ctx.postings_lists
|
|
|
|
.postings_list(reader, right.as_bytes())?
|
|
|
|
.map(|p| p.docids.len())
|
|
|
|
.unwrap_or(0);
|
2020-01-08 00:40:58 +08:00
|
|
|
|
|
|
|
let min_freq = cmp::min(left_freq, right_freq);
|
|
|
|
if min_freq != 0 && best.map_or(true, |(old, _, _)| min_freq > old) {
|
|
|
|
best = Some((min_freq, left, right));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(best.map(|(_, l, r)| (l, r)))
|
|
|
|
}
|
|
|
|
|
2020-01-08 20:37:22 +08:00
|
|
|
fn fetch_synonyms(reader: &heed::RoTxn<MainT>, ctx: &Context, words: &[&str]) -> MResult<Vec<Vec<String>>> {
|
2020-01-08 00:40:58 +08:00
|
|
|
let words = words.join(" "); // TODO ugly
|
|
|
|
// synonyms.synonyms(reader, words.as_bytes()).cloned().unwrap_or_default()
|
|
|
|
Ok(vec![])
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_last<I: IntoIterator>(iter: I) -> impl Iterator<Item=(bool, I::Item)> {
|
|
|
|
let mut iter = iter.into_iter().peekable();
|
|
|
|
core::iter::from_fn(move || {
|
|
|
|
iter.next().map(|item| (iter.peek().is_none(), item))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn create_operation<I, F>(iter: I, f: F) -> Operation
|
|
|
|
where I: IntoIterator<Item=Operation>,
|
|
|
|
F: Fn(Vec<Operation>) -> Operation,
|
|
|
|
{
|
|
|
|
let mut iter = iter.into_iter();
|
|
|
|
match (iter.next(), iter.next()) {
|
|
|
|
(Some(first), None) => first,
|
|
|
|
(first, second) => f(first.into_iter().chain(second).chain(iter).collect()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const MAX_NGRAM: usize = 3;
|
|
|
|
|
2020-01-13 20:29:47 +08:00
|
|
|
pub fn create_query_tree(
|
|
|
|
reader: &heed::RoTxn<MainT>,
|
|
|
|
ctx: &Context,
|
|
|
|
query: &str,
|
|
|
|
) -> MResult<(Operation, HashMap<QueryId, Range<usize>>)>
|
|
|
|
{
|
2020-01-08 00:40:58 +08:00
|
|
|
let query = query.to_lowercase();
|
|
|
|
let words = query.linear_group_by_key(char::is_whitespace).map(ToOwned::to_owned);
|
2020-01-13 20:29:47 +08:00
|
|
|
let words: Vec<_> = words.filter(|s| !s.contains(char::is_whitespace)).enumerate().collect();
|
2020-01-08 00:40:58 +08:00
|
|
|
|
2020-01-13 20:29:47 +08:00
|
|
|
let mut mapper = QueryWordsMapper::new(words.iter().map(|(_, w)| w));
|
2020-01-08 00:40:58 +08:00
|
|
|
let mut ngrams = Vec::new();
|
|
|
|
for ngram in 1..=MAX_NGRAM {
|
2020-01-13 20:29:47 +08:00
|
|
|
|
2020-01-08 00:40:58 +08:00
|
|
|
let ngiter = words.windows(ngram).enumerate().map(|(i, group)| {
|
2020-01-13 20:29:47 +08:00
|
|
|
let before = words[0..i].windows(1).enumerate().map(|(i, g)| (i..i+1, g));
|
|
|
|
let after = words[i + ngram..].windows(1)
|
|
|
|
.enumerate()
|
|
|
|
.map(move |(j, g)| (i + j + ngram..i + j + ngram + 1, g));
|
|
|
|
before.chain(Some((i..i + ngram, group))).chain(after)
|
2020-01-08 00:40:58 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
for group in ngiter {
|
2020-01-13 20:29:47 +08:00
|
|
|
|
2020-01-08 00:40:58 +08:00
|
|
|
let mut ops = Vec::new();
|
2020-01-13 20:29:47 +08:00
|
|
|
for (is_last, (range, words)) in is_last(group) {
|
2020-01-08 00:40:58 +08:00
|
|
|
|
|
|
|
let mut alts = Vec::new();
|
|
|
|
match words {
|
|
|
|
[(id, word)] => {
|
2020-01-13 20:29:47 +08:00
|
|
|
let mut idgen = ((id + 1) * 100)..;
|
2020-01-08 00:40:58 +08:00
|
|
|
|
2020-01-13 20:29:47 +08:00
|
|
|
let phrase = split_best_frequency(reader, ctx, word)?
|
|
|
|
.map(|ws| {
|
|
|
|
let id = idgen.next().unwrap();
|
|
|
|
idgen.next().unwrap();
|
|
|
|
mapper.declare(range.clone(), id, &[ws.0, ws.1]);
|
|
|
|
Operation::phrase2(id, is_last, ws)
|
|
|
|
});
|
|
|
|
|
|
|
|
let synonyms = fetch_synonyms(reader, ctx, &[word])?
|
|
|
|
.into_iter()
|
|
|
|
.map(|alts| {
|
|
|
|
let id = idgen.next().unwrap();
|
|
|
|
mapper.declare(range.clone(), id, &alts);
|
|
|
|
|
|
|
|
let mut idgen = once(id).chain(&mut idgen);
|
|
|
|
let iter = alts.into_iter().map(|w| {
|
|
|
|
let id = idgen.next().unwrap();
|
|
|
|
Operation::exact(id, false, &w)
|
|
|
|
});
|
|
|
|
|
|
|
|
create_operation(iter, Operation::And)
|
|
|
|
});
|
|
|
|
|
|
|
|
let query = Operation::tolerant(*id, is_last, word);
|
|
|
|
|
|
|
|
alts.push(query);
|
2020-01-08 00:40:58 +08:00
|
|
|
alts.extend(synonyms.chain(phrase));
|
|
|
|
},
|
|
|
|
words => {
|
|
|
|
let id = words[0].0;
|
2020-01-13 20:29:47 +08:00
|
|
|
let mut idgen = ((id + 1) * 100_usize.pow(ngram as u32))..;
|
|
|
|
|
2020-01-08 00:40:58 +08:00
|
|
|
let words: Vec<_> = words.iter().map(|(_, s)| s.as_str()).collect();
|
|
|
|
|
2020-01-08 20:37:22 +08:00
|
|
|
for synonym in fetch_synonyms(reader, ctx, &words)? {
|
2020-01-13 20:29:47 +08:00
|
|
|
let id = idgen.next().unwrap();
|
|
|
|
mapper.declare(range.clone(), id, &synonym);
|
|
|
|
|
|
|
|
let mut idgen = once(id).chain(&mut idgen);
|
|
|
|
let synonym = synonym.into_iter().map(|s| {
|
|
|
|
let id = idgen.next().unwrap();
|
|
|
|
Operation::exact(id, false, &s)
|
|
|
|
});
|
|
|
|
alts.push(create_operation(synonym, Operation::And));
|
2020-01-08 00:40:58 +08:00
|
|
|
}
|
|
|
|
|
2020-01-13 20:29:47 +08:00
|
|
|
let id = idgen.next().unwrap();
|
|
|
|
let concat = words.concat();
|
|
|
|
alts.push(Operation::exact(id, is_last, &concat));
|
|
|
|
mapper.declare(range.clone(), id, &[concat]);
|
2020-01-08 00:40:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ops.push(create_operation(alts, Operation::Or));
|
|
|
|
}
|
|
|
|
|
|
|
|
ngrams.push(create_operation(ops, Operation::And));
|
|
|
|
if ngram == 1 { break }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-13 20:29:47 +08:00
|
|
|
let mapping = mapper.mapping();
|
|
|
|
let operation = create_operation(ngrams, Operation::Or);
|
|
|
|
|
|
|
|
Ok((operation, mapping))
|
2020-01-08 00:40:58 +08:00
|
|
|
}
|
|
|
|
|
2020-01-14 18:38:04 +08:00
|
|
|
pub type Distance = u8;
|
|
|
|
pub type Postings<'o, 'txn> = HashMap<(&'o Query, Vec<u8>, Distance), Cow<'txn, Set<DocIndex>>>;
|
2020-01-09 21:53:49 +08:00
|
|
|
pub type Cache<'o, 'txn> = HashMap<&'o Operation, Cow<'txn, Set<DocumentId>>>;
|
|
|
|
|
2020-01-08 01:23:55 +08:00
|
|
|
pub struct QueryResult<'o, 'txn> {
|
2020-01-08 22:30:43 +08:00
|
|
|
pub docids: Cow<'txn, Set<DocumentId>>,
|
2020-01-09 21:53:49 +08:00
|
|
|
pub queries: Postings<'o, 'txn>,
|
2020-01-08 00:40:58 +08:00
|
|
|
}
|
|
|
|
|
2020-01-08 01:23:55 +08:00
|
|
|
pub fn traverse_query_tree<'o, 'txn>(
|
|
|
|
reader: &'txn heed::RoTxn<MainT>,
|
2020-01-08 20:37:22 +08:00
|
|
|
ctx: &Context,
|
2020-01-08 01:23:55 +08:00
|
|
|
tree: &'o Operation,
|
|
|
|
) -> MResult<QueryResult<'o, 'txn>>
|
|
|
|
{
|
|
|
|
fn execute_and<'o, 'txn>(
|
|
|
|
reader: &'txn heed::RoTxn<MainT>,
|
2020-01-08 20:37:22 +08:00
|
|
|
ctx: &Context,
|
2020-01-08 01:23:55 +08:00
|
|
|
cache: &mut Cache<'o, 'txn>,
|
|
|
|
postings: &mut Postings<'o, 'txn>,
|
2020-01-08 00:40:58 +08:00
|
|
|
depth: usize,
|
|
|
|
operations: &'o [Operation],
|
2020-01-08 22:30:43 +08:00
|
|
|
) -> MResult<Cow<'txn, Set<DocumentId>>>
|
2020-01-08 00:40:58 +08:00
|
|
|
{
|
|
|
|
println!("{:1$}AND", "", depth * 2);
|
|
|
|
|
|
|
|
let before = Instant::now();
|
|
|
|
let mut results = Vec::new();
|
|
|
|
|
|
|
|
for op in operations {
|
|
|
|
if cache.get(op).is_none() {
|
|
|
|
let docids = match op {
|
2020-01-08 20:37:22 +08:00
|
|
|
Operation::And(ops) => execute_and(reader, ctx, cache, postings, depth + 1, &ops)?,
|
|
|
|
Operation::Or(ops) => execute_or(reader, ctx, cache, postings, depth + 1, &ops)?,
|
|
|
|
Operation::Query(query) => execute_query(reader, ctx, postings, depth + 1, &query)?,
|
2020-01-08 00:40:58 +08:00
|
|
|
};
|
|
|
|
cache.insert(op, docids);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for op in operations {
|
|
|
|
if let Some(docids) = cache.get(op) {
|
|
|
|
results.push(docids.as_ref());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let op = sdset::multi::Intersection::new(results);
|
|
|
|
let docids = op.into_set_buf();
|
|
|
|
|
|
|
|
println!("{:3$}--- AND fetched {} documents in {:.02?}", "", docids.len(), before.elapsed(), depth * 2);
|
|
|
|
|
2020-01-08 22:30:43 +08:00
|
|
|
Ok(Cow::Owned(docids))
|
2020-01-08 00:40:58 +08:00
|
|
|
}
|
|
|
|
|
2020-01-08 01:23:55 +08:00
|
|
|
fn execute_or<'o, 'txn>(
|
|
|
|
reader: &'txn heed::RoTxn<MainT>,
|
2020-01-08 20:37:22 +08:00
|
|
|
ctx: &Context,
|
2020-01-08 01:23:55 +08:00
|
|
|
cache: &mut Cache<'o, 'txn>,
|
|
|
|
postings: &mut Postings<'o, 'txn>,
|
2020-01-08 00:40:58 +08:00
|
|
|
depth: usize,
|
|
|
|
operations: &'o [Operation],
|
2020-01-08 22:30:43 +08:00
|
|
|
) -> MResult<Cow<'txn, Set<DocumentId>>>
|
2020-01-08 00:40:58 +08:00
|
|
|
{
|
|
|
|
println!("{:1$}OR", "", depth * 2);
|
|
|
|
|
|
|
|
let before = Instant::now();
|
|
|
|
let mut ids = Vec::new();
|
|
|
|
|
|
|
|
for op in operations {
|
|
|
|
let docids = match cache.get(op) {
|
|
|
|
Some(docids) => docids,
|
|
|
|
None => {
|
|
|
|
let docids = match op {
|
2020-01-08 20:37:22 +08:00
|
|
|
Operation::And(ops) => execute_and(reader, ctx, cache, postings, depth + 1, &ops)?,
|
|
|
|
Operation::Or(ops) => execute_or(reader, ctx, cache, postings, depth + 1, &ops)?,
|
|
|
|
Operation::Query(query) => execute_query(reader, ctx, postings, depth + 1, &query)?,
|
2020-01-08 00:40:58 +08:00
|
|
|
};
|
|
|
|
cache.entry(op).or_insert(docids)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-08 01:23:55 +08:00
|
|
|
ids.extend_from_slice(docids.as_ref());
|
2020-01-08 00:40:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
let docids = SetBuf::from_dirty(ids);
|
|
|
|
|
|
|
|
println!("{:3$}--- OR fetched {} documents in {:.02?}", "", docids.len(), before.elapsed(), depth * 2);
|
|
|
|
|
2020-01-08 22:30:43 +08:00
|
|
|
Ok(Cow::Owned(docids))
|
2020-01-08 00:40:58 +08:00
|
|
|
}
|
|
|
|
|
2020-01-08 01:23:55 +08:00
|
|
|
fn execute_query<'o, 'txn>(
|
|
|
|
reader: &'txn heed::RoTxn<MainT>,
|
2020-01-08 20:37:22 +08:00
|
|
|
ctx: &Context,
|
2020-01-08 01:23:55 +08:00
|
|
|
postings: &mut Postings<'o, 'txn>,
|
2020-01-08 00:40:58 +08:00
|
|
|
depth: usize,
|
|
|
|
query: &'o Query,
|
2020-01-08 22:30:43 +08:00
|
|
|
) -> MResult<Cow<'txn, Set<DocumentId>>>
|
2020-01-08 00:40:58 +08:00
|
|
|
{
|
|
|
|
let before = Instant::now();
|
2020-01-08 18:58:50 +08:00
|
|
|
|
|
|
|
let Query { id, prefix, kind } = query;
|
|
|
|
let docids = match kind {
|
|
|
|
QueryKind::Tolerant(word) => {
|
2020-01-15 01:07:14 +08:00
|
|
|
if *prefix && word.len() <= 2 {
|
|
|
|
let prefix = {
|
|
|
|
let mut array = [0; 4];
|
|
|
|
let bytes = word.as_bytes();
|
|
|
|
array[..bytes.len()].copy_from_slice(bytes);
|
|
|
|
array
|
|
|
|
};
|
|
|
|
|
2020-01-09 21:53:49 +08:00
|
|
|
let result = ctx.prefix_postings_lists.prefix_postings_list(reader, prefix)?.unwrap_or_default();
|
2020-01-14 18:38:04 +08:00
|
|
|
let distance = 0;
|
|
|
|
postings.insert((query, word.clone().into_bytes(), distance), result.matches);
|
2020-01-09 21:53:49 +08:00
|
|
|
result.docids
|
2020-01-08 20:06:12 +08:00
|
|
|
} else {
|
2020-01-08 20:14:07 +08:00
|
|
|
let dfa = if *prefix { build_prefix_dfa(word) } else { build_dfa(word) };
|
2020-01-08 20:06:12 +08:00
|
|
|
|
2020-01-08 20:14:07 +08:00
|
|
|
let byte = word.as_bytes()[0];
|
|
|
|
let mut stream = if byte == u8::max_value() {
|
2020-01-08 20:37:22 +08:00
|
|
|
ctx.words_set.search(&dfa).ge(&[byte]).into_stream()
|
2020-01-08 20:14:07 +08:00
|
|
|
} else {
|
2020-01-08 20:37:22 +08:00
|
|
|
ctx.words_set.search(&dfa).ge(&[byte]).lt(&[byte + 1]).into_stream()
|
2020-01-08 20:14:07 +08:00
|
|
|
};
|
|
|
|
|
2020-01-09 19:05:39 +08:00
|
|
|
let before = Instant::now();
|
2020-01-08 20:14:07 +08:00
|
|
|
let mut docids = Vec::new();
|
|
|
|
while let Some(input) = stream.next() {
|
2020-01-14 18:38:04 +08:00
|
|
|
let distance = dfa.eval(input).to_u8();
|
2020-01-09 21:53:49 +08:00
|
|
|
if let Some(result) = ctx.postings_lists.postings_list(reader, input)? {
|
|
|
|
docids.extend_from_slice(&result.docids);
|
2020-01-14 18:38:04 +08:00
|
|
|
postings.insert((query, input.to_owned(), distance), result.matches);
|
2020-01-08 20:14:07 +08:00
|
|
|
}
|
2020-01-08 18:58:50 +08:00
|
|
|
}
|
2020-01-09 19:05:39 +08:00
|
|
|
println!("{:3$}docids extend ({:?}) took {:.02?}", "", docids.len(), before.elapsed(), depth * 2);
|
2020-01-08 18:58:50 +08:00
|
|
|
|
2020-01-08 20:22:42 +08:00
|
|
|
let before = Instant::now();
|
|
|
|
let docids = SetBuf::from_dirty(docids);
|
|
|
|
println!("{:2$}docids construction took {:.02?}", "", before.elapsed(), depth * 2);
|
|
|
|
|
2020-01-08 22:30:43 +08:00
|
|
|
Cow::Owned(docids)
|
2020-01-08 20:14:07 +08:00
|
|
|
}
|
2020-01-08 18:58:50 +08:00
|
|
|
},
|
|
|
|
QueryKind::Exact(word) => {
|
|
|
|
// TODO support prefix and non-prefix exact DFA
|
|
|
|
let dfa = build_exact_dfa(word);
|
|
|
|
|
2020-01-08 20:06:12 +08:00
|
|
|
let byte = word.as_bytes()[0];
|
|
|
|
let mut stream = if byte == u8::max_value() {
|
2020-01-08 20:37:22 +08:00
|
|
|
ctx.words_set.search(&dfa).ge(&[byte]).into_stream()
|
2020-01-08 20:06:12 +08:00
|
|
|
} else {
|
2020-01-08 20:37:22 +08:00
|
|
|
ctx.words_set.search(&dfa).ge(&[byte]).lt(&[byte + 1]).into_stream()
|
2020-01-08 20:06:12 +08:00
|
|
|
};
|
|
|
|
|
2020-01-08 18:58:50 +08:00
|
|
|
let mut docids = Vec::new();
|
|
|
|
while let Some(input) = stream.next() {
|
2020-01-14 18:38:04 +08:00
|
|
|
let distance = dfa.eval(input).to_u8();
|
2020-01-09 21:53:49 +08:00
|
|
|
if let Some(result) = ctx.postings_lists.postings_list(reader, input)? {
|
|
|
|
docids.extend_from_slice(&result.docids);
|
2020-01-14 18:38:04 +08:00
|
|
|
postings.insert((query, input.to_owned(), distance), result.matches);
|
2020-01-08 18:58:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-08 22:30:43 +08:00
|
|
|
Cow::Owned(SetBuf::from_dirty(docids))
|
2020-01-08 00:40:58 +08:00
|
|
|
},
|
2020-01-08 18:58:50 +08:00
|
|
|
QueryKind::Phrase(words) => {
|
|
|
|
// TODO support prefix and non-prefix exact DFA
|
2020-01-08 00:40:58 +08:00
|
|
|
if let [first, second] = words.as_slice() {
|
2020-01-08 20:37:22 +08:00
|
|
|
let first = ctx.postings_lists.postings_list(reader, first.as_bytes())?.unwrap_or_default();
|
|
|
|
let second = ctx.postings_lists.postings_list(reader, second.as_bytes())?.unwrap_or_default();
|
2020-01-08 00:40:58 +08:00
|
|
|
|
2020-01-08 22:30:43 +08:00
|
|
|
let iter = merge_join_by(first.matches.as_slice(), second.matches.as_slice(), |a, b| {
|
2020-01-08 00:40:58 +08:00
|
|
|
let x = (a.document_id, a.attribute, (a.word_index as u32) + 1);
|
|
|
|
let y = (b.document_id, b.attribute, b.word_index as u32);
|
|
|
|
x.cmp(&y)
|
|
|
|
});
|
|
|
|
|
|
|
|
let matches: Vec<_> = iter
|
|
|
|
.filter_map(EitherOrBoth::both)
|
|
|
|
.flat_map(|(a, b)| once(*a).chain(Some(*b)))
|
|
|
|
.collect();
|
|
|
|
|
2020-01-08 20:22:42 +08:00
|
|
|
let before = Instant::now();
|
2020-01-08 00:40:58 +08:00
|
|
|
let mut docids: Vec<_> = matches.iter().map(|m| m.document_id).collect();
|
|
|
|
docids.dedup();
|
2020-01-08 20:22:42 +08:00
|
|
|
let docids = SetBuf::new(docids).unwrap();
|
|
|
|
println!("{:2$}docids construction took {:.02?}", "", before.elapsed(), depth * 2);
|
2020-01-09 21:53:49 +08:00
|
|
|
|
|
|
|
let matches = Cow::Owned(SetBuf::new(matches).unwrap());
|
2020-01-14 18:38:04 +08:00
|
|
|
let distance = 0;
|
|
|
|
postings.insert((query, vec![], distance), matches);
|
2020-01-09 21:53:49 +08:00
|
|
|
|
2020-01-08 22:30:43 +08:00
|
|
|
Cow::Owned(docids)
|
2020-01-08 00:40:58 +08:00
|
|
|
} else {
|
|
|
|
println!("{:2$}{:?} skipped", "", words, depth * 2);
|
2020-01-08 22:30:43 +08:00
|
|
|
Cow::default()
|
2020-01-08 00:40:58 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
println!("{:4$}{:?} fetched {:?} documents in {:.02?}", "", query, docids.len(), before.elapsed(), depth * 2);
|
2020-01-08 01:23:55 +08:00
|
|
|
Ok(docids)
|
2020-01-08 00:40:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut cache = Cache::new();
|
|
|
|
let mut postings = Postings::new();
|
|
|
|
|
|
|
|
let docids = match tree {
|
2020-01-08 20:37:22 +08:00
|
|
|
Operation::And(ops) => execute_and(reader, ctx, &mut cache, &mut postings, 0, &ops)?,
|
|
|
|
Operation::Or(ops) => execute_or(reader, ctx, &mut cache, &mut postings, 0, &ops)?,
|
|
|
|
Operation::Query(query) => execute_query(reader, ctx, &mut postings, 0, &query)?,
|
2020-01-08 00:40:58 +08:00
|
|
|
};
|
|
|
|
|
2020-01-08 01:23:55 +08:00
|
|
|
Ok(QueryResult { docids, queries: postings })
|
2020-01-08 00:40:58 +08:00
|
|
|
}
|