summaryrefslogtreecommitdiff
path: root/runtime/execdriver/pipes.go
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/execdriver/pipes.go')
-rw-r--r--runtime/execdriver/pipes.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/runtime/execdriver/pipes.go b/runtime/execdriver/pipes.go
new file mode 100644
index 0000000000..158219f0c5
--- /dev/null
+++ b/runtime/execdriver/pipes.go
@@ -0,0 +1,23 @@
+package execdriver
+
+import (
+ "io"
+)
+
+// Pipes is a wrapper around a containers output for
+// stdin, stdout, stderr
+type Pipes struct {
+ Stdin io.ReadCloser
+ Stdout, Stderr io.Writer
+}
+
+func NewPipes(stdin io.ReadCloser, stdout, stderr io.Writer, useStdin bool) *Pipes {
+ p := &Pipes{
+ Stdout: stdout,
+ Stderr: stderr,
+ }
+ if useStdin {
+ p.Stdin = stdin
+ }
+ return p
+}