2016-06-10 01:26:22 -04:00
|
|
|
package manifest
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2016-06-10 17:39:41 -04:00
|
|
|
"log"
|
2016-06-10 01:26:22 -04:00
|
|
|
"os"
|
2016-08-09 10:41:21 -04:00
|
|
|
"path/filepath"
|
2016-06-10 01:26:22 -04:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/mitchellh/packer/common"
|
|
|
|
"github.com/mitchellh/packer/helper/config"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"github.com/mitchellh/packer/template/interpolate"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
|
2016-11-21 03:04:16 -05:00
|
|
|
OutputPath string `mapstructure:"output"`
|
|
|
|
StripPath bool `mapstructure:"strip_path"`
|
|
|
|
ctx interpolate.Context
|
2016-06-10 01:26:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type PostProcessor struct {
|
|
|
|
config Config
|
|
|
|
}
|
|
|
|
|
|
|
|
type ManifestFile struct {
|
2016-06-10 17:39:41 -04:00
|
|
|
Builds []Artifact `json:"builds"`
|
|
|
|
LastRunUUID string `json:"last_run_uuid"`
|
2016-06-10 01:26:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PostProcessor) Configure(raws ...interface{}) error {
|
|
|
|
err := config.Decode(&p.config, &config.DecodeOpts{
|
|
|
|
Interpolate: true,
|
|
|
|
InterpolateContext: &p.config.ctx,
|
|
|
|
InterpolateFilter: &interpolate.RenderFilter{
|
|
|
|
Exclude: []string{},
|
|
|
|
},
|
|
|
|
}, raws...)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-11-21 03:04:16 -05:00
|
|
|
if p.config.OutputPath == "" {
|
|
|
|
p.config.OutputPath = "packer-manifest.json"
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = interpolate.Validate(p.config.OutputPath, &p.config.ctx); err != nil {
|
|
|
|
return fmt.Errorf("Error parsing target template: %s", err)
|
2016-06-10 01:26:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PostProcessor) PostProcess(ui packer.Ui, source packer.Artifact) (packer.Artifact, bool, error) {
|
|
|
|
artifact := &Artifact{}
|
|
|
|
|
2016-06-10 17:39:41 -04:00
|
|
|
var err error
|
2016-08-09 09:46:15 -04:00
|
|
|
var fi os.FileInfo
|
2016-06-10 17:39:41 -04:00
|
|
|
|
2016-06-10 01:26:22 -04:00
|
|
|
// Create the current artifact.
|
2016-08-09 09:46:15 -04:00
|
|
|
for _, name := range source.Files() {
|
2016-08-09 10:41:21 -04:00
|
|
|
af := ArtifactFile{}
|
2016-08-09 09:46:15 -04:00
|
|
|
if fi, err = os.Stat(name); err == nil {
|
2016-08-09 10:41:21 -04:00
|
|
|
af.Size = fi.Size()
|
|
|
|
}
|
|
|
|
if p.config.StripPath {
|
|
|
|
af.Name = filepath.Base(name)
|
2016-08-09 09:46:15 -04:00
|
|
|
} else {
|
2016-08-09 10:41:21 -04:00
|
|
|
af.Name = name
|
2016-08-09 09:46:15 -04:00
|
|
|
}
|
2016-08-09 10:41:21 -04:00
|
|
|
artifact.ArtifactFiles = append(artifact.ArtifactFiles, af)
|
2016-08-09 09:46:15 -04:00
|
|
|
}
|
2016-06-10 04:31:41 -04:00
|
|
|
artifact.ArtifactId = source.Id()
|
|
|
|
artifact.BuilderType = p.config.PackerBuilderType
|
|
|
|
artifact.BuildName = p.config.PackerBuildName
|
2016-06-10 01:26:22 -04:00
|
|
|
artifact.BuildTime = time.Now().Unix()
|
2016-06-24 15:46:35 -04:00
|
|
|
// Since each post-processor runs in a different process we need a way to
|
|
|
|
// coordinate between various post-processors in a single packer run. We do
|
|
|
|
// this by setting a UUID per run and tracking this in the manifest file.
|
|
|
|
// When we detect that the UUID in the file is the same, we know that we are
|
|
|
|
// part of the same run and we simply add our data to the list. If the UUID
|
|
|
|
// is different we will check the -force flag and decide whether to truncate
|
|
|
|
// the file before we proceed.
|
2016-06-10 17:39:41 -04:00
|
|
|
artifact.PackerRunUUID = os.Getenv("PACKER_RUN_UUID")
|
2016-06-10 01:26:22 -04:00
|
|
|
|
|
|
|
// Create a lock file with exclusive access. If this fails we will retry
|
2016-06-10 17:39:41 -04:00
|
|
|
// after a delay.
|
2016-11-21 03:04:16 -05:00
|
|
|
lockFilename := p.config.OutputPath + ".lock"
|
2016-06-10 17:39:41 -04:00
|
|
|
for i := 0; i < 3; i++ {
|
2016-06-24 15:46:35 -04:00
|
|
|
// The file should not be locked for very long so we'll keep this short.
|
|
|
|
time.Sleep((time.Duration(i) * 200 * time.Millisecond))
|
2016-06-10 17:39:41 -04:00
|
|
|
_, err = os.OpenFile(lockFilename, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0600)
|
|
|
|
if err == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
log.Printf("Error locking manifest file for reading and writing. Will sleep and retry. %s", err)
|
|
|
|
}
|
2016-06-10 01:26:22 -04:00
|
|
|
defer os.Remove(lockFilename)
|
|
|
|
|
|
|
|
// Read the current manifest file from disk
|
|
|
|
contents := []byte{}
|
2016-11-21 03:04:16 -05:00
|
|
|
if contents, err = ioutil.ReadFile(p.config.OutputPath); err != nil && !os.IsNotExist(err) {
|
|
|
|
return source, true, fmt.Errorf("Unable to open %s for reading: %s", p.config.OutputPath, err)
|
2016-06-10 01:26:22 -04:00
|
|
|
}
|
|
|
|
|
2016-06-10 17:39:41 -04:00
|
|
|
// Parse the manifest file JSON, if we have one
|
2016-06-10 01:26:22 -04:00
|
|
|
manifestFile := &ManifestFile{}
|
|
|
|
if len(contents) > 0 {
|
|
|
|
if err = json.Unmarshal(contents, manifestFile); err != nil {
|
2016-11-21 03:04:16 -05:00
|
|
|
return source, true, fmt.Errorf("Unable to parse content from %s: %s", p.config.OutputPath, err)
|
2016-06-10 01:26:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-10 17:39:41 -04:00
|
|
|
// If -force is set and we are not on same run, truncate the file. Otherwise
|
|
|
|
// we will continue to add new builds to the existing manifest file.
|
|
|
|
if p.config.PackerForce && os.Getenv("PACKER_RUN_UUID") != manifestFile.LastRunUUID {
|
|
|
|
manifestFile = &ManifestFile{}
|
|
|
|
}
|
|
|
|
|
2016-06-10 01:26:22 -04:00
|
|
|
// Add the current artifact to the manifest file
|
|
|
|
manifestFile.Builds = append(manifestFile.Builds, *artifact)
|
2016-06-10 17:39:41 -04:00
|
|
|
manifestFile.LastRunUUID = os.Getenv("PACKER_RUN_UUID")
|
2016-06-10 01:26:22 -04:00
|
|
|
|
|
|
|
// Write JSON to disk
|
2016-06-10 03:52:21 -04:00
|
|
|
if out, err := json.MarshalIndent(manifestFile, "", " "); err == nil {
|
2016-11-21 03:04:16 -05:00
|
|
|
if err = ioutil.WriteFile(p.config.OutputPath, out, 0664); err != nil {
|
|
|
|
return source, true, fmt.Errorf("Unable to write %s: %s", p.config.OutputPath, err)
|
2016-06-10 01:26:22 -04:00
|
|
|
}
|
|
|
|
} else {
|
2016-06-10 03:52:21 -04:00
|
|
|
return source, true, fmt.Errorf("Unable to marshal JSON %s", err)
|
2016-06-10 01:26:22 -04:00
|
|
|
}
|
|
|
|
|
2016-06-27 22:19:29 -04:00
|
|
|
return source, true, nil
|
2016-06-10 01:26:22 -04:00
|
|
|
}
|