compose/cli/cmd/ps.go

107 lines
2.4 KiB
Go
Raw Normal View History

2020-06-18 16:13:24 +02:00
/*
Copyright 2020 Docker Compose CLI authors
2020-06-18 16:13:24 +02:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cmd
import (
2020-05-06 09:37:52 +02:00
"context"
"fmt"
"os"
"strings"
"text/tabwriter"
"github.com/docker/compose-cli/utils/formatter"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"github.com/docker/compose-cli/api/client"
formatter2 "github.com/docker/compose-cli/formatter"
)
2020-05-06 09:37:52 +02:00
type psOpts struct {
2020-05-16 12:13:51 +02:00
all bool
2020-05-06 09:37:52 +02:00
quiet bool
json bool
}
func (o psOpts) validate() error {
if o.quiet && o.json {
return errors.New(`cannot combine "quiet" and "json" options`)
}
return nil
2020-05-06 09:37:52 +02:00
}
// PsCommand lists containers
2020-05-06 09:37:52 +02:00
func PsCommand() *cobra.Command {
var opts psOpts
cmd := &cobra.Command{
Use: "ps",
Short: "List containers",
RunE: func(cmd *cobra.Command, args []string) error {
return runPs(cmd.Context(), opts)
},
}
2020-05-06 09:37:52 +02:00
cmd.Flags().BoolVarP(&opts.quiet, "quiet", "q", false, "Only display IDs")
2020-05-18 14:16:32 +02:00
cmd.Flags().BoolVarP(&opts.all, "all", "a", false, "Show all containers (default shows just running)")
cmd.Flags().BoolVar(&opts.json, "json", false, "Format output as JSON")
2020-05-06 09:37:52 +02:00
return cmd
}
func runPs(ctx context.Context, opts psOpts) error {
err := opts.validate()
if err != nil {
return err
}
2020-05-06 09:37:52 +02:00
c, err := client.New(ctx)
if err != nil {
return errors.Wrap(err, "cannot connect to backend")
}
2020-05-16 12:13:51 +02:00
containers, err := c.ContainerService().List(ctx, opts.all)
2020-05-06 09:37:52 +02:00
if err != nil {
return errors.Wrap(err, "fetch containers")
}
2020-05-06 09:37:52 +02:00
if opts.quiet {
for _, c := range containers {
2020-05-06 09:37:52 +02:00
fmt.Println(c.ID)
}
2020-05-06 09:37:52 +02:00
return nil
}
if opts.json {
j, err := formatter2.ToStandardJSON(containers)
if err != nil {
return err
}
fmt.Println(j)
return nil
}
w := tabwriter.NewWriter(os.Stdout, 20, 1, 3, ' ', 0)
2020-05-15 17:52:19 +02:00
fmt.Fprintf(w, "CONTAINER ID\tIMAGE\tCOMMAND\tSTATUS\tPORTS\n")
format := "%s\t%s\t%s\t%s\t%s\n"
2020-05-06 09:37:52 +02:00
for _, c := range containers {
fmt.Fprintf(w, format, c.ID, c.Image, c.Command, c.Status, strings.Join(formatter.PortsToStrings(c.Ports), ", "))
2020-05-06 09:37:52 +02:00
}
return w.Flush()
}