-
Notifications
You must be signed in to change notification settings - Fork 63
/
pkg.go
277 lines (231 loc) · 8.84 KB
/
pkg.go
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2022, Unikraft GmbH and The KraftKit Authors.
// Licensed under the BSD-3-Clause License (the "License").
// You may not use this file except in compliance with the License.
package pkg
import (
"context"
"fmt"
"os"
"strings"
"github.com/MakeNowJust/heredoc"
"github.com/spf13/cobra"
"kraftkit.sh/config"
"kraftkit.sh/log"
"kraftkit.sh/machine/platform"
"kraftkit.sh/pack"
"kraftkit.sh/tui/paraprogress"
"kraftkit.sh/tui/selection"
"kraftkit.sh/unikraft/app"
"kraftkit.sh/cmdfactory"
"kraftkit.sh/packmanager"
"kraftkit.sh/internal/cli/kraft/pkg/list"
"kraftkit.sh/internal/cli/kraft/pkg/pull"
"kraftkit.sh/internal/cli/kraft/pkg/push"
"kraftkit.sh/internal/cli/kraft/pkg/remove"
"kraftkit.sh/internal/cli/kraft/pkg/source"
"kraftkit.sh/internal/cli/kraft/pkg/unsource"
"kraftkit.sh/internal/cli/kraft/pkg/update"
)
type PkgOptions struct {
Architecture string `local:"true" long:"arch" short:"m" usage:"Filter the creation of the package by architecture of known targets"`
Args []string `local:"true" long:"args" short:"a" usage:"Pass arguments that will be part of the running kernel's command line"`
Dbg bool `local:"true" long:"dbg" usage:"Package the debuggable (symbolic) kernel image instead of the stripped image"`
Force bool `local:"true" long:"force-format" usage:"Force the use of a packaging handler format"`
Format string `local:"true" long:"as" short:"M" usage:"Force the packaging despite possible conflicts" default:"oci"`
Kernel string `local:"true" long:"kernel" short:"k" usage:"Override the path to the unikernel image"`
Kraftfile string `long:"kraftfile" short:"K" usage:"Set an alternative path of the Kraftfile"`
Name string `local:"true" long:"name" short:"n" usage:"Specify the name of the package"`
NoKConfig bool `local:"true" long:"no-kconfig" usage:"Do not include target .config as metadata"`
Output string `local:"true" long:"output" short:"o" usage:"Save the package at the following output"`
Platform string `local:"true" long:"plat" short:"p" usage:"Filter the creation of the package by platform of known targets"`
Project app.Application `noattribute:"true"`
Push bool `local:"true" long:"push" short:"P" usage:"Push the package on if successfully packaged"`
Rootfs string `local:"true" long:"rootfs" usage:"Specify a path to use as root file system (can be volume or initramfs)"`
Strategy packmanager.MergeStrategy `noattribute:"true"`
Target string `local:"true" long:"target" short:"t" usage:"Package a particular known target"`
Workdir string `local:"true" long:"workdir" short:"w" usage:"Set an alternative working directory (default is cwd)"`
packopts []packmanager.PackOption
pm packmanager.PackageManager
}
// Pkg a Unikraft project.
func Pkg(ctx context.Context, opts *PkgOptions, args ...string) ([]pack.Package, error) {
var err error
if opts == nil {
opts = &PkgOptions{}
}
if len(args) == 0 {
opts.Workdir, err = os.Getwd()
if err != nil {
return nil, err
}
} else if len(opts.Workdir) == 0 {
opts.Workdir = args[0]
}
if opts.Name == "" {
return nil, fmt.Errorf("cannot package without setting --name")
}
if (len(opts.Architecture) > 0 || len(opts.Platform) > 0) && len(opts.Target) > 0 {
return nil, fmt.Errorf("the `--arch` and `--plat` options are not supported in addition to `--target`")
}
if config.G[config.KraftKit](ctx).NoPrompt && opts.Strategy == packmanager.StrategyPrompt {
return nil, fmt.Errorf("cannot mix --strategy=prompt when --no-prompt is enabled in settings")
}
opts.Platform = platform.PlatformByName(opts.Platform).String()
if len(opts.Format) > 0 {
// Switch the package manager the desired format for this target
opts.pm, err = packmanager.G(ctx).From(pack.PackageFormat(opts.Format))
if err != nil {
return nil, err
}
} else {
opts.pm = packmanager.G(ctx)
}
exists, err := opts.pm.Catalog(ctx,
packmanager.WithName(opts.Name),
)
if err == nil && len(exists) > 0 {
if opts.Strategy == packmanager.StrategyPrompt {
strategy, err := selection.Select[packmanager.MergeStrategy](
fmt.Sprintf("package '%s' already exists: how would you like to proceed?", opts.Name),
packmanager.MergeStrategies()...,
)
if err != nil {
return nil, err
}
opts.Strategy = *strategy
}
switch opts.Strategy {
case packmanager.StrategyExit:
return nil, fmt.Errorf("package already exists and merge strategy set to exit on conflict")
// Set the merge strategy as an option that is then passed to the
// package manager.
default:
opts.packopts = append(opts.packopts,
packmanager.PackMergeStrategy(opts.Strategy),
)
}
} else {
opts.packopts = append(opts.packopts,
packmanager.PackMergeStrategy(packmanager.StrategyMerge),
)
}
var pkgr packager
packagers := packagers()
// Iterate through the list of built-in builders which sequentially tests
// the current context and Kraftfile match specific requirements towards
// performing a type of build.
for _, candidate := range packagers {
log.G(ctx).
WithField("packager", candidate.String()).
Trace("checking compatibility")
capable, err := candidate.Packagable(ctx, opts, args...)
if capable && err == nil {
pkgr = candidate
break
}
log.G(ctx).
WithError(err).
WithField("packager", candidate.String()).
Trace("incompatbile")
}
if pkgr == nil {
return nil, fmt.Errorf("could not determine what or how to package from the given context")
}
packs, err := pkgr.Pack(ctx, opts, args...)
if err != nil {
return nil, fmt.Errorf("could not package: %w", err)
}
if opts.Push {
var processes []*paraprogress.Process
for _, p := range packs {
p := p
var title []string
for _, column := range p.Columns() {
if len(column.Value) > 12 {
continue
}
title = append(title, column.Value)
}
processes = append(processes, paraprogress.NewProcess(
fmt.Sprintf("pushing %s:%s (%s)", p.Name(), p.Version(), strings.Join(title, ", ")),
func(ctx context.Context, w func(progress float64)) error {
return p.Push(
ctx,
pack.WithPushProgressFunc(w),
)
},
))
}
paramodel, err := paraprogress.NewParaProgress(
ctx,
processes,
paraprogress.IsParallel(false),
paraprogress.WithRenderer(log.LoggerTypeFromString(config.G[config.KraftKit](ctx).Log.Type) != log.FANCY),
paraprogress.WithFailFast(true),
)
if err != nil {
return packs, err
}
if err := paramodel.Start(); err != nil {
return packs, err
}
}
return packs, nil
}
func NewCmd() *cobra.Command {
cmd, err := cmdfactory.New(&PkgOptions{}, cobra.Command{
Short: "Package and distribute Unikraft unikernels and their dependencies",
Use: "pkg [FLAGS] [SUBCOMMAND|DIR]",
Args: cmdfactory.MaxDirArgs(1),
Long: heredoc.Docf(`
Package and distribute Unikraft unikernels and their dependencies.
With %[1]skraft pkg%[1]s you are able to turn output artifacts from %[1]skraft build%[1]s
into a distributable archive ready for deployment. At the same time,
%[1]skraft pkg%[1]s allows you to manage these archives: pulling, pushing, or
adding them to a project.
The default behaviour of %[1]skraft pkg%[1]s is to package a project. Given no
arguments, you will be guided through interactive mode.
`, "`"),
Example: heredoc.Doc(`
# Package a project as an OCI archive and embed the target's KConfig.
$ kraft pkg --as oci --name unikraft.org/nginx:latest`),
Annotations: map[string]string{
cmdfactory.AnnotationHelpGroup: "pkg",
},
})
if err != nil {
panic(err)
}
cmd.AddCommand(list.NewCmd())
cmd.AddCommand(pull.NewCmd())
cmd.AddCommand(push.NewCmd())
cmd.AddCommand(remove.NewCmd())
cmd.AddCommand(source.NewCmd())
cmd.AddCommand(unsource.NewCmd())
cmd.AddCommand(update.NewCmd())
cmd.Flags().Var(
cmdfactory.NewEnumFlag[packmanager.MergeStrategy](
append(packmanager.MergeStrategies(), packmanager.StrategyPrompt),
packmanager.StrategyPrompt,
),
"strategy",
"When a package of the same name exists, use this strategy when applying targets.",
)
return cmd
}
func (opts *PkgOptions) Pre(cmd *cobra.Command, args []string) error {
ctx, err := packmanager.WithDefaultUmbrellaManagerInContext(cmd.Context())
if err != nil {
return err
}
cmd.SetContext(ctx)
opts.Strategy = packmanager.MergeStrategy(cmd.Flag("strategy").Value.String())
return nil
}
func (opts *PkgOptions) Run(ctx context.Context, args []string) error {
if _, err := Pkg(ctx, opts, args...); err != nil {
return fmt.Errorf("could not package: %w", err)
}
return nil
}