mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
82 lines
1.4 KiB
Go
82 lines
1.4 KiB
Go
package compiler
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/MontFerret/ferret/pkg/parser"
|
|
"github.com/MontFerret/ferret/pkg/runtime"
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/stdlib"
|
|
)
|
|
|
|
type Compiler struct {
|
|
*NamespaceContainer
|
|
}
|
|
|
|
func New(setters ...Option) *Compiler {
|
|
c := &Compiler{}
|
|
c.NamespaceContainer = newRootNamespace()
|
|
c.funcs = make(map[string]core.Function)
|
|
|
|
opts := &Options{}
|
|
|
|
for _, setter := range setters {
|
|
setter(opts)
|
|
}
|
|
|
|
if !opts.noStdlib {
|
|
if err := stdlib.RegisterLib(c.NamespaceContainer); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
return c
|
|
}
|
|
|
|
func (c *Compiler) Compile(query string) (program *runtime.Program, err error) {
|
|
if query == "" {
|
|
return nil, ErrEmptyQuery
|
|
}
|
|
|
|
defer func() {
|
|
if r := recover(); r != nil {
|
|
// find out exactly what the error was and set err
|
|
switch x := r.(type) {
|
|
case string:
|
|
err = errors.New(x)
|
|
case error:
|
|
err = x
|
|
default:
|
|
err = errors.New("unknown panic")
|
|
}
|
|
|
|
program = nil
|
|
}
|
|
}()
|
|
|
|
p := parser.New(query)
|
|
p.AddErrorListener(&errorListener{})
|
|
|
|
l := newVisitor(query, c.funcs)
|
|
|
|
res := p.Visit(l).(*result)
|
|
|
|
if res.Ok() {
|
|
program = res.Data().(*runtime.Program)
|
|
} else {
|
|
err = res.Error()
|
|
}
|
|
|
|
return program, err
|
|
}
|
|
|
|
func (c *Compiler) MustCompile(query string) *runtime.Program {
|
|
program, err := c.Compile(query)
|
|
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
return program
|
|
}
|