2018-12-08 00:59:03 +08:00
|
|
|
use std::ops::{Deref, Range};
|
2018-11-28 02:11:33 +08:00
|
|
|
use std::error::Error;
|
2018-10-17 19:35:34 +08:00
|
|
|
use std::hash::Hash;
|
2018-12-07 21:41:06 +08:00
|
|
|
use std::{mem, vec, str};
|
2018-10-10 22:57:21 +08:00
|
|
|
|
2018-12-02 20:11:02 +08:00
|
|
|
use group_by::GroupByMut;
|
|
|
|
use hashbrown::HashMap;
|
|
|
|
use fst::Streamer;
|
2018-12-08 00:59:03 +08:00
|
|
|
use rocksdb::DB;
|
2018-10-10 22:57:21 +08:00
|
|
|
|
2018-11-28 02:11:33 +08:00
|
|
|
use crate::automaton::{self, DfaExt, AutomatonExt};
|
2018-11-29 00:12:24 +08:00
|
|
|
use crate::rank::distinct_map::DistinctMap;
|
2018-12-11 03:14:16 +08:00
|
|
|
use crate::rank::criterion::Criteria;
|
2018-12-07 21:41:06 +08:00
|
|
|
use crate::database::DatabaseView;
|
2018-10-17 19:35:34 +08:00
|
|
|
use crate::{Match, DocumentId};
|
2018-11-28 02:11:33 +08:00
|
|
|
use crate::rank::Document;
|
2018-10-10 22:57:21 +08:00
|
|
|
|
2018-11-28 02:11:33 +08:00
|
|
|
fn split_whitespace_automatons(query: &str) -> Vec<DfaExt> {
|
|
|
|
let mut automatons = Vec::new();
|
2018-12-10 19:16:24 +08:00
|
|
|
let mut words = query.split_whitespace().map(str::to_lowercase).peekable();
|
|
|
|
while let Some(word) = words.next() {
|
|
|
|
let lev = match words.peek() {
|
|
|
|
Some(_) => automaton::build_dfa(&word),
|
|
|
|
None => automaton::build_prefix_dfa(&word),
|
|
|
|
};
|
2018-11-28 02:11:33 +08:00
|
|
|
automatons.push(lev);
|
|
|
|
}
|
|
|
|
automatons
|
2018-10-17 19:35:34 +08:00
|
|
|
}
|
|
|
|
|
2018-12-11 03:14:16 +08:00
|
|
|
pub struct QueryBuilder<'a, D>
|
2018-12-08 00:59:03 +08:00
|
|
|
where D: Deref<Target=DB>
|
|
|
|
{
|
|
|
|
view: &'a DatabaseView<D>,
|
2018-12-11 03:14:16 +08:00
|
|
|
criteria: Criteria<D>,
|
2018-10-10 22:57:21 +08:00
|
|
|
}
|
|
|
|
|
2018-12-11 03:14:16 +08:00
|
|
|
impl<'a, D> QueryBuilder<'a, D>
|
2018-12-08 00:59:03 +08:00
|
|
|
where D: Deref<Target=DB>
|
|
|
|
{
|
|
|
|
pub fn new(view: &'a DatabaseView<D>) -> Result<Self, Box<Error>> {
|
2018-12-11 03:14:16 +08:00
|
|
|
QueryBuilder::with_criteria(view, Criteria::default())
|
2018-11-28 02:11:33 +08:00
|
|
|
}
|
|
|
|
}
|
2018-10-10 22:57:21 +08:00
|
|
|
|
2018-12-11 03:14:16 +08:00
|
|
|
impl<'a, D> QueryBuilder<'a, D>
|
2018-12-08 00:59:03 +08:00
|
|
|
where D: Deref<Target=DB>
|
|
|
|
{
|
2018-12-11 03:14:16 +08:00
|
|
|
pub fn with_criteria(view: &'a DatabaseView<D>, criteria: Criteria<D>) -> Result<Self, Box<Error>> {
|
2018-12-07 23:20:12 +08:00
|
|
|
Ok(QueryBuilder { view, criteria })
|
2018-11-28 02:11:33 +08:00
|
|
|
}
|
|
|
|
|
2018-12-11 03:14:16 +08:00
|
|
|
pub fn criteria(&mut self, criteria: Criteria<D>) -> &mut Self {
|
2018-11-28 02:11:33 +08:00
|
|
|
self.criteria = criteria;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-12-11 03:14:16 +08:00
|
|
|
pub fn with_distinct<F>(self, function: F, size: usize) -> DistinctQueryBuilder<'a, D, F> {
|
2018-11-28 02:11:33 +08:00
|
|
|
DistinctQueryBuilder {
|
2018-11-29 00:12:24 +08:00
|
|
|
inner: self,
|
2018-11-28 02:11:33 +08:00
|
|
|
function: function,
|
|
|
|
size: size
|
2018-10-11 20:04:41 +08:00
|
|
|
}
|
2018-10-10 22:57:21 +08:00
|
|
|
}
|
|
|
|
|
2018-11-28 02:11:33 +08:00
|
|
|
fn query_all(&self, query: &str) -> Vec<Document> {
|
|
|
|
let automatons = split_whitespace_automatons(query);
|
2018-11-29 00:12:24 +08:00
|
|
|
|
|
|
|
let mut stream = {
|
|
|
|
let mut op_builder = fst::map::OpBuilder::new();
|
|
|
|
for automaton in &automatons {
|
2018-12-07 23:20:12 +08:00
|
|
|
let stream = self.view.blob().as_map().search(automaton);
|
2018-11-29 00:12:24 +08:00
|
|
|
op_builder.push(stream);
|
|
|
|
}
|
|
|
|
op_builder.union()
|
|
|
|
};
|
|
|
|
|
2018-12-02 20:11:02 +08:00
|
|
|
let mut matches = HashMap::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 {
|
2018-11-28 02:11:33 +08:00
|
|
|
let 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();
|
|
|
|
|
2018-12-07 23:20:12 +08:00
|
|
|
let doc_indexes = self.view.blob().as_indexes();
|
2018-12-02 01:37:21 +08:00
|
|
|
let doc_indexes = &doc_indexes[iv.value as usize];
|
2018-10-11 20:04:41 +08:00
|
|
|
|
2018-11-29 00:12:24 +08:00
|
|
|
for doc_index in doc_indexes {
|
2018-10-11 20:04:41 +08:00
|
|
|
let match_ = Match {
|
|
|
|
query_index: iv.index as u32,
|
|
|
|
distance: distance,
|
2018-10-17 19:35:34 +08:00
|
|
|
attribute: doc_index.attribute,
|
|
|
|
attribute_index: doc_index.attribute_index,
|
2018-10-11 20:04:41 +08:00
|
|
|
is_exact: is_exact,
|
|
|
|
};
|
2018-10-17 19:35:34 +08:00
|
|
|
matches.entry(doc_index.document_id).or_insert_with(Vec::new).push(match_);
|
2018-10-11 20:04:41 +08:00
|
|
|
}
|
2018-10-10 22:57:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-21 22:42:19 +08:00
|
|
|
matches.into_iter().map(|(id, matches)| Document::from_matches(id, matches)).collect()
|
2018-10-17 19:35:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-11 03:14:16 +08:00
|
|
|
impl<'a, D> QueryBuilder<'a, D>
|
2018-12-08 00:59:03 +08:00
|
|
|
where D: Deref<Target=DB>,
|
2018-10-17 19:35:34 +08:00
|
|
|
{
|
2018-12-07 18:53:17 +08:00
|
|
|
pub fn query(&self, query: &str, limit: usize) -> Vec<Document> {
|
2018-11-28 02:11:33 +08:00
|
|
|
let mut documents = self.query_all(query);
|
2018-10-17 19:35:34 +08:00
|
|
|
let mut groups = vec![documents.as_mut_slice()];
|
2018-12-07 21:41:06 +08:00
|
|
|
let view = &self.view;
|
2018-10-17 19:35:34 +08:00
|
|
|
|
2018-12-11 03:14:16 +08:00
|
|
|
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-07 18:53:17 +08:00
|
|
|
let mut computed = 0;
|
2018-10-17 19:35:34 +08:00
|
|
|
|
2018-12-10 22:14:15 +08:00
|
|
|
'group: for group in tmp_groups {
|
2018-12-07 21:41:06 +08:00
|
|
|
group.sort_unstable_by(|a, b| criterion.evaluate(a, b, view));
|
|
|
|
for group in GroupByMut::new(group, |a, b| criterion.eq(a, b, view)) {
|
2018-12-07 18:53:17 +08:00
|
|
|
computed += group.len();
|
2018-10-17 19:35:34 +08:00
|
|
|
groups.push(group);
|
2018-12-07 18:53:17 +08:00
|
|
|
if computed >= limit { break 'group }
|
2018-10-17 19:35:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-07 18:53:17 +08:00
|
|
|
documents.truncate(limit);
|
|
|
|
documents
|
2018-10-17 19:35:34 +08:00
|
|
|
}
|
2018-11-28 02:11:33 +08:00
|
|
|
}
|
2018-10-11 20:04:41 +08:00
|
|
|
|
2018-12-11 03:14:16 +08:00
|
|
|
pub struct DistinctQueryBuilder<'a, D, F>
|
2018-12-08 00:59:03 +08:00
|
|
|
where D: Deref<Target=DB>
|
|
|
|
{
|
2018-12-11 03:14:16 +08:00
|
|
|
inner: QueryBuilder<'a, D>,
|
2018-11-28 02:11:33 +08:00
|
|
|
function: F,
|
|
|
|
size: usize,
|
|
|
|
}
|
2018-10-17 19:35:34 +08:00
|
|
|
|
2018-12-11 03:14:16 +08:00
|
|
|
impl<'a, D, F, K> DistinctQueryBuilder<'a, D, F>
|
2018-12-08 00:59:03 +08:00
|
|
|
where D: Deref<Target=DB>,
|
|
|
|
F: Fn(DocumentId, &DatabaseView<D>) -> Option<K>,
|
2018-11-29 00:12:24 +08:00
|
|
|
K: Hash + Eq,
|
2018-11-28 02:11:33 +08:00
|
|
|
{
|
2018-11-29 00:12:24 +08:00
|
|
|
pub fn query(&self, query: &str, range: Range<usize>) -> Vec<Document> {
|
|
|
|
let mut documents = self.inner.query_all(query);
|
|
|
|
let mut groups = vec![documents.as_mut_slice()];
|
2018-12-07 21:41:06 +08:00
|
|
|
let view = &self.inner.view;
|
2018-10-17 19:35:34 +08:00
|
|
|
|
2018-12-11 03:14:16 +08:00
|
|
|
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-10-17 19:35:34 +08:00
|
|
|
|
2018-11-29 00:12:24 +08:00
|
|
|
for group in tmp_groups {
|
2018-12-07 21:41:06 +08:00
|
|
|
group.sort_unstable_by(|a, b| criterion.evaluate(a, b, view));
|
|
|
|
for group in GroupByMut::new(group, |a, b| criterion.eq(a, b, view)) {
|
2018-11-29 00:12:24 +08:00
|
|
|
groups.push(group);
|
|
|
|
}
|
|
|
|
}
|
2018-10-18 21:08:04 +08:00
|
|
|
}
|
|
|
|
|
2018-11-29 00:12:24 +08:00
|
|
|
let mut out_documents = Vec::with_capacity(range.len());
|
|
|
|
let mut seen = DistinctMap::new(self.size);
|
2018-10-17 19:35:34 +08:00
|
|
|
|
2018-11-29 00:12:24 +08:00
|
|
|
for document in documents {
|
2018-12-07 21:41:06 +08:00
|
|
|
let accepted = match (self.function)(document.id, &self.inner.view) {
|
2018-11-29 00:12:24 +08:00
|
|
|
Some(key) => seen.digest(key),
|
|
|
|
None => seen.accept_without_key(),
|
|
|
|
};
|
2018-10-17 19:35:34 +08:00
|
|
|
|
2018-11-29 00:12:24 +08:00
|
|
|
if accepted {
|
|
|
|
if seen.len() == range.end { break }
|
|
|
|
if seen.len() >= range.start {
|
|
|
|
out_documents.push(document);
|
|
|
|
}
|
|
|
|
}
|
2018-10-17 19:35:34 +08:00
|
|
|
}
|
|
|
|
|
2018-11-29 00:12:24 +08:00
|
|
|
out_documents
|
2018-10-11 20:04:41 +08:00
|
|
|
}
|
2018-10-10 22:57:21 +08:00
|
|
|
}
|