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;
|
|
|
|
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;
|
|
|
|
|
|
|
|
use std::iter;
|
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::{
|
2017-03-07 04:14:50 +00:00
|
|
|
SQLValueType,
|
2017-03-06 22:40:10 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
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,
|
2017-04-11 17:14:33 +00:00
|
|
|
ColumnName,
|
2017-06-07 17:59:25 +00:00
|
|
|
ConjoiningClauses,
|
2017-04-11 17:14:33 +00:00
|
|
|
VariableColumn,
|
2017-03-06 22:40:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
use mentat_query_sql::{
|
|
|
|
ColumnOrExpression,
|
2017-04-17 16:23:55 +00:00
|
|
|
Name,
|
2017-03-06 22:40:10 +00:00
|
|
|
Projection,
|
|
|
|
ProjectedColumn,
|
|
|
|
};
|
|
|
|
|
|
|
|
error_chain! {
|
|
|
|
types {
|
|
|
|
Error, ErrorKind, ResultExt, Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreign_links {
|
|
|
|
Rusqlite(rusqlite::Error);
|
|
|
|
}
|
|
|
|
|
|
|
|
links {
|
|
|
|
DbError(mentat_db::Error, mentat_db::ErrorKind);
|
|
|
|
}
|
2017-12-06 22:34:48 +00:00
|
|
|
|
|
|
|
errors {
|
|
|
|
UnexpectedResultsType(actual: &'static str, expected: &'static str) {
|
|
|
|
description("unexpected query results type")
|
|
|
|
display("expected {}, got {}", expected, actual)
|
|
|
|
}
|
|
|
|
}
|
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,
|
|
|
|
}
|
|
|
|
|
2017-12-05 15:58:24 +00:00
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
2017-03-06 22:40:10 +00:00
|
|
|
pub enum QueryResults {
|
|
|
|
Scalar(Option<TypedValue>),
|
|
|
|
Tuple(Option<Vec<TypedValue>>),
|
|
|
|
Coll(Vec<TypedValue>),
|
|
|
|
Rel(Vec<Vec<TypedValue>>),
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
&FindScalar(_) => Box::new(|| QueryResults::Scalar(None)),
|
|
|
|
&FindTuple(_) => Box::new(|| QueryResults::Tuple(None)),
|
|
|
|
&FindColl(_) => Box::new(|| QueryResults::Coll(vec![])),
|
|
|
|
&FindRel(_) => Box::new(|| QueryResults::Rel(vec![])),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
|
|
|
&FindScalar(_) => QueryResults::Scalar(None),
|
|
|
|
&FindTuple(_) => QueryResults::Tuple(None),
|
|
|
|
&FindColl(_) => QueryResults::Coll(vec![]),
|
|
|
|
&FindRel(_) => QueryResults::Rel(vec![]),
|
|
|
|
};
|
|
|
|
QueryOutput {
|
|
|
|
spec: spec.clone(),
|
|
|
|
results: results,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn into_rel(self) -> Result<Vec<Vec<TypedValue>>> {
|
|
|
|
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(),
|
|
|
|
&Rel(ref v) => v.len(),
|
|
|
|
}
|
|
|
|
}
|
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(),
|
|
|
|
&Rel(ref v) => v.is_empty(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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")),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn into_rel(self) -> Result<Vec<Vec<TypedValue>>> {
|
|
|
|
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:
|
|
|
|
///
|
|
|
|
/// - This is an `Unknown` and the retrieved type code isn't an i32.
|
|
|
|
/// - If the retrieved value can't be coerced to a rusqlite `Value`.
|
|
|
|
/// - Either index is out of bounds.
|
|
|
|
///
|
|
|
|
/// Because we construct our SQL projection list, the code that stored the data, and this
|
|
|
|
/// 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.
|
|
|
|
///
|
|
|
|
/// This function will return a runtime error if the type code is unknown, or the value is
|
|
|
|
/// 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())
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-07 17:59:25 +00:00
|
|
|
fn candidate_column(cc: &ConjoiningClauses, var: &Variable) -> (ColumnOrExpression, Name) {
|
2017-04-17 16:23:55 +00:00
|
|
|
// Every variable should be bound by the top-level CC to at least
|
|
|
|
// one column in the query. If that constraint is violated it's a
|
|
|
|
// bug in our code, so it's appropriate to panic here.
|
2017-06-07 17:59:25 +00:00
|
|
|
let columns = cc.column_bindings
|
|
|
|
.get(var)
|
|
|
|
.expect(format!("Every variable should have a binding, but {:?} does not", var).as_str());
|
2017-04-17 16:23:55 +00:00
|
|
|
|
|
|
|
let qa = columns[0].clone();
|
|
|
|
let name = VariableColumn::Variable(var.clone()).column_name();
|
|
|
|
(ColumnOrExpression::Column(qa), name)
|
|
|
|
}
|
|
|
|
|
2017-06-07 17:59:25 +00:00
|
|
|
fn candidate_type_column(cc: &ConjoiningClauses, var: &Variable) -> (ColumnOrExpression, Name) {
|
|
|
|
let extracted_alias = cc.extracted_types
|
|
|
|
.get(var)
|
|
|
|
.expect("Every variable has a known type or an extracted type");
|
2017-04-17 16:23:55 +00:00
|
|
|
let type_name = VariableColumn::VariableTypeTag(var.clone()).column_name();
|
|
|
|
(ColumnOrExpression::Column(extracted_alias.clone()), type_name)
|
|
|
|
}
|
|
|
|
|
2017-06-07 17:59:25 +00:00
|
|
|
/// Return the projected column -- that is, a value or SQL column and an associated name -- for a
|
|
|
|
/// given variable. Also return the type, if known.
|
|
|
|
/// Callers are expected to determine whether to project a type tag as an additional SQL column.
|
|
|
|
pub fn projected_column_for_var(var: &Variable, cc: &ConjoiningClauses) -> (ProjectedColumn, Option<ValueType>) {
|
|
|
|
if let Some(value) = cc.bound_value(&var) {
|
|
|
|
// If we already know the value, then our lives are easy.
|
|
|
|
let tag = value.value_type();
|
|
|
|
let name = VariableColumn::Variable(var.clone()).column_name();
|
|
|
|
(ProjectedColumn(ColumnOrExpression::Value(value.clone()), name), Some(tag))
|
|
|
|
} else {
|
|
|
|
// If we don't, then the CC *must* have bound the variable.
|
|
|
|
let (column, name) = candidate_column(cc, var);
|
|
|
|
(ProjectedColumn(column, name), cc.known_type(var))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-06 22:40:10 +00:00
|
|
|
/// Walk an iterator of `Element`s, collecting projector templates and columns.
|
|
|
|
///
|
|
|
|
/// Returns a pair: the SQL projection (which should always be a `Projection::Columns`)
|
|
|
|
/// and a `Vec` of `TypedIndex` 'keys' to use when looking up values.
|
|
|
|
///
|
|
|
|
/// Callers must ensure that every `Element` is distinct -- a query like
|
|
|
|
///
|
|
|
|
/// ```edn
|
|
|
|
/// [:find ?x ?x :where [?x _ _]]
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// should fail to parse. See #358.
|
|
|
|
fn project_elements<'a, I: IntoIterator<Item = &'a Element>>(
|
|
|
|
count: usize,
|
|
|
|
elements: I,
|
2017-11-30 23:02:07 +00:00
|
|
|
query: &AlgebraicQuery) -> Result<(Projection, Vec<TypedIndex>)> {
|
2017-03-06 22:40:10 +00:00
|
|
|
|
|
|
|
let mut cols = Vec::with_capacity(count);
|
|
|
|
let mut i: i32 = 0;
|
|
|
|
let mut templates = vec![];
|
2017-04-17 16:23:55 +00:00
|
|
|
let mut with = query.with.clone();
|
2017-03-06 22:40:10 +00:00
|
|
|
|
|
|
|
for e in elements {
|
|
|
|
match e {
|
|
|
|
// Each time we come across a variable, we push a SQL column
|
|
|
|
// into the SQL projection, aliased to the name of the variable,
|
|
|
|
// and we push an annotated index into the projector.
|
|
|
|
&Element::Variable(ref var) => {
|
2017-04-17 16:23:55 +00:00
|
|
|
// If we're projecting this, we don't need it in :with.
|
|
|
|
with.remove(var);
|
2017-03-06 22:40:10 +00:00
|
|
|
|
2017-06-07 17:59:25 +00:00
|
|
|
let (projected_column, maybe_type) = projected_column_for_var(&var, &query.cc);
|
|
|
|
cols.push(projected_column);
|
|
|
|
if let Some(ty) = maybe_type {
|
|
|
|
let tag = ty.value_type_tag();
|
2017-03-06 22:40:10 +00:00
|
|
|
templates.push(TypedIndex::Known(i, tag));
|
|
|
|
i += 1; // We used one SQL column.
|
|
|
|
} else {
|
|
|
|
templates.push(TypedIndex::Unknown(i, i + 1));
|
|
|
|
i += 2; // We used two SQL columns.
|
|
|
|
|
|
|
|
// Also project the type from the SQL query.
|
2017-06-07 17:59:25 +00:00
|
|
|
let (type_column, type_name) = candidate_type_column(&query.cc, &var);
|
2017-04-17 16:23:55 +00:00
|
|
|
cols.push(ProjectedColumn(type_column, type_name));
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-17 16:23:55 +00:00
|
|
|
for var in with {
|
|
|
|
// We need to collect these into the SQL column list, but they don't affect projection.
|
|
|
|
// If a variable is of a non-fixed type, also project the type tag column, so we don't
|
|
|
|
// accidentally unify across types when considering uniqueness!
|
2017-06-07 17:59:25 +00:00
|
|
|
let (column, name) = candidate_column(&query.cc, &var);
|
2017-04-17 16:23:55 +00:00
|
|
|
cols.push(ProjectedColumn(column, name));
|
|
|
|
if query.cc.known_type(&var).is_none() {
|
2017-06-07 17:59:25 +00:00
|
|
|
let (type_column, type_name) = candidate_type_column(&query.cc, &var);
|
2017-04-17 16:23:55 +00:00
|
|
|
cols.push(ProjectedColumn(type_column, type_name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-30 23:02:07 +00:00
|
|
|
Ok((Projection::Columns(cols), templates))
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Projector {
|
2018-01-30 22:11:41 +00:00
|
|
|
fn project<'stmt>(&self, rows: Rows<'stmt>) -> Result<QueryOutput>;
|
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.
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Projector for ConstantProjector {
|
2018-01-30 22:11:41 +00:00
|
|
|
fn project<'stmt>(&self, _: Rows<'stmt>) -> Result<QueryOutput> {
|
|
|
|
let results = (self.results_factory)();
|
|
|
|
let spec = self.spec.clone();
|
|
|
|
Ok(QueryOutput {
|
|
|
|
spec: spec,
|
|
|
|
results: results,
|
|
|
|
})
|
2017-03-07 04:18:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-01-30 22:11:41 +00:00
|
|
|
fn combine(spec: Rc<FindSpec>, sql: Projection, mut templates: Vec<TypedIndex>) -> Result<CombinedProjection> {
|
2017-03-06 22:40:10 +00:00
|
|
|
let template = templates.pop().expect("Expected a single template");
|
2017-11-30 23:02:07 +00:00
|
|
|
Ok(CombinedProjection {
|
2017-03-06 22:40:10 +00:00
|
|
|
sql_projection: sql,
|
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,
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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.
|
|
|
|
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-01-30 22:11:41 +00:00
|
|
|
fn combine(spec: Rc<FindSpec>, column_count: usize, sql: Projection, templates: Vec<TypedIndex>) -> Result<CombinedProjection> {
|
|
|
|
let p = TupleProjector::with_templates(spec, column_count, templates);
|
2017-11-30 23:02:07 +00:00
|
|
|
Ok(CombinedProjection {
|
2017-03-06 22:40:10 +00:00
|
|
|
sql_projection: sql,
|
|
|
|
datalog_projector: Box::new(p),
|
2017-03-22 21:02:00 +00:00
|
|
|
distinct: false,
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A rel projector produces a vector of vectors.
|
|
|
|
/// Each inner vector is the same size, and sourced from the same columns.
|
|
|
|
/// One inner vector is produced per `Row`.
|
|
|
|
/// Each column in the inner vector is the result of taking one or two columns from
|
|
|
|
/// 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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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.
|
|
|
|
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-01-30 22:11:41 +00:00
|
|
|
fn combine(spec: Rc<FindSpec>, column_count: usize, sql: Projection, templates: Vec<TypedIndex>) -> Result<CombinedProjection> {
|
|
|
|
let p = RelProjector::with_templates(spec, column_count, templates);
|
2017-11-30 23:02:07 +00:00
|
|
|
Ok(CombinedProjection {
|
2017-03-06 22:40:10 +00:00
|
|
|
sql_projection: sql,
|
|
|
|
datalog_projector: Box::new(p),
|
2017-03-22 21:02:00 +00:00
|
|
|
distinct: true,
|
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> {
|
2017-03-06 22:40:10 +00:00
|
|
|
let mut out: Vec<Vec<TypedValue>> = vec![];
|
|
|
|
while let Some(r) = rows.next() {
|
|
|
|
let row = r?;
|
|
|
|
let bindings = self.collect_bindings(row)?;
|
|
|
|
out.push(bindings);
|
|
|
|
}
|
2018-01-30 22:11:41 +00:00
|
|
|
Ok(QueryOutput {
|
|
|
|
spec: self.spec.clone(),
|
|
|
|
results: QueryResults::Rel(out),
|
|
|
|
})
|
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-01-30 22:11:41 +00:00
|
|
|
fn combine(spec: Rc<FindSpec>, sql: Projection, mut templates: Vec<TypedIndex>) -> Result<CombinedProjection> {
|
2017-03-06 22:40:10 +00:00
|
|
|
let template = templates.pop().expect("Expected a single template");
|
2017-11-30 23:02:07 +00:00
|
|
|
Ok(CombinedProjection {
|
2017-03-06 22:40:10 +00:00
|
|
|
sql_projection: sql,
|
2018-01-30 22:11:41 +00:00
|
|
|
datalog_projector: Box::new(CollProjector::with_template(spec, template)),
|
2017-03-22 21:02:00 +00:00
|
|
|
distinct: true,
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Combines the two things you need to turn a query into SQL and turn its results into
|
|
|
|
/// `QueryResults`.
|
|
|
|
pub struct CombinedProjection {
|
|
|
|
/// A SQL projection, mapping columns mentioned in the body of the query to columns in the
|
|
|
|
/// output.
|
|
|
|
pub sql_projection: Projection,
|
|
|
|
|
|
|
|
/// 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,
|
|
|
|
}
|
|
|
|
|
|
|
|
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.
|
2017-11-30 23:02:07 +00:00
|
|
|
pub fn query_projection(query: &AlgebraicQuery) -> Result<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();
|
2017-03-07 04:18:38 +00:00
|
|
|
if query.is_known_empty() {
|
|
|
|
// 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);
|
|
|
|
let constant_projector = ConstantProjector::new(spec, empty);
|
2017-11-30 23:02:07 +00:00
|
|
|
Ok(CombinedProjection {
|
2017-03-07 04:18:38 +00:00
|
|
|
sql_projection: Projection::One,
|
|
|
|
datalog_projector: Box::new(constant_projector),
|
2017-03-22 21:02:00 +00:00
|
|
|
distinct: false,
|
2017-11-30 23:02:07 +00:00
|
|
|
})
|
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) => {
|
2017-11-30 23:02:07 +00:00
|
|
|
let (cols, templates) = project_elements(1, iter::once(element), query)?;
|
2018-01-30 22:11:41 +00:00
|
|
|
CollProjector::combine(spec, cols, templates).map(|p| p.flip_distinct_for_limit(&query.limit))
|
2017-03-07 04:18:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
FindScalar(ref element) => {
|
2017-11-30 23:02:07 +00:00
|
|
|
let (cols, templates) = project_elements(1, iter::once(element), query)?;
|
2018-01-30 22:11:41 +00:00
|
|
|
ScalarProjector::combine(spec, cols, templates)
|
2017-03-07 04:18:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
FindRel(ref elements) => {
|
|
|
|
let column_count = query.find_spec.expected_column_count();
|
2017-11-30 23:02:07 +00:00
|
|
|
let (cols, templates) = project_elements(column_count, elements, query)?;
|
2018-01-30 22:11:41 +00:00
|
|
|
RelProjector::combine(spec, column_count, cols, templates).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();
|
2017-11-30 23:02:07 +00:00
|
|
|
let (cols, templates) = project_elements(column_count, elements, query)?;
|
2018-01-30 22:11:41 +00:00
|
|
|
TupleProjector::combine(spec, column_count, cols, templates)
|
2017-03-07 04:18:38 +00:00
|
|
|
},
|
|
|
|
}
|
2017-03-06 22:40:10 +00:00
|
|
|
}
|
2017-04-26 22:17:02 +00:00
|
|
|
}
|