package compile

import "github.com/open-policy-agent/opa/compile"

Package compile implements bundles compilation and linking.

Index

Constants

const (
	// TargetRego is the default target. The source rego is copied (potentially
	// rewritten for optimization purpsoes) into the bundle. The target supports
	// base documents.
	TargetRego = "rego"

	// TargetWasm is an alternative target that compiles the policy into a wasm
	// module instead of Rego. The target supports base documents.
	TargetWasm = "wasm"
)

Types

type Compiler

type Compiler struct {
	// contains filtered or unexported fields
}

Compiler implements bundle compilation and linking.

func New

func New() *Compiler

New returns a new compiler instance that can be invoked.

func (*Compiler) Build

func (c *Compiler) Build(ctx context.Context) error

Build compiles and links the input files and outputs a bundle to the writer.

func (*Compiler) Debug

func (c *Compiler) Debug() []Debug

Debug returns a list of debug events produced by the compiler.

func (*Compiler) WithAsBundle

func (c *Compiler) WithAsBundle(enabled bool) *Compiler

WithAsBundle sets file loading mode on the compiler.

func (*Compiler) WithEntrypoints

func (c *Compiler) WithEntrypoints(e ...string) *Compiler

WithEntrypoints sets the policy entrypoints on the compiler. Entrypoints tell the compiler what rules to expect and where optimizations can be targetted. The wasm target requires at least one entrypoint as does optimization.

func (*Compiler) WithFilter

func (c *Compiler) WithFilter(filter loader.Filter) *Compiler

WithFilter sets the loader filter to use when reading non-bundle input files.

func (*Compiler) WithOptimizationLevel

func (c *Compiler) WithOptimizationLevel(n int) *Compiler

WithOptimizationLevel sets the optimization level on the compiler. By default optimizations are disabled. Higher levels apply more aggressive optimizations but can take longer. Currently only two levels are supported: 0 (disabled) and 1 (enabled).

func (*Compiler) WithOutput

func (c *Compiler) WithOutput(w io.Writer) *Compiler

WithOutput sets the output stream to write the bundle to.

func (*Compiler) WithPaths

func (c *Compiler) WithPaths(p ...string) *Compiler

WithPaths adds input filepaths to read policy and data from.

func (*Compiler) WithRevision

func (c *Compiler) WithRevision(r string) *Compiler

WithRevision sets the revision to include in the output bundle manifest.

func (*Compiler) WithTarget

func (c *Compiler) WithTarget(t string) *Compiler

WithTarget sets the output target type to use.

type Debug

type Debug struct {
	Location *ast.Location
	Message  string
}

Debug contains debugging information produced by the build about optimizations and other operations.

func (Debug) String

func (d Debug) String() string

Source Files

compile.go

Version
v0.20.5
Published
Jun 1, 2020
Platform
windows/amd64
Imports
14 packages
Last checked
3 minutes ago

Tools for package owners.