-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprocesses.go
45 lines (41 loc) · 1013 Bytes
/
processes.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package goutils
import (
"bytes"
"errors"
"os/exec"
"time"
)
var Process Processes
type Processes struct {
}
func (c *Processes) Execute(timeout int, stdin []byte, parms ...string) ([]byte, []byte, error) {
if len(parms) < 1 {
return nil, nil, errors.New("execute: command missing")
}
cmd := exec.Command(parms[0], parms[1:]...)
var bout bytes.Buffer
var berr bytes.Buffer
cmd.Stdout = &bout
cmd.Stderr = &berr
in, ierr := cmd.StdinPipe()
if ierr != nil {
return nil, nil, errors.New("execute: stdin failed")
}
cmd.Start()
done := make(chan error)
go func() {
in.Write(stdin)
in.Close()
done <- cmd.Wait()
}()
select {
case <-time.After(time.Second * time.Duration(timeout)):
go func() { <-done }() // allow goroutine to exit
if err := cmd.Process.Kill(); err != nil {
return bout.Bytes(), berr.Bytes(), errors.New(ErrorTimeoutKill)
}
return bout.Bytes(), berr.Bytes(), errors.New(ErrorTimeout)
case status := <-done:
return bout.Bytes(), berr.Bytes(), status
}
}