2015-06-01 11:46:21 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-07-25 22:42:22 +00:00
|
|
|
"bytes"
|
2015-06-01 11:46:21 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2017-07-25 22:42:22 +00:00
|
|
|
"sort"
|
|
|
|
"strings"
|
2015-06-01 11:46:21 +00:00
|
|
|
|
2017-08-16 22:42:15 +00:00
|
|
|
"github.com/hashicorp/nomad/version"
|
2015-06-01 11:46:21 +00:00
|
|
|
"github.com/mitchellh/cli"
|
2017-02-09 00:07:33 +00:00
|
|
|
"github.com/sean-/seed"
|
2015-06-01 11:46:21 +00:00
|
|
|
)
|
|
|
|
|
2016-05-03 07:28:23 +00:00
|
|
|
func init() {
|
2017-02-09 00:07:33 +00:00
|
|
|
seed.Init()
|
2016-05-03 07:28:23 +00:00
|
|
|
}
|
|
|
|
|
2015-06-01 11:46:21 +00:00
|
|
|
func main() {
|
|
|
|
os.Exit(Run(os.Args[1:]))
|
|
|
|
}
|
|
|
|
|
|
|
|
func Run(args []string) int {
|
|
|
|
return RunCustom(args, Commands(nil))
|
|
|
|
}
|
|
|
|
|
|
|
|
func RunCustom(args []string, commands map[string]cli.CommandFactory) int {
|
2015-09-20 01:47:04 +00:00
|
|
|
// Build the commands to include in the help now.
|
|
|
|
commandsInclude := make([]string, 0, len(commands))
|
|
|
|
for k, _ := range commands {
|
|
|
|
switch k {
|
2017-06-30 17:59:19 +00:00
|
|
|
case "check":
|
2017-06-30 23:22:06 +00:00
|
|
|
case "deployment list", "deployment status", "deployment pause",
|
|
|
|
"deployment resume", "deployment fail", "deployment promote":
|
2016-02-05 18:51:29 +00:00
|
|
|
case "executor":
|
2016-03-21 00:05:46 +00:00
|
|
|
case "fs ls", "fs cat", "fs stat":
|
2017-07-19 22:39:32 +00:00
|
|
|
case "job deployments", "job dispatch", "job history", "job promote", "job revert":
|
2017-06-30 17:59:19 +00:00
|
|
|
case "operator raft", "operator raft list-peers", "operator raft remove-peer":
|
|
|
|
case "syslog":
|
2015-09-20 01:47:04 +00:00
|
|
|
default:
|
|
|
|
commandsInclude = append(commandsInclude, k)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-01 11:46:21 +00:00
|
|
|
cli := &cli.CLI{
|
2017-07-17 21:49:37 +00:00
|
|
|
Name: "nomad",
|
2017-08-16 22:42:15 +00:00
|
|
|
Version: version.GetVersion().FullVersionNumber(true),
|
2017-07-17 21:49:37 +00:00
|
|
|
Args: args,
|
|
|
|
Commands: commands,
|
|
|
|
Autocomplete: true,
|
2017-07-25 22:42:22 +00:00
|
|
|
HelpFunc: cli.FilteredHelpFunc(commandsInclude, helpFunc),
|
2015-06-01 11:46:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
exitCode, err := cli.Run()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "Error executing CLI: %s\n", err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
2015-10-28 02:39:19 +00:00
|
|
|
|
2015-06-01 11:46:21 +00:00
|
|
|
return exitCode
|
|
|
|
}
|
2017-07-25 22:42:22 +00:00
|
|
|
|
|
|
|
// helpFunc is a custom help function. At the moment it is essentially a copy of
|
|
|
|
// the cli.BasicHelpFunc that includes flags demonstrating how to use the
|
|
|
|
// autocomplete flags.
|
|
|
|
func helpFunc(commands map[string]cli.CommandFactory) string {
|
|
|
|
var buf bytes.Buffer
|
|
|
|
buf.WriteString("Usage: nomad [-version] [-help] [-autocomplete-(un)install] <command> [<args>]\n\n")
|
|
|
|
buf.WriteString("Available commands are:\n")
|
|
|
|
|
|
|
|
// Get the list of keys so we can sort them, and also get the maximum
|
|
|
|
// key length so they can be aligned properly.
|
|
|
|
keys := make([]string, 0, len(commands))
|
|
|
|
maxKeyLen := 0
|
|
|
|
for key := range commands {
|
|
|
|
if len(key) > maxKeyLen {
|
|
|
|
maxKeyLen = len(key)
|
|
|
|
}
|
|
|
|
|
|
|
|
keys = append(keys, key)
|
|
|
|
}
|
|
|
|
sort.Strings(keys)
|
|
|
|
|
|
|
|
for _, key := range keys {
|
|
|
|
commandFunc, ok := commands[key]
|
|
|
|
if !ok {
|
|
|
|
// This should never happen since we JUST built the list of
|
|
|
|
// keys.
|
|
|
|
panic("command not found: " + key)
|
|
|
|
}
|
|
|
|
|
|
|
|
command, err := commandFunc()
|
|
|
|
if err != nil {
|
2017-07-26 21:53:08 +00:00
|
|
|
fmt.Fprintf(os.Stderr, "[ERR] cli: Command '%s' failed to load: %s", key, err)
|
2017-07-25 22:42:22 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
key = fmt.Sprintf("%s%s", key, strings.Repeat(" ", maxKeyLen-len(key)))
|
|
|
|
buf.WriteString(fmt.Sprintf(" %s %s\n", key, command.Synopsis()))
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf.String()
|
|
|
|
}
|