2016-06-08 13:47:46 -04:00
|
|
|
package stack
|
|
|
|
|
|
|
|
import (
|
2016-06-28 13:39:49 -04:00
|
|
|
"fmt"
|
|
|
|
|
2016-06-08 13:47:46 -04:00
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
2016-09-06 14:18:12 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2016-06-08 13:47:46 -04:00
|
|
|
"github.com/docker/docker/cli"
|
2016-09-08 14:54:01 -04:00
|
|
|
"github.com/docker/docker/cli/command"
|
2016-11-07 00:54:40 -05:00
|
|
|
"github.com/docker/docker/cli/command/formatter"
|
2016-09-08 14:54:01 -04:00
|
|
|
"github.com/docker/docker/cli/command/idresolver"
|
|
|
|
"github.com/docker/docker/cli/command/task"
|
2016-06-08 13:47:46 -04:00
|
|
|
"github.com/docker/docker/opts"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2016-07-19 17:01:31 -04:00
|
|
|
type psOptions struct {
|
2016-06-08 13:47:46 -04:00
|
|
|
filter opts.FilterOpt
|
2016-08-02 12:25:14 -04:00
|
|
|
noTrunc bool
|
2016-06-08 13:47:46 -04:00
|
|
|
namespace string
|
|
|
|
noResolve bool
|
2016-11-07 00:54:40 -05:00
|
|
|
quiet bool
|
|
|
|
format string
|
2016-06-08 13:47:46 -04:00
|
|
|
}
|
|
|
|
|
2016-09-08 14:54:01 -04:00
|
|
|
func newPsCommand(dockerCli *command.DockerCli) *cobra.Command {
|
2016-07-19 17:01:31 -04:00
|
|
|
opts := psOptions{filter: opts.NewFilterOpt()}
|
2016-06-08 13:47:46 -04:00
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
2016-07-19 17:01:31 -04:00
|
|
|
Use: "ps [OPTIONS] STACK",
|
2016-06-08 13:47:46 -04:00
|
|
|
Short: "List the tasks in the stack",
|
|
|
|
Args: cli.ExactArgs(1),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
opts.namespace = args[0]
|
2016-07-19 17:01:31 -04:00
|
|
|
return runPS(dockerCli, opts)
|
2016-06-08 13:47:46 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
flags := cmd.Flags()
|
2016-08-02 12:25:14 -04:00
|
|
|
flags.BoolVar(&opts.noTrunc, "no-trunc", false, "Do not truncate output")
|
2016-07-13 12:46:17 -04:00
|
|
|
flags.BoolVar(&opts.noResolve, "no-resolve", false, "Do not map IDs to Names")
|
2016-06-08 13:47:46 -04:00
|
|
|
flags.VarP(&opts.filter, "filter", "f", "Filter output based on conditions provided")
|
2016-11-07 00:54:40 -05:00
|
|
|
flags.BoolVarP(&opts.quiet, "quiet", "q", false, "Only display task IDs")
|
|
|
|
flags.StringVar(&opts.format, "format", "", "Pretty-print tasks using a Go template")
|
2016-06-08 13:47:46 -04:00
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2016-09-08 14:54:01 -04:00
|
|
|
func runPS(dockerCli *command.DockerCli, opts psOptions) error {
|
2016-06-28 13:39:49 -04:00
|
|
|
namespace := opts.namespace
|
2016-06-08 13:47:46 -04:00
|
|
|
client := dockerCli.Client()
|
|
|
|
ctx := context.Background()
|
|
|
|
|
2016-11-30 17:38:40 -05:00
|
|
|
filter := getStackFilterFromOpt(opts.namespace, opts.filter)
|
2016-06-08 13:47:46 -04:00
|
|
|
|
2016-11-01 10:01:16 -04:00
|
|
|
tasks, err := client.TaskList(ctx, types.TaskListOptions{Filters: filter})
|
2016-06-08 13:47:46 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-06-28 13:39:49 -04:00
|
|
|
if len(tasks) == 0 {
|
|
|
|
fmt.Fprintf(dockerCli.Out(), "Nothing found in stack: %s\n", namespace)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-11-07 00:54:40 -05:00
|
|
|
format := opts.format
|
|
|
|
if len(format) == 0 {
|
|
|
|
if len(dockerCli.ConfigFile().TasksFormat) > 0 && !opts.quiet {
|
|
|
|
format = dockerCli.ConfigFile().TasksFormat
|
|
|
|
} else {
|
|
|
|
format = formatter.TableFormatKey
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return task.Print(dockerCli, ctx, tasks, idresolver.New(client, opts.noResolve), !opts.noTrunc, opts.quiet, format)
|
2016-06-08 13:47:46 -04:00
|
|
|
}
|