mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
88d32a6109
Signed-off-by: Antonio Murdaca <runcom@linux.com>
50 lines
1.2 KiB
Go
50 lines
1.2 KiB
Go
package daemon
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/docker/docker/pkg/stdcopy"
|
|
)
|
|
|
|
type ContainerAttachWithLogsConfig struct {
|
|
InStream io.ReadCloser
|
|
OutStream io.Writer
|
|
UseStdin, UseStdout, UseStderr bool
|
|
Logs, Stream bool
|
|
}
|
|
|
|
func (daemon *Daemon) ContainerAttachWithLogs(container *Container, c *ContainerAttachWithLogsConfig) error {
|
|
var errStream io.Writer
|
|
|
|
if !container.Config.Tty {
|
|
errStream = stdcopy.NewStdWriter(c.OutStream, stdcopy.Stderr)
|
|
c.OutStream = stdcopy.NewStdWriter(c.OutStream, stdcopy.Stdout)
|
|
} else {
|
|
errStream = c.OutStream
|
|
}
|
|
|
|
var stdin io.ReadCloser
|
|
var stdout, stderr io.Writer
|
|
|
|
if c.UseStdin {
|
|
stdin = c.InStream
|
|
}
|
|
if c.UseStdout {
|
|
stdout = c.OutStream
|
|
}
|
|
if c.UseStderr {
|
|
stderr = errStream
|
|
}
|
|
|
|
return container.AttachWithLogs(stdin, stdout, stderr, c.Logs, c.Stream)
|
|
}
|
|
|
|
type ContainerWsAttachWithLogsConfig struct {
|
|
InStream io.ReadCloser
|
|
OutStream, ErrStream io.Writer
|
|
Logs, Stream bool
|
|
}
|
|
|
|
func (daemon *Daemon) ContainerWsAttachWithLogs(container *Container, c *ContainerWsAttachWithLogsConfig) error {
|
|
return container.AttachWithLogs(c.InStream, c.OutStream, c.ErrStream, c.Logs, c.Stream)
|
|
}
|