mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
96ce3a194a
This patch creates a new cli package that allows to combine both client and daemon commands (there is only one daemon command: docker daemon). The `-d` and `--daemon` top-level flags are deprecated and a special message is added to prompt the user to use `docker daemon`. Providing top-level daemon-specific flags for client commands result in an error message prompting the user to use `docker daemon`. This patch does not break any old but correct usages. This also makes `-d` and `--daemon` flags, as well as the `daemon` command illegal in client-only binaries. Signed-off-by: Tibor Vass <tibor@docker.com>
56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
Cli "github.com/docker/docker/cli"
|
|
"github.com/docker/docker/pkg/archive"
|
|
flag "github.com/docker/docker/pkg/mflag"
|
|
)
|
|
|
|
// CmdDiff shows changes on a container's filesystem.
|
|
//
|
|
// Each changed file is printed on a separate line, prefixed with a single
|
|
// character that indicates the status of the file: C (modified), A (added),
|
|
// or D (deleted).
|
|
//
|
|
// Usage: docker diff CONTAINER
|
|
func (cli *DockerCli) CmdDiff(args ...string) error {
|
|
cmd := Cli.Subcmd("diff", []string{"CONTAINER"}, "Inspect changes on a container's filesystem", true)
|
|
cmd.Require(flag.Exact, 1)
|
|
|
|
cmd.ParseFlags(args, true)
|
|
|
|
if cmd.Arg(0) == "" {
|
|
return fmt.Errorf("Container name cannot be empty")
|
|
}
|
|
|
|
serverResp, err := cli.call("GET", "/containers/"+cmd.Arg(0)+"/changes", nil, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
defer serverResp.body.Close()
|
|
|
|
changes := []types.ContainerChange{}
|
|
if err := json.NewDecoder(serverResp.body).Decode(&changes); err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, change := range changes {
|
|
var kind string
|
|
switch change.Kind {
|
|
case archive.ChangeModify:
|
|
kind = "C"
|
|
case archive.ChangeAdd:
|
|
kind = "A"
|
|
case archive.ChangeDelete:
|
|
kind = "D"
|
|
}
|
|
fmt.Fprintf(cli.out, "%s %s\n", kind, change.Path)
|
|
}
|
|
|
|
return nil
|
|
}
|