2021-12-17 23:58:52 +01:00
|
|
|
package task
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/moby/buildkit/client/llb"
|
|
|
|
"go.dagger.io/dagger/compiler"
|
|
|
|
"go.dagger.io/dagger/plancontext"
|
|
|
|
"go.dagger.io/dagger/solver"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Register("Copy", func() Task { return ©Task{} })
|
|
|
|
}
|
|
|
|
|
|
|
|
type copyTask struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *copyTask) Run(ctx context.Context, pctx *plancontext.Context, s solver.Solver, v *compiler.Value) (*compiler.Value, error) {
|
|
|
|
var err error
|
|
|
|
|
|
|
|
input, err := pctx.FS.FromValue(v.Lookup("input"))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-12-21 18:42:05 +01:00
|
|
|
inputState, err := input.State()
|
2021-12-17 23:58:52 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-01-28 04:09:12 +01:00
|
|
|
contents, err := pctx.FS.FromValue(v.Lookup("contents"))
|
2021-12-17 23:58:52 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-01-28 04:09:12 +01:00
|
|
|
contentsState, err := contents.State()
|
2021-12-17 23:58:52 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-01-28 04:09:12 +01:00
|
|
|
sourcePath, err := v.Lookup("source").String()
|
2021-12-17 23:58:52 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
destPath, err := v.Lookup("dest").String()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
outputState := inputState.File(
|
|
|
|
llb.Copy(
|
2022-01-28 04:09:12 +01:00
|
|
|
contentsState,
|
2021-12-17 23:58:52 +01:00
|
|
|
sourcePath,
|
|
|
|
destPath,
|
|
|
|
// FIXME: allow more configurable llb options
|
|
|
|
// For now we define the following convenience presets:
|
|
|
|
&llb.CopyInfo{
|
|
|
|
CopyDirContentsOnly: true,
|
|
|
|
CreateDestPath: true,
|
|
|
|
AllowWildcard: true,
|
|
|
|
},
|
|
|
|
),
|
|
|
|
withCustomName(v, "Copy %s %s", sourcePath, destPath),
|
|
|
|
)
|
|
|
|
|
|
|
|
result, err := s.Solve(ctx, outputState, pctx.Platform.Get())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
fs := pctx.FS.New(result)
|
|
|
|
|
2021-12-20 18:41:52 +01:00
|
|
|
return compiler.NewValue().FillFields(map[string]interface{}{
|
|
|
|
"output": fs.MarshalCUE(),
|
|
|
|
})
|
2021-12-17 23:58:52 +01:00
|
|
|
}
|