-
Notifications
You must be signed in to change notification settings - Fork 231
/
list.go
87 lines (68 loc) · 1.86 KB
/
list.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
package main
import (
"context"
"fmt"
"github.com/spf13/cobra"
"os"
"text/tabwriter"
"time"
"github.com/containerd/containerd/namespaces"
"github.com/docker/go-units"
"github.com/genuinetools/img/client"
"github.com/moby/buildkit/identity"
"github.com/moby/buildkit/session"
)
const listUsageShortHelp = `List images and digests.`
const listUsageLongHelp = `List images and digests.`
func newListCommand() *cobra.Command {
list := &listCommand{
filters: newListValue(),
}
cmd := &cobra.Command{
Use: "ls [OPTIONS]",
DisableFlagsInUseLine: true,
SilenceUsage: true,
Short: listUsageShortHelp,
Long: listUsageLongHelp,
Args: validateHasNoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
return list.Run(args)
},
}
fs := cmd.Flags()
fs.VarP(list.filters, "filter", "f", "Filter output based on conditions provided")
return cmd
}
type listCommand struct {
filters *listValue
}
func (cmd *listCommand) Run(args []string) (err error) {
reexec()
// Create the context.
id := identity.NewID()
ctx := session.NewContext(context.Background(), id)
ctx = namespaces.WithNamespace(ctx, "buildkit")
// Create the client.
c, err := client.New(stateDir, backend, nil)
if err != nil {
return err
}
defer c.Close()
images, err := c.ListImages(ctx, cmd.filters.GetAll()...)
if err != nil {
return err
}
tw := tabwriter.NewWriter(os.Stdout, 1, 8, 1, '\t', 0)
fmt.Fprintln(tw, "NAME\tSIZE\tCREATED AT\tUPDATED AT\tDIGEST")
for _, image := range images {
fmt.Fprintf(tw, "%s\t%s\t%s\t%s\t%s\n",
image.Name,
units.BytesSize(float64(image.ContentSize)),
units.HumanDuration(time.Now().UTC().Sub(image.CreatedAt))+" ago",
units.HumanDuration(time.Now().UTC().Sub(image.UpdatedAt))+" ago",
image.Target.Digest,
)
}
tw.Flush()
return nil
}