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
|
package main
import (
"fmt"
"os"
"github.com/containers/storage"
"github.com/containers/storage/internal/opts"
"github.com/containers/storage/pkg/mflag"
"github.com/containers/storage/pkg/reexec"
"github.com/sirupsen/logrus"
)
type command struct {
names []string
optionsHelp string
minArgs int
maxArgs int
usage string
addFlags func(*mflag.FlagSet, *command)
action func(*mflag.FlagSet, string, storage.Store, []string) int
}
var (
commands = []command{}
jsonOutput = false
force = false
)
func main() {
if reexec.Init() {
return
}
options := storage.StoreOptions{}
debug := false
makeFlags := func(command string, eh mflag.ErrorHandling) *mflag.FlagSet {
flags := mflag.NewFlagSet(command, eh)
flags.StringVar(&options.RunRoot, []string{"-run", "R"}, options.RunRoot, "Root of the runtime state tree")
flags.StringVar(&options.GraphRoot, []string{"-graph", "g"}, options.GraphRoot, "Root of the storage tree")
flags.StringVar(&options.GraphDriverName, []string{"-storage-driver", "s"}, options.GraphDriverName, "Storage driver to use ($STORAGE_DRIVER)")
flags.Var(opts.NewListOptsRef(&options.GraphDriverOptions, nil), []string{"-storage-opt"}, "Set storage driver options ($STORAGE_OPTS)")
flags.BoolVar(&debug, []string{"-debug", "D"}, debug, "Print debugging information")
return flags
}
flags := makeFlags("containers-storage", mflag.ContinueOnError)
flags.Usage = func() {
fmt.Printf("Usage: containers-storage command [options [...]]\n\n")
fmt.Printf("Commands:\n\n")
for _, command := range commands {
fmt.Printf(" %-30s%s\n", command.names[0], command.usage)
}
fmt.Printf("\nOptions:\n")
flags.PrintDefaults()
}
if len(os.Args) < 2 {
flags.Usage()
os.Exit(1)
}
if err := flags.ParseFlags(os.Args[1:], true); err != nil {
fmt.Printf("%v while parsing arguments (1)\n", err)
flags.Usage()
os.Exit(1)
}
if options.GraphRoot == "" && options.RunRoot == "" && options.GraphDriverName == "" && len(options.GraphDriverOptions) == 0 {
options, _ = storage.DefaultStoreOptionsAutoDetectUID()
}
args := flags.Args()
if len(args) < 1 {
flags.Usage()
os.Exit(1)
return
}
cmd := args[0]
for _, command := range commands {
for _, name := range command.names {
if cmd == name {
flags := makeFlags(cmd, mflag.ExitOnError)
if command.addFlags != nil {
command.addFlags(flags, &command)
}
flags.Usage = func() {
fmt.Printf("Usage: containers-storage %s %s\n\n", cmd, command.optionsHelp)
fmt.Printf("%s\n", command.usage)
fmt.Printf("\nOptions:\n")
flags.PrintDefaults()
}
if err := flags.ParseFlags(args[1:], false); err != nil {
fmt.Printf("%v while parsing arguments (3)", err)
flags.Usage()
os.Exit(1)
}
args = flags.Args()
if command.minArgs != 0 && len(args) < command.minArgs {
fmt.Printf("%s: more arguments required.\n", cmd)
flags.Usage()
os.Exit(1)
}
if command.maxArgs != 0 && len(args) > command.maxArgs {
fmt.Printf("%s: too many arguments (%s).\n", cmd, args)
flags.Usage()
os.Exit(1)
}
if debug {
logrus.SetLevel(logrus.DebugLevel)
logrus.Debugf("Root: %s", options.GraphRoot)
logrus.Debugf("Run Root: %s", options.RunRoot)
logrus.Debugf("Driver Name: %s", options.GraphDriverName)
logrus.Debugf("Driver Options: %s", options.GraphDriverOptions)
} else {
logrus.SetLevel(logrus.ErrorLevel)
}
store, err := storage.GetStore(options)
if err != nil {
fmt.Printf("error initializing: %+v\n", err)
os.Exit(1)
}
store.Free()
os.Exit(command.action(flags, cmd, store, args))
break
}
}
}
fmt.Printf("%s: unrecognized command.\n", cmd)
os.Exit(1)
}
|