packer-cn/command/fix.go

173 lines
3.8 KiB
Go
Raw Normal View History

2014-10-27 23:34:49 -04:00
package command
import (
2013-07-14 04:05:26 -04:00
"bytes"
2020-05-12 05:33:44 -04:00
"context"
"encoding/json"
"fmt"
2013-08-08 20:12:04 -04:00
"log"
"os"
"strings"
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/fix"
"github.com/hashicorp/packer/template"
"github.com/posener/complete"
2014-10-27 23:34:49 -04:00
)
2014-10-27 23:34:49 -04:00
type FixCommand struct {
Meta
}
2014-10-27 23:34:49 -04:00
func (c *FixCommand) Run(args []string) int {
2020-05-12 05:33:44 -04:00
ctx, cleanup := handleTermInterrupt(c.Ui)
defer cleanup()
cfg, ret := c.ParseArgs(args)
if ret != 0 {
return ret
}
return c.RunContext(ctx, cfg)
}
func (c *FixCommand) ParseArgs(args []string) (*FixArgs, int) {
var cfg FixArgs
2015-05-25 20:29:10 -04:00
flags := c.Meta.FlagSet("fix", FlagSetNone)
flags.Usage = func() { c.Ui.Say(c.Help()) }
2020-05-12 05:33:44 -04:00
cfg.AddFlagSets(flags)
2015-05-25 20:29:10 -04:00
if err := flags.Parse(args); err != nil {
2020-05-12 05:33:44 -04:00
return &cfg, 1
}
2015-05-25 20:29:10 -04:00
args = flags.Args()
if len(args) != 1 {
2015-05-25 20:29:10 -04:00
flags.Usage()
2020-05-12 05:33:44 -04:00
return &cfg, 1
}
2020-05-12 05:33:44 -04:00
cfg.Path = args[0]
return &cfg, 0
}
2020-05-12 05:33:44 -04:00
func (c *FixCommand) RunContext(ctx context.Context, cla *FixArgs) int {
// Read the file for decoding
2020-05-12 05:33:44 -04:00
tplF, err := os.Open(cla.Path)
if err != nil {
2015-05-25 20:29:10 -04:00
c.Ui.Error(fmt.Sprintf("Error opening template: %s", err))
return 1
}
defer tplF.Close()
// Decode the JSON into a generic map structure
var templateData map[string]interface{}
decoder := json.NewDecoder(tplF)
if err := decoder.Decode(&templateData); err != nil {
2015-05-25 20:29:10 -04:00
c.Ui.Error(fmt.Sprintf("Error parsing template: %s", err))
return 1
}
// Close the file since we're done with that
tplF.Close()
2013-07-14 04:05:26 -04:00
input := templateData
2014-10-27 23:34:49 -04:00
for _, name := range fix.FixerOrder {
2013-07-14 04:05:26 -04:00
var err error
2014-10-27 23:34:49 -04:00
fixer, ok := fix.Fixers[name]
if !ok {
panic("fixer not found: " + name)
}
2013-08-08 20:12:04 -04:00
log.Printf("Running fixer: %s", name)
2013-07-14 04:05:26 -04:00
input, err = fixer.Fix(input)
if err != nil {
2015-05-25 20:29:10 -04:00
c.Ui.Error(fmt.Sprintf("Error fixing: %s", err))
2013-07-14 04:05:26 -04:00
return 1
}
}
var output bytes.Buffer
encoder := json.NewEncoder(&output)
if err := encoder.Encode(input); err != nil {
2015-05-25 20:29:10 -04:00
c.Ui.Error(fmt.Sprintf("Error encoding: %s", err))
2013-07-14 04:05:26 -04:00
return 1
}
var indented bytes.Buffer
if err := json.Indent(&indented, output.Bytes(), "", " "); err != nil {
2015-05-25 20:29:10 -04:00
c.Ui.Error(fmt.Sprintf("Error encoding: %s", err))
2013-07-14 04:05:26 -04:00
return 1
}
result := indented.String()
result = strings.Replace(result, `\u003c`, "<", -1)
result = strings.Replace(result, `\u003e`, ">", -1)
2015-05-25 20:29:10 -04:00
c.Ui.Say(result)
2020-05-12 05:33:44 -04:00
if cla.Validate == false {
return 0
}
// Attempt to parse and validate the template
tpl, err := template.Parse(strings.NewReader(result))
if err != nil {
c.Ui.Error(fmt.Sprintf(
"Error! Fixed template fails to parse: %s\n\n"+
"This is usually caused by an error in the input template.\n"+
"Please fix the error and try again.",
err))
return 1
}
if err := tpl.Validate(); err != nil {
c.Ui.Error(fmt.Sprintf(
"Error! Fixed template failed to validate: %s\n\n"+
"This is usually caused by an error in the input template.\n"+
"Please fix the error and try again.",
err))
return 1
}
return 0
}
2014-10-27 23:34:49 -04:00
func (*FixCommand) Help() string {
helpText := `
Usage: packer fix [options] TEMPLATE
Reads the JSON template and attempts to fix known backwards
incompatibilities. The fixed template will be outputted to standard out.
If the template cannot be fixed due to an error, the command will exit
with a non-zero exit status. Error messages will appear on standard error.
Fixes that are run (in order):
`
for _, name := range fix.FixerOrder {
helpText += fmt.Sprintf(
" %-27s%s\n", name, fix.Fixers[name].Synopsis())
}
helpText += `
Options:
-validate=true If true (default), validates the fixed template.
2014-10-27 23:34:49 -04:00
`
return strings.TrimSpace(helpText)
}
func (c *FixCommand) Synopsis() string {
return "fixes templates from old versions of packer"
}
func (c *FixCommand) AutocompleteArgs() complete.Predictor {
return complete.PredictNothing
}
func (c *FixCommand) AutocompleteFlags() complete.Flags {
return complete.Flags{
"-validate": complete.PredictNothing,
}
}