Refactor daemon.attach()

Also makes streamConfig Pipe methods not return error, since there was
no error for them to be able to return anyway.

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
Brian Goff 2014-12-04 16:12:29 -05:00
parent b2ab733c99
commit 21e44d7a21
6 changed files with 88 additions and 159 deletions

View File

@ -8,7 +8,6 @@ import (
log "github.com/Sirupsen/logrus" log "github.com/Sirupsen/logrus"
"github.com/docker/docker/engine" "github.com/docker/docker/engine"
"github.com/docker/docker/pkg/ioutils"
"github.com/docker/docker/pkg/jsonlog" "github.com/docker/docker/pkg/jsonlog"
"github.com/docker/docker/pkg/promise" "github.com/docker/docker/pkg/promise"
"github.com/docker/docker/utils" "github.com/docker/docker/utils"
@ -114,131 +113,97 @@ func (daemon *Daemon) ContainerAttach(job *engine.Job) engine.Status {
func (daemon *Daemon) attach(streamConfig *StreamConfig, openStdin, stdinOnce, tty bool, stdin io.ReadCloser, stdout io.Writer, stderr io.Writer) chan error { func (daemon *Daemon) attach(streamConfig *StreamConfig, openStdin, stdinOnce, tty bool, stdin io.ReadCloser, stdout io.Writer, stderr io.Writer) chan error {
var ( var (
cStdout, cStderr io.ReadCloser cStdout, cStderr io.ReadCloser
cStdin io.WriteCloser
nJobs int nJobs int
errors = make(chan error, 3)
) )
if stdin != nil && openStdin {
cStdin = streamConfig.StdinPipe()
nJobs++
}
if stdout != nil {
cStdout = streamConfig.StdoutPipe()
nJobs++
}
if stderr != nil {
cStderr = streamConfig.StderrPipe()
nJobs++
}
errors := make(chan error, nJobs)
// Connect stdin of container to the http conn. // Connect stdin of container to the http conn.
if stdin != nil && openStdin { if stdin != nil && openStdin {
nJobs++
// Get the stdin pipe. // Get the stdin pipe.
if cStdin, err := streamConfig.StdinPipe(); err != nil { cStdin = streamConfig.StdinPipe()
errors <- err go func() {
} else { log.Debugf("attach: stdin: begin")
go func() { defer func() {
log.Debugf("attach: stdin: begin")
defer log.Debugf("attach: stdin: end")
if stdinOnce && !tty { if stdinOnce && !tty {
defer cStdin.Close() defer cStdin.Close()
} else { } else {
// No matter what, when stdin is closed (io.Copy unblock), close stdout and stderr // No matter what, when stdin is closed (io.Copy unblock), close stdout and stderr
defer func() { if cStdout != nil {
if cStdout != nil { cStdout.Close()
cStdout.Close() }
} if cStderr != nil {
if cStderr != nil { cStderr.Close()
cStderr.Close() }
}
}()
} }
if tty { log.Debugf("attach: stdin: end")
_, err = utils.CopyEscapable(cStdin, stdin) }()
} else { var err error
_, err = io.Copy(cStdin, stdin) if tty {
_, err = utils.CopyEscapable(cStdin, stdin)
} else {
_, err = io.Copy(cStdin, stdin)
}
if err == io.ErrClosedPipe {
err = nil
}
if err != nil {
log.Errorf("attach: stdin: %s", err)
}
errors <- err
}()
}
}
if stdout != nil {
nJobs++
// Get a reader end of a pipe that is attached as stdout to the container.
if p, err := streamConfig.StdoutPipe(); err != nil {
errors <- err
} else {
cStdout = p
go func() {
log.Debugf("attach: stdout: begin")
defer log.Debugf("attach: stdout: end")
// If we are in StdinOnce mode, then close stdin
if stdinOnce && stdin != nil {
defer stdin.Close()
}
_, err := io.Copy(stdout, cStdout)
if err == io.ErrClosedPipe {
err = nil
}
if err != nil {
log.Errorf("attach: stdout: %s", err)
}
errors <- err
}()
}
} else {
// Point stdout of container to a no-op writer.
go func() {
if cStdout, err := streamConfig.StdoutPipe(); err != nil {
log.Errorf("attach: stdout pipe: %s", err)
} else {
io.Copy(&ioutils.NopWriter{}, cStdout)
} }
if err == io.ErrClosedPipe {
err = nil
}
if err != nil {
log.Errorf("attach: stdin: %s", err)
}
errors <- err
}() }()
} }
if stderr != nil {
nJobs++ attachStream := func(name string, stream io.Writer, streamPipe io.ReadCloser) {
if p, err := streamConfig.StderrPipe(); err != nil { if stream == nil {
errors <- err return
} else {
cStderr = p
go func() {
log.Debugf("attach: stderr: begin")
defer log.Debugf("attach: stderr: end")
// If we are in StdinOnce mode, then close stdin
// Why are we closing stdin here and above while handling stdout?
if stdinOnce && stdin != nil {
defer stdin.Close()
}
_, err := io.Copy(stderr, cStderr)
if err == io.ErrClosedPipe {
err = nil
}
if err != nil {
log.Errorf("attach: stderr: %s", err)
}
errors <- err
}()
} }
} else { defer func() {
// Point stderr at a no-op writer. // Make sure stdin gets closed
go func() { if stdinOnce && cStdin != nil {
if cStderr, err := streamConfig.StderrPipe(); err != nil { stdin.Close()
log.Errorf("attach: stdout pipe: %s", err) cStdin.Close()
} else {
io.Copy(&ioutils.NopWriter{}, cStderr)
} }
streamPipe.Close()
}() }()
log.Debugf("attach: %s: begin", name)
defer log.Debugf("attach: %s: end", name)
_, err := io.Copy(stream, streamPipe)
if err == io.ErrClosedPipe {
err = nil
}
if err != nil {
log.Errorf("attach: %s: %v", name, err)
}
errors <- err
} }
go attachStream("stdout", stdout, cStdout)
go attachStream("stderr", stderr, cStderr)
return promise.Go(func() error { return promise.Go(func() error {
defer func() {
if cStdout != nil {
cStdout.Close()
}
if cStderr != nil {
cStderr.Close()
}
}()
for i := 0; i < nJobs; i++ { for i := 0; i < nJobs; i++ {
log.Debugf("attach: waiting for job %d/%d", i+1, nJobs) log.Debugf("attach: waiting for job %d/%d", i+1, nJobs)
if err := <-errors; err != nil { err := <-errors
if err != nil {
log.Errorf("attach: job %d returned error %s, aborting all jobs", i+1, err) log.Errorf("attach: job %d returned error %s, aborting all jobs", i+1, err)
return err return err
} }

View File

@ -370,10 +370,7 @@ func (container *Container) Run() error {
} }
func (container *Container) Output() (output []byte, err error) { func (container *Container) Output() (output []byte, err error) {
pipe, err := container.StdoutPipe() pipe := container.StdoutPipe()
if err != nil {
return nil, err
}
defer pipe.Close() defer pipe.Close()
if err := container.Start(); err != nil { if err := container.Start(); err != nil {
return nil, err return nil, err
@ -391,20 +388,20 @@ func (container *Container) Output() (output []byte, err error) {
// copied and delivered to all StdoutPipe and StderrPipe consumers, using // copied and delivered to all StdoutPipe and StderrPipe consumers, using
// a kind of "broadcaster". // a kind of "broadcaster".
func (streamConfig *StreamConfig) StdinPipe() (io.WriteCloser, error) { func (streamConfig *StreamConfig) StdinPipe() io.WriteCloser {
return streamConfig.stdinPipe, nil return streamConfig.stdinPipe
} }
func (streamConfig *StreamConfig) StdoutPipe() (io.ReadCloser, error) { func (streamConfig *StreamConfig) StdoutPipe() io.ReadCloser {
reader, writer := io.Pipe() reader, writer := io.Pipe()
streamConfig.stdout.AddWriter(writer, "") streamConfig.stdout.AddWriter(writer, "")
return ioutils.NewBufReader(reader), nil return ioutils.NewBufReader(reader)
} }
func (streamConfig *StreamConfig) StderrPipe() (io.ReadCloser, error) { func (streamConfig *StreamConfig) StderrPipe() io.ReadCloser {
reader, writer := io.Pipe() reader, writer := io.Pipe()
streamConfig.stderr.AddWriter(writer, "") streamConfig.stderr.AddWriter(writer, "")
return ioutils.NewBufReader(reader), nil return ioutils.NewBufReader(reader)
} }
func (streamConfig *StreamConfig) StdoutLogPipe() io.ReadCloser { func (streamConfig *StreamConfig) StdoutLogPipe() io.ReadCloser {

View File

@ -412,7 +412,7 @@ func TestAttachDisconnect(t *testing.T) {
} }
// Try to avoid the timeout in destroy. Best effort, don't check error // Try to avoid the timeout in destroy. Best effort, don't check error
cStdin, _ := container.StdinPipe() cStdin := container.StdinPipe()
cStdin.Close() cStdin.Close()
container.WaitStop(-1 * time.Second) container.WaitStop(-1 * time.Second)
} }

View File

@ -26,14 +26,8 @@ func TestRestartStdin(t *testing.T) {
} }
defer daemon.Destroy(container) defer daemon.Destroy(container)
stdin, err := container.StdinPipe() stdin := container.StdinPipe()
if err != nil { stdout := container.StdoutPipe()
t.Fatal(err)
}
stdout, err := container.StdoutPipe()
if err != nil {
t.Fatal(err)
}
if err := container.Start(); err != nil { if err := container.Start(); err != nil {
t.Fatal(err) t.Fatal(err)
} }
@ -56,14 +50,8 @@ func TestRestartStdin(t *testing.T) {
} }
// Restart and try again // Restart and try again
stdin, err = container.StdinPipe() stdin = container.StdinPipe()
if err != nil { stdout = container.StdoutPipe()
t.Fatal(err)
}
stdout, err = container.StdoutPipe()
if err != nil {
t.Fatal(err)
}
if err := container.Start(); err != nil { if err := container.Start(); err != nil {
t.Fatal(err) t.Fatal(err)
} }
@ -103,14 +91,8 @@ func TestStdin(t *testing.T) {
} }
defer daemon.Destroy(container) defer daemon.Destroy(container)
stdin, err := container.StdinPipe() stdin := container.StdinPipe()
if err != nil { stdout := container.StdoutPipe()
t.Fatal(err)
}
stdout, err := container.StdoutPipe()
if err != nil {
t.Fatal(err)
}
if err := container.Start(); err != nil { if err := container.Start(); err != nil {
t.Fatal(err) t.Fatal(err)
} }
@ -149,14 +131,8 @@ func TestTty(t *testing.T) {
} }
defer daemon.Destroy(container) defer daemon.Destroy(container)
stdin, err := container.StdinPipe() stdin := container.StdinPipe()
if err != nil { stdout := container.StdoutPipe()
t.Fatal(err)
}
stdout, err := container.StdoutPipe()
if err != nil {
t.Fatal(err)
}
if err := container.Start(); err != nil { if err := container.Start(); err != nil {
t.Fatal(err) t.Fatal(err)
} }

View File

@ -610,7 +610,7 @@ func TestRestore(t *testing.T) {
} }
// Simulate a crash/manual quit of dockerd: process dies, states stays 'Running' // Simulate a crash/manual quit of dockerd: process dies, states stays 'Running'
cStdin, _ := container2.StdinPipe() cStdin := container2.StdinPipe()
cStdin.Close() cStdin.Close()
if _, err := container2.WaitStop(2 * time.Second); err != nil { if _, err := container2.WaitStop(2 * time.Second); err != nil {
t.Fatal(err) t.Fatal(err)

View File

@ -85,14 +85,8 @@ func containerFileExists(eng *engine.Engine, id, dir string, t Fataler) bool {
func containerAttach(eng *engine.Engine, id string, t Fataler) (io.WriteCloser, io.ReadCloser) { func containerAttach(eng *engine.Engine, id string, t Fataler) (io.WriteCloser, io.ReadCloser) {
c := getContainer(eng, id, t) c := getContainer(eng, id, t)
i, err := c.StdinPipe() i := c.StdinPipe()
if err != nil { o := c.StdoutPipe()
t.Fatal(err)
}
o, err := c.StdoutPipe()
if err != nil {
t.Fatal(err)
}
return i, o return i, o
} }
@ -292,10 +286,7 @@ func runContainer(eng *engine.Engine, r *daemon.Daemon, args []string, t *testin
return "", err return "", err
} }
defer r.Destroy(container) defer r.Destroy(container)
stdout, err := container.StdoutPipe() stdout := container.StdoutPipe()
if err != nil {
return "", err
}
defer stdout.Close() defer stdout.Close()
job := eng.Job("start", container.ID) job := eng.Job("start", container.ID)