forked from nanobox-io/golang-docker-client
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexec.go
89 lines (77 loc) · 2.31 KB
/
exec.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package docker
import (
"io"
"github.com/docker/docker/pkg/stdcopy"
dockType "github.com/docker/engine-api/types"
"github.com/jcelliott/lumber"
"golang.org/x/net/context"
)
type ExecConfig struct {
ID string
User string
Cmd []string
Env []string
Stdin, Stdout, Stderr, Tty bool
}
func ExecStart(execConfig ExecConfig) (dockType.ContainerExecCreateResponse, dockType.HijackedResponse, error) {
config := dockType.ExecConfig{
Tty: execConfig.Tty,
User: execConfig.User,
Cmd: execConfig.Cmd,
AttachStdin: execConfig.Stdin,
AttachStdout: execConfig.Stdout,
AttachStderr: execConfig.Stderr,
Env: execConfig.Env,
}
exec, err := client.ContainerExecCreate(context.Background(), execConfig.ID, config)
if err != nil {
return exec, dockType.HijackedResponse{}, err
}
resp, err := client.ContainerExecAttach(context.Background(), exec.ID, config)
return exec, resp, err
}
func ExecInspect(id string) (dockType.ContainerExecInspect, error) {
return client.ContainerExecInspect(context.Background(), id)
}
func ExecPipe(resp dockType.HijackedResponse, inStream io.Reader, outStream, errorStream io.Writer) error {
var err error
receiveStdout := make(chan error, 1)
if outStream != nil || errorStream != nil {
go func() {
// always do this because we are never tty
_, err = stdcopy.StdCopy(outStream, errorStream, resp.Reader)
lumber.Trace("[hijack] End of stdout")
receiveStdout <- err
}()
}
stdinDone := make(chan struct{})
go func() {
if inStream != nil {
io.Copy(resp.Conn, inStream)
lumber.Trace("[hijack] End of stdin")
}
if err := resp.CloseWrite(); err != nil {
lumber.Error("Couldn't send EOF: %s", err)
}
close(stdinDone)
}()
select {
case err := <-receiveStdout:
if err != nil {
lumber.Debug("Error receiveStdout: %s", err)
return err
}
case <-stdinDone:
if outStream != nil || errorStream != nil {
if err := <-receiveStdout; err != nil {
lumber.Debug("Error receiveStdout: %s", err)
return err
}
}
}
return nil
}
// resize the exec.
func ContainerExecResize(id string, height, width int) error {
return client.ContainerExecResize(context.Background(), id, dockType.ResizeOptions{Height: height, Width: width})
}