Files
Packer-Cn/builder/file/builder.go
T

95 lines
2.2 KiB
Go
Raw Normal View History

// Copyright (c) HashiCorp, Inc.
2023-08-10 15:53:29 -07:00
// SPDX-License-Identifier: BUSL-1.1
package file
/*
The File builder creates an artifact from a file. Because it does not require
2018-03-14 03:29:14 +00:00
any virtualization or network resources, it's very fast and useful for testing.
*/
import (
"context"
"fmt"
"io"
"os"
2020-06-18 01:25:04 -07:00
"path/filepath"
2019-12-17 11:25:56 +01:00
"github.com/hashicorp/hcl/v2/hcldec"
2020-12-17 13:29:25 -08:00
"github.com/hashicorp/packer-plugin-sdk/multistep"
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
)
2015-06-16 11:31:53 -07:00
const BuilderId = "packer.file"
type Builder struct {
2019-12-17 11:25:56 +01:00
config Config
runner multistep.Runner
}
2019-12-17 11:25:56 +01:00
func (b *Builder) ConfigSpec() hcldec.ObjectSpec { return b.config.FlatMapstructure().HCL2Spec() }
func (b *Builder) Prepare(raws ...interface{}) ([]string, []string, error) {
2019-12-17 11:25:56 +01:00
warnings, errs := b.config.Prepare(raws...)
2015-06-12 17:34:46 -07:00
if errs != nil {
return nil, warnings, errs
2015-06-12 17:34:46 -07:00
}
return nil, warnings, nil
}
// Run is where the actual build should take place. It takes a Build and a Ui.
func (b *Builder) Run(ctx context.Context, ui packersdk.Ui, hook packersdk.Hook) (packersdk.Artifact, error) {
artifact := new(FileArtifact)
2020-06-18 01:25:04 -07:00
// Create all directories leading to target
dir := filepath.Dir(b.config.Target)
if dir != "." {
if err := os.MkdirAll(dir, 0755); err != nil {
return nil, err
}
}
if b.config.Source != "" {
source, err := os.Open(b.config.Source)
if err != nil {
return nil, err
}
defer source.Close()
// Create will truncate an existing file
target, err := os.Create(b.config.Target)
if err != nil {
return nil, err
}
defer target.Close()
ui.Say(fmt.Sprintf("Copying %s to %s", source.Name(), target.Name()))
bytes, err := io.Copy(target, source)
if err != nil {
return nil, err
}
ui.Say(fmt.Sprintf("Copied %d bytes", bytes))
artifact.source = b.config.Source
artifact.filename = target.Name()
} else {
// We're going to write Contents; if it's empty we'll just create an
// empty file.
2023-09-22 15:44:03 +08:00
err := os.WriteFile(b.config.Target, []byte(b.config.Content), 0600)
if err != nil {
return nil, err
}
artifact.source = "<no-defined-source-file>"
artifact.filename = b.config.Target
}
if hook != nil {
if err := hook.Run(ctx, packersdk.HookProvision, ui, new(packersdk.MockCommunicator), nil); err != nil {
return nil, err
}
}
return artifact, nil
}