2018-07-07 20:43:29 +08:00
|
|
|
use std::cmp::{self, Ordering};
|
2018-12-08 00:59:03 +08:00
|
|
|
use std::ops::Deref;
|
2018-12-07 21:41:06 +08:00
|
|
|
|
2018-12-08 00:59:03 +08:00
|
|
|
use rocksdb::DB;
|
2018-12-07 21:41:06 +08:00
|
|
|
|
2019-01-06 18:11:55 +08:00
|
|
|
use crate::rank::{Document, Matches};
|
2018-10-11 20:04:41 +08:00
|
|
|
use crate::rank::criterion::Criterion;
|
2018-12-07 21:41:06 +08:00
|
|
|
use crate::database::DatabaseView;
|
|
|
|
use crate::Match;
|
2018-07-07 20:43:29 +08:00
|
|
|
|
|
|
|
const MAX_DISTANCE: u32 = 8;
|
|
|
|
|
|
|
|
fn index_proximity(lhs: u32, rhs: u32) -> u32 {
|
|
|
|
if lhs < rhs {
|
|
|
|
cmp::min(rhs - lhs, MAX_DISTANCE)
|
|
|
|
} else {
|
|
|
|
cmp::min(lhs - rhs, MAX_DISTANCE) + 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn attribute_proximity(lhs: &Match, rhs: &Match) -> u32 {
|
2018-12-23 23:46:49 +08:00
|
|
|
if lhs.attribute.attribute() != rhs.attribute.attribute() { return MAX_DISTANCE }
|
|
|
|
index_proximity(lhs.attribute.word_index(), rhs.attribute.word_index())
|
2018-07-07 20:43:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
fn min_proximity(lhs: &[Match], rhs: &[Match]) -> u32 {
|
|
|
|
let mut min_prox = u32::max_value();
|
|
|
|
for a in lhs {
|
|
|
|
for b in rhs {
|
|
|
|
min_prox = cmp::min(min_prox, attribute_proximity(a, b));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
min_prox
|
|
|
|
}
|
|
|
|
|
2019-01-06 18:11:55 +08:00
|
|
|
fn matches_proximity(matches: &Matches) -> u32 {
|
2018-07-07 20:43:29 +08:00
|
|
|
let mut proximity = 0;
|
2019-01-06 18:11:55 +08:00
|
|
|
let mut iter = matches.query_index_groups();
|
2018-07-07 20:43:29 +08:00
|
|
|
|
|
|
|
// iterate over groups by windows of size 2
|
|
|
|
let mut last = iter.next();
|
|
|
|
while let (Some(lhs), Some(rhs)) = (last, iter.next()) {
|
|
|
|
proximity += min_proximity(lhs, rhs);
|
|
|
|
last = Some(rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
proximity
|
|
|
|
}
|
|
|
|
|
2018-10-11 20:04:41 +08:00
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
|
|
pub struct WordsProximity;
|
|
|
|
|
2018-12-08 00:59:03 +08:00
|
|
|
impl<D> Criterion<D> for WordsProximity
|
|
|
|
where D: Deref<Target=DB>
|
|
|
|
{
|
|
|
|
fn evaluate(&self, lhs: &Document, rhs: &Document, _: &DatabaseView<D>) -> Ordering {
|
2018-10-11 20:04:41 +08:00
|
|
|
let lhs = matches_proximity(&lhs.matches);
|
|
|
|
let rhs = matches_proximity(&rhs.matches);
|
|
|
|
|
|
|
|
lhs.cmp(&rhs)
|
|
|
|
}
|
2018-07-07 20:43:29 +08:00
|
|
|
}
|
|
|
|
|
2018-10-11 20:04:41 +08:00
|
|
|
|
2018-07-07 20:43:29 +08:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
2018-12-23 23:46:49 +08:00
|
|
|
use crate::Attribute;
|
|
|
|
|
2018-07-07 20:43:29 +08:00
|
|
|
#[test]
|
|
|
|
fn three_different_attributes() {
|
|
|
|
|
|
|
|
// "soup" "of the" "the day"
|
|
|
|
//
|
|
|
|
// { id: 0, attr: 0, attr_index: 0 }
|
|
|
|
// { id: 1, attr: 1, attr_index: 0 }
|
|
|
|
// { id: 2, attr: 1, attr_index: 1 }
|
|
|
|
// { id: 2, attr: 2, attr_index: 0 }
|
|
|
|
// { id: 3, attr: 3, attr_index: 1 }
|
|
|
|
|
|
|
|
let matches = &[
|
2018-12-28 23:15:22 +08:00
|
|
|
Match { query_index: 0, attribute: Attribute::new_faillible(0, 0), ..Match::zero() },
|
|
|
|
Match { query_index: 1, attribute: Attribute::new_faillible(1, 0), ..Match::zero() },
|
|
|
|
Match { query_index: 2, attribute: Attribute::new_faillible(1, 1), ..Match::zero() },
|
|
|
|
Match { query_index: 2, attribute: Attribute::new_faillible(2, 0), ..Match::zero() },
|
|
|
|
Match { query_index: 3, attribute: Attribute::new_faillible(3, 1), ..Match::zero() },
|
2018-07-07 20:43:29 +08:00
|
|
|
];
|
|
|
|
|
|
|
|
// soup -> of = 8
|
|
|
|
// + of -> the = 1
|
|
|
|
// + the -> day = 8 (not 1)
|
2019-01-06 18:23:21 +08:00
|
|
|
let matches = Matches::from_unsorted(matches.to_vec());
|
|
|
|
assert_eq!(matches_proximity(&matches), 17);
|
2018-07-07 20:43:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn two_different_attributes() {
|
|
|
|
|
|
|
|
// "soup day" "soup of the day"
|
|
|
|
//
|
|
|
|
// { id: 0, attr: 0, attr_index: 0 }
|
|
|
|
// { id: 0, attr: 1, attr_index: 0 }
|
|
|
|
// { id: 1, attr: 1, attr_index: 1 }
|
|
|
|
// { id: 2, attr: 1, attr_index: 2 }
|
|
|
|
// { id: 3, attr: 0, attr_index: 1 }
|
|
|
|
// { id: 3, attr: 1, attr_index: 3 }
|
|
|
|
|
|
|
|
let matches = &[
|
2018-12-28 23:15:22 +08:00
|
|
|
Match { query_index: 0, attribute: Attribute::new_faillible(0, 0), ..Match::zero() },
|
|
|
|
Match { query_index: 0, attribute: Attribute::new_faillible(1, 0), ..Match::zero() },
|
|
|
|
Match { query_index: 1, attribute: Attribute::new_faillible(1, 1), ..Match::zero() },
|
|
|
|
Match { query_index: 2, attribute: Attribute::new_faillible(1, 2), ..Match::zero() },
|
|
|
|
Match { query_index: 3, attribute: Attribute::new_faillible(0, 1), ..Match::zero() },
|
|
|
|
Match { query_index: 3, attribute: Attribute::new_faillible(1, 3), ..Match::zero() },
|
2018-07-07 20:43:29 +08:00
|
|
|
];
|
|
|
|
|
|
|
|
// soup -> of = 1
|
|
|
|
// + of -> the = 1
|
|
|
|
// + the -> day = 1
|
2019-01-06 18:23:21 +08:00
|
|
|
let matches = Matches::from_unsorted(matches.to_vec());
|
|
|
|
assert_eq!(matches_proximity(&matches), 3);
|
2018-07-07 20:43:29 +08:00
|
|
|
}
|
|
|
|
}
|
2018-12-30 20:04:22 +08:00
|
|
|
|
|
|
|
#[cfg(all(feature = "nightly", test))]
|
|
|
|
mod bench {
|
|
|
|
extern crate test;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
use std::error::Error;
|
|
|
|
use self::test::Bencher;
|
|
|
|
|
|
|
|
use rand_xorshift::XorShiftRng;
|
|
|
|
use rand::{Rng, SeedableRng};
|
|
|
|
|
|
|
|
use crate::Attribute;
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
fn evaluate_proximity(bench: &mut Bencher) -> Result<(), Box<Error>> {
|
|
|
|
let number_matches = 30_000;
|
|
|
|
let mut matches = Vec::with_capacity(number_matches);
|
|
|
|
let mut rng = XorShiftRng::seed_from_u64(42);
|
|
|
|
|
|
|
|
for _ in 0..number_matches {
|
|
|
|
let query_index = rng.gen_range(0, 4);
|
|
|
|
|
|
|
|
let attribute = rng.gen_range(0, 5);
|
|
|
|
let word_index = rng.gen_range(0, 15);
|
|
|
|
let attribute = Attribute::new_faillible(attribute, word_index);
|
|
|
|
|
|
|
|
let match_ = Match { query_index, attribute, ..Match::zero() };
|
|
|
|
matches.push(match_);
|
|
|
|
}
|
|
|
|
|
2019-01-06 18:23:21 +08:00
|
|
|
let matches = Matches::from_unsorted(matches.to_vec());
|
|
|
|
|
2018-12-30 20:04:22 +08:00
|
|
|
bench.iter(|| {
|
|
|
|
let proximity = matches_proximity(&matches);
|
|
|
|
test::black_box(move || proximity)
|
|
|
|
});
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|