2021-12-23 20:23:52 +01:00
|
|
|
package task
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2022-01-28 22:53:43 +01:00
|
|
|
"strings"
|
2021-12-23 20:23:52 +01:00
|
|
|
|
|
|
|
"github.com/moby/buildkit/client/llb"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
"go.dagger.io/dagger/compiler"
|
|
|
|
"go.dagger.io/dagger/plancontext"
|
|
|
|
"go.dagger.io/dagger/solver"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Register("Source", func() Task { return &sourceTask{} })
|
|
|
|
}
|
|
|
|
|
|
|
|
type sourceTask struct {
|
|
|
|
}
|
|
|
|
|
2022-03-23 23:02:17 +01:00
|
|
|
func (c *sourceTask) PreRun(_ context.Context, pctx *plancontext.Context, v *compiler.Value) error {
|
2022-01-28 22:53:43 +01:00
|
|
|
origPath, err := v.Lookup("path").String()
|
2021-12-23 20:23:52 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-01-28 22:53:43 +01:00
|
|
|
absPath, err := v.Lookup("path").AbsPath()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2021-12-23 20:23:52 +01:00
|
|
|
}
|
|
|
|
|
2022-01-28 22:53:43 +01:00
|
|
|
location, err := v.Lookup("path").Dirname()
|
2021-12-23 20:23:52 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-01-28 22:53:43 +01:00
|
|
|
if !strings.HasPrefix(absPath, location) {
|
|
|
|
return fmt.Errorf("path %q is not relative", origPath)
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := os.Stat(absPath); errors.Is(err, os.ErrNotExist) {
|
|
|
|
return fmt.Errorf("path %q does not exist", origPath)
|
2021-12-23 20:23:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pctx.LocalDirs.Add(absPath)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-03-23 23:02:17 +01:00
|
|
|
func (c *sourceTask) Run(ctx context.Context, pctx *plancontext.Context, s *solver.Solver, v *compiler.Value) (*compiler.Value, error) {
|
2021-12-23 20:23:52 +01:00
|
|
|
lg := log.Ctx(ctx)
|
|
|
|
|
|
|
|
path, err := v.Lookup("path").AbsPath()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var source struct {
|
|
|
|
Include []string
|
|
|
|
Exclude []string
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := v.Decode(&source); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
lg.Debug().Str("path", path).Msg("loading local directory")
|
|
|
|
opts := []llb.LocalOption{
|
2022-04-01 04:20:36 +02:00
|
|
|
withCustomName(v, "Source %s", path),
|
2021-12-23 20:23:52 +01:00
|
|
|
llb.IncludePatterns(source.Include),
|
|
|
|
llb.ExcludePatterns(source.Exclude),
|
|
|
|
// Without hint, multiple `llb.Local` operations on the
|
|
|
|
// same path get a different digest.
|
|
|
|
llb.SessionID(s.SessionID()),
|
|
|
|
llb.SharedKeyHint(path),
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Remove the `Copy` and use `Local` directly.
|
|
|
|
//
|
|
|
|
// Copy'ing is a costly operation which should be unnecessary.
|
|
|
|
// However, using llb.Local directly breaks caching sometimes for unknown reasons.
|
|
|
|
st := llb.Scratch().File(
|
|
|
|
llb.Copy(
|
|
|
|
llb.Local(
|
|
|
|
path,
|
|
|
|
opts...,
|
|
|
|
),
|
|
|
|
"/",
|
|
|
|
"/",
|
|
|
|
),
|
|
|
|
withCustomName(v, "Embed %s [copy]", path),
|
|
|
|
)
|
|
|
|
|
|
|
|
result, err := s.Solve(ctx, st, pctx.Platform.Get())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
fs := pctx.FS.New(result)
|
|
|
|
return compiler.NewValue().FillFields(map[string]interface{}{
|
|
|
|
"output": fs.MarshalCUE(),
|
|
|
|
})
|
|
|
|
}
|