surrealpatch/lib/src/idx/planner/tree.rs

221 lines
5.1 KiB
Rust
Raw Normal View History

use crate::dbs::{Options, Transaction};
use crate::err::Error;
2023-06-21 18:31:15 +00:00
use crate::idx::ft::MatchRef;
use crate::idx::planner::plan::IndexOption;
2023-06-21 18:31:15 +00:00
use crate::sql::index::Index;
use crate::sql::statements::DefineIndexStatement;
use crate::sql::{Cond, Expression, Idiom, Operator, Subquery, Table, Value};
use async_recursion::async_recursion;
use std::collections::hash_map::Entry;
use std::collections::{HashMap, HashSet};
use std::sync::Arc;
2023-06-21 18:31:15 +00:00
#[derive(Default)]
pub(super) struct IndexMap {
pub(super) index: HashMap<Expression, HashSet<IndexOption>>,
pub(super) terms: HashMap<MatchRef, IndexFieldValue>,
}
pub(super) struct IndexFieldValue {
pub(super) ix: String,
pub(super) id: Idiom,
pub(super) val: String,
}
2023-06-21 18:31:15 +00:00
pub(super) struct Tree {}
impl Tree {
pub(super) async fn build<'a>(
opt: &'a Options,
txn: &'a Transaction,
table: &'a Table,
cond: &Option<Cond>,
) -> Result<Option<(Node, IndexMap)>, Error> {
let mut b = TreeBuilder {
opt,
txn,
table,
indexes: None,
index_map: IndexMap::default(),
};
let mut res = None;
if let Some(cond) = cond {
res = Some((b.eval_value(&cond.0).await?, b.index_map));
}
Ok(res)
}
}
struct TreeBuilder<'a> {
opt: &'a Options,
txn: &'a Transaction,
table: &'a Table,
indexes: Option<Arc<[DefineIndexStatement]>>,
index_map: IndexMap,
}
impl<'a> TreeBuilder<'a> {
async fn find_index(&mut self, i: &Idiom) -> Result<Option<DefineIndexStatement>, Error> {
if self.indexes.is_none() {
let indexes = self
.txn
.clone()
.lock()
.await
.all_ix(self.opt.ns(), self.opt.db(), &self.table.0)
.await?;
self.indexes = Some(indexes);
}
if let Some(indexes) = &self.indexes {
for ix in indexes.as_ref() {
if ix.cols.len() == 1 && ix.cols[0].eq(i) {
return Ok(Some(ix.clone()));
}
}
}
Ok(None)
}
#[cfg_attr(not(target_arch = "wasm32"), async_recursion)]
#[cfg_attr(target_arch = "wasm32", async_recursion(?Send))]
async fn eval_value(&mut self, v: &Value) -> Result<Node, Error> {
Ok(match v {
Value::Expression(e) => self.eval_expression(e).await?,
Value::Idiom(i) => self.eval_idiom(i).await?,
Value::Strand(_) => Node::Scalar(v.to_owned()),
Value::Number(_) => Node::Scalar(v.to_owned()),
Value::Bool(_) => Node::Scalar(v.to_owned()),
Value::Subquery(s) => self.eval_subquery(s).await?,
_ => Node::Unsupported,
})
}
async fn eval_idiom(&mut self, i: &Idiom) -> Result<Node, Error> {
Ok(if let Some(ix) = self.find_index(i).await? {
2023-06-21 18:31:15 +00:00
Node::IndexedField(i.to_owned(), ix)
} else {
Node::NonIndexedField
})
}
async fn eval_expression(&mut self, e: &Expression) -> Result<Node, Error> {
2023-06-20 23:31:23 +00:00
match e {
Expression::Unary {
..
2023-06-21 07:45:39 +00:00
} => Err(Error::FeatureNotYetImplemented {
feature: "unary expressions in index",
}),
2023-06-20 23:31:23 +00:00
Expression::Binary {
l,
o,
r,
} => {
let left = self.eval_value(l).await?;
let right = self.eval_value(r).await?;
let mut index_option = None;
2023-06-21 18:31:15 +00:00
if let Some((id, ix)) = left.is_indexed_field() {
index_option = self.lookup_index_option(ix, o, id, &right, e);
} else if let Some((id, ix)) = right.is_indexed_field() {
index_option = self.lookup_index_option(ix, o, id, &left, e);
};
2023-06-20 23:31:23 +00:00
Ok(Node::Expression {
index_option,
left: Box::new(left),
right: Box::new(right),
operator: o.to_owned(),
})
}
}
}
2023-06-21 18:31:15 +00:00
fn lookup_index_option(
&mut self,
ix: &DefineIndexStatement,
op: &Operator,
id: &Idiom,
v: &Node,
ep: &Expression,
) -> Option<IndexOption> {
if let Some(v) = v.is_scalar() {
if match &ix.index {
Index::Idx => Operator::Equal.eq(op),
Index::Uniq => Operator::Equal.eq(op),
Index::Search {
..
} => {
if let Operator::Matches(mr) = op {
if let Some(mr) = mr {
self.index_map.terms.insert(
*mr,
IndexFieldValue {
ix: ix.name.0.to_owned(),
id: id.to_owned(),
val: v.to_raw_string(),
},
);
}
true
} else {
false
}
}
} {
let io = IndexOption::new(ix.clone(), op.to_owned(), v.clone(), ep.clone());
self.add_index(ep, io.clone());
return Some(io);
}
}
None
}
fn add_index(&mut self, e: &Expression, io: IndexOption) {
2023-06-21 18:31:15 +00:00
match self.index_map.index.entry(e.clone()) {
Entry::Occupied(mut e) => {
e.get_mut().insert(io);
}
Entry::Vacant(e) => {
e.insert(HashSet::from([io]));
}
}
}
async fn eval_subquery(&mut self, s: &Subquery) -> Result<Node, Error> {
Ok(match s {
Subquery::Value(v) => self.eval_value(v).await?,
_ => Node::Unsupported,
})
}
}
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub(super) enum Node {
Expression {
index_option: Option<IndexOption>,
left: Box<Node>,
right: Box<Node>,
operator: Operator,
},
2023-06-21 18:31:15 +00:00
IndexedField(Idiom, DefineIndexStatement),
NonIndexedField,
Scalar(Value),
Unsupported,
}
impl Node {
pub(super) fn is_scalar(&self) -> Option<&Value> {
if let Node::Scalar(v) = self {
Some(v)
} else {
None
}
}
2023-06-21 18:31:15 +00:00
pub(super) fn is_indexed_field(&self) -> Option<(&Idiom, &DefineIndexStatement)> {
if let Node::IndexedField(id, ix) = self {
Some((id, ix))
} else {
None
}
}
}