-
Notifications
You must be signed in to change notification settings - Fork 231
/
prune.go
100 lines (81 loc) · 2.08 KB
/
prune.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
package main
import (
"context"
"fmt"
"github.com/spf13/cobra"
"os"
"text/tabwriter"
"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 pruneUsageShortHelp = `Prune and clean up the build cache.`
const pruneUsageLongHelp = `Prune and clean up the build cache.`
func newPruneCommand() *cobra.Command {
prune := &pruneCommand{}
cmd := &cobra.Command{
Use: "prune [OPTIONS]",
DisableFlagsInUseLine: true,
SilenceUsage: true,
Short: pruneUsageShortHelp,
Long: pruneUsageLongHelp,
Args: validateHasNoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
return prune.Run(args)
},
}
return cmd
}
type pruneCommand struct{}
func (cmd *pruneCommand) 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()
usage, err := c.Prune(ctx)
if err != nil {
return err
}
tw := tabwriter.NewWriter(os.Stdout, 1, 8, 1, '\t', 0)
if debug {
printDebug(tw, usage)
} else {
fmt.Fprintln(tw, "ID\tRECLAIMABLE\tSIZE\tDESCRIPTION")
for _, di := range usage {
id := di.ID
if di.Mutable {
id += "*"
}
desc := di.Description
if len(desc) > 50 {
desc = desc[0:50] + "..."
}
fmt.Fprintf(tw, "%s\t%t\t%s\t%s\n", id, !di.InUse, units.BytesSize(float64(di.Size_)), desc)
}
tw.Flush()
}
total := int64(0)
reclaimable := int64(0)
for _, di := range usage {
if di.Size_ > 0 {
total += di.Size_
if !di.InUse {
reclaimable += di.Size_
}
}
}
tw = tabwriter.NewWriter(os.Stdout, 1, 8, 1, '\t', 0)
fmt.Fprintf(tw, "Reclaimed:\t%s\n", units.BytesSize(float64(reclaimable)))
fmt.Fprintf(tw, "Total:\t%s\n", units.BytesSize(float64(total)))
tw.Flush()
return nil
}