sq/libsq/ast/ast.go
Neil O'Toole a1a89ee9dd
Support table and column names with spaces. (#156)
* sakila: initial test data

* sakila: more test data

* sakila: yet more test data setup

* whitespace cols: now working for sqlite

* grammar cleanup

* whitespace cols: now working inside count() func for sqlite

* whitespace cols: tests mostly passing; begining refactoring

* grammar: refactor handle

* grammar: more refactoring

* grammar: rename selElement to selector

* wip

* all tests passing

* all tests passing

* linting

* driver: implement CurrentSchema for all driver.SQLDriver impls

* driver: tests for AlterTableRename and AlterTableRenameColumn

* undo reformat of SQL

* undo reformat of SQL

* undo reformat of SQL

* undo reformat of SQL
2023-03-22 00:17:34 -06:00

159 lines
3.3 KiB
Go

// Package ast holds types and functionality for the SLQ AST.
//
// Note: the SLQ language implementation is fairly rudimentary
// and has some incomplete functionality.
package ast
import (
"reflect"
"github.com/antlr/antlr4/runtime/Go/antlr/v4"
"github.com/neilotoole/lg"
"github.com/neilotoole/sq/libsq/ast/internal/slq"
"github.com/neilotoole/sq/libsq/core/errz"
)
// Parse parses the SLQ input string and builds the AST.
func Parse(log lg.Log, input string) (*AST, error) { //nolint:staticcheck
log = lg.Discard() //nolint:staticcheck // Disable parser logging.
ptree, err := parseSLQ(log, input)
if err != nil {
return nil, err
}
return buildAST(log, ptree)
}
// buildAST constructs sq's AST from a parse tree.
func buildAST(log lg.Log, query slq.IQueryContext) (*AST, error) {
if query == nil {
return nil, errorf("query is nil")
}
q, ok := query.(*slq.QueryContext)
if !ok {
return nil, errorf("unable to convert %T to *parser.QueryContext", query)
}
tree := &parseTreeVisitor{log: log}
if err := q.Accept(tree); err != nil {
return nil, err.(error)
}
visitors := []struct {
typ reflect.Type
fn nodeVisitorFn
}{
{typeSelectorNode, narrowTblSel},
{typeSelectorNode, narrowTblColSel},
{typeSelectorNode, narrowColSel},
{typeJoinNode, determineJoinTables},
{typeRowRangeNode, visitCheckRowRange},
{typeExprNode, findWhereClause},
}
for _, visitor := range visitors {
w := NewWalker(log, tree.ast).AddVisitor(visitor.typ, visitor.fn)
if err := w.Walk(); err != nil {
return nil, err
}
}
return tree.ast, nil
}
var _ Node = (*AST)(nil)
// AST is the Abstract Syntax Tree. It is the root node of a SQL query/stmt.
type AST struct {
ctx *slq.QueryContext
segs []*SegmentNode
text string
}
func (a *AST) Parent() Node {
return nil
}
func (a *AST) SetParent(parent Node) error {
return errorf("root node (%T) cannot have parent: tried to add parent %T", a, parent)
}
func (a *AST) Children() []Node {
nodes := make([]Node, len(a.segs))
for i, seg := range a.segs {
nodes[i] = seg
}
return nodes
}
func (a *AST) Segments() []*SegmentNode {
return a.segs
}
func (a *AST) AddChild(node Node) error {
seg, ok := node.(*SegmentNode)
if !ok {
return errorf("expected *SegmentNode but got: %T", node)
}
a.AddSegment(seg)
return nil
}
func (a *AST) SetChildren(children []Node) error {
segs := make([]*SegmentNode, len(children))
for i, child := range children {
seg, ok := child.(*SegmentNode)
if !ok {
return errorf("expected child of type %s, but got: %T", typeSegmentNode, child)
}
segs[i] = seg
}
a.segs = segs
return nil
}
func (a *AST) Context() antlr.ParseTree {
return a.ctx
}
func (a *AST) SetContext(ctx antlr.ParseTree) error {
qCtx, ok := ctx.(*slq.QueryContext)
if !ok {
return errorf("expected *parser.QueryContext, but got %T", ctx)
}
a.ctx = qCtx
return nil
}
func (a *AST) String() string {
return nodeString(a)
}
func (a *AST) Text() string {
return a.ctx.GetText()
}
// AddSegment appends seg to the AST.
func (a *AST) AddSegment(seg *SegmentNode) {
_ = seg.SetParent(a)
a.segs = append(a.segs, seg)
}
// errorf builds an error. Error creation for this package
// was centralized here in the expectation that an AST-specific
// error type (annotated appropriately) would be returned.
func errorf(format string, v ...any) error {
return errz.Errorf(format, v...)
}