2016-03-18 18:53:27 +00:00
|
|
|
package libcontainerd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
2016-05-21 02:04:20 +00:00
|
|
|
|
|
|
|
"github.com/docker/docker/pkg/system"
|
2016-03-18 18:53:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// process keeps the state for both main container process and exec process.
|
|
|
|
type process struct {
|
|
|
|
processCommon
|
2016-03-19 03:29:27 +00:00
|
|
|
|
2016-03-20 22:58:23 +00:00
|
|
|
// Platform specific fields are below here.
|
|
|
|
|
|
|
|
// commandLine is to support returning summary information for docker top
|
|
|
|
commandLine string
|
2016-03-18 18:53:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func openReaderFromPipe(p io.ReadCloser) io.Reader {
|
|
|
|
r, w := io.Pipe()
|
|
|
|
go func() {
|
|
|
|
if _, err := io.Copy(w, p); err != nil {
|
|
|
|
r.CloseWithError(err)
|
|
|
|
}
|
|
|
|
w.Close()
|
|
|
|
p.Close()
|
|
|
|
}()
|
|
|
|
return r
|
|
|
|
}
|
2016-05-21 02:04:20 +00:00
|
|
|
|
|
|
|
// fixStdinBackspaceBehavior works around a bug in Windows before build 14350
|
|
|
|
// where it interpreted DEL as VK_DELETE instead of as VK_BACK. This replaces
|
|
|
|
// DEL with BS to work around this.
|
|
|
|
func fixStdinBackspaceBehavior(w io.WriteCloser, tty bool) io.WriteCloser {
|
|
|
|
if !tty || system.GetOSVersion().Build >= 14350 {
|
|
|
|
return w
|
|
|
|
}
|
|
|
|
return &delToBsWriter{w}
|
|
|
|
}
|
|
|
|
|
|
|
|
type delToBsWriter struct {
|
|
|
|
io.WriteCloser
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *delToBsWriter) Write(b []byte) (int, error) {
|
|
|
|
const (
|
|
|
|
backspace = 0x8
|
|
|
|
del = 0x7f
|
|
|
|
)
|
|
|
|
bc := make([]byte, len(b))
|
|
|
|
for i, c := range b {
|
|
|
|
if c == del {
|
|
|
|
bc[i] = backspace
|
|
|
|
} else {
|
|
|
|
bc[i] = c
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return w.WriteCloser.Write(bc)
|
|
|
|
}
|