123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- package service
- import (
- "fmt"
- "github.com/docker/docker/api/types"
- "github.com/docker/docker/api/types/filters"
- "github.com/docker/docker/api/types/swarm"
- "github.com/docker/docker/cli"
- "github.com/docker/docker/cli/command"
- "github.com/docker/docker/cli/command/formatter"
- "github.com/docker/docker/opts"
- "github.com/spf13/cobra"
- "golang.org/x/net/context"
- )
- type listOptions struct {
- quiet bool
- format string
- filter opts.FilterOpt
- }
- func newListCommand(dockerCli *command.DockerCli) *cobra.Command {
- opts := listOptions{filter: opts.NewFilterOpt()}
- cmd := &cobra.Command{
- Use: "ls [OPTIONS]",
- Aliases: []string{"list"},
- Short: "List services",
- Args: cli.NoArgs,
- RunE: func(cmd *cobra.Command, args []string) error {
- return runList(dockerCli, opts)
- },
- }
- flags := cmd.Flags()
- flags.BoolVarP(&opts.quiet, "quiet", "q", false, "Only display IDs")
- flags.StringVar(&opts.format, "format", "", "Pretty-print services using a Go template")
- flags.VarP(&opts.filter, "filter", "f", "Filter output based on conditions provided")
- return cmd
- }
- func runList(dockerCli *command.DockerCli, opts listOptions) error {
- ctx := context.Background()
- client := dockerCli.Client()
- services, err := client.ServiceList(ctx, types.ServiceListOptions{Filters: opts.filter.Value()})
- if err != nil {
- return err
- }
- info := map[string]formatter.ServiceListInfo{}
- if len(services) > 0 && !opts.quiet {
- // only non-empty services and not quiet, should we call TaskList and NodeList api
- taskFilter := filters.NewArgs()
- for _, service := range services {
- taskFilter.Add("service", service.ID)
- }
- tasks, err := client.TaskList(ctx, types.TaskListOptions{Filters: taskFilter})
- if err != nil {
- return err
- }
- nodes, err := client.NodeList(ctx, types.NodeListOptions{})
- if err != nil {
- return err
- }
- info = GetServicesStatus(services, nodes, tasks)
- }
- format := opts.format
- if len(format) == 0 {
- if len(dockerCli.ConfigFile().ServicesFormat) > 0 && !opts.quiet {
- format = dockerCli.ConfigFile().ServicesFormat
- } else {
- format = formatter.TableFormatKey
- }
- }
- servicesCtx := formatter.Context{
- Output: dockerCli.Out(),
- Format: formatter.NewServiceListFormat(format, opts.quiet),
- }
- return formatter.ServiceListWrite(servicesCtx, services, info)
- }
- // GetServicesStatus returns a map of mode and replicas
- func GetServicesStatus(services []swarm.Service, nodes []swarm.Node, tasks []swarm.Task) map[string]formatter.ServiceListInfo {
- running := map[string]int{}
- tasksNoShutdown := map[string]int{}
- activeNodes := make(map[string]struct{})
- for _, n := range nodes {
- if n.Status.State != swarm.NodeStateDown {
- activeNodes[n.ID] = struct{}{}
- }
- }
- for _, task := range tasks {
- if task.DesiredState != swarm.TaskStateShutdown {
- tasksNoShutdown[task.ServiceID]++
- }
- if _, nodeActive := activeNodes[task.NodeID]; nodeActive && task.Status.State == swarm.TaskStateRunning {
- running[task.ServiceID]++
- }
- }
- info := map[string]formatter.ServiceListInfo{}
- for _, service := range services {
- info[service.ID] = formatter.ServiceListInfo{}
- if service.Spec.Mode.Replicated != nil && service.Spec.Mode.Replicated.Replicas != nil {
- info[service.ID] = formatter.ServiceListInfo{
- Mode: "replicated",
- Replicas: fmt.Sprintf("%d/%d", running[service.ID], *service.Spec.Mode.Replicated.Replicas),
- }
- } else if service.Spec.Mode.Global != nil {
- info[service.ID] = formatter.ServiceListInfo{
- Mode: "global",
- Replicas: fmt.Sprintf("%d/%d", running[service.ID], tasksNoShutdown[service.ID]),
- }
- }
- }
- return info
- }
|