2017-08-23 16:57:27 -04:00
|
|
|
package icmd
|
|
|
|
|
2019-04-05 11:02:23 -04:00
|
|
|
import (
|
|
|
|
"io"
|
2020-02-07 08:39:24 -05:00
|
|
|
"os"
|
2019-04-05 11:02:23 -04:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2017-08-23 16:57:27 -04:00
|
|
|
// CmdOp is an operation which modified a Cmd structure used to execute commands
|
|
|
|
type CmdOp func(*Cmd)
|
2019-04-05 11:02:23 -04:00
|
|
|
|
|
|
|
// WithTimeout sets the timeout duration of the command
|
|
|
|
func WithTimeout(timeout time.Duration) CmdOp {
|
|
|
|
return func(c *Cmd) {
|
|
|
|
c.Timeout = timeout
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithEnv sets the environment variable of the command.
|
|
|
|
// Each arguments are in the form of KEY=VALUE
|
|
|
|
func WithEnv(env ...string) CmdOp {
|
|
|
|
return func(c *Cmd) {
|
|
|
|
c.Env = env
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dir sets the working directory of the command
|
|
|
|
func Dir(path string) CmdOp {
|
|
|
|
return func(c *Cmd) {
|
|
|
|
c.Dir = path
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithStdin sets the standard input of the command to the specified reader
|
|
|
|
func WithStdin(r io.Reader) CmdOp {
|
|
|
|
return func(c *Cmd) {
|
|
|
|
c.Stdin = r
|
|
|
|
}
|
|
|
|
}
|
2020-02-07 08:39:24 -05:00
|
|
|
|
|
|
|
// WithExtraFile adds a file descriptor to the command
|
|
|
|
func WithExtraFile(f *os.File) CmdOp {
|
|
|
|
return func(c *Cmd) {
|
|
|
|
c.ExtraFiles = append(c.ExtraFiles, f)
|
|
|
|
}
|
|
|
|
}
|