2018-07-07 14:43:29 +02:00
|
|
|
use std::cmp::Ordering;
|
2018-12-07 17:59:03 +01:00
|
|
|
use std::ops::Deref;
|
2018-12-07 14:41:06 +01:00
|
|
|
|
2018-12-07 17:59:03 +01:00
|
|
|
use rocksdb::DB;
|
2018-07-07 14:43:29 +02:00
|
|
|
use group_by::GroupBy;
|
2018-12-07 14:41:06 +01:00
|
|
|
|
2018-09-09 11:13:58 +02:00
|
|
|
use crate::rank::{match_query_index, Document};
|
2018-10-11 14:04:41 +02:00
|
|
|
use crate::rank::criterion::Criterion;
|
2018-12-07 14:41:06 +01:00
|
|
|
use crate::database::DatabaseView;
|
|
|
|
use crate::Match;
|
2018-07-07 14:43:29 +02:00
|
|
|
|
2018-08-25 13:15:04 +02:00
|
|
|
#[inline]
|
|
|
|
fn number_of_query_words(matches: &[Match]) -> usize {
|
|
|
|
GroupBy::new(matches, match_query_index).count()
|
|
|
|
}
|
|
|
|
|
2018-10-11 14:04:41 +02:00
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
|
|
pub struct NumberOfWords;
|
|
|
|
|
2018-12-07 17:59:03 +01:00
|
|
|
impl<D> Criterion<D> for NumberOfWords
|
|
|
|
where D: Deref<Target=DB>
|
|
|
|
{
|
|
|
|
fn evaluate(&self, lhs: &Document, rhs: &Document, _: &DatabaseView<D>) -> Ordering {
|
2018-10-11 14:04:41 +02:00
|
|
|
let lhs = number_of_query_words(&lhs.matches);
|
|
|
|
let rhs = number_of_query_words(&rhs.matches);
|
2018-07-07 14:43:29 +02:00
|
|
|
|
2018-10-11 14:04:41 +02:00
|
|
|
lhs.cmp(&rhs).reverse()
|
|
|
|
}
|
2018-07-07 14:43:29 +02:00
|
|
|
}
|