sq/libsq/ast/render/expr.go
Neil O'Toole e93f462fff
#254: explicit where() clause (#255)
Implement explicit `where()` clause.
2023-06-16 22:54:25 -06:00

75 lines
1.5 KiB
Go

package render
import (
"strings"
"github.com/neilotoole/sq/libsq/ast"
"github.com/neilotoole/sq/libsq/core/errz"
"github.com/neilotoole/sq/libsq/core/stringz"
)
func doExpr(rc *Context, expr *ast.ExprNode) (string, error) {
if expr == nil {
return "", nil
}
r := rc.Renderer
var sb strings.Builder
if expr.HasParens() {
sb.WriteRune('(')
}
for i, child := range expr.Children() {
if i > 0 {
sb.WriteRune(sp)
}
switch child := child.(type) {
case *ast.TblColSelectorNode, *ast.ColSelectorNode:
val, err := renderSelectorNode(rc.Dialect, child)
if err != nil {
return "", err
}
sb.WriteString(val)
case *ast.OperatorNode:
val, err := r.Operator(rc, child)
if err != nil {
return "", err
}
sb.WriteString(val)
case *ast.ArgNode:
if rc.Args != nil {
val, ok := rc.Args[child.Key()]
if ok {
sb.WriteString(stringz.SingleQuote(val))
break
}
}
// It's an error if the arg is not supplied.
return "", errz.Errorf("no --arg value found for query variable %s", child.Text())
case *ast.ExprNode:
val, err := r.Expr(rc, child)
if err != nil {
return "", err
}
sb.WriteString(val)
case *ast.LiteralNode:
val, err := r.Literal(rc, child)
if err != nil {
return "", err
}
sb.WriteString(val)
default:
// Shouldn't happen? Need to investigate.
sb.WriteString(child.Text())
}
}
if expr.HasParens() {
sb.WriteRune(')')
}
return sb.String(), nil
}