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"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
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"
|
|
|
|
"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
|
|
|
all bool
|
|
|
|
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-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()
|
|
|
|
flags.BoolVarP(&opts.all, "all", "a", false, "Display all tasks")
|
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")
|
|
|
|
|
|
|
|
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()
|
|
|
|
|
|
|
|
filter := opts.filter.Value()
|
|
|
|
filter.Add("label", labelNamespace+"="+opts.namespace)
|
2016-06-29 12:20:32 -04:00
|
|
|
if !opts.all && !filter.Include("desired-state") {
|
|
|
|
filter.Add("desired-state", string(swarm.TaskStateRunning))
|
|
|
|
filter.Add("desired-state", string(swarm.TaskStateAccepted))
|
2016-06-08 13:47:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks, err := client.TaskList(ctx, types.TaskListOptions{Filter: filter})
|
|
|
|
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-08-02 12:25:14 -04:00
|
|
|
return task.Print(dockerCli, ctx, tasks, idresolver.New(client, opts.noResolve), opts.noTrunc)
|
2016-06-08 13:47:46 -04:00
|
|
|
}
|