2018-06-21 02:02:29 +02:00
|
|
|
package configupgrade
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
2018-06-29 02:26:06 +02:00
|
|
|
"io"
|
2018-06-21 02:02:29 +02:00
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
version "github.com/hashicorp/go-version"
|
|
|
|
|
|
|
|
hcl1ast "github.com/hashicorp/hcl/hcl/ast"
|
|
|
|
hcl1parser "github.com/hashicorp/hcl/hcl/parser"
|
|
|
|
hcl1printer "github.com/hashicorp/hcl/hcl/printer"
|
|
|
|
hcl1token "github.com/hashicorp/hcl/hcl/token"
|
|
|
|
|
|
|
|
hcl2 "github.com/hashicorp/hcl2/hcl"
|
2018-12-01 00:25:04 +01:00
|
|
|
"github.com/zclconf/go-cty/cty"
|
2018-06-21 02:02:29 +02:00
|
|
|
|
2018-11-29 02:00:33 +01:00
|
|
|
"github.com/hashicorp/terraform/addrs"
|
2018-06-21 02:02:29 +02:00
|
|
|
"github.com/hashicorp/terraform/tfdiags"
|
|
|
|
)
|
|
|
|
|
|
|
|
type upgradeFileResult struct {
|
|
|
|
Content []byte
|
|
|
|
ProviderRequirements map[string]version.Constraints
|
|
|
|
}
|
|
|
|
|
2018-06-29 02:26:06 +02:00
|
|
|
func (u *Upgrader) upgradeNativeSyntaxFile(filename string, src []byte, an *analysis) (upgradeFileResult, tfdiags.Diagnostics) {
|
2018-06-21 02:02:29 +02:00
|
|
|
var result upgradeFileResult
|
|
|
|
var diags tfdiags.Diagnostics
|
|
|
|
|
|
|
|
var buf bytes.Buffer
|
|
|
|
|
|
|
|
f, err := hcl1parser.Parse(src)
|
|
|
|
if err != nil {
|
|
|
|
return result, diags.Append(&hcl2.Diagnostic{
|
|
|
|
Severity: hcl2.DiagError,
|
|
|
|
Summary: "Syntax error in configuration file",
|
|
|
|
Detail: fmt.Sprintf("Error while parsing: %s", err),
|
|
|
|
Subject: hcl1ErrSubjectRange(filename, err),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
rootList := f.Node.(*hcl1ast.ObjectList)
|
|
|
|
rootItems := rootList.Items
|
|
|
|
adhocComments := collectAdhocComments(f)
|
|
|
|
|
|
|
|
for _, item := range rootItems {
|
|
|
|
comments := adhocComments.TakeBefore(item)
|
|
|
|
for _, group := range comments {
|
|
|
|
printComments(&buf, group)
|
|
|
|
buf.WriteByte('\n') // Extra separator after each group
|
|
|
|
}
|
|
|
|
|
|
|
|
blockType := item.Keys[0].Token.Value().(string)
|
|
|
|
labels := make([]string, len(item.Keys)-1)
|
|
|
|
for i, key := range item.Keys[1:] {
|
|
|
|
labels[i] = key.Token.Value().(string)
|
|
|
|
}
|
|
|
|
body, isObject := item.Val.(*hcl1ast.ObjectType)
|
|
|
|
if !isObject {
|
|
|
|
// Should never happen for valid input, since we don't expect
|
|
|
|
// any non-block items at our top level.
|
|
|
|
diags = diags.Append(&hcl2.Diagnostic{
|
|
|
|
Severity: hcl2.DiagWarning,
|
|
|
|
Summary: "Unsupported top-level attribute",
|
2018-06-29 02:26:06 +02:00
|
|
|
Detail: fmt.Sprintf("Attribute %q is not expected here, so its expression was not upgraded.", blockType),
|
2018-06-21 02:02:29 +02:00
|
|
|
Subject: hcl1PosRange(filename, item.Keys[0].Pos()).Ptr(),
|
|
|
|
})
|
|
|
|
// Preserve the item as-is, using the hcl1printer package.
|
2018-06-29 02:26:06 +02:00
|
|
|
buf.WriteString("# TF-UPGRADE-TODO: Top-level attributes are not valid, so this was not automatically upgraded.\n")
|
2018-06-21 02:02:29 +02:00
|
|
|
hcl1printer.Fprint(&buf, item)
|
|
|
|
buf.WriteString("\n\n")
|
|
|
|
continue
|
|
|
|
}
|
2018-06-29 02:26:06 +02:00
|
|
|
declRange := hcl1PosRange(filename, item.Keys[0].Pos())
|
2018-06-21 02:02:29 +02:00
|
|
|
|
|
|
|
switch blockType {
|
|
|
|
|
2018-11-29 02:00:33 +01:00
|
|
|
case "resource", "data":
|
2018-06-29 02:26:06 +02:00
|
|
|
if len(labels) != 2 {
|
|
|
|
// Should never happen for valid input.
|
|
|
|
diags = diags.Append(&hcl2.Diagnostic{
|
|
|
|
Severity: hcl2.DiagError,
|
2018-11-29 02:00:33 +01:00
|
|
|
Summary: fmt.Sprintf("Invalid %s block", blockType),
|
|
|
|
Detail: fmt.Sprintf("A %s block must have two labels: the type and the name.", blockType),
|
2018-06-29 02:26:06 +02:00
|
|
|
Subject: &declRange,
|
|
|
|
})
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
rAddr := addrs.Resource{
|
|
|
|
Mode: addrs.ManagedResourceMode,
|
|
|
|
Type: labels[0],
|
|
|
|
Name: labels[1],
|
|
|
|
}
|
2018-11-29 02:00:33 +01:00
|
|
|
if blockType == "data" {
|
|
|
|
rAddr.Mode = addrs.DataResourceMode
|
2018-06-29 02:26:06 +02:00
|
|
|
}
|
2018-11-29 02:00:33 +01:00
|
|
|
|
|
|
|
moreDiags := u.upgradeNativeSyntaxResource(filename, &buf, rAddr, item, an, adhocComments)
|
|
|
|
diags = diags.Append(moreDiags)
|
|
|
|
|
|
|
|
case "provider":
|
|
|
|
if len(labels) != 1 {
|
2018-06-29 02:26:06 +02:00
|
|
|
diags = diags.Append(&hcl2.Diagnostic{
|
|
|
|
Severity: hcl2.DiagError,
|
2018-11-29 02:00:33 +01:00
|
|
|
Summary: fmt.Sprintf("Invalid %s block", blockType),
|
|
|
|
Detail: fmt.Sprintf("A %s block must have one label: the provider type.", blockType),
|
2018-06-29 02:26:06 +02:00
|
|
|
Subject: &declRange,
|
|
|
|
})
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-11-29 02:00:33 +01:00
|
|
|
pType := labels[0]
|
|
|
|
moreDiags := u.upgradeNativeSyntaxProvider(filename, &buf, pType, item, an, adhocComments)
|
|
|
|
diags = diags.Append(moreDiags)
|
2018-06-29 02:26:06 +02:00
|
|
|
|
2018-06-21 02:02:29 +02:00
|
|
|
case "variable":
|
2018-12-01 00:25:04 +01:00
|
|
|
if len(labels) != 1 {
|
|
|
|
diags = diags.Append(&hcl2.Diagnostic{
|
|
|
|
Severity: hcl2.DiagError,
|
|
|
|
Summary: fmt.Sprintf("Invalid %s block", blockType),
|
|
|
|
Detail: fmt.Sprintf("A %s block must have one label: the variable name.", blockType),
|
|
|
|
Subject: &declRange,
|
|
|
|
})
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-06-21 02:02:29 +02:00
|
|
|
printComments(&buf, item.LeadComment)
|
|
|
|
printBlockOpen(&buf, blockType, labels, item.LineComment)
|
2018-12-01 00:25:04 +01:00
|
|
|
rules := bodyContentRules{
|
|
|
|
"description": noInterpAttributeRule(filename, cty.String, an),
|
2018-12-01 00:55:18 +01:00
|
|
|
"default": noInterpAttributeRule(filename, cty.DynamicPseudoType, an),
|
2018-12-01 00:25:04 +01:00
|
|
|
"type": maybeBareKeywordAttributeRule(filename, an, map[string]string{
|
|
|
|
// "list" and "map" in older versions were documented to
|
|
|
|
// mean list and map of strings, so we'll migrate to that
|
|
|
|
// and let the user adjust it to some other type if desired.
|
|
|
|
"list": `list(string)`,
|
|
|
|
"map": `map(string)`,
|
|
|
|
}),
|
2018-06-21 02:02:29 +02:00
|
|
|
}
|
2018-12-01 00:55:18 +01:00
|
|
|
bodyDiags := u.upgradeBlockBody(filename, fmt.Sprintf("var.%s", labels[0]), &buf, body.List.Items, rules, adhocComments)
|
|
|
|
diags = diags.Append(bodyDiags)
|
2018-06-21 02:02:29 +02:00
|
|
|
buf.WriteString("}\n\n")
|
|
|
|
|
|
|
|
case "output":
|
2018-12-01 00:25:04 +01:00
|
|
|
if len(labels) != 1 {
|
|
|
|
diags = diags.Append(&hcl2.Diagnostic{
|
|
|
|
Severity: hcl2.DiagError,
|
|
|
|
Summary: fmt.Sprintf("Invalid %s block", blockType),
|
|
|
|
Detail: fmt.Sprintf("A %s block must have one label: the output name.", blockType),
|
|
|
|
Subject: &declRange,
|
|
|
|
})
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-06-21 02:02:29 +02:00
|
|
|
printComments(&buf, item.LeadComment)
|
|
|
|
printBlockOpen(&buf, blockType, labels, item.LineComment)
|
|
|
|
|
2018-12-01 00:25:04 +01:00
|
|
|
rules := bodyContentRules{
|
|
|
|
"description": noInterpAttributeRule(filename, cty.String, an),
|
2018-12-01 00:55:18 +01:00
|
|
|
"value": normalAttributeRule(filename, cty.DynamicPseudoType, an),
|
|
|
|
"sensitive": noInterpAttributeRule(filename, cty.Bool, an),
|
|
|
|
"depends_on": dependsOnAttributeRule(filename, an),
|
2018-06-21 02:02:29 +02:00
|
|
|
}
|
2018-12-01 00:55:18 +01:00
|
|
|
bodyDiags := u.upgradeBlockBody(filename, fmt.Sprintf("output.%s", labels[0]), &buf, body.List.Items, rules, adhocComments)
|
|
|
|
diags = diags.Append(bodyDiags)
|
2018-06-21 02:02:29 +02:00
|
|
|
buf.WriteString("}\n\n")
|
|
|
|
|
|
|
|
case "locals":
|
|
|
|
printComments(&buf, item.LeadComment)
|
|
|
|
printBlockOpen(&buf, blockType, labels, item.LineComment)
|
|
|
|
|
2018-12-01 00:25:04 +01:00
|
|
|
// The "locals" block contents are free-form declarations, so
|
|
|
|
// we'll need to treat this one as special and not do a rules-based
|
|
|
|
// upgrade as we do for most other block types.
|
2018-06-21 02:02:29 +02:00
|
|
|
args := body.List.Items
|
|
|
|
for i, arg := range args {
|
|
|
|
if len(arg.Keys) != 1 {
|
|
|
|
// Should never happen for valid input, since there are no nested blocks expected here.
|
|
|
|
diags = diags.Append(&hcl2.Diagnostic{
|
|
|
|
Severity: hcl2.DiagWarning,
|
|
|
|
Summary: "Invalid nested block",
|
2018-06-29 02:26:06 +02:00
|
|
|
Detail: fmt.Sprintf("Blocks of type %q are not expected here, so this was not automatically upgraded.", arg.Keys[0].Token.Value().(string)),
|
2018-06-21 02:02:29 +02:00
|
|
|
Subject: hcl1PosRange(filename, arg.Keys[0].Pos()).Ptr(),
|
|
|
|
})
|
|
|
|
// Preserve the item as-is, using the hcl1printer package.
|
2018-06-29 02:26:06 +02:00
|
|
|
buf.WriteString("\n# TF-UPGRADE-TODO: Blocks are not expected here, so this was not automatically upgraded.\n")
|
2018-06-21 02:02:29 +02:00
|
|
|
hcl1printer.Fprint(&buf, arg)
|
|
|
|
buf.WriteString("\n\n")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
comments := adhocComments.TakeBefore(arg)
|
|
|
|
for _, group := range comments {
|
|
|
|
printComments(&buf, group)
|
|
|
|
buf.WriteByte('\n') // Extra separator after each group
|
|
|
|
}
|
|
|
|
|
|
|
|
printComments(&buf, arg.LeadComment)
|
|
|
|
|
|
|
|
name := arg.Keys[0].Token.Value().(string)
|
|
|
|
expr := arg.Val
|
2018-06-29 02:26:06 +02:00
|
|
|
exprSrc, exprDiags := upgradeExpr(expr, filename, true, an)
|
2018-06-21 02:02:29 +02:00
|
|
|
diags = diags.Append(exprDiags)
|
|
|
|
printAttribute(&buf, name, exprSrc, arg.LineComment)
|
|
|
|
|
|
|
|
// If we have another item and it's more than one line away
|
|
|
|
// from the current one then we'll print an extra blank line
|
|
|
|
// to retain that separation.
|
|
|
|
if (i + 1) < len(args) {
|
|
|
|
next := args[i+1]
|
|
|
|
thisPos := arg.Pos()
|
|
|
|
nextPos := next.Pos()
|
|
|
|
if nextPos.Line-thisPos.Line > 1 {
|
|
|
|
buf.WriteByte('\n')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buf.WriteString("}\n\n")
|
|
|
|
|
|
|
|
default:
|
|
|
|
// Should never happen for valid input, because the above cases
|
|
|
|
// are exhaustive for valid blocks as of Terraform 0.11.
|
|
|
|
diags = diags.Append(&hcl2.Diagnostic{
|
|
|
|
Severity: hcl2.DiagWarning,
|
|
|
|
Summary: "Unsupported root block type",
|
2018-06-29 02:26:06 +02:00
|
|
|
Detail: fmt.Sprintf("The block type %q is not expected here, so its content was not upgraded.", blockType),
|
2018-06-21 02:02:29 +02:00
|
|
|
Subject: hcl1PosRange(filename, item.Keys[0].Pos()).Ptr(),
|
|
|
|
})
|
|
|
|
|
|
|
|
// Preserve the block as-is, using the hcl1printer package.
|
2018-06-29 02:26:06 +02:00
|
|
|
buf.WriteString("# TF-UPGRADE-TODO: Block type was not recognized, so this block and its contents were not automatically upgraded.\n")
|
2018-06-21 02:02:29 +02:00
|
|
|
hcl1printer.Fprint(&buf, item)
|
|
|
|
buf.WriteString("\n\n")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Print out any leftover comments
|
|
|
|
for _, group := range *adhocComments {
|
|
|
|
printComments(&buf, group)
|
|
|
|
}
|
|
|
|
|
|
|
|
result.Content = buf.Bytes()
|
|
|
|
|
|
|
|
return result, diags
|
|
|
|
}
|
|
|
|
|
2018-11-29 02:00:33 +01:00
|
|
|
func (u *Upgrader) upgradeNativeSyntaxResource(filename string, buf *bytes.Buffer, addr addrs.Resource, item *hcl1ast.ObjectItem, an *analysis, adhocComments *commentQueue) tfdiags.Diagnostics {
|
|
|
|
var diags tfdiags.Diagnostics
|
|
|
|
|
|
|
|
body := item.Val.(*hcl1ast.ObjectType)
|
|
|
|
declRange := hcl1PosRange(filename, item.Keys[0].Pos())
|
|
|
|
|
|
|
|
// We should always have a schema for each provider in our analysis
|
|
|
|
// object. If not, it's a bug in the analyzer.
|
|
|
|
providerType, ok := an.ResourceProviderType[addr]
|
|
|
|
if !ok {
|
|
|
|
panic(fmt.Sprintf("unknown provider type for %s", addr.String()))
|
|
|
|
}
|
|
|
|
providerSchema, ok := an.ProviderSchemas[providerType]
|
|
|
|
if !ok {
|
|
|
|
panic(fmt.Sprintf("missing schema for provider type %q", providerType))
|
|
|
|
}
|
|
|
|
schema, _ := providerSchema.SchemaForResourceAddr(addr)
|
|
|
|
if !ok {
|
|
|
|
diags = diags.Append(&hcl2.Diagnostic{
|
|
|
|
Severity: hcl2.DiagError,
|
|
|
|
Summary: "Unknown resource type",
|
|
|
|
Detail: fmt.Sprintf("The resource type %q is not known to the currently-selected version of provider %q.", addr.Type, providerType),
|
|
|
|
Subject: &declRange,
|
|
|
|
})
|
|
|
|
return diags
|
|
|
|
}
|
|
|
|
|
|
|
|
var blockType string
|
|
|
|
switch addr.Mode {
|
|
|
|
case addrs.ManagedResourceMode:
|
|
|
|
blockType = "resource"
|
|
|
|
case addrs.DataResourceMode:
|
|
|
|
blockType = "data"
|
|
|
|
}
|
|
|
|
labels := []string{addr.Type, addr.Name}
|
|
|
|
|
2018-12-01 00:25:04 +01:00
|
|
|
rules := schemaDefaultBodyRules(filename, schema, an)
|
|
|
|
|
2018-11-29 02:00:33 +01:00
|
|
|
printComments(buf, item.LeadComment)
|
|
|
|
printBlockOpen(buf, blockType, labels, item.LineComment)
|
2018-12-01 00:55:18 +01:00
|
|
|
bodyDiags := u.upgradeBlockBody(filename, addr.String(), buf, body.List.Items, rules, adhocComments)
|
|
|
|
diags = diags.Append(bodyDiags)
|
2018-11-29 02:00:33 +01:00
|
|
|
buf.WriteString("}\n\n")
|
|
|
|
|
|
|
|
return diags
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *Upgrader) upgradeNativeSyntaxProvider(filename string, buf *bytes.Buffer, typeName string, item *hcl1ast.ObjectItem, an *analysis, adhocComments *commentQueue) tfdiags.Diagnostics {
|
|
|
|
var diags tfdiags.Diagnostics
|
|
|
|
|
|
|
|
body := item.Val.(*hcl1ast.ObjectType)
|
|
|
|
|
|
|
|
// We should always have a schema for each provider in our analysis
|
|
|
|
// object. If not, it's a bug in the analyzer.
|
|
|
|
providerSchema, ok := an.ProviderSchemas[typeName]
|
|
|
|
if !ok {
|
|
|
|
panic(fmt.Sprintf("missing schema for provider type %q", typeName))
|
|
|
|
}
|
|
|
|
schema := providerSchema.Provider
|
2018-12-01 00:25:04 +01:00
|
|
|
rules := schemaDefaultBodyRules(filename, schema, an)
|
2018-11-29 02:00:33 +01:00
|
|
|
|
|
|
|
printComments(buf, item.LeadComment)
|
|
|
|
printBlockOpen(buf, "provider", []string{typeName}, item.LineComment)
|
2018-12-01 00:55:18 +01:00
|
|
|
bodyDiags := u.upgradeBlockBody(filename, fmt.Sprintf("provider.%s", typeName), buf, body.List.Items, rules, adhocComments)
|
|
|
|
diags = diags.Append(bodyDiags)
|
2018-11-29 02:00:33 +01:00
|
|
|
buf.WriteString("}\n\n")
|
|
|
|
|
|
|
|
return diags
|
|
|
|
}
|
|
|
|
|
2018-12-01 00:25:04 +01:00
|
|
|
func (u *Upgrader) upgradeBlockBody(filename string, blockAddr string, buf *bytes.Buffer, args []*hcl1ast.ObjectItem, rules bodyContentRules, adhocComments *commentQueue) tfdiags.Diagnostics {
|
2018-11-29 02:00:33 +01:00
|
|
|
var diags tfdiags.Diagnostics
|
|
|
|
|
|
|
|
for i, arg := range args {
|
|
|
|
comments := adhocComments.TakeBefore(arg)
|
|
|
|
for _, group := range comments {
|
|
|
|
printComments(buf, group)
|
|
|
|
buf.WriteByte('\n') // Extra separator after each group
|
|
|
|
}
|
|
|
|
|
|
|
|
printComments(buf, arg.LeadComment)
|
|
|
|
|
|
|
|
name := arg.Keys[0].Token.Value().(string)
|
|
|
|
//labelKeys := arg.Keys[1:]
|
|
|
|
|
2018-12-01 00:25:04 +01:00
|
|
|
rule, expected := rules[name]
|
|
|
|
if !expected {
|
|
|
|
if arg.Assign.IsValid() {
|
|
|
|
diags = diags.Append(&hcl2.Diagnostic{
|
|
|
|
Severity: hcl2.DiagError,
|
|
|
|
Summary: "Unrecognized attribute name",
|
|
|
|
Detail: fmt.Sprintf("No attribute named %q is expected in %s.", name, blockAddr),
|
|
|
|
Subject: hcl1PosRange(filename, arg.Keys[0].Pos()).Ptr(),
|
|
|
|
})
|
2018-11-29 02:00:33 +01:00
|
|
|
} else {
|
2018-12-01 00:25:04 +01:00
|
|
|
diags = diags.Append(&hcl2.Diagnostic{
|
|
|
|
Severity: hcl2.DiagError,
|
|
|
|
Summary: "Unrecognized block type",
|
|
|
|
Detail: fmt.Sprintf("Blocks of type %q are not expected in %s.", name, blockAddr),
|
|
|
|
Subject: hcl1PosRange(filename, arg.Keys[0].Pos()).Ptr(),
|
|
|
|
})
|
2018-11-29 02:00:33 +01:00
|
|
|
}
|
2018-12-01 00:25:04 +01:00
|
|
|
continue
|
2018-11-29 02:00:33 +01:00
|
|
|
}
|
|
|
|
|
2018-12-01 00:25:04 +01:00
|
|
|
itemDiags := rule(buf, blockAddr, arg)
|
|
|
|
diags = diags.Append(itemDiags)
|
|
|
|
|
2018-11-29 02:00:33 +01:00
|
|
|
// If we have another item and it's more than one line away
|
|
|
|
// from the current one then we'll print an extra blank line
|
|
|
|
// to retain that separation.
|
|
|
|
if (i + 1) < len(args) {
|
|
|
|
next := args[i+1]
|
|
|
|
thisPos := arg.Pos()
|
|
|
|
nextPos := next.Pos()
|
|
|
|
if nextPos.Line-thisPos.Line > 1 {
|
|
|
|
buf.WriteByte('\n')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return diags
|
|
|
|
}
|
|
|
|
|
2018-06-21 02:02:29 +02:00
|
|
|
func printComments(buf *bytes.Buffer, group *hcl1ast.CommentGroup) {
|
|
|
|
if group == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for _, comment := range group.List {
|
|
|
|
buf.WriteString(comment.Text)
|
|
|
|
buf.WriteByte('\n')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func printBlockOpen(buf *bytes.Buffer, blockType string, labels []string, commentGroup *hcl1ast.CommentGroup) {
|
|
|
|
buf.WriteString(blockType)
|
|
|
|
for _, label := range labels {
|
|
|
|
buf.WriteByte(' ')
|
|
|
|
printQuotedString(buf, label)
|
|
|
|
}
|
|
|
|
buf.WriteString(" {")
|
|
|
|
if commentGroup != nil {
|
|
|
|
for _, c := range commentGroup.List {
|
|
|
|
buf.WriteByte(' ')
|
|
|
|
buf.WriteString(c.Text)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buf.WriteByte('\n')
|
|
|
|
}
|
|
|
|
|
|
|
|
func printAttribute(buf *bytes.Buffer, name string, valSrc []byte, commentGroup *hcl1ast.CommentGroup) {
|
|
|
|
buf.WriteString(name)
|
|
|
|
buf.WriteString(" = ")
|
|
|
|
buf.Write(valSrc)
|
|
|
|
if commentGroup != nil {
|
|
|
|
for _, c := range commentGroup.List {
|
|
|
|
buf.WriteByte(' ')
|
|
|
|
buf.WriteString(c.Text)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buf.WriteByte('\n')
|
|
|
|
}
|
|
|
|
|
|
|
|
func printQuotedString(buf *bytes.Buffer, val string) {
|
|
|
|
buf.WriteByte('"')
|
|
|
|
printStringLiteralFromHILOutput(buf, val)
|
|
|
|
buf.WriteByte('"')
|
|
|
|
}
|
|
|
|
|
|
|
|
func printStringLiteralFromHILOutput(buf *bytes.Buffer, val string) {
|
|
|
|
val = strings.Replace(val, `\`, `\\`, -1)
|
|
|
|
val = strings.Replace(val, `"`, `\"`, -1)
|
|
|
|
val = strings.Replace(val, "\n", `\n`, -1)
|
|
|
|
val = strings.Replace(val, "\r", `\r`, -1)
|
|
|
|
val = strings.Replace(val, `${`, `$${`, -1)
|
|
|
|
val = strings.Replace(val, `%{`, `%%{`, -1)
|
|
|
|
buf.WriteString(val)
|
|
|
|
}
|
|
|
|
|
|
|
|
func collectAdhocComments(f *hcl1ast.File) *commentQueue {
|
|
|
|
comments := make(map[hcl1token.Pos]*hcl1ast.CommentGroup)
|
|
|
|
for _, c := range f.Comments {
|
|
|
|
comments[c.Pos()] = c
|
|
|
|
}
|
|
|
|
|
|
|
|
// We'll remove from our map any comments that are attached to specific
|
|
|
|
// nodes as lead or line comments, since we'll find those during our
|
|
|
|
// walk anyway.
|
|
|
|
hcl1ast.Walk(f, func(nn hcl1ast.Node) (hcl1ast.Node, bool) {
|
|
|
|
switch t := nn.(type) {
|
|
|
|
case *hcl1ast.LiteralType:
|
|
|
|
if t.LeadComment != nil {
|
|
|
|
for _, comment := range t.LeadComment.List {
|
|
|
|
delete(comments, comment.Pos())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if t.LineComment != nil {
|
|
|
|
for _, comment := range t.LineComment.List {
|
|
|
|
delete(comments, comment.Pos())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case *hcl1ast.ObjectItem:
|
|
|
|
if t.LeadComment != nil {
|
|
|
|
for _, comment := range t.LeadComment.List {
|
|
|
|
delete(comments, comment.Pos())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if t.LineComment != nil {
|
|
|
|
for _, comment := range t.LineComment.List {
|
|
|
|
delete(comments, comment.Pos())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nn, true
|
|
|
|
})
|
|
|
|
|
|
|
|
if len(comments) == 0 {
|
|
|
|
var ret commentQueue
|
|
|
|
return &ret
|
|
|
|
}
|
|
|
|
|
|
|
|
ret := make([]*hcl1ast.CommentGroup, 0, len(comments))
|
|
|
|
for _, c := range comments {
|
|
|
|
ret = append(ret, c)
|
|
|
|
}
|
|
|
|
sort.Slice(ret, func(i, j int) bool {
|
|
|
|
return ret[i].Pos().Before(ret[j].Pos())
|
|
|
|
})
|
|
|
|
queue := commentQueue(ret)
|
|
|
|
return &queue
|
|
|
|
}
|
|
|
|
|
|
|
|
type commentQueue []*hcl1ast.CommentGroup
|
|
|
|
|
|
|
|
func (q *commentQueue) TakeBefore(node hcl1ast.Node) []*hcl1ast.CommentGroup {
|
|
|
|
toPos := node.Pos()
|
|
|
|
var i int
|
|
|
|
for i = 0; i < len(*q); i++ {
|
|
|
|
if (*q)[i].Pos().After(toPos) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if i == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
ret := (*q)[:i]
|
|
|
|
*q = (*q)[i:]
|
|
|
|
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func hcl1ErrSubjectRange(filename string, err error) *hcl2.Range {
|
|
|
|
if pe, isPos := err.(*hcl1parser.PosError); isPos {
|
2018-06-29 02:26:06 +02:00
|
|
|
return hcl1PosRange(filename, pe.Pos).Ptr()
|
2018-06-21 02:02:29 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-06-29 02:26:06 +02:00
|
|
|
func hcl1PosRange(filename string, pos hcl1token.Pos) hcl2.Range {
|
|
|
|
return hcl2.Range{
|
2018-06-21 02:02:29 +02:00
|
|
|
Filename: filename,
|
|
|
|
Start: hcl2.Pos{
|
|
|
|
Line: pos.Line,
|
|
|
|
Column: pos.Column,
|
|
|
|
Byte: pos.Offset,
|
|
|
|
},
|
|
|
|
End: hcl2.Pos{
|
|
|
|
Line: pos.Line,
|
|
|
|
Column: pos.Column,
|
|
|
|
Byte: pos.Offset,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2018-06-29 02:26:06 +02:00
|
|
|
|
|
|
|
func passthruBlockTodo(w io.Writer, node hcl1ast.Node, msg string) {
|
|
|
|
fmt.Fprintf(w, "\n# TF-UPGRADE-TODO: %s\n", msg)
|
|
|
|
hcl1printer.Fprint(w, node)
|
|
|
|
w.Write([]byte{'\n', '\n'})
|
|
|
|
}
|