2019-05-31 02:26:34 +03:00
|
|
|
// Package process executes a binary
|
|
|
|
package process
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/runtime/local/build"
|
2019-05-31 02:26:34 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// Process manages a running process
|
|
|
|
type Process interface {
|
|
|
|
// Executes a process to completion
|
|
|
|
Exec(*Executable) error
|
|
|
|
// Creates a new process
|
|
|
|
Fork(*Executable) (*PID, error)
|
|
|
|
// Kills the process
|
|
|
|
Kill(*PID) error
|
|
|
|
// Waits for a process to exit
|
|
|
|
Wait(*PID) error
|
|
|
|
}
|
|
|
|
|
|
|
|
type Executable struct {
|
2019-11-19 19:09:43 +03:00
|
|
|
// Package containing executable
|
|
|
|
Package *build.Package
|
2019-09-14 07:33:14 +03:00
|
|
|
// The env variables
|
|
|
|
Env []string
|
|
|
|
// Args to pass
|
|
|
|
Args []string
|
2019-05-31 02:26:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// PID is the running process
|
|
|
|
type PID struct {
|
|
|
|
// ID of the process
|
|
|
|
ID string
|
|
|
|
// Stdin
|
|
|
|
Input io.Writer
|
|
|
|
// Stdout
|
|
|
|
Output io.Reader
|
|
|
|
// Stderr
|
|
|
|
Error io.Reader
|
|
|
|
}
|