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
|
package main
import (
"fmt"
"github.com/containers/storage"
"github.com/containers/storage/pkg/mflag"
)
var hashMethodArg = "crc"
func dedupCmd(flags *mflag.FlagSet, action string, m storage.Store, args []string) (int, error) {
var hashMethod storage.DedupHashMethod
switch hashMethodArg {
case "crc":
hashMethod = storage.DedupHashCRC
case "size":
hashMethod = storage.DedupHashFileSize
case "sha256":
hashMethod = storage.DedupHashSHA256
default:
return 1, fmt.Errorf("invalid hash method: %s", hashMethodArg)
}
res, err := m.Dedup(storage.DedupArgs{
Options: storage.DedupOptions{
HashMethod: hashMethod,
},
})
if err != nil {
if jsonOutput {
_, err2 := outputJSON(err)
return 1, err2 // Note that err2 is usually nil
}
return 1, fmt.Errorf("%s: %+v", action, err)
}
if jsonOutput {
return outputJSON(res)
} else {
fmt.Printf("Deduplicated %v bytes\n", res.Deduped)
}
return 0, nil
}
func init() {
commands = append(commands, command{
names: []string{"dedup"},
usage: "Dedup all images",
minArgs: 0,
maxArgs: 0,
action: dedupCmd,
addFlags: func(flags *mflag.FlagSet, cmd *command) {
flags.BoolVar(&jsonOutput, []string{"-json", "j"}, jsonOutput, "Prefer JSON output")
flags.StringVar(&hashMethodArg, []string{"-hash-method"}, hashMethodArg, "Specify the hash function to use to detect identical files")
},
})
}
|