-
Notifications
You must be signed in to change notification settings - Fork 231
/
diskusage.go
137 lines (112 loc) · 3.19 KB
/
diskusage.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
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"
controlapi "github.com/moby/buildkit/api/services/control"
"github.com/moby/buildkit/identity"
"github.com/moby/buildkit/session"
)
const diskUsageShortHelp = `Show image disk usage.`
// TODO: make the long help actually useful
const diskUsageLongHelp = `Show image disk usage.`
func newDiskUsageCommand() *cobra.Command {
diskUsage := &diskUsageCommand{
filters: newListValue(),
}
cmd := &cobra.Command{
Use: "du [OPTIONS]",
DisableFlagsInUseLine: true,
SilenceUsage: true,
Short: diskUsageShortHelp,
Long: diskUsageLongHelp,
Args: validateHasNoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
return diskUsage.Run(args)
},
}
fs := cmd.Flags()
fs.VarP(diskUsage.filters, "filter", "f", "Filter output based on conditions provided")
return cmd
}
type diskUsageCommand struct {
filters *listValue
}
func (cmd *diskUsageCommand) 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()
resp, err := c.DiskUsage(ctx, &controlapi.DiskUsageRequest{Filter: cmd.filters.GetAll()})
if err != nil {
return err
}
tw := tabwriter.NewWriter(os.Stdout, 1, 8, 1, '\t', 0)
if debug {
printDebug(tw, resp.Record)
} else {
fmt.Fprintln(tw, "ID\tRECLAIMABLE\tSIZE\tDESCRIPTION")
for _, di := range resp.Record {
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()
}
if cmd.filters.Len() < 1 {
total := int64(0)
reclaimable := int64(0)
for _, di := range resp.Record {
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, "Reclaimable:\t%s\n", units.BytesSize(float64(reclaimable)))
fmt.Fprintf(tw, "Total:\t%s\n", units.BytesSize(float64(total)))
tw.Flush()
}
return nil
}
func printDebug(tw *tabwriter.Writer, du []*controlapi.UsageRecord) {
for _, di := range du {
fmt.Fprintf(tw, "%s:\t%v\n", "ID", di.ID)
if di.Parent != "" {
fmt.Fprintf(tw, "%s:\t%v\n", "Parent", di.Parent)
}
fmt.Fprintf(tw, "%s:\t%v\n", "Created at", di.CreatedAt)
fmt.Fprintf(tw, "%s:\t%v\n", "Mutable", di.Mutable)
fmt.Fprintf(tw, "%s:\t%v\n", "Reclaimable", !di.InUse)
fmt.Fprintf(tw, "%s:\t%s\n", "Size", units.BytesSize(float64(di.Size_)))
if di.Description != "" {
fmt.Fprintf(tw, "%s:\t%v\n", "Description", di.Description)
}
fmt.Fprintf(tw, "%s:\t%d\n", "Usage count", di.UsageCount)
if di.LastUsedAt != nil {
fmt.Fprintf(tw, "%s:\t%v\n", "Last used", di.LastUsedAt)
}
fmt.Fprintf(tw, "\n")
}
tw.Flush()
}