Documentation ¶
Index ¶
- Constants
- Variables
- func ExecStream(stdin io.Reader, stdout io.WriteCloser, stderr io.WriteCloser, ...) (statusCode int, isCancel bool, err error)
- func ExecStreamFull(stdin io.Reader, stdout io.WriteCloser, stderr io.WriteCloser, env []string, ...) (statusCode int, isCancel bool, err error)
- func ExitError(err error) (hasStatusCode bool, statusCode int, signal unix.Signal)
Constants ¶
View Source
const (
TerminatedBySignal = -1
)
Variables ¶
View Source
var ErrArgsListEmpty = errors.New("args list empty")
Functions ¶
func ExecStream ¶
func ExecStream(stdin io.Reader, stdout io.WriteCloser, stderr io.WriteCloser, ctx context.Context, args ...string) (statusCode int, isCancel bool, err error)
ExecStream executes a system command using the exec.Cmd type and flexible streaming.
- ExecStream blocks during command execution
- ExecStream returns any error occurring during launch or execution including errors in copy threads
- successful exit is: statusCode == 0, isCancel == false, err == nil
- statusCode may be set by the process but is otherwise:
- — 0 successful exit
- — -1 process was killed by signal such as ^C or SIGTERM
- context cancel exit is: statusCode == -1, isCancel == true, err == nil
- failure exit is: statusCode != 0, isCancel == false, err != nil
- —
- args is the command followed by arguments.
- args[0] must specify an executable in the file system. env.PATH is used to resolve the command executable
- if stdin stdout or stderr are nil, the are /dev/null Additional threads are used to copy data when stdin stdout or stderr are non-nil
- os.Stdin os.Stdout os.Stderr can be provided
- for stdout and stderr pio has usable types:
- — pio.NewWriteCloserToString
- — pio.NewWriteCloserToChan
- — pio.NewWriteCloserToChanLine
- — pio.NewReadWriteCloserSlice
- any stream provided is not closed. However, upon return from ExecStream all i/o operations have completed and streams may be closed as the case may be
- ctx is used to kill the process (by calling os.Process.Kill) if the context becomes done before the command completes on its own
- use ExecStream with parl.EchoModerator
- if system commands slow down or lock-up, too many (dozens) invoking goroutines may cause increased memory consumption, thrashing or exhaust of file handles, ie. an uncontrollable host state
func ExecStreamFull ¶ added in v0.4.38
func ExecStreamFull(stdin io.Reader, stdout io.WriteCloser, stderr io.WriteCloser, env []string, ctx context.Context, startCallback func(err error), extraFiles []*os.File, args ...string) (statusCode int, isCancel bool, err error)
ExecStreamFull executes a system command using the exec.Cmd type and flexible streaming.
- ExecStreamFull blocks during command execution
- ExecStreamFull returns any error occurring during launch or execution including errors in copy threads
- successful exit is: statusCode == 0, isCancel == false, err == nil
- statusCode may be set by the process but is otherwise:
- — 0 successful exit
- — -1 process was killed by signal such as ^C or SIGTERM
- context cancel exit is: statusCode == -1, isCancel == true, err == nil
- failure exit is: statusCode != 0, isCancel == false, err != nil
- —
- args is the command followed by arguments.
- args[0] must specify an executable in the file system. env.PATH is used to resolve the command executable
- if stdin stdout or stderr are nil, the are /dev/null Additional threads are used to copy data when stdin stdout or stderr are non-nil
- os.Stdin os.Stdout os.Stderr can be provided
- for stdout and stderr pio has usable types:
- — pio.NewWriteCloserToString
- — pio.NewWriteCloserToChan
- — pio.NewWriteCloserToChanLine
- — pio.NewReadWriteCloserSlice
- any stream provided is not closed. However, upon return from ExecStream all i/o operations have completed and streams may be closed as the case may be
- ctx is used to kill the process (by calling os.Process.Kill) if the context becomes done before the command completes on its own
- startCallback is invoked immediately after cmd.Exec.Start returns with its result. To not use a callback, set startCallback to nil
- If env is nil, the new process uses the current process’ environment
- use ExecStreamFull with parl.EchoModerator
- if system commands slow down or lock-up, too many (dozens) invoking goroutines may cause increased memory consumption, thrashing or exhaust of file handles, ie. an uncontrollable host state
func ExitError ¶ added in v0.4.40
ExitError returns information on why the exec.Cmd.Start process terminated
- if hasStatusCode is true, the process terminated with a status code
- if hasStatusCode is false, exec.Cmd.Start failed prior to launch
- if StatusCode has value -1 or pexec.TerminatedBySignal, the process terminated due to the signal signal. Common signals are:
- — unix.SIGINT from ^C
- — unix.SIGKILL from context termination
- — unix.SIGTERM from operating-system process-termination
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.