2014-05-23 01:56:28 +02:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-05-24 00:11:57 +02:00
|
|
|
"path/filepath"
|
2014-05-23 01:56:28 +02:00
|
|
|
|
|
|
|
"github.com/mitchellh/go-libucl"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Put the parse flags we use for libucl in a constant so we can get
|
|
|
|
// equally behaving parsing everywhere.
|
|
|
|
const libuclParseFlags = libucl.ParserKeyLowercase
|
|
|
|
|
2014-05-24 00:32:34 +02:00
|
|
|
// libuclConfigurable is an implementation of configurable that knows
|
|
|
|
// how to turn libucl configuration into a *Config object.
|
2014-05-24 00:28:19 +02:00
|
|
|
type libuclConfigurable struct {
|
|
|
|
Object *libucl.Object
|
2014-05-24 00:06:37 +02:00
|
|
|
}
|
|
|
|
|
2014-05-24 01:30:28 +02:00
|
|
|
func (t *libuclConfigurable) Close() error {
|
|
|
|
return t.Object.Close()
|
|
|
|
}
|
|
|
|
|
2014-05-24 00:28:19 +02:00
|
|
|
func (t *libuclConfigurable) Config() (*Config, error) {
|
2014-06-04 00:55:51 +02:00
|
|
|
type LibuclVariable struct {
|
|
|
|
Default string
|
|
|
|
Description string
|
|
|
|
Fields []string `libucl:",decodedFields"`
|
|
|
|
}
|
|
|
|
|
2014-05-24 00:28:19 +02:00
|
|
|
var rawConfig struct {
|
2014-06-04 00:55:51 +02:00
|
|
|
Variable map[string]*LibuclVariable
|
2014-05-24 00:28:19 +02:00
|
|
|
}
|
2014-05-24 00:06:37 +02:00
|
|
|
|
2014-05-24 00:28:19 +02:00
|
|
|
if err := t.Object.Decode(&rawConfig); err != nil {
|
2014-05-24 00:06:37 +02:00
|
|
|
return nil, err
|
2014-05-23 01:56:28 +02:00
|
|
|
}
|
|
|
|
|
2014-06-04 00:55:51 +02:00
|
|
|
// Start building up the actual configuration. We start with
|
|
|
|
// variables.
|
2014-05-24 00:28:19 +02:00
|
|
|
config := new(Config)
|
2014-06-04 00:55:51 +02:00
|
|
|
config.Variables = make(map[string]*Variable)
|
|
|
|
for k, v := range rawConfig.Variable {
|
|
|
|
defaultSet := false
|
|
|
|
for _, f := range v.Fields {
|
|
|
|
if f == "Default" {
|
|
|
|
defaultSet = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
config.Variables[k] = &Variable{
|
|
|
|
Default: v.Default,
|
|
|
|
Description: v.Description,
|
|
|
|
defaultSet: defaultSet,
|
|
|
|
}
|
|
|
|
}
|
2014-05-24 00:28:19 +02:00
|
|
|
|
2014-05-26 03:05:18 +02:00
|
|
|
// Build the provider configs
|
|
|
|
providers := t.Object.Get("provider")
|
|
|
|
if providers != nil {
|
|
|
|
var err error
|
|
|
|
config.ProviderConfigs, err = loadProvidersLibucl(providers)
|
|
|
|
providers.Close()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-24 00:28:19 +02:00
|
|
|
// Build the resources
|
|
|
|
resources := t.Object.Get("resource")
|
|
|
|
if resources != nil {
|
|
|
|
var err error
|
|
|
|
config.Resources, err = loadResourcesLibucl(resources)
|
|
|
|
resources.Close()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-05-23 01:56:28 +02:00
|
|
|
}
|
|
|
|
|
2014-05-24 00:28:19 +02:00
|
|
|
return config, nil
|
2014-05-24 00:06:37 +02:00
|
|
|
}
|
2014-05-23 01:56:28 +02:00
|
|
|
|
2014-05-24 00:32:34 +02:00
|
|
|
// loadFileLibucl is a fileLoaderFunc that knows how to read libucl
|
|
|
|
// files and turn them into libuclConfigurables.
|
2014-05-24 00:28:19 +02:00
|
|
|
func loadFileLibucl(root string) (configurable, []string, error) {
|
2014-05-24 00:06:37 +02:00
|
|
|
var obj *libucl.Object = nil
|
2014-05-23 01:56:28 +02:00
|
|
|
|
2014-05-24 00:06:37 +02:00
|
|
|
// Parse and store the object. We don't use a defer here so that
|
|
|
|
// we clear resources right away rather than stack them up all the
|
|
|
|
// way through our recursive calls.
|
|
|
|
parser := libucl.NewParser(libuclParseFlags)
|
|
|
|
err := parser.AddFile(root)
|
|
|
|
if err == nil {
|
|
|
|
obj = parser.Object()
|
|
|
|
defer obj.Close()
|
|
|
|
}
|
|
|
|
parser.Close()
|
2014-05-23 01:56:28 +02:00
|
|
|
|
2014-05-24 00:06:37 +02:00
|
|
|
// If there was an error, return early
|
|
|
|
if err != nil {
|
2014-05-24 00:28:19 +02:00
|
|
|
return nil, nil, err
|
2014-05-24 00:06:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start building the result
|
2014-05-24 00:28:19 +02:00
|
|
|
result := &libuclConfigurable{
|
2014-05-24 00:06:37 +02:00
|
|
|
Object: obj,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, dive in, find the imports.
|
|
|
|
imports := obj.Get("import")
|
|
|
|
if imports == nil {
|
|
|
|
result.Object.Ref()
|
2014-05-24 00:28:19 +02:00
|
|
|
return result, nil, nil
|
2014-05-24 00:06:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if imports.Type() != libucl.ObjectTypeString {
|
|
|
|
imports.Close()
|
|
|
|
|
2014-05-24 00:28:19 +02:00
|
|
|
return nil, nil, fmt.Errorf(
|
2014-05-24 00:06:37 +02:00
|
|
|
"Error in %s: all 'import' declarations should be in the format\n"+
|
|
|
|
"`import \"foo\"` (Got type %s)",
|
|
|
|
root,
|
|
|
|
imports.Type())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Gather all the import paths
|
|
|
|
importPaths := make([]string, 0, imports.Len())
|
|
|
|
iter := imports.Iterate(false)
|
|
|
|
for imp := iter.Next(); imp != nil; imp = iter.Next() {
|
2014-05-24 00:28:19 +02:00
|
|
|
path := imp.ToString()
|
2014-05-24 00:11:57 +02:00
|
|
|
if !filepath.IsAbs(path) {
|
|
|
|
// Relative paths are relative to the Terraform file itself
|
|
|
|
dir := filepath.Dir(root)
|
|
|
|
path = filepath.Join(dir, path)
|
|
|
|
}
|
|
|
|
|
2014-05-24 00:28:19 +02:00
|
|
|
importPaths = append(importPaths, path)
|
|
|
|
imp.Close()
|
2014-05-23 01:56:28 +02:00
|
|
|
}
|
2014-05-24 00:28:19 +02:00
|
|
|
iter.Close()
|
|
|
|
imports.Close()
|
2014-05-23 01:56:28 +02:00
|
|
|
|
2014-05-24 00:06:37 +02:00
|
|
|
result.Object.Ref()
|
2014-05-24 00:28:19 +02:00
|
|
|
return result, importPaths, nil
|
2014-05-23 01:56:28 +02:00
|
|
|
}
|
|
|
|
|
2014-05-26 03:05:18 +02:00
|
|
|
// LoadProvidersLibucl recurses into the given libucl object and turns
|
|
|
|
// it into a mapping of provider configs.
|
|
|
|
func loadProvidersLibucl(o *libucl.Object) (map[string]*ProviderConfig, error) {
|
|
|
|
objects := make(map[string]*libucl.Object)
|
|
|
|
|
|
|
|
// Iterate over all the "provider" blocks and get the keys along with
|
|
|
|
// their raw configuration objects. We'll parse those later.
|
|
|
|
iter := o.Iterate(false)
|
|
|
|
for o1 := iter.Next(); o1 != nil; o1 = iter.Next() {
|
|
|
|
iter2 := o1.Iterate(true)
|
|
|
|
for o2 := iter2.Next(); o2 != nil; o2 = iter2.Next() {
|
|
|
|
objects[o2.Key()] = o2
|
|
|
|
defer o2.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
o1.Close()
|
|
|
|
iter2.Close()
|
|
|
|
}
|
|
|
|
iter.Close()
|
|
|
|
|
|
|
|
// Go through each object and turn it into an actual result.
|
|
|
|
result := make(map[string]*ProviderConfig)
|
|
|
|
for n, o := range objects {
|
|
|
|
var config map[string]interface{}
|
|
|
|
|
|
|
|
if err := o.Decode(&config); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-06-13 02:40:59 +02:00
|
|
|
rawConfig, err := NewRawConfig(config)
|
|
|
|
if err != nil {
|
2014-05-26 03:05:18 +02:00
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error reading config for provider config %s: %s",
|
|
|
|
n,
|
|
|
|
err)
|
|
|
|
}
|
|
|
|
|
|
|
|
result[n] = &ProviderConfig{
|
2014-06-13 02:40:59 +02:00
|
|
|
RawConfig: rawConfig,
|
2014-05-26 03:05:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2014-05-23 19:52:19 +02:00
|
|
|
// Given a handle to a libucl object, this recurses into the structure
|
|
|
|
// and pulls out a list of resources.
|
|
|
|
//
|
|
|
|
// The resulting resources may not be unique, but each resource
|
|
|
|
// represents exactly one resource definition in the libucl configuration.
|
|
|
|
// We leave it up to another pass to merge them together.
|
2014-05-24 22:57:51 +02:00
|
|
|
func loadResourcesLibucl(o *libucl.Object) ([]*Resource, error) {
|
2014-05-23 01:56:28 +02:00
|
|
|
var allTypes []*libucl.Object
|
|
|
|
|
|
|
|
// Libucl object iteration is really nasty. Below is likely to make
|
|
|
|
// no sense to anyone approaching this code. Luckily, it is very heavily
|
|
|
|
// tested. If working on a bug fix or feature, we recommend writing a
|
|
|
|
// test first then doing whatever you want to the code below. If you
|
|
|
|
// break it, the tests will catch it. Likewise, if you change this,
|
|
|
|
// MAKE SURE you write a test for your change, because its fairly impossible
|
|
|
|
// to reason about this mess.
|
|
|
|
//
|
|
|
|
// Functionally, what the code does below is get the libucl.Objects
|
|
|
|
// for all the TYPES, such as "aws_security_group".
|
|
|
|
iter := o.Iterate(false)
|
|
|
|
for o1 := iter.Next(); o1 != nil; o1 = iter.Next() {
|
|
|
|
// Iterate the inner to get the list of types
|
|
|
|
iter2 := o1.Iterate(true)
|
|
|
|
for o2 := iter2.Next(); o2 != nil; o2 = iter2.Next() {
|
|
|
|
// Iterate all of this type to get _all_ the types
|
|
|
|
iter3 := o2.Iterate(false)
|
|
|
|
for o3 := iter3.Next(); o3 != nil; o3 = iter3.Next() {
|
|
|
|
allTypes = append(allTypes, o3)
|
|
|
|
}
|
|
|
|
|
|
|
|
o2.Close()
|
|
|
|
iter3.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
o1.Close()
|
|
|
|
iter2.Close()
|
|
|
|
}
|
|
|
|
iter.Close()
|
|
|
|
|
|
|
|
// Where all the results will go
|
2014-05-24 22:57:51 +02:00
|
|
|
var result []*Resource
|
2014-05-23 01:56:28 +02:00
|
|
|
|
|
|
|
// Now go over all the types and their children in order to get
|
|
|
|
// all of the actual resources.
|
|
|
|
for _, t := range allTypes {
|
|
|
|
// Release the resources for this raw type since we don't need it.
|
|
|
|
// Note that this makes it unsafe now to use allTypes again.
|
|
|
|
defer t.Close()
|
|
|
|
|
|
|
|
iter := t.Iterate(true)
|
|
|
|
defer iter.Close()
|
|
|
|
for r := iter.Next(); r != nil; r = iter.Next() {
|
|
|
|
defer r.Close()
|
|
|
|
|
|
|
|
var config map[string]interface{}
|
|
|
|
if err := r.Decode(&config); err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error reading config for %s[%s]: %s",
|
|
|
|
t.Key(),
|
|
|
|
r.Key(),
|
|
|
|
err)
|
|
|
|
}
|
|
|
|
|
2014-06-13 02:40:59 +02:00
|
|
|
rawConfig, err := NewRawConfig(config)
|
|
|
|
if err != nil {
|
2014-05-24 06:58:06 +02:00
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error reading config for %s[%s]: %s",
|
|
|
|
t.Key(),
|
|
|
|
r.Key(),
|
|
|
|
err)
|
|
|
|
}
|
|
|
|
|
2014-05-24 22:57:51 +02:00
|
|
|
result = append(result, &Resource{
|
2014-05-24 06:58:06 +02:00
|
|
|
Name: r.Key(),
|
|
|
|
Type: t.Key(),
|
2014-06-13 02:40:59 +02:00
|
|
|
RawConfig: rawConfig,
|
2014-05-23 01:56:28 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|