mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
494 lines
12 KiB
Go
494 lines
12 KiB
Go
// Copyright 2021 Pilosa Corp.
|
|
//
|
|
// 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.
|
|
|
|
package pilosa
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"fmt"
|
|
"io"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/molecula/featurebase/v2/pql"
|
|
"github.com/molecula/featurebase/v2/sql2"
|
|
)
|
|
|
|
type Planner struct {
|
|
executor *executor
|
|
}
|
|
|
|
func NewPlanner(executor *executor) *Planner {
|
|
return &Planner{executor: executor}
|
|
}
|
|
|
|
func (p *Planner) PlanStatement(ctx context.Context, stmt sql2.Statement) (*Stmt, error) {
|
|
node, err := p.planStatement(ctx, stmt)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &Stmt{node: node}, nil
|
|
}
|
|
|
|
func (p *Planner) planStatement(ctx context.Context, stmt sql2.Statement) (StmtNode, error) {
|
|
switch stmt := stmt.(type) {
|
|
case *sql2.SelectStatement:
|
|
return p.planSelectStatement(ctx, stmt)
|
|
default:
|
|
return nil, fmt.Errorf("cannot plan statement: %T", stmt)
|
|
}
|
|
}
|
|
|
|
func (p *Planner) planSelectStatement(ctx context.Context, stmt *sql2.SelectStatement) (_ StmtNode, err error) {
|
|
if stmt.IsAggregate() {
|
|
return p.planAggregateSelectStatement(ctx, stmt)
|
|
}
|
|
return p.planNonAggregateSelectStatement(ctx, stmt)
|
|
}
|
|
|
|
func (p *Planner) planAggregateSelectStatement(ctx context.Context, stmt *sql2.SelectStatement) (_ StmtNode, err error) {
|
|
// Extract table name from source.
|
|
var source *sql2.QualifiedTableName
|
|
switch src := stmt.Source.(type) {
|
|
case *sql2.JoinClause:
|
|
return nil, fmt.Errorf("cannot use JOIN in aggregate query")
|
|
case *sql2.ParenSource:
|
|
return nil, fmt.Errorf("cannot use parenthesized source in aggregate query")
|
|
case *sql2.QualifiedTableName:
|
|
source = src
|
|
case *sql2.SelectStatement:
|
|
return nil, fmt.Errorf("cannot use sub-select in aggregate query")
|
|
default:
|
|
return nil, fmt.Errorf("unexpected source type in aggregate query: %T", source)
|
|
}
|
|
|
|
// Convert WHERE clause.
|
|
cond, err := p.planExprPQL(ctx, stmt, stmt.WhereExpr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// TODO: Support multiple aggregate calls.
|
|
if len(stmt.Columns) > 1 {
|
|
return nil, fmt.Errorf("only one call allowed in aggregate query")
|
|
}
|
|
|
|
// Extract aggregate call.
|
|
col := stmt.Columns[0]
|
|
var call *sql2.Call
|
|
switch expr := col.Expr.(type) {
|
|
case *sql2.Call:
|
|
call = expr
|
|
default:
|
|
return nil, fmt.Errorf("unsupported expression in aggregate query: %T", expr)
|
|
}
|
|
|
|
callName := strings.ToUpper(sql2.IdentName(call.Name))
|
|
switch callName {
|
|
case "COUNT":
|
|
return NewCountNode(p.executor, sql2.IdentName(source.Name), cond), nil
|
|
default:
|
|
return nil, fmt.Errorf("unsupported call in aggregate query: %T", callName)
|
|
}
|
|
|
|
// TODO: Support HAVING
|
|
}
|
|
|
|
func (p *Planner) planNonAggregateSelectStatement(ctx context.Context, stmt *sql2.SelectStatement) (_ StmtNode, err error) {
|
|
return nil, fmt.Errorf("cannot plan non-aggregate SELECT query")
|
|
}
|
|
|
|
// planExprPQL returns a PQL call tree for a given expression.
|
|
func (p *Planner) planExprPQL(ctx context.Context, stmt *sql2.SelectStatement, expr sql2.Expr) (_ *pql.Call, err error) {
|
|
if expr == nil {
|
|
return nil, nil
|
|
}
|
|
|
|
switch expr := expr.(type) {
|
|
case *sql2.BinaryExpr:
|
|
return p.planBinaryExprPQL(ctx, stmt, expr)
|
|
case *sql2.BindExpr:
|
|
return nil, fmt.Errorf("bind expressions are not supported")
|
|
case *sql2.BlobLit:
|
|
return nil, fmt.Errorf("blob literals are not supported")
|
|
case *sql2.BoolLit:
|
|
return nil, fmt.Errorf("boolean literals are not supported")
|
|
case *sql2.Call:
|
|
return nil, fmt.Errorf("call expressions are not supported")
|
|
case *sql2.CaseExpr:
|
|
return nil, fmt.Errorf("case expressions are not supported")
|
|
case *sql2.CastExpr:
|
|
return nil, fmt.Errorf("cast expressions are not supported")
|
|
case *sql2.Exists:
|
|
return nil, fmt.Errorf("exists expressions are not supported")
|
|
case *sql2.ExprList:
|
|
return nil, fmt.Errorf("expression lists are not supported")
|
|
case *sql2.Ident:
|
|
return nil, fmt.Errorf("identifiers are not supported")
|
|
case *sql2.NullLit:
|
|
return nil, fmt.Errorf("NULL expressions are not supported")
|
|
case *sql2.NumberLit:
|
|
return nil, fmt.Errorf("number expressions are not supported")
|
|
case *sql2.ParenExpr:
|
|
return p.planExprPQL(ctx, stmt, expr.X)
|
|
case *sql2.QualifiedRef:
|
|
return nil, fmt.Errorf("qualified references are not supported")
|
|
case *sql2.Raise:
|
|
return nil, fmt.Errorf("raise expressions are not supported")
|
|
case *sql2.Range:
|
|
return nil, fmt.Errorf("range expressions are not supported")
|
|
case *sql2.StringLit:
|
|
return nil, fmt.Errorf("string literals are not supported")
|
|
case *sql2.UnaryExpr:
|
|
return nil, fmt.Errorf("unary expressions are not supported")
|
|
default:
|
|
return nil, fmt.Errorf("unexpected SQL expression type: %T", expr)
|
|
}
|
|
}
|
|
|
|
func (p *Planner) planBinaryExprPQL(ctx context.Context, stmt *sql2.SelectStatement, expr *sql2.BinaryExpr) (_ *pql.Call, err error) {
|
|
switch op := expr.Op; op {
|
|
case sql2.AND, sql2.OR:
|
|
name := "Intersect"
|
|
if op == sql2.OR {
|
|
name = "Union"
|
|
}
|
|
|
|
x, err := p.planExprPQL(ctx, stmt, expr.X)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
y, err := p.planExprPQL(ctx, stmt, expr.Y)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &pql.Call{
|
|
Name: name,
|
|
Children: []*pql.Call{x, y},
|
|
}, nil
|
|
|
|
case sql2.EQ, sql2.NE, sql2.LT, sql2.LE, sql2.GT, sql2.GE:
|
|
// Ensure field reference exists in binary expression.
|
|
x, y := expr.X, expr.Y
|
|
xIdent, xOk := x.(*sql2.Ident)
|
|
yIdent, yOk := y.(*sql2.Ident)
|
|
if xOk && yOk {
|
|
return nil, fmt.Errorf("cannot compare fields in a WHERE clause")
|
|
} else if !xOk && !yOk {
|
|
return nil, fmt.Errorf("expression must reference one field")
|
|
}
|
|
|
|
// Rewrite expression so field ref is LHS.
|
|
if !xOk && yOk {
|
|
xIdent, y = yIdent, x
|
|
switch op {
|
|
case sql2.LT:
|
|
op = sql2.GT
|
|
case sql2.LE:
|
|
op = sql2.GE
|
|
case sql2.GT:
|
|
op = sql2.LT
|
|
case sql2.GE:
|
|
op = sql2.LE
|
|
}
|
|
}
|
|
|
|
pqlValue, err := sqlToPQLValue(y)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
isBSI := true // TODO: Check field if it is a BSI field.
|
|
if !isBSI {
|
|
return &pql.Call{
|
|
Name: "Row",
|
|
Args: map[string]interface{}{
|
|
sql2.IdentName(xIdent): pqlValue,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
pqlOp, err := sqlToPQLOp(op)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &pql.Call{
|
|
Name: "Row",
|
|
Args: map[string]interface{}{
|
|
sql2.IdentName(xIdent): &pql.Condition{
|
|
Op: pqlOp,
|
|
Value: pqlValue,
|
|
},
|
|
},
|
|
}, nil
|
|
|
|
case sql2.BITAND, sql2.BITOR, sql2.BITNOT, sql2.LSHIFT, sql2.RSHIFT:
|
|
return nil, fmt.Errorf("bitwise operators are not supported in WHERE clause")
|
|
case sql2.PLUS, sql2.MINUS, sql2.STAR, sql2.SLASH, sql2.REM: // +
|
|
return nil, fmt.Errorf("arithmetic operators are not supported in WHERE clause")
|
|
case sql2.CONCAT:
|
|
return nil, fmt.Errorf("concatenation operator is not supported in WHERE clause")
|
|
case sql2.IN, sql2.NOTIN:
|
|
return nil, fmt.Errorf("IN operator is not supported")
|
|
case sql2.BETWEEN, sql2.NOTBETWEEN:
|
|
return nil, fmt.Errorf("BETWEEN operator is not supported")
|
|
default:
|
|
return nil, fmt.Errorf("unexpected binary expression operator: %s", expr.Op)
|
|
}
|
|
}
|
|
|
|
// sqlToPQLOp converts a SQL2 operation token to PQL.
|
|
func sqlToPQLOp(op sql2.Token) (pql.Token, error) {
|
|
switch op {
|
|
case sql2.EQ:
|
|
return pql.EQ, nil
|
|
case sql2.NE:
|
|
return pql.NEQ, nil
|
|
case sql2.LT:
|
|
return pql.LT, nil
|
|
case sql2.LE:
|
|
return pql.LTE, nil
|
|
case sql2.GT:
|
|
return pql.GT, nil
|
|
case sql2.GE:
|
|
return pql.GTE, nil
|
|
default:
|
|
return pql.ILLEGAL, fmt.Errorf("cannot convert SQL op %q to PQL", op)
|
|
}
|
|
}
|
|
|
|
// sqlToPQLValue converts a literal SQL2 expression node to a PQL Go value.
|
|
func sqlToPQLValue(expr sql2.Expr) (interface{}, error) {
|
|
switch expr := expr.(type) {
|
|
case *sql2.StringLit:
|
|
return expr.Value, nil
|
|
case *sql2.NumberLit:
|
|
if expr.IsFloat() {
|
|
return strconv.ParseFloat(expr.Value, 64)
|
|
}
|
|
return strconv.ParseInt(expr.Value, 10, 64)
|
|
case *sql2.BoolLit:
|
|
return expr.Value, nil
|
|
default:
|
|
return nil, fmt.Errorf("cannot convert SQL expression %T to a literal value", expr)
|
|
}
|
|
}
|
|
|
|
type Stmt struct {
|
|
node StmtNode
|
|
}
|
|
|
|
func (stmt *Stmt) Close() error { return nil }
|
|
|
|
func (stmt *Stmt) QueryRowContext(ctx context.Context, args ...interface{}) *StmtRow {
|
|
rows, err := stmt.QueryContext(ctx, args...)
|
|
if err != nil {
|
|
return &StmtRow{err: err}
|
|
}
|
|
return &StmtRow{rows: rows}
|
|
}
|
|
|
|
func (stmt *Stmt) QueryContext(ctx context.Context, args ...interface{}) (*StmtRows, error) {
|
|
// TODO: Handle bind arguments.
|
|
|
|
rows := &StmtRows{
|
|
ctx: ctx,
|
|
node: stmt.node,
|
|
}
|
|
|
|
// Initialize the node.
|
|
if err := rows.node.First(ctx); err != nil {
|
|
return nil, fmt.Errorf("Query: initialize statement: %w", err)
|
|
}
|
|
|
|
return rows, nil
|
|
}
|
|
|
|
type StmtRows struct {
|
|
ctx context.Context
|
|
node StmtNode
|
|
err error
|
|
}
|
|
|
|
func (rs *StmtRows) Close() error {
|
|
return nil
|
|
}
|
|
|
|
func (rs *StmtRows) Err() error {
|
|
if rs.err != nil && rs.err != sql.ErrNoRows {
|
|
return rs.err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (rs *StmtRows) Next() bool {
|
|
if rs.err != nil {
|
|
return false
|
|
}
|
|
|
|
if rs.err = rs.node.Next(rs.ctx); rs.err != nil {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (rs *StmtRows) Scan(dst ...interface{}) error {
|
|
if rs.err != nil {
|
|
return rs.err
|
|
}
|
|
|
|
// Check len(dest) against node row length.
|
|
row := rs.node.Row()
|
|
if len(dst) != len(row) {
|
|
return fmt.Errorf("Scan(): expected %d values, received %d values", len(dst), len(row))
|
|
}
|
|
|
|
// Copy values from row to destination pointers.
|
|
for i := range dst {
|
|
// Handle null values.
|
|
// TODO: Handle double pointers.
|
|
if row[i] == nil {
|
|
switch p := dst[i].(type) {
|
|
case *int:
|
|
*p = 0
|
|
case *int64:
|
|
*p = 0
|
|
case *uint:
|
|
*p = 0
|
|
case *uint64:
|
|
*p = 0
|
|
default:
|
|
return fmt.Errorf("cannot scan NULL value into %T destination at index %d", p, i)
|
|
}
|
|
continue
|
|
}
|
|
|
|
// Copy row value to scan destination.
|
|
switch v := row[i].(type) {
|
|
case int64:
|
|
switch p := dst[i].(type) {
|
|
case *int:
|
|
*p = int(v)
|
|
case *int64:
|
|
*p = v
|
|
case *uint:
|
|
*p = uint(v)
|
|
case *uint64:
|
|
*p = uint64(v)
|
|
default:
|
|
return fmt.Errorf("cannot scan %T value into %T destination at index %d", v, p, i)
|
|
}
|
|
default:
|
|
return fmt.Errorf("unexpected %T value at index %d", v, i)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
type StmtRow struct {
|
|
err error
|
|
rows *StmtRows
|
|
}
|
|
|
|
func (r *StmtRow) Scan(dest ...interface{}) error {
|
|
if r.err != nil {
|
|
return r.err
|
|
}
|
|
defer r.rows.Close()
|
|
|
|
if !r.rows.Next() {
|
|
if err := r.rows.Err(); err != nil {
|
|
return err
|
|
}
|
|
return sql.ErrNoRows
|
|
}
|
|
|
|
if err := r.rows.Scan(dest...); err != nil {
|
|
return err
|
|
}
|
|
return r.rows.Close()
|
|
}
|
|
|
|
func (r *StmtRow) Err() error {
|
|
return r.err
|
|
}
|
|
|
|
type StmtNode interface {
|
|
// Initializes the node to its start.
|
|
First(ctx context.Context) error
|
|
|
|
// Moves the node to the next available row. Returns sql.ErrNoRows if done.
|
|
Next(ctx context.Context) error
|
|
|
|
// Returns the current row in the node.
|
|
Row() []interface{}
|
|
|
|
// Returns column definitions for the node.
|
|
// Columns() []*Column
|
|
|
|
// Returns a reference to the value register for a named column.
|
|
// Lookup(table, column string) (interface{}, error)
|
|
}
|
|
|
|
var _ StmtNode = (*CountNode)(nil)
|
|
|
|
// CountNode executes a COUNT(*) against a FeatureBase index and returns a single row.
|
|
type CountNode struct {
|
|
executor *executor
|
|
indexName string
|
|
cond *pql.Call // conditional
|
|
|
|
row []interface{}
|
|
}
|
|
|
|
func NewCountNode(executor *executor, indexName string, cond *pql.Call) *CountNode {
|
|
if cond == nil {
|
|
cond = &pql.Call{Name: "All"}
|
|
}
|
|
return &CountNode{
|
|
executor: executor,
|
|
indexName: indexName,
|
|
cond: cond,
|
|
}
|
|
}
|
|
|
|
func (n *CountNode) First(ctx context.Context) error {
|
|
n.row = nil
|
|
return nil
|
|
}
|
|
|
|
func (n *CountNode) Next(ctx context.Context) error {
|
|
if n.row != nil {
|
|
return io.EOF
|
|
}
|
|
|
|
q := &pql.Query{
|
|
Calls: []*pql.Call{
|
|
{Name: "Count", Children: []*pql.Call{n.cond}},
|
|
},
|
|
}
|
|
|
|
result, err := n.executor.Execute(ctx, n.indexName, q, nil, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
n.row = []interface{}{int64(result.Results[0].(uint64))}
|
|
return nil
|
|
}
|
|
|
|
func (n *CountNode) Row() []interface{} { return n.row }
|