mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
636c276f67
… and refactor a little bit some daemon on the way. - Move `SearchRegistryForImages` to a new file (`daemon/search.go`) as `daemon.go` is getting pretty big. - `registry.Service` is now an interface (allowing us to decouple it a little bit and thus unit test easily). - Add some unit test for `SearchRegistryForImages`. - Use UniqueExactMatch for search filters - And use empty restore id for now in client.ContainerStart. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
162 lines
4.3 KiB
Go
162 lines
4.3 KiB
Go
package client
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"net/http/httputil"
|
|
"os"
|
|
"strings"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
Cli "github.com/docker/docker/cli"
|
|
flag "github.com/docker/docker/pkg/mflag"
|
|
"github.com/docker/docker/pkg/promise"
|
|
"github.com/docker/docker/pkg/signal"
|
|
"github.com/docker/engine-api/types"
|
|
)
|
|
|
|
func (cli *DockerCli) forwardAllSignals(ctx context.Context, cid string) chan os.Signal {
|
|
sigc := make(chan os.Signal, 128)
|
|
signal.CatchAll(sigc)
|
|
go func() {
|
|
for s := range sigc {
|
|
if s == signal.SIGCHLD || s == signal.SIGPIPE {
|
|
continue
|
|
}
|
|
var sig string
|
|
for sigStr, sigN := range signal.SignalMap {
|
|
if sigN == s {
|
|
sig = sigStr
|
|
break
|
|
}
|
|
}
|
|
if sig == "" {
|
|
fmt.Fprintf(cli.err, "Unsupported signal: %v. Discarding.\n", s)
|
|
continue
|
|
}
|
|
|
|
if err := cli.client.ContainerKill(ctx, cid, sig); err != nil {
|
|
logrus.Debugf("Error sending signal: %s", err)
|
|
}
|
|
}
|
|
}()
|
|
return sigc
|
|
}
|
|
|
|
// CmdStart starts one or more containers.
|
|
//
|
|
// Usage: docker start [OPTIONS] CONTAINER [CONTAINER...]
|
|
func (cli *DockerCli) CmdStart(args ...string) error {
|
|
cmd := Cli.Subcmd("start", []string{"CONTAINER [CONTAINER...]"}, Cli.DockerCommands["start"].Description, true)
|
|
attach := cmd.Bool([]string{"a", "-attach"}, false, "Attach STDOUT/STDERR and forward signals")
|
|
openStdin := cmd.Bool([]string{"i", "-interactive"}, false, "Attach container's STDIN")
|
|
detachKeys := cmd.String([]string{"-detach-keys"}, "", "Override the key sequence for detaching a container")
|
|
cmd.Require(flag.Min, 1)
|
|
|
|
cmd.ParseFlags(args, true)
|
|
|
|
ctx, cancelFun := context.WithCancel(context.Background())
|
|
|
|
if *attach || *openStdin {
|
|
// We're going to attach to a container.
|
|
// 1. Ensure we only have one container.
|
|
if cmd.NArg() > 1 {
|
|
return fmt.Errorf("You cannot start and attach multiple containers at once.")
|
|
}
|
|
|
|
// 2. Attach to the container.
|
|
container := cmd.Arg(0)
|
|
c, err := cli.client.ContainerInspect(ctx, container)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !c.Config.Tty {
|
|
sigc := cli.forwardAllSignals(ctx, container)
|
|
defer signal.StopCatch(sigc)
|
|
}
|
|
|
|
if *detachKeys != "" {
|
|
cli.configFile.DetachKeys = *detachKeys
|
|
}
|
|
|
|
options := types.ContainerAttachOptions{
|
|
Stream: true,
|
|
Stdin: *openStdin && c.Config.OpenStdin,
|
|
Stdout: true,
|
|
Stderr: true,
|
|
DetachKeys: cli.configFile.DetachKeys,
|
|
}
|
|
|
|
var in io.ReadCloser
|
|
|
|
if options.Stdin {
|
|
in = cli.in
|
|
}
|
|
|
|
resp, errAttach := cli.client.ContainerAttach(ctx, container, options)
|
|
if errAttach != nil && errAttach != httputil.ErrPersistEOF {
|
|
// ContainerAttach return an ErrPersistEOF (connection closed)
|
|
// means server met an error and put it in Hijacked connection
|
|
// keep the error and read detailed error message from hijacked connection
|
|
return errAttach
|
|
}
|
|
defer resp.Close()
|
|
cErr := promise.Go(func() error {
|
|
errHijack := cli.holdHijackedConnection(ctx, c.Config.Tty, in, cli.out, cli.err, resp)
|
|
if errHijack == nil {
|
|
return errAttach
|
|
}
|
|
return errHijack
|
|
})
|
|
|
|
// 3. Start the container.
|
|
if err := cli.client.ContainerStart(ctx, container, ""); err != nil {
|
|
cancelFun()
|
|
<-cErr
|
|
return err
|
|
}
|
|
|
|
// 4. Wait for attachment to break.
|
|
if c.Config.Tty && cli.isTerminalOut {
|
|
if err := cli.monitorTtySize(ctx, container, false); err != nil {
|
|
fmt.Fprintf(cli.err, "Error monitoring TTY size: %s\n", err)
|
|
}
|
|
}
|
|
if attchErr := <-cErr; attchErr != nil {
|
|
return attchErr
|
|
}
|
|
_, status, err := cli.getExitCode(ctx, container)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if status != 0 {
|
|
return Cli.StatusError{StatusCode: status}
|
|
}
|
|
} else {
|
|
// We're not going to attach to anything.
|
|
// Start as many containers as we want.
|
|
return cli.startContainersWithoutAttachments(ctx, cmd.Args())
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (cli *DockerCli) startContainersWithoutAttachments(ctx context.Context, containers []string) error {
|
|
var failedContainers []string
|
|
for _, container := range containers {
|
|
if err := cli.client.ContainerStart(ctx, container, ""); err != nil {
|
|
fmt.Fprintf(cli.err, "%s\n", err)
|
|
failedContainers = append(failedContainers, container)
|
|
} else {
|
|
fmt.Fprintf(cli.out, "%s\n", container)
|
|
}
|
|
}
|
|
|
|
if len(failedContainers) > 0 {
|
|
return fmt.Errorf("Error: failed to start containers: %v", strings.Join(failedContainers, ", "))
|
|
}
|
|
return nil
|
|
}
|