2020-11-27 16:10:40 +01:00
|
|
|
use std::ops::Bound::{self, Included, Excluded, Unbounded};
|
|
|
|
|
2020-11-28 14:52:50 +01:00
|
|
|
use either::Either::{self, Left, Right};
|
|
|
|
use heed::types::{DecodeIgnore, ByteSlice};
|
|
|
|
use heed::{Database, RoRange, RoRevRange, LazyDecode};
|
2020-11-27 16:10:40 +01:00
|
|
|
use roaring::RoaringBitmap;
|
|
|
|
|
|
|
|
use crate::heed_codec::CboRoaringBitmapCodec;
|
2021-04-07 11:57:16 +02:00
|
|
|
use crate::heed_codec::facet::FacetLevelValueF64Codec;
|
2020-11-27 16:10:40 +01:00
|
|
|
use crate::{Index, FieldId};
|
|
|
|
|
|
|
|
pub use self::facet_condition::{FacetCondition, FacetNumberOperator, FacetStringOperator};
|
2020-12-28 19:08:53 +01:00
|
|
|
pub use self::facet_distribution::FacetDistribution;
|
2020-11-27 16:10:40 +01:00
|
|
|
|
2020-11-26 20:42:54 +01:00
|
|
|
mod facet_condition;
|
2020-12-28 19:08:53 +01:00
|
|
|
mod facet_distribution;
|
2020-11-21 13:09:49 +01:00
|
|
|
mod parser;
|
|
|
|
|
2021-04-07 11:57:16 +02:00
|
|
|
pub struct FacetRange<'t> {
|
|
|
|
iter: RoRange<'t, FacetLevelValueF64Codec, LazyDecode<CboRoaringBitmapCodec>>,
|
|
|
|
end: Bound<f64>,
|
2020-11-27 16:10:40 +01:00
|
|
|
}
|
|
|
|
|
2021-04-07 11:57:16 +02:00
|
|
|
impl<'t> FacetRange<'t> {
|
2020-12-28 19:08:53 +01:00
|
|
|
pub fn new(
|
2020-11-27 16:10:40 +01:00
|
|
|
rtxn: &'t heed::RoTxn,
|
2021-04-07 11:57:16 +02:00
|
|
|
db: Database<FacetLevelValueF64Codec, CboRoaringBitmapCodec>,
|
2020-11-27 16:10:40 +01:00
|
|
|
field_id: FieldId,
|
|
|
|
level: u8,
|
2021-04-07 11:57:16 +02:00
|
|
|
left: Bound<f64>,
|
|
|
|
right: Bound<f64>,
|
|
|
|
) -> heed::Result<FacetRange<'t>>
|
2020-11-27 16:10:40 +01:00
|
|
|
{
|
|
|
|
let left_bound = match left {
|
2021-04-07 11:57:16 +02:00
|
|
|
Included(left) => Included((field_id, level, left, f64::MIN)),
|
|
|
|
Excluded(left) => Excluded((field_id, level, left, f64::MIN)),
|
|
|
|
Unbounded => Included((field_id, level, f64::MIN, f64::MIN)),
|
2020-11-27 16:10:40 +01:00
|
|
|
};
|
2021-04-07 11:57:16 +02:00
|
|
|
let right_bound = Included((field_id, level, f64::MAX, f64::MAX));
|
2020-11-27 16:10:40 +01:00
|
|
|
let iter = db.lazily_decode_data().range(rtxn, &(left_bound, right_bound))?;
|
|
|
|
Ok(FacetRange { iter, end: right })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-07 11:57:16 +02:00
|
|
|
impl<'t> Iterator for FacetRange<'t> {
|
|
|
|
type Item = heed::Result<((FieldId, u8, f64, f64), RoaringBitmap)>;
|
2020-11-27 16:10:40 +01:00
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
|
|
match self.iter.next() {
|
|
|
|
Some(Ok(((fid, level, left, right), docids))) => {
|
|
|
|
let must_be_returned = match self.end {
|
|
|
|
Included(end) => right <= end,
|
|
|
|
Excluded(end) => right < end,
|
|
|
|
Unbounded => true,
|
|
|
|
};
|
|
|
|
if must_be_returned {
|
|
|
|
match docids.decode() {
|
|
|
|
Ok(docids) => Some(Ok(((fid, level, left, right), docids))),
|
|
|
|
Err(e) => Some(Err(e)),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Some(Err(e)) => Some(Err(e)),
|
|
|
|
None => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-07 11:57:16 +02:00
|
|
|
pub struct FacetRevRange<'t> {
|
|
|
|
iter: RoRevRange<'t, FacetLevelValueF64Codec, LazyDecode<CboRoaringBitmapCodec>>,
|
|
|
|
end: Bound<f64>,
|
2020-11-28 14:52:50 +01:00
|
|
|
}
|
|
|
|
|
2021-04-07 11:57:16 +02:00
|
|
|
impl<'t> FacetRevRange<'t> {
|
2020-12-28 19:08:53 +01:00
|
|
|
pub fn new(
|
2020-11-28 14:52:50 +01:00
|
|
|
rtxn: &'t heed::RoTxn,
|
2021-04-07 11:57:16 +02:00
|
|
|
db: Database<FacetLevelValueF64Codec, CboRoaringBitmapCodec>,
|
2020-11-28 14:52:50 +01:00
|
|
|
field_id: FieldId,
|
|
|
|
level: u8,
|
2021-04-07 11:57:16 +02:00
|
|
|
left: Bound<f64>,
|
|
|
|
right: Bound<f64>,
|
|
|
|
) -> heed::Result<FacetRevRange<'t>>
|
2020-11-28 14:52:50 +01:00
|
|
|
{
|
|
|
|
let left_bound = match left {
|
2021-04-07 11:57:16 +02:00
|
|
|
Included(left) => Included((field_id, level, left, f64::MIN)),
|
|
|
|
Excluded(left) => Excluded((field_id, level, left, f64::MIN)),
|
|
|
|
Unbounded => Included((field_id, level, f64::MIN, f64::MIN)),
|
2020-11-28 14:52:50 +01:00
|
|
|
};
|
2021-04-07 11:57:16 +02:00
|
|
|
let right_bound = Included((field_id, level, f64::MAX, f64::MAX));
|
2020-11-28 14:52:50 +01:00
|
|
|
let iter = db.lazily_decode_data().rev_range(rtxn, &(left_bound, right_bound))?;
|
|
|
|
Ok(FacetRevRange { iter, end: right })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-07 11:57:16 +02:00
|
|
|
impl<'t> Iterator for FacetRevRange<'t> {
|
|
|
|
type Item = heed::Result<((FieldId, u8, f64, f64), RoaringBitmap)>;
|
2020-11-28 14:52:50 +01:00
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
|
|
loop {
|
|
|
|
match self.iter.next() {
|
|
|
|
Some(Ok(((fid, level, left, right), docids))) => {
|
|
|
|
let must_be_returned = match self.end {
|
|
|
|
Included(end) => right <= end,
|
|
|
|
Excluded(end) => right < end,
|
|
|
|
Unbounded => true,
|
|
|
|
};
|
|
|
|
if must_be_returned {
|
|
|
|
match docids.decode() {
|
|
|
|
Ok(docids) => return Some(Ok(((fid, level, left, right), docids))),
|
|
|
|
Err(e) => return Some(Err(e)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
},
|
|
|
|
Some(Err(e)) => return Some(Err(e)),
|
|
|
|
None => return None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-07 11:57:16 +02:00
|
|
|
pub struct FacetIter<'t> {
|
2020-11-27 16:10:40 +01:00
|
|
|
rtxn: &'t heed::RoTxn<'t>,
|
2021-04-07 11:57:16 +02:00
|
|
|
db: Database<FacetLevelValueF64Codec, CboRoaringBitmapCodec>,
|
2020-11-27 16:10:40 +01:00
|
|
|
field_id: FieldId,
|
2021-04-07 11:57:16 +02:00
|
|
|
level_iters: Vec<(RoaringBitmap, Either<FacetRange<'t>, FacetRevRange<'t>>)>,
|
2021-01-06 15:10:30 +01:00
|
|
|
must_reduce: bool,
|
2020-11-27 16:10:40 +01:00
|
|
|
}
|
|
|
|
|
2021-04-07 11:57:16 +02:00
|
|
|
impl<'t> FacetIter<'t> {
|
2021-01-06 15:10:30 +01:00
|
|
|
/// Create a `FacetIter` that will iterate on the different facet entries
|
|
|
|
/// (facet value + documents ids) and that will reduce the given documents ids
|
|
|
|
/// while iterating on the different facet levels.
|
|
|
|
pub fn new_reducing(
|
2020-11-27 16:10:40 +01:00
|
|
|
rtxn: &'t heed::RoTxn,
|
|
|
|
index: &'t Index,
|
|
|
|
field_id: FieldId,
|
|
|
|
documents_ids: RoaringBitmap,
|
2021-04-07 11:57:16 +02:00
|
|
|
) -> heed::Result<FacetIter<'t>>
|
2020-11-27 16:10:40 +01:00
|
|
|
{
|
2021-04-07 11:57:16 +02:00
|
|
|
let db = index.facet_field_id_value_docids.remap_key_type::<FacetLevelValueF64Codec>();
|
2020-11-28 14:52:50 +01:00
|
|
|
let highest_level = Self::highest_level(rtxn, db, field_id)?.unwrap_or(0);
|
|
|
|
let highest_iter = FacetRange::new(rtxn, db, field_id, highest_level, Unbounded, Unbounded)?;
|
2021-01-06 15:10:30 +01:00
|
|
|
let level_iters = vec![(documents_ids, Left(highest_iter))];
|
|
|
|
Ok(FacetIter { rtxn, db, field_id, level_iters, must_reduce: true })
|
2020-11-28 14:52:50 +01:00
|
|
|
}
|
|
|
|
|
2021-01-06 15:10:30 +01:00
|
|
|
/// Create a `FacetIter` that will iterate on the different facet entries in reverse
|
|
|
|
/// (facet value + documents ids) and that will reduce the given documents ids
|
|
|
|
/// while iterating on the different facet levels.
|
|
|
|
pub fn new_reverse_reducing(
|
2020-11-28 14:52:50 +01:00
|
|
|
rtxn: &'t heed::RoTxn,
|
|
|
|
index: &'t Index,
|
|
|
|
field_id: FieldId,
|
|
|
|
documents_ids: RoaringBitmap,
|
2021-04-07 11:57:16 +02:00
|
|
|
) -> heed::Result<FacetIter<'t>>
|
2020-11-28 14:52:50 +01:00
|
|
|
{
|
2021-04-07 11:57:16 +02:00
|
|
|
let db = index.facet_field_id_value_docids.remap_key_type::<FacetLevelValueF64Codec>();
|
2020-11-28 14:52:50 +01:00
|
|
|
let highest_level = Self::highest_level(rtxn, db, field_id)?.unwrap_or(0);
|
|
|
|
let highest_iter = FacetRevRange::new(rtxn, db, field_id, highest_level, Unbounded, Unbounded)?;
|
2021-01-06 15:10:30 +01:00
|
|
|
let level_iters = vec![(documents_ids, Right(highest_iter))];
|
|
|
|
Ok(FacetIter { rtxn, db, field_id, level_iters, must_reduce: true })
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a `FacetIter` that will iterate on the different facet entries
|
|
|
|
/// (facet value + documents ids) and that will not reduce the given documents ids
|
|
|
|
/// while iterating on the different facet levels, possibly returning multiple times
|
|
|
|
/// a document id associated with multiple facet values.
|
|
|
|
pub fn new_non_reducing(
|
|
|
|
rtxn: &'t heed::RoTxn,
|
|
|
|
index: &'t Index,
|
|
|
|
field_id: FieldId,
|
|
|
|
documents_ids: RoaringBitmap,
|
2021-04-07 11:57:16 +02:00
|
|
|
) -> heed::Result<FacetIter<'t>>
|
2021-01-06 15:10:30 +01:00
|
|
|
{
|
2021-04-07 11:57:16 +02:00
|
|
|
let db = index.facet_field_id_value_docids.remap_key_type::<FacetLevelValueF64Codec>();
|
2021-01-06 15:10:30 +01:00
|
|
|
let highest_level = Self::highest_level(rtxn, db, field_id)?.unwrap_or(0);
|
|
|
|
let highest_iter = FacetRange::new(rtxn, db, field_id, highest_level, Unbounded, Unbounded)?;
|
|
|
|
let level_iters = vec![(documents_ids, Left(highest_iter))];
|
|
|
|
Ok(FacetIter { rtxn, db, field_id, level_iters, must_reduce: false })
|
2020-11-28 14:52:50 +01:00
|
|
|
}
|
|
|
|
|
2021-04-07 11:57:16 +02:00
|
|
|
fn highest_level<X>(
|
|
|
|
rtxn: &'t heed::RoTxn,
|
|
|
|
db: Database<FacetLevelValueF64Codec, X>,
|
|
|
|
fid: FieldId,
|
|
|
|
) -> heed::Result<Option<u8>>
|
|
|
|
{
|
2020-11-28 14:52:50 +01:00
|
|
|
let level = db.remap_types::<ByteSlice, DecodeIgnore>()
|
|
|
|
.prefix_iter(rtxn, &[fid][..])?
|
2021-04-07 11:57:16 +02:00
|
|
|
.remap_key_type::<FacetLevelValueF64Codec>()
|
2020-11-28 14:52:50 +01:00
|
|
|
.last().transpose()?
|
|
|
|
.map(|((_, level, _, _), _)| level);
|
|
|
|
Ok(level)
|
2020-11-27 16:10:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-07 11:57:16 +02:00
|
|
|
impl<'t> Iterator for FacetIter<'t> {
|
|
|
|
type Item = heed::Result<(f64, RoaringBitmap)>;
|
2020-11-27 16:10:40 +01:00
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
2020-11-28 14:52:50 +01:00
|
|
|
'outer: loop {
|
|
|
|
let (documents_ids, last) = self.level_iters.last_mut()?;
|
|
|
|
let is_ascending = last.is_left();
|
2020-11-27 16:10:40 +01:00
|
|
|
for result in last {
|
2020-11-28 14:52:50 +01:00
|
|
|
// If the last iterator must find an empty set of documents it means
|
|
|
|
// that we found all the documents in the sub level iterations already,
|
|
|
|
// we can pop this level iterator.
|
|
|
|
if documents_ids.is_empty() {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-11-27 16:10:40 +01:00
|
|
|
match result {
|
|
|
|
Ok(((_fid, level, left, right), mut docids)) => {
|
2020-11-28 14:52:50 +01:00
|
|
|
|
|
|
|
docids.intersect_with(&documents_ids);
|
|
|
|
if !docids.is_empty() {
|
2021-01-06 15:10:30 +01:00
|
|
|
if self.must_reduce {
|
|
|
|
documents_ids.difference_with(&docids);
|
|
|
|
}
|
2020-11-28 14:52:50 +01:00
|
|
|
|
|
|
|
if level == 0 {
|
2020-11-27 16:10:40 +01:00
|
|
|
return Some(Ok((left, docids)));
|
|
|
|
}
|
2020-11-28 14:52:50 +01:00
|
|
|
|
|
|
|
let rtxn = self.rtxn;
|
|
|
|
let db = self.db;
|
|
|
|
let fid = self.field_id;
|
|
|
|
let left = Included(left);
|
|
|
|
let right = Included(right);
|
|
|
|
|
|
|
|
let result = if is_ascending {
|
|
|
|
FacetRange::new(rtxn, db, fid, level - 1, left, right).map(Left)
|
|
|
|
} else {
|
|
|
|
FacetRevRange::new(rtxn, db, fid, level - 1, left, right).map(Right)
|
|
|
|
};
|
|
|
|
|
2020-11-27 16:10:40 +01:00
|
|
|
match result {
|
|
|
|
Ok(iter) => {
|
2020-11-28 14:52:50 +01:00
|
|
|
self.level_iters.push((docids, iter));
|
|
|
|
continue 'outer;
|
2020-11-27 16:10:40 +01:00
|
|
|
},
|
|
|
|
Err(e) => return Some(Err(e)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Err(e) => return Some(Err(e)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self.level_iters.pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|