2017-03-06 22:40:10 +00:00
|
|
|
// Copyright 2016 Mozilla
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
|
|
// this file except in compliance with the License. You may obtain a copy of the
|
|
|
|
// License at http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
// Unless required by applicable law or agreed to in writing, software distributed
|
|
|
|
// under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
|
|
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
|
|
// specific language governing permissions and limitations under the License.
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate error_chain;
|
2018-03-12 22:18:50 +00:00
|
|
|
extern crate indexmap;
|
2017-03-06 22:40:10 +00:00
|
|
|
extern crate rusqlite;
|
|
|
|
|
|
|
|
extern crate mentat_core;
|
|
|
|
extern crate mentat_db; // For value conversion.
|
|
|
|
extern crate mentat_query;
|
|
|
|
extern crate mentat_query_algebrizer;
|
|
|
|
extern crate mentat_query_sql;
|
|
|
|
extern crate mentat_sql;
|
|
|
|
|
2018-03-06 17:01:20 +00:00
|
|
|
use std::collections::{
|
|
|
|
BTreeSet,
|
|
|
|
};
|
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
use std::iter;
|
2018-03-12 22:18:50 +00:00
|
|
|
|
2018-01-30 22:11:41 +00:00
|
|
|
use std::rc::Rc;
|
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
use rusqlite::{
|
|
|
|
Row,
|
|
|
|
Rows,
|
|
|
|
};
|
|
|
|
|
|
|
|
use mentat_core::{
|
|
|
|
TypedValue,
|
2017-06-07 17:59:25 +00:00
|
|
|
ValueType,
|
2017-11-30 23:02:07 +00:00
|
|
|
ValueTypeTag,
|
2017-03-06 22:40:10 +00:00
|
|
|
};
|
|
|
|
|
2018-03-06 17:01:20 +00:00
|
|
|
use mentat_core::util::{
|
|
|
|
Either,
|
|
|
|
};
|
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
use mentat_db::{
|
|
|
|
TypedSQLValue,
|
|
|
|
};
|
|
|
|
|
|
|
|
use mentat_query::{
|
|
|
|
Element,
|
|
|
|
FindSpec,
|
2017-04-19 23:16:19 +00:00
|
|
|
Limit,
|
2017-04-17 16:23:55 +00:00
|
|
|
Variable,
|
2017-03-06 22:40:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
use mentat_query_algebrizer::{
|
|
|
|
AlgebraicQuery,
|
2018-03-06 17:01:20 +00:00
|
|
|
VariableBindings,
|
2017-03-06 22:40:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
use mentat_query_sql::{
|
2018-03-12 22:18:50 +00:00
|
|
|
GroupBy,
|
2017-03-06 22:40:10 +00:00
|
|
|
Projection,
|
|
|
|
};
|
|
|
|
|
2018-03-30 19:19:02 +00:00
|
|
|
mod aggregates;
|
|
|
|
mod project;
|
2018-04-24 22:04:00 +00:00
|
|
|
mod relresult;
|
2018-03-30 19:19:02 +00:00
|
|
|
pub mod errors;
|
2017-03-06 22:40:10 +00:00
|
|
|
|
2018-03-30 19:19:02 +00:00
|
|
|
pub use aggregates::{
|
|
|
|
SimpleAggregationOp,
|
|
|
|
};
|
2018-03-12 22:18:50 +00:00
|
|
|
|
2018-03-30 19:19:02 +00:00
|
|
|
use project::{
|
|
|
|
ProjectedElements,
|
|
|
|
project_elements,
|
|
|
|
};
|
2017-03-06 22:40:10 +00:00
|
|
|
|
2018-03-30 19:19:02 +00:00
|
|
|
pub use project::{
|
|
|
|
projected_column_for_var,
|
|
|
|
};
|
|
|
|
|
2018-04-24 22:04:00 +00:00
|
|
|
pub use relresult::{
|
|
|
|
RelResult,
|
|
|
|
};
|
|
|
|
|
2018-03-30 19:19:02 +00:00
|
|
|
use errors::{
|
|
|
|
ErrorKind,
|
|
|
|
Result,
|
|
|
|
};
|
2017-03-06 22:40:10 +00:00
|
|
|
|
2018-01-30 22:11:41 +00:00
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
|
|
|
pub struct QueryOutput {
|
|
|
|
pub spec: Rc<FindSpec>,
|
|
|
|
pub results: QueryResults,
|
|
|
|
}
|
|
|
|
|
2018-03-06 17:01:20 +00:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
2017-03-06 22:40:10 +00:00
|
|
|
pub enum QueryResults {
|
|
|
|
Scalar(Option<TypedValue>),
|
|
|
|
Tuple(Option<Vec<TypedValue>>),
|
|
|
|
Coll(Vec<TypedValue>),
|
2018-04-24 22:04:00 +00:00
|
|
|
Rel(RelResult),
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2018-01-30 22:11:41 +00:00
|
|
|
impl From<QueryOutput> for QueryResults {
|
|
|
|
fn from(o: QueryOutput) -> QueryResults {
|
|
|
|
o.results
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl QueryOutput {
|
|
|
|
pub fn empty_factory(spec: &FindSpec) -> Box<Fn() -> QueryResults> {
|
|
|
|
use self::FindSpec::*;
|
|
|
|
match spec {
|
2018-04-24 22:04:00 +00:00
|
|
|
&FindScalar(_) => Box::new(|| QueryResults::Scalar(None)),
|
|
|
|
&FindTuple(_) => Box::new(|| QueryResults::Tuple(None)),
|
|
|
|
&FindColl(_) => Box::new(|| QueryResults::Coll(vec![])),
|
|
|
|
&FindRel(ref es) => {
|
|
|
|
let width = es.len();
|
|
|
|
Box::new(move || QueryResults::Rel(RelResult::empty(width)))
|
|
|
|
},
|
2018-01-30 22:11:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn len(&self) -> usize {
|
|
|
|
self.results.len()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
self.results.is_empty()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn empty(spec: &Rc<FindSpec>) -> QueryOutput {
|
|
|
|
use self::FindSpec::*;
|
|
|
|
let results =
|
|
|
|
match &**spec {
|
2018-04-24 22:04:00 +00:00
|
|
|
&FindScalar(_) => QueryResults::Scalar(None),
|
|
|
|
&FindTuple(_) => QueryResults::Tuple(None),
|
|
|
|
&FindColl(_) => QueryResults::Coll(vec![]),
|
|
|
|
&FindRel(ref es) => QueryResults::Rel(RelResult::empty(es.len())),
|
2018-01-30 22:11:41 +00:00
|
|
|
};
|
|
|
|
QueryOutput {
|
|
|
|
spec: spec.clone(),
|
|
|
|
results: results,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-06 17:01:20 +00:00
|
|
|
pub fn from_constants(spec: &Rc<FindSpec>, bindings: VariableBindings) -> QueryResults {
|
|
|
|
use self::FindSpec::*;
|
|
|
|
match &**spec {
|
2018-03-12 22:18:50 +00:00
|
|
|
&FindScalar(Element::Variable(ref var)) |
|
|
|
|
&FindScalar(Element::Corresponding(ref var)) => {
|
2018-03-06 17:01:20 +00:00
|
|
|
let val = bindings.get(var).cloned();
|
|
|
|
QueryResults::Scalar(val)
|
|
|
|
},
|
2018-03-12 22:18:50 +00:00
|
|
|
&FindScalar(Element::Aggregate(ref _agg)) => {
|
|
|
|
// TODO
|
|
|
|
unimplemented!();
|
|
|
|
},
|
2018-03-06 17:01:20 +00:00
|
|
|
&FindTuple(ref elements) => {
|
2018-03-12 22:18:50 +00:00
|
|
|
let values = elements.iter()
|
|
|
|
.map(|e| match e {
|
|
|
|
&Element::Variable(ref var) |
|
|
|
|
&Element::Corresponding(ref var) => {
|
|
|
|
bindings.get(var).cloned().expect("every var to have a binding")
|
|
|
|
},
|
|
|
|
&Element::Aggregate(ref _agg) => {
|
|
|
|
// TODO: static computation of aggregates, then
|
|
|
|
// implement the condition in `is_fully_bound`.
|
|
|
|
unreachable!();
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.collect();
|
2018-03-06 17:01:20 +00:00
|
|
|
QueryResults::Tuple(Some(values))
|
|
|
|
},
|
2018-03-12 22:18:50 +00:00
|
|
|
&FindColl(Element::Variable(ref var)) |
|
|
|
|
&FindColl(Element::Corresponding(ref var)) => {
|
2018-03-06 17:01:20 +00:00
|
|
|
let val = bindings.get(var).cloned().expect("every var to have a binding");
|
|
|
|
QueryResults::Coll(vec![val])
|
|
|
|
},
|
2018-03-12 22:18:50 +00:00
|
|
|
&FindColl(Element::Aggregate(ref _agg)) => {
|
|
|
|
// Does it even make sense to write
|
|
|
|
// [:find [(max ?x) ...] :where [_ :foo/bar ?x]]
|
|
|
|
// ?
|
|
|
|
// TODO
|
|
|
|
unimplemented!();
|
|
|
|
},
|
2018-03-06 17:01:20 +00:00
|
|
|
&FindRel(ref elements) => {
|
2018-04-24 22:04:00 +00:00
|
|
|
let width = elements.len();
|
2018-03-06 17:01:20 +00:00
|
|
|
let values = elements.iter().map(|e| match e {
|
2018-03-12 22:18:50 +00:00
|
|
|
&Element::Variable(ref var) |
|
|
|
|
&Element::Corresponding(ref var) => {
|
|
|
|
bindings.get(var).cloned().expect("every var to have a binding")
|
|
|
|
},
|
|
|
|
&Element::Aggregate(ref _agg) => {
|
|
|
|
// TODO: static computation of aggregates, then
|
|
|
|
// implement the condition in `is_fully_bound`.
|
|
|
|
unreachable!();
|
|
|
|
},
|
2018-03-06 17:01:20 +00:00
|
|
|
}).collect();
|
2018-04-24 22:04:00 +00:00
|
|
|
QueryResults::Rel(RelResult { width, values })
|
2018-03-06 17:01:20 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-30 22:11:41 +00:00
|
|
|
pub fn into_scalar(self) -> Result<Option<TypedValue>> {
|
|
|
|
self.results.into_scalar()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn into_coll(self) -> Result<Vec<TypedValue>> {
|
|
|
|
self.results.into_coll()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn into_tuple(self) -> Result<Option<Vec<TypedValue>>> {
|
|
|
|
self.results.into_tuple()
|
|
|
|
}
|
|
|
|
|
2018-04-24 22:04:00 +00:00
|
|
|
pub fn into_rel(self) -> Result<RelResult> {
|
2018-01-30 22:11:41 +00:00
|
|
|
self.results.into_rel()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
impl QueryResults {
|
|
|
|
pub fn len(&self) -> usize {
|
|
|
|
use QueryResults::*;
|
|
|
|
match self {
|
|
|
|
&Scalar(ref o) => if o.is_some() { 1 } else { 0 },
|
|
|
|
&Tuple(ref o) => if o.is_some() { 1 } else { 0 },
|
|
|
|
&Coll(ref v) => v.len(),
|
2018-04-24 22:04:00 +00:00
|
|
|
&Rel(ref r) => r.row_count(),
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-07 04:18:38 +00:00
|
|
|
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
use QueryResults::*;
|
|
|
|
match self {
|
|
|
|
&Scalar(ref o) => o.is_none(),
|
|
|
|
&Tuple(ref o) => o.is_none(),
|
|
|
|
&Coll(ref v) => v.is_empty(),
|
2018-04-24 22:04:00 +00:00
|
|
|
&Rel(ref r) => r.is_empty(),
|
2017-03-07 04:18:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-06 22:34:48 +00:00
|
|
|
pub fn into_scalar(self) -> Result<Option<TypedValue>> {
|
|
|
|
match self {
|
|
|
|
QueryResults::Scalar(o) => Ok(o),
|
|
|
|
QueryResults::Coll(_) => bail!(ErrorKind::UnexpectedResultsType("coll", "scalar")),
|
|
|
|
QueryResults::Tuple(_) => bail!(ErrorKind::UnexpectedResultsType("tuple", "scalar")),
|
|
|
|
QueryResults::Rel(_) => bail!(ErrorKind::UnexpectedResultsType("rel", "scalar")),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn into_coll(self) -> Result<Vec<TypedValue>> {
|
|
|
|
match self {
|
|
|
|
QueryResults::Scalar(_) => bail!(ErrorKind::UnexpectedResultsType("scalar", "coll")),
|
|
|
|
QueryResults::Coll(c) => Ok(c),
|
|
|
|
QueryResults::Tuple(_) => bail!(ErrorKind::UnexpectedResultsType("tuple", "coll")),
|
|
|
|
QueryResults::Rel(_) => bail!(ErrorKind::UnexpectedResultsType("rel", "coll")),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn into_tuple(self) -> Result<Option<Vec<TypedValue>>> {
|
|
|
|
match self {
|
|
|
|
QueryResults::Scalar(_) => bail!(ErrorKind::UnexpectedResultsType("scalar", "tuple")),
|
|
|
|
QueryResults::Coll(_) => bail!(ErrorKind::UnexpectedResultsType("coll", "tuple")),
|
|
|
|
QueryResults::Tuple(t) => Ok(t),
|
|
|
|
QueryResults::Rel(_) => bail!(ErrorKind::UnexpectedResultsType("rel", "tuple")),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-24 22:04:00 +00:00
|
|
|
pub fn into_rel(self) -> Result<RelResult> {
|
2017-12-06 22:34:48 +00:00
|
|
|
match self {
|
|
|
|
QueryResults::Scalar(_) => bail!(ErrorKind::UnexpectedResultsType("scalar", "rel")),
|
|
|
|
QueryResults::Coll(_) => bail!(ErrorKind::UnexpectedResultsType("coll", "rel")),
|
|
|
|
QueryResults::Tuple(_) => bail!(ErrorKind::UnexpectedResultsType("tuple", "rel")),
|
|
|
|
QueryResults::Rel(r) => Ok(r),
|
|
|
|
}
|
|
|
|
}
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Index = i32; // See rusqlite::RowIndex.
|
|
|
|
enum TypedIndex {
|
|
|
|
Known(Index, ValueTypeTag),
|
|
|
|
Unknown(Index, Index),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TypedIndex {
|
|
|
|
/// Look up this index and type(index) pair in the provided row.
|
|
|
|
/// This function will panic if:
|
|
|
|
///
|
2018-03-12 22:18:50 +00:00
|
|
|
/// - This is an `Unknown` and the retrieved type tag isn't an i32.
|
2017-03-06 22:40:10 +00:00
|
|
|
/// - If the retrieved value can't be coerced to a rusqlite `Value`.
|
|
|
|
/// - Either index is out of bounds.
|
|
|
|
///
|
2018-03-12 22:18:50 +00:00
|
|
|
/// Because we construct our SQL projection list, the tag that stored the data, and this
|
2017-03-06 22:40:10 +00:00
|
|
|
/// consumer, a panic here implies that we have a bad bug — we put data of a very wrong type in
|
|
|
|
/// a row, and thus can't coerce to Value, we're retrieving from the wrong place, or our
|
|
|
|
/// generated SQL is junk.
|
|
|
|
///
|
2018-03-12 22:18:50 +00:00
|
|
|
/// This function will return a runtime error if the type tag is unknown, or the value is
|
2017-03-06 22:40:10 +00:00
|
|
|
/// otherwise not convertible by the DB layer.
|
|
|
|
fn lookup<'a, 'stmt>(&self, row: &Row<'a, 'stmt>) -> Result<TypedValue> {
|
|
|
|
use TypedIndex::*;
|
|
|
|
|
|
|
|
match self {
|
|
|
|
&Known(value_index, value_type) => {
|
|
|
|
let v: rusqlite::types::Value = row.get(value_index);
|
|
|
|
TypedValue::from_sql_value_pair(v, value_type).map_err(|e| e.into())
|
|
|
|
},
|
|
|
|
&Unknown(value_index, type_index) => {
|
|
|
|
let v: rusqlite::types::Value = row.get(value_index);
|
|
|
|
let value_type_tag: i32 = row.get(type_index);
|
|
|
|
TypedValue::from_sql_value_pair(v, value_type_tag).map_err(|e| e.into())
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Projector {
|
2018-01-30 22:11:41 +00:00
|
|
|
fn project<'stmt>(&self, rows: Rows<'stmt>) -> Result<QueryOutput>;
|
2018-03-06 17:01:20 +00:00
|
|
|
fn columns<'s>(&'s self) -> Box<Iterator<Item=&Element> + 's>;
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2017-03-07 04:18:38 +00:00
|
|
|
/// A projector that produces a `QueryResult` containing fixed data.
|
|
|
|
/// Takes a boxed function that should return an empty result set of the desired type.
|
2018-03-06 17:01:20 +00:00
|
|
|
pub struct ConstantProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
spec: Rc<FindSpec>,
|
2017-03-07 04:18:38 +00:00
|
|
|
results_factory: Box<Fn() -> QueryResults>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ConstantProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
fn new(spec: Rc<FindSpec>, results_factory: Box<Fn() -> QueryResults>) -> ConstantProjector {
|
|
|
|
ConstantProjector {
|
|
|
|
spec: spec,
|
|
|
|
results_factory: results_factory,
|
|
|
|
}
|
2017-03-07 04:18:38 +00:00
|
|
|
}
|
|
|
|
|
2018-03-06 17:01:20 +00:00
|
|
|
pub fn project_without_rows<'stmt>(&self) -> Result<QueryOutput> {
|
2018-01-30 22:11:41 +00:00
|
|
|
let results = (self.results_factory)();
|
|
|
|
let spec = self.spec.clone();
|
|
|
|
Ok(QueryOutput {
|
|
|
|
spec: spec,
|
|
|
|
results: results,
|
|
|
|
})
|
2017-03-07 04:18:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-06 17:01:20 +00:00
|
|
|
impl Projector for ConstantProjector {
|
|
|
|
fn project<'stmt>(&self, _: Rows<'stmt>) -> Result<QueryOutput> {
|
|
|
|
self.project_without_rows()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn columns<'s>(&'s self) -> Box<Iterator<Item=&Element> + 's> {
|
|
|
|
self.spec.columns()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
struct ScalarProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
spec: Rc<FindSpec>,
|
2017-03-06 22:40:10 +00:00
|
|
|
template: TypedIndex,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ScalarProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
fn with_template(spec: Rc<FindSpec>, template: TypedIndex) -> ScalarProjector {
|
2017-03-06 22:40:10 +00:00
|
|
|
ScalarProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
spec: spec,
|
2017-03-06 22:40:10 +00:00
|
|
|
template: template,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-12 22:18:50 +00:00
|
|
|
fn combine(spec: Rc<FindSpec>, mut elements: ProjectedElements) -> Result<CombinedProjection> {
|
|
|
|
let template = elements.templates.pop().expect("Expected a single template");
|
2017-11-30 23:02:07 +00:00
|
|
|
Ok(CombinedProjection {
|
2018-03-12 22:18:50 +00:00
|
|
|
sql_projection: elements.sql_projection,
|
|
|
|
pre_aggregate_projection: elements.pre_aggregate_projection,
|
2018-01-30 22:11:41 +00:00
|
|
|
datalog_projector: Box::new(ScalarProjector::with_template(spec, template)),
|
2017-03-22 21:02:00 +00:00
|
|
|
distinct: false,
|
2018-03-12 22:18:50 +00:00
|
|
|
group_by_cols: elements.group_by,
|
2017-11-30 23:02:07 +00:00
|
|
|
})
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Projector for ScalarProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
fn project<'stmt>(&self, mut rows: Rows<'stmt>) -> Result<QueryOutput> {
|
|
|
|
let results =
|
|
|
|
if let Some(r) = rows.next() {
|
|
|
|
let row = r?;
|
|
|
|
let binding = self.template.lookup(&row)?;
|
|
|
|
QueryResults::Scalar(Some(binding))
|
|
|
|
} else {
|
|
|
|
QueryResults::Scalar(None)
|
|
|
|
};
|
|
|
|
Ok(QueryOutput {
|
|
|
|
spec: self.spec.clone(),
|
|
|
|
results: results,
|
|
|
|
})
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
2018-03-06 17:01:20 +00:00
|
|
|
|
|
|
|
fn columns<'s>(&'s self) -> Box<Iterator<Item=&Element> + 's> {
|
|
|
|
self.spec.columns()
|
|
|
|
}
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A tuple projector produces a single vector. It's the single-result version of rel.
|
|
|
|
struct TupleProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
spec: Rc<FindSpec>,
|
2017-03-06 22:40:10 +00:00
|
|
|
len: usize,
|
|
|
|
templates: Vec<TypedIndex>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TupleProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
fn with_templates(spec: Rc<FindSpec>, len: usize, templates: Vec<TypedIndex>) -> TupleProjector {
|
2017-03-06 22:40:10 +00:00
|
|
|
TupleProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
spec: spec,
|
2017-03-06 22:40:10 +00:00
|
|
|
len: len,
|
|
|
|
templates: templates,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is exactly the same as for rel.
|
|
|
|
fn collect_bindings<'a, 'stmt>(&self, row: Row<'a, 'stmt>) -> Result<Vec<TypedValue>> {
|
2018-01-17 22:36:15 +00:00
|
|
|
// There will be at least as many SQL columns as Datalog columns.
|
2018-03-12 22:18:50 +00:00
|
|
|
// gte 'cos we might be querying extra columns for ordering.
|
|
|
|
// The templates will take care of ignoring columns.
|
2018-01-17 22:36:15 +00:00
|
|
|
assert!(row.column_count() >= self.len as i32);
|
2017-03-06 22:40:10 +00:00
|
|
|
self.templates
|
|
|
|
.iter()
|
|
|
|
.map(|ti| ti.lookup(&row))
|
|
|
|
.collect::<Result<Vec<TypedValue>>>()
|
|
|
|
}
|
|
|
|
|
2018-03-12 22:18:50 +00:00
|
|
|
fn combine(spec: Rc<FindSpec>, column_count: usize, elements: ProjectedElements) -> Result<CombinedProjection> {
|
|
|
|
let p = TupleProjector::with_templates(spec, column_count, elements.templates);
|
2017-11-30 23:02:07 +00:00
|
|
|
Ok(CombinedProjection {
|
2018-03-12 22:18:50 +00:00
|
|
|
sql_projection: elements.sql_projection,
|
|
|
|
pre_aggregate_projection: elements.pre_aggregate_projection,
|
2017-03-06 22:40:10 +00:00
|
|
|
datalog_projector: Box::new(p),
|
2017-03-22 21:02:00 +00:00
|
|
|
distinct: false,
|
2018-03-12 22:18:50 +00:00
|
|
|
group_by_cols: elements.group_by,
|
2017-11-30 23:02:07 +00:00
|
|
|
})
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Projector for TupleProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
fn project<'stmt>(&self, mut rows: Rows<'stmt>) -> Result<QueryOutput> {
|
|
|
|
let results =
|
|
|
|
if let Some(r) = rows.next() {
|
|
|
|
let row = r?;
|
|
|
|
let bindings = self.collect_bindings(row)?;
|
|
|
|
QueryResults::Tuple(Some(bindings))
|
|
|
|
} else {
|
|
|
|
QueryResults::Tuple(None)
|
|
|
|
};
|
|
|
|
Ok(QueryOutput {
|
|
|
|
spec: self.spec.clone(),
|
|
|
|
results: results,
|
|
|
|
})
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
2018-03-06 17:01:20 +00:00
|
|
|
|
|
|
|
fn columns<'s>(&'s self) -> Box<Iterator<Item=&Element> + 's> {
|
|
|
|
self.spec.columns()
|
|
|
|
}
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2018-04-24 22:04:00 +00:00
|
|
|
/// A rel projector produces a RelResult, which is a striding abstraction over a vector.
|
|
|
|
/// Each stride across the vector is the same size, and sourced from the same columns.
|
|
|
|
/// Each column in each stride is the result of taking one or two columns from
|
2017-03-06 22:40:10 +00:00
|
|
|
/// the `Row`: one for the value and optionally one for the type tag.
|
|
|
|
struct RelProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
spec: Rc<FindSpec>,
|
2017-03-06 22:40:10 +00:00
|
|
|
len: usize,
|
|
|
|
templates: Vec<TypedIndex>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl RelProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
fn with_templates(spec: Rc<FindSpec>, len: usize, templates: Vec<TypedIndex>) -> RelProjector {
|
2017-03-06 22:40:10 +00:00
|
|
|
RelProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
spec: spec,
|
2017-03-06 22:40:10 +00:00
|
|
|
len: len,
|
|
|
|
templates: templates,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-24 22:04:00 +00:00
|
|
|
fn collect_bindings_into<'a, 'stmt, 'out>(&self, row: Row<'a, 'stmt>, out: &mut Vec<TypedValue>) -> Result<()> {
|
2018-01-17 22:36:15 +00:00
|
|
|
// There will be at least as many SQL columns as Datalog columns.
|
2018-03-12 22:18:50 +00:00
|
|
|
// gte 'cos we might be querying extra columns for ordering.
|
|
|
|
// The templates will take care of ignoring columns.
|
2018-01-17 22:36:15 +00:00
|
|
|
assert!(row.column_count() >= self.len as i32);
|
2018-04-24 22:04:00 +00:00
|
|
|
let mut count = 0;
|
|
|
|
for binding in self.templates
|
|
|
|
.iter()
|
|
|
|
.map(|ti| ti.lookup(&row)) {
|
|
|
|
out.push(binding?);
|
|
|
|
count += 1;
|
|
|
|
}
|
|
|
|
assert_eq!(self.len, count);
|
|
|
|
Ok(())
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2018-03-12 22:18:50 +00:00
|
|
|
fn combine(spec: Rc<FindSpec>, column_count: usize, elements: ProjectedElements) -> Result<CombinedProjection> {
|
|
|
|
let p = RelProjector::with_templates(spec, column_count, elements.templates);
|
|
|
|
|
|
|
|
// If every column yields only one value, or if this is an aggregate query
|
|
|
|
// (because by definition every column in an aggregate query is either
|
|
|
|
// aggregated or is a variable _upon which we group_), then don't bother
|
|
|
|
// with DISTINCT.
|
|
|
|
let already_distinct = elements.pre_aggregate_projection.is_some() ||
|
|
|
|
p.columns().all(|e| e.is_unit());
|
2017-11-30 23:02:07 +00:00
|
|
|
Ok(CombinedProjection {
|
2018-03-12 22:18:50 +00:00
|
|
|
sql_projection: elements.sql_projection,
|
|
|
|
pre_aggregate_projection: elements.pre_aggregate_projection,
|
2017-03-06 22:40:10 +00:00
|
|
|
datalog_projector: Box::new(p),
|
2018-03-12 22:18:50 +00:00
|
|
|
distinct: !already_distinct,
|
|
|
|
group_by_cols: elements.group_by,
|
2017-11-30 23:02:07 +00:00
|
|
|
})
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Projector for RelProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
fn project<'stmt>(&self, mut rows: Rows<'stmt>) -> Result<QueryOutput> {
|
2018-04-24 22:04:00 +00:00
|
|
|
// Allocate space for five rows to start.
|
|
|
|
// This is better than starting off by doubling the buffer a couple of times, and will
|
|
|
|
// rapidly grow to support larger query results.
|
|
|
|
let width = self.len;
|
|
|
|
let mut values: Vec<_> = Vec::with_capacity(5 * width);
|
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
while let Some(r) = rows.next() {
|
|
|
|
let row = r?;
|
2018-04-24 22:04:00 +00:00
|
|
|
self.collect_bindings_into(row, &mut values)?;
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
2018-01-30 22:11:41 +00:00
|
|
|
Ok(QueryOutput {
|
|
|
|
spec: self.spec.clone(),
|
2018-04-24 22:04:00 +00:00
|
|
|
results: QueryResults::Rel(RelResult { width, values }),
|
2018-01-30 22:11:41 +00:00
|
|
|
})
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
2018-03-06 17:01:20 +00:00
|
|
|
|
|
|
|
fn columns<'s>(&'s self) -> Box<Iterator<Item=&Element> + 's> {
|
|
|
|
self.spec.columns()
|
|
|
|
}
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A coll projector produces a vector of values.
|
|
|
|
/// Each value is sourced from the same column.
|
|
|
|
struct CollProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
spec: Rc<FindSpec>,
|
2017-03-06 22:40:10 +00:00
|
|
|
template: TypedIndex,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CollProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
fn with_template(spec: Rc<FindSpec>, template: TypedIndex) -> CollProjector {
|
2017-03-06 22:40:10 +00:00
|
|
|
CollProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
spec: spec,
|
2017-03-06 22:40:10 +00:00
|
|
|
template: template,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-12 22:18:50 +00:00
|
|
|
fn combine(spec: Rc<FindSpec>, mut elements: ProjectedElements) -> Result<CombinedProjection> {
|
|
|
|
let template = elements.templates.pop().expect("Expected a single template");
|
|
|
|
let p = CollProjector::with_template(spec, template);
|
|
|
|
|
|
|
|
// If every column yields only one value, or if this is an aggregate query
|
|
|
|
// (because by definition every column in an aggregate query is either
|
|
|
|
// aggregated or is a variable _upon which we group_), then don't bother
|
|
|
|
// with DISTINCT.
|
|
|
|
let already_distinct = elements.pre_aggregate_projection.is_some() ||
|
|
|
|
p.columns().all(|e| e.is_unit());
|
2017-11-30 23:02:07 +00:00
|
|
|
Ok(CombinedProjection {
|
2018-03-12 22:18:50 +00:00
|
|
|
sql_projection: elements.sql_projection,
|
|
|
|
pre_aggregate_projection: elements.pre_aggregate_projection,
|
|
|
|
datalog_projector: Box::new(p),
|
|
|
|
distinct: !already_distinct,
|
|
|
|
group_by_cols: elements.group_by,
|
2017-11-30 23:02:07 +00:00
|
|
|
})
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Projector for CollProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
fn project<'stmt>(&self, mut rows: Rows<'stmt>) -> Result<QueryOutput> {
|
2017-03-06 22:40:10 +00:00
|
|
|
let mut out: Vec<TypedValue> = vec![];
|
|
|
|
while let Some(r) = rows.next() {
|
|
|
|
let row = r?;
|
|
|
|
let binding = self.template.lookup(&row)?;
|
|
|
|
out.push(binding);
|
|
|
|
}
|
2018-01-30 22:11:41 +00:00
|
|
|
Ok(QueryOutput {
|
|
|
|
spec: self.spec.clone(),
|
|
|
|
results: QueryResults::Coll(out),
|
|
|
|
})
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
2018-03-06 17:01:20 +00:00
|
|
|
|
|
|
|
fn columns<'s>(&'s self) -> Box<Iterator<Item=&Element> + 's> {
|
|
|
|
self.spec.columns()
|
|
|
|
}
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2018-03-12 22:18:50 +00:00
|
|
|
/// Combines the things you need to turn a query into SQL and turn its results into
|
|
|
|
/// `QueryResults`: SQL-related projection information (`DISTINCT`, columns, etc.) and
|
|
|
|
/// a Datalog projector that turns SQL into structures.
|
2017-03-06 22:40:10 +00:00
|
|
|
pub struct CombinedProjection {
|
|
|
|
/// A SQL projection, mapping columns mentioned in the body of the query to columns in the
|
|
|
|
/// output.
|
|
|
|
pub sql_projection: Projection,
|
|
|
|
|
2018-03-12 22:18:50 +00:00
|
|
|
/// If a query contains aggregates, we need to generate a nested subquery: an inner query
|
|
|
|
/// that returns our distinct variable bindings (and any `:with` vars), and an outer query
|
|
|
|
/// that applies aggregation. That's so we can put `DISTINCT` in the inner query and apply
|
|
|
|
/// aggregation afterwards -- `SELECT DISTINCT count(foo)` counts _then_ uniques, and we need
|
|
|
|
/// the opposite to implement Datalog distinct semantics.
|
|
|
|
/// If this is the case, `sql_projection` will be the outer query's projection list, and
|
|
|
|
/// `pre_aggregate_projection` will be the inner.
|
|
|
|
/// If the query doesn't use aggregation, this field will be `None`.
|
|
|
|
pub pre_aggregate_projection: Option<Projection>,
|
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
/// A Datalog projection. This consumes rows of the appropriate shape (as defined by
|
|
|
|
/// the SQL projection) to yield one of the four kinds of Datalog query result.
|
|
|
|
pub datalog_projector: Box<Projector>,
|
2017-03-22 21:02:00 +00:00
|
|
|
|
|
|
|
/// True if this query requires the SQL query to include DISTINCT.
|
|
|
|
pub distinct: bool,
|
2018-03-12 22:18:50 +00:00
|
|
|
|
|
|
|
// A list of column names to use as a GROUP BY clause.
|
|
|
|
pub group_by_cols: Vec<GroupBy>,
|
2017-03-22 21:02:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl CombinedProjection {
|
2017-04-19 23:16:19 +00:00
|
|
|
fn flip_distinct_for_limit(mut self, limit: &Limit) -> Self {
|
|
|
|
if *limit == Limit::Fixed(1) {
|
2017-03-22 21:02:00 +00:00
|
|
|
self.distinct = false;
|
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Compute a suitable SQL projection for an algebrized query.
|
|
|
|
/// This takes into account a number of things:
|
|
|
|
/// - The variable list in the find spec.
|
|
|
|
/// - The presence of any aggregate operations in the find spec. TODO: for now we only handle
|
|
|
|
/// simple variables
|
|
|
|
/// - The bindings established by the topmost CC.
|
|
|
|
/// - The types known at algebrizing time.
|
|
|
|
/// - The types extracted from the store for unknown attributes.
|
2018-03-06 17:01:20 +00:00
|
|
|
pub fn query_projection(query: &AlgebraicQuery) -> Result<Either<ConstantProjector, CombinedProjection>> {
|
2017-03-06 22:40:10 +00:00
|
|
|
use self::FindSpec::*;
|
|
|
|
|
2018-01-30 22:11:41 +00:00
|
|
|
let spec = query.find_spec.clone();
|
2018-03-06 17:01:20 +00:00
|
|
|
if query.is_fully_unit_bound() {
|
|
|
|
// Do a few gyrations to produce empty results of the right kind for the query.
|
|
|
|
|
2018-03-12 22:18:50 +00:00
|
|
|
let variables: BTreeSet<Variable> = spec.columns()
|
|
|
|
.map(|e| match e {
|
|
|
|
&Element::Variable(ref var) |
|
|
|
|
&Element::Corresponding(ref var) => var.clone(),
|
|
|
|
&Element::Aggregate(ref _agg) => {
|
|
|
|
// TODO: static computation of aggregates, then
|
|
|
|
// implement the condition in `is_fully_bound`.
|
|
|
|
unreachable!();
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.collect();
|
2018-03-06 17:01:20 +00:00
|
|
|
|
|
|
|
// TODO: error handling
|
|
|
|
let results = QueryOutput::from_constants(&spec, query.cc.value_bindings(&variables));
|
|
|
|
let f = Box::new(move || {results.clone()});
|
|
|
|
|
|
|
|
Ok(Either::Left(ConstantProjector::new(spec, f)))
|
|
|
|
} else if query.is_known_empty() {
|
2017-03-07 04:18:38 +00:00
|
|
|
// Do a few gyrations to produce empty results of the right kind for the query.
|
2018-01-30 22:11:41 +00:00
|
|
|
let empty = QueryOutput::empty_factory(&spec);
|
2018-03-06 17:01:20 +00:00
|
|
|
Ok(Either::Left(ConstantProjector::new(spec, empty)))
|
2017-03-07 04:18:38 +00:00
|
|
|
} else {
|
2018-01-30 22:11:41 +00:00
|
|
|
match *query.find_spec {
|
2017-03-07 04:18:38 +00:00
|
|
|
FindColl(ref element) => {
|
2018-03-12 22:18:50 +00:00
|
|
|
let elements = project_elements(1, iter::once(element), query)?;
|
|
|
|
CollProjector::combine(spec, elements).map(|p| p.flip_distinct_for_limit(&query.limit))
|
2017-03-07 04:18:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
FindScalar(ref element) => {
|
2018-03-12 22:18:50 +00:00
|
|
|
let elements = project_elements(1, iter::once(element), query)?;
|
|
|
|
ScalarProjector::combine(spec, elements)
|
2017-03-07 04:18:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
FindRel(ref elements) => {
|
|
|
|
let column_count = query.find_spec.expected_column_count();
|
2018-03-12 22:18:50 +00:00
|
|
|
let elements = project_elements(column_count, elements, query)?;
|
|
|
|
RelProjector::combine(spec, column_count, elements).map(|p| p.flip_distinct_for_limit(&query.limit))
|
2017-03-07 04:18:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
FindTuple(ref elements) => {
|
|
|
|
let column_count = query.find_spec.expected_column_count();
|
2018-03-12 22:18:50 +00:00
|
|
|
let elements = project_elements(column_count, elements, query)?;
|
|
|
|
TupleProjector::combine(spec, column_count, elements)
|
2017-03-07 04:18:38 +00:00
|
|
|
},
|
2018-03-06 17:01:20 +00:00
|
|
|
}.map(Either::Right)
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
2017-04-26 22:17:02 +00:00
|
|
|
}
|