forked from moby/buildkit
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathexport.go
More file actions
194 lines (167 loc) · 4.63 KB
/
Copy pathexport.go
File metadata and controls
194 lines (167 loc) · 4.63 KB
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
package local
import (
"context"
"os"
"slices"
"strings"
"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/local"
"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"
)
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) {
li := &localExporterInstance{
localExporter: e,
id: id,
attrs: opt,
}
_, err := li.opts.Load(opt)
if err != nil {
return nil, err
}
_ = opt
return li, nil
}
type localExporterInstance struct {
*localExporter
id int
attrs map[string]string
opts local.CreateFSOpts
}
func (e *localExporterInstance) ID() int {
return e.id
}
func (e *localExporterInstance) Name() string {
return "exporting to client tarball"
}
func (e *localExporterInstance) Type() string {
return client.ExporterTar
}
func (e *localExporterInstance) Attrs() map[string]string {
return e.attrs
}
func (e *localExporterInstance) Config() *exporter.Config {
return exporter.NewConfig()
}
func (e *localExporterInstance) Export(ctx context.Context, inp *exporter.Source, buildInfo exporter.ExportBuildInfo) (map[string]string, exporter.FinalizeFunc, exporter.DescriptorReference, error) {
var defers []func() error
defer func() {
for _, f := range slices.Backward(defers) {
f()
}
}()
if e.opts.Epoch == nil {
if tm, err := epoch.ParseSource(inp, nil); err != nil {
return nil, nil, nil, err
} else if tm != nil {
e.opts.Epoch = &epoch.Epoch{Value: tm}
}
}
now := time.Now().Truncate(time.Second)
isMap := len(inp.Refs) > 0
getDir := func(ctx context.Context, k string, ref cache.ImmutableRef, attestations []exporter.Attestation, opt local.CreateFSOpts) (*fsutil.Dir, error) {
outputFS, cleanup, err := local.CreateFS(ctx, buildInfo.SessionID, k, ref, attestations, now, isMap, opt)
if err != nil {
return nil, err
}
if cleanup != nil {
defers = append(defers, cleanup)
}
st := &fstypes.Stat{
Mode: uint32(os.ModeDir | 0755),
Path: strings.ReplaceAll(k, "/", "_"),
}
if opt.Epoch != nil && opt.Epoch.Value != nil {
st.ModTime = opt.Epoch.Value.UnixNano()
}
return &fsutil.Dir{
FS: outputFS,
Stat: st,
}, nil
}
if _, ok := inp.Metadata[exptypes.ExporterPlatformsKey]; isMap && !ok {
return nil, nil, nil, errors.Errorf("unable to export multiple refs, missing platforms mapping")
}
p, err := exptypes.ParsePlatforms(inp.Metadata)
if err != nil {
return nil, nil, nil, err
}
if !isMap && len(p.Platforms) > 1 {
return nil, nil, nil, errors.Errorf("unable to export multiple platforms without map")
}
var fs fsutil.FS
if len(p.Platforms) > 0 {
dirs := make([]fsutil.Dir, 0, len(p.Platforms))
for _, p := range p.Platforms {
r, ok := inp.FindRef(p.ID)
if !ok {
return nil, nil, nil, errors.Errorf("failed to find ref for ID %s", p.ID)
}
opt := e.opts
if e.opts.Epoch == nil {
tm, err := epoch.ParseSource(inp, &p)
if err != nil {
return nil, nil, nil, err
}
opt.Epoch = &epoch.Epoch{Value: tm}
}
d, err := getDir(ctx, p.ID, r, inp.Attestations[p.ID], opt)
if err != nil {
return nil, nil, nil, err
}
dirs = append(dirs, *d)
}
if isMap {
var err error
fs, err = fsutil.SubDirFS(dirs)
if err != nil {
return nil, nil, nil, err
}
} else {
fs = dirs[0].FS
}
} else {
d, err := getDir(ctx, "", inp.Ref, nil, e.opts)
if err != nil {
return nil, nil, nil, err
}
fs = d.FS
}
timeoutCtx, cancel := context.WithCancelCause(ctx)
timeoutCtx, _ = context.WithTimeoutCause(timeoutCtx, 5*time.Second, errors.WithStack(context.DeadlineExceeded)) //nolint:govet
defer func() { cancel(errors.WithStack(context.Canceled)) }()
caller, err := e.opt.SessionManager.Get(timeoutCtx, buildInfo.SessionID, false)
if err != nil {
return nil, nil, nil, err
}
w, err := filesync.CopyFileWriter(ctx, nil, e.id, caller)
if err != nil {
return nil, nil, nil, err
}
report := progress.OneOff(ctx, "sending tarball")
if err := writeTar(ctx, fs, w); err != nil {
w.Close()
return nil, nil, nil, report(err)
}
return nil, nil, nil, report(w.Close())
}