pulumi/pkg/compiler/compiler.go

66 lines
1.6 KiB
Go
Raw Normal View History

// Copyright 2016 Marapongo, Inc. All rights reserved.
package compiler
import (
"fmt"
"github.com/golang/glog"
"github.com/marapongo/mu/pkg/diag"
"github.com/marapongo/mu/pkg/errors"
"github.com/marapongo/mu/pkg/workspace"
)
// Compiler provides an interface into the many phases of the Mu compilation process.
type Compiler interface {
// Diag fetches the diagnostics sink used by this compiler instance.
Diag() diag.Sink
// Build detects and compiles inputs from the given location, storing build artifacts in the given destination.
Build(inp string, outp string)
}
// compiler is the canonical implementation of the Mu compiler.
type compiler struct {
opts Options
}
// NewCompiler creates a new instance of the Mu compiler, with the given initialization settings.
func NewCompiler(opts Options) Compiler {
return &compiler{opts}
}
func (c *compiler) Diag() diag.Sink {
return c.opts.Diag
}
func (c *compiler) Build(inp string, outp string) {
glog.Infof("Building target '%v' (out='%v')", inp, outp)
if glog.V(2) {
defer func() {
glog.V(2).Infof("Building target '%v' completed w/ %v warnings and %v errors",
inp, c.Diag().Warnings(), c.Diag().Errors())
}()
}
// First find the root of the current package based on the location of its Mufile.
mufile, err := workspace.DetectMufile(inp)
if err != nil {
c.Diag().Errorf(errors.MissingMufile, inp)
return
}
// To build the Mu package, first parse the input file.
p := NewParser(c)
stack := p.Parse(mufile)
// If any errors happened during parsing, we cannot proceed; exit now.
if c.Diag().Errors() > 0 {
return
}
fmt.Printf("PARSED: %v\n", stack)
}