package node import ( "sort" "github.com/docker/cli/cli" "github.com/docker/cli/cli/command" "github.com/docker/cli/cli/command/formatter" "github.com/docker/cli/opts" "github.com/docker/docker/api/types" "github.com/docker/docker/api/types/swarm" "github.com/spf13/cobra" "golang.org/x/net/context" "vbom.ml/util/sortorder" ) type byHostname []swarm.Node func (n byHostname) Len() int { return len(n) } func (n byHostname) Swap(i, j int) { n[i], n[j] = n[j], n[i] } func (n byHostname) Less(i, j int) bool { return sortorder.NaturalLess(n[i].Description.Hostname, n[j].Description.Hostname) } type listOptions struct { quiet bool format string filter opts.FilterOpt } func newListCommand(dockerCli command.Cli) *cobra.Command { options := listOptions{filter: opts.NewFilterOpt()} cmd := &cobra.Command{ Use: "ls [OPTIONS]", Aliases: []string{"list"}, Short: "List nodes in the swarm", Args: cli.NoArgs, RunE: func(cmd *cobra.Command, args []string) error { return runList(dockerCli, options) }, } flags := cmd.Flags() flags.BoolVarP(&options.quiet, "quiet", "q", false, "Only display IDs") flags.StringVar(&options.format, "format", "", "Pretty-print nodes using a Go template") flags.VarP(&options.filter, "filter", "f", "Filter output based on conditions provided") return cmd } func runList(dockerCli command.Cli, options listOptions) error { client := dockerCli.Client() ctx := context.Background() nodes, err := client.NodeList( ctx, types.NodeListOptions{Filters: options.filter.Value()}) if err != nil { return err } info := types.Info{} if len(nodes) > 0 && !options.quiet { // only non-empty nodes and not quiet, should we call /info api info, err = client.Info(ctx) if err != nil { return err } } format := options.format if len(format) == 0 { format = formatter.TableFormatKey if len(dockerCli.ConfigFile().NodesFormat) > 0 && !options.quiet { format = dockerCli.ConfigFile().NodesFormat } } nodesCtx := formatter.Context{ Output: dockerCli.Out(), Format: formatter.NewNodeFormat(format, options.quiet), } sort.Sort(byHostname(nodes)) return formatter.NodeWrite(nodesCtx, nodes, info) }