package planner
import "github.com/open-policy-agent/opa/internal/planner"
Package planner contains a query planner for Rego queries.
Index ¶
- type Planner
- func New() *Planner
- func (p *Planner) Plan() (*ir.Policy, error)
- func (p *Planner) WithBuiltinDecls(decls map[string]*ast.Builtin) *Planner
- func (p *Planner) WithModules(modules []*ast.Module) *Planner
- func (p *Planner) WithQueries(queries []ast.Body) *Planner
- func (p *Planner) WithRewrittenVars(vs map[ast.Var]ast.Var) *Planner
Types ¶
type Planner ¶
type Planner struct {
// contains filtered or unexported fields
}
Planner implements a query planner for Rego queries.
func New ¶
func New() *Planner
New returns a new Planner object.
func (*Planner) Plan ¶
Plan returns a IR plan for the policy query.
func (*Planner) WithBuiltinDecls ¶
WithBuiltinDecls tells the planner what built-in function may be available inside the execution environment.
func (*Planner) WithModules ¶
WithModules sets the module set that contains query dependencies.
func (*Planner) WithQueries ¶
WithQueries sets the query set to generate a plan for.
func (*Planner) WithRewrittenVars ¶
WithRewrittenVars sets a mapping of rewritten query vars on the planner. The plan will use the rewritten variable name but the result set key will be the original variable name.
Source Files ¶
planner.go rules.go varstack.go
- Version
- v0.19.0
- Published
- Apr 13, 2020
- Platform
- js/wasm
- Imports
- 5 packages
- Last checked
- 1 minute ago –
Tools for package owners.