2015-06-12 20:24:03 -04:00
|
|
|
package file
|
|
|
|
|
|
|
|
/*
|
|
|
|
The File builder creates an artifact from a file. Because it does not require
|
2018-03-13 23:29:14 -04:00
|
|
|
any virtualization or network resources, it's very fast and useful for testing.
|
2015-06-12 20:24:03 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
import (
|
2019-03-22 09:53:28 -04:00
|
|
|
"context"
|
2015-06-12 21:18:38 -04:00
|
|
|
"fmt"
|
|
|
|
"io"
|
2015-06-12 20:24:03 -04:00
|
|
|
"io/ioutil"
|
2015-06-12 21:18:38 -04:00
|
|
|
"os"
|
2015-06-12 20:24:03 -04:00
|
|
|
|
2019-12-17 05:25:56 -05:00
|
|
|
"github.com/hashicorp/hcl/v2/hcldec"
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2015-06-12 20:24:03 -04:00
|
|
|
)
|
|
|
|
|
2015-06-16 14:31:53 -04:00
|
|
|
const BuilderId = "packer.file"
|
2015-06-12 20:24:03 -04:00
|
|
|
|
|
|
|
type Builder struct {
|
2019-12-17 05:25:56 -05:00
|
|
|
config Config
|
2015-06-12 20:24:03 -04:00
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
2019-12-17 05:25:56 -05:00
|
|
|
func (b *Builder) ConfigSpec() hcldec.ObjectSpec { return b.config.FlatMapstructure().HCL2Spec() }
|
|
|
|
|
2019-12-17 00:23:05 -05:00
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, []string, error) {
|
2019-12-17 05:25:56 -05:00
|
|
|
warnings, errs := b.config.Prepare(raws...)
|
2015-06-12 20:34:46 -04:00
|
|
|
if errs != nil {
|
2019-12-17 00:23:05 -05:00
|
|
|
return nil, warnings, errs
|
2015-06-12 20:34:46 -04:00
|
|
|
}
|
|
|
|
|
2019-12-17 00:23:05 -05:00
|
|
|
return nil, warnings, nil
|
2015-06-12 20:24:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run is where the actual build should take place. It takes a Build and a Ui.
|
2019-03-22 09:53:28 -04:00
|
|
|
func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (packer.Artifact, error) {
|
2015-06-12 20:24:03 -04:00
|
|
|
artifact := new(FileArtifact)
|
|
|
|
|
2015-06-12 21:18:38 -04:00
|
|
|
if b.config.Source != "" {
|
|
|
|
source, err := os.Open(b.config.Source)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-11-05 14:40:42 -05:00
|
|
|
defer source.Close()
|
2015-06-12 21:18:38 -04:00
|
|
|
|
2015-06-15 21:56:09 -04:00
|
|
|
// Create will truncate an existing file
|
|
|
|
target, err := os.Create(b.config.Target)
|
2015-06-12 21:18:38 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-11-05 14:40:42 -05:00
|
|
|
defer target.Close()
|
2015-06-12 21:18:38 -04:00
|
|
|
|
|
|
|
ui.Say(fmt.Sprintf("Copying %s to %s", source.Name(), target.Name()))
|
2015-06-15 21:56:09 -04:00
|
|
|
bytes, err := io.Copy(target, source)
|
2015-06-12 21:18:38 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
ui.Say(fmt.Sprintf("Copied %d bytes", bytes))
|
|
|
|
artifact.filename = target.Name()
|
|
|
|
} else {
|
|
|
|
// We're going to write Contents; if it's empty we'll just create an
|
|
|
|
// empty file.
|
|
|
|
err := ioutil.WriteFile(b.config.Target, []byte(b.config.Content), 0600)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
artifact.filename = b.config.Target
|
|
|
|
}
|
2015-06-12 20:24:03 -04:00
|
|
|
|
2019-04-08 07:40:02 -04:00
|
|
|
if hook != nil {
|
|
|
|
if err := hook.Run(ctx, packer.HookProvision, ui, new(packer.MockCommunicator), nil); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-12 20:24:03 -04:00
|
|
|
return artifact, nil
|
|
|
|
}
|