2020-06-02 22:48:55 +08:00
|
|
|
package process
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
"os/exec"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Process struct {
|
|
|
|
cmd *exec.Cmd
|
|
|
|
cancel context.CancelFunc
|
|
|
|
errorOutput *bytes.Buffer
|
2020-09-07 14:57:23 +08:00
|
|
|
stdOutput *bytes.Buffer
|
2020-06-02 22:48:55 +08:00
|
|
|
|
|
|
|
beforeStopHandler func()
|
|
|
|
}
|
|
|
|
|
|
|
|
func New(path string, params []string) *Process {
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
cmd := exec.CommandContext(ctx, path, params...)
|
|
|
|
p := &Process{
|
|
|
|
cmd: cmd,
|
|
|
|
cancel: cancel,
|
|
|
|
}
|
|
|
|
p.errorOutput = bytes.NewBufferString("")
|
2020-09-07 14:57:23 +08:00
|
|
|
p.stdOutput = bytes.NewBufferString("")
|
2020-06-02 22:48:55 +08:00
|
|
|
cmd.Stderr = p.errorOutput
|
2020-09-07 14:57:23 +08:00
|
|
|
cmd.Stdout = p.stdOutput
|
2020-06-02 22:48:55 +08:00
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Process) Start() error {
|
|
|
|
return p.cmd.Start()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Process) Stop() error {
|
|
|
|
if p.beforeStopHandler != nil {
|
|
|
|
p.beforeStopHandler()
|
|
|
|
}
|
|
|
|
p.cancel()
|
|
|
|
return p.cmd.Wait()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Process) ErrorOutput() string {
|
|
|
|
return p.errorOutput.String()
|
|
|
|
}
|
|
|
|
|
2020-09-07 14:57:23 +08:00
|
|
|
func (p *Process) StdOutput() string {
|
|
|
|
return p.stdOutput.String()
|
|
|
|
}
|
|
|
|
|
2020-06-02 22:48:55 +08:00
|
|
|
func (p *Process) SetBeforeStopHandler(fn func()) {
|
|
|
|
p.beforeStopHandler = fn
|
|
|
|
}
|