1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
package local
import (
"context"
"os"
"strings"
"sync"
"time"
"github.com/moby/buildkit/cache"
"github.com/moby/buildkit/client"
"github.com/moby/buildkit/exporter"
"github.com/moby/buildkit/exporter/containerimage/exptypes"
"github.com/moby/buildkit/exporter/util/epoch"
"github.com/moby/buildkit/session"
"github.com/moby/buildkit/session/filesync"
"github.com/moby/buildkit/util/progress"
"github.com/pkg/errors"
"github.com/tonistiigi/fsutil"
fstypes "github.com/tonistiigi/fsutil/types"
"golang.org/x/sync/errgroup"
"golang.org/x/time/rate"
)
type Opt struct {
SessionManager *session.Manager
}
type localExporter struct {
opt Opt
// session manager
}
func New(opt Opt) (exporter.Exporter, error) {
le := &localExporter{opt: opt}
return le, nil
}
func (e *localExporter) Resolve(ctx context.Context, id int, opt map[string]string) (exporter.ExporterInstance, error) {
i := &localExporterInstance{
id: id,
attrs: opt,
localExporter: e,
}
_, err := i.opts.Load(opt)
if err != nil {
return nil, err
}
return i, nil
}
type localExporterInstance struct {
*localExporter
id int
attrs map[string]string
opts CreateFSOpts
}
func (e *localExporterInstance) ID() int {
return e.id
}
func (e *localExporterInstance) Name() string {
return "exporting to client directory"
}
func (e *localExporterInstance) Type() string {
return client.ExporterLocal
}
func (e *localExporterInstance) Attrs() map[string]string {
return e.attrs
}
func (e *localExporter) Config() *exporter.Config {
return exporter.NewConfig()
}
func (e *localExporterInstance) Export(ctx context.Context, inp *exporter.Source, _ exptypes.InlineCache, sessionID string) (map[string]string, exporter.DescriptorReference, error) {
timeoutCtx, cancel := context.WithCancelCause(ctx)
timeoutCtx, _ = context.WithTimeoutCause(timeoutCtx, 5*time.Second, errors.WithStack(context.DeadlineExceeded))
defer cancel(errors.WithStack(context.Canceled))
if e.opts.Epoch == nil {
if tm, ok, err := epoch.ParseSource(inp); err != nil {
return nil, nil, err
} else if ok {
e.opts.Epoch = tm
}
}
caller, err := e.opt.SessionManager.Get(timeoutCtx, sessionID, false)
if err != nil {
return nil, nil, err
}
isMap := len(inp.Refs) > 0
if _, ok := inp.Metadata[exptypes.ExporterPlatformsKey]; isMap && !ok {
return nil, nil, errors.Errorf("unable to export multiple refs, missing platforms mapping")
}
p, err := exptypes.ParsePlatforms(inp.Metadata)
if err != nil {
return nil, nil, err
}
if !isMap && len(p.Platforms) > 1 {
return nil, nil, errors.Errorf("unable to export multiple platforms without map")
}
now := time.Now().Truncate(time.Second)
visitedPath := map[string]string{}
var visitedMu sync.Mutex
export := func(ctx context.Context, k string, ref cache.ImmutableRef, attestations []exporter.Attestation) func() error {
return func() error {
outputFS, cleanup, err := CreateFS(ctx, sessionID, k, ref, attestations, now, e.opts)
if err != nil {
return err
}
if cleanup != nil {
defer cleanup()
}
if !e.opts.PlatformSplit {
// check for duplicate paths
err = outputFS.Walk(ctx, "", func(p string, entry os.DirEntry, err error) error {
if entry.IsDir() {
return nil
}
if err != nil && !errors.Is(err, os.ErrNotExist) {
return err
}
visitedMu.Lock()
defer visitedMu.Unlock()
if vp, ok := visitedPath[p]; ok {
return errors.Errorf("cannot overwrite %s from %s with %s when split option is disabled", p, vp, k)
}
visitedPath[p] = k
return nil
})
if err != nil {
return err
}
}
lbl := "copying files"
if isMap {
lbl += " " + k
if e.opts.PlatformSplit {
st := fstypes.Stat{
Mode: uint32(os.ModeDir | 0755),
Path: strings.ReplaceAll(k, "/", "_"),
}
if e.opts.Epoch != nil {
st.ModTime = e.opts.Epoch.UnixNano()
}
outputFS, err = fsutil.SubDirFS([]fsutil.Dir{{FS: outputFS, Stat: st}})
if err != nil {
return err
}
}
}
progress := NewProgressHandler(ctx, lbl)
if err := filesync.CopyToCaller(ctx, outputFS, e.id, caller, progress); err != nil {
return err
}
return nil
}
}
eg, ctx := errgroup.WithContext(ctx)
if len(p.Platforms) > 0 {
for _, p := range p.Platforms {
r, ok := inp.FindRef(p.ID)
if !ok {
return nil, nil, errors.Errorf("failed to find ref for ID %s", p.ID)
}
eg.Go(export(ctx, p.ID, r, inp.Attestations[p.ID]))
}
} else {
eg.Go(export(ctx, "", inp.Ref, nil))
}
if err := eg.Wait(); err != nil {
return nil, nil, err
}
return nil, nil, nil
}
func NewProgressHandler(ctx context.Context, id string) func(int, bool) {
limiter := rate.NewLimiter(rate.Every(100*time.Millisecond), 1)
pw, _, _ := progress.NewFromContext(ctx)
now := time.Now()
st := progress.Status{
Started: &now,
Action: "transferring",
}
pw.Write(id, st)
return func(s int, last bool) {
if last || limiter.Allow() {
st.Current = s
if last {
now := time.Now()
st.Completed = &now
}
pw.Write(id, st)
if last {
pw.Close()
}
}
}
}
|