-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexecutor.go
69 lines (53 loc) · 1.34 KB
/
executor.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package main
import (
"os"
"io"
"fmt"
"log"
)
func ExecuteCommand(command string, input string) {
stdoutRead, stdoutWrite, _ := os.Pipe()
stdinRead, stdinWrite, _ := os.Pipe()
attr := &os.ProcAttr{".", nil, []*os.File{stdinRead, stdoutWrite, stdoutWrite}, nil}
proc, err := os.StartProcess(command, []string{command}, attr)
stdoutWrite.Close()
stdinRead.Close()
if err == nil {
// create two go-routines. One for reading, one for writing
inputBytes := []byte(input)
go func () {
_, _ = stdinWrite.Write(inputBytes)
stdinWrite.Close()
log.Println("Completed writing to child proccs")
}()
go func () {
for {
// allocate a new buffer
buffer := make([]byte, 1000)
// read into that buffer
count, err := stdoutRead.Read(buffer)
if count > 0 {
fmt.Printf("output from command: %s\n", buffer[:count])
}
// if we reached the end, bail from this loop
if err == io.EOF {
break
}
}
stdoutRead.Close()
log.Println("Waiting to reap child process")
// reap child process
_, _ = proc.Wait()
// if error != nil {
// fmt.Printf("error=%v\n", error)
// }
log.Println("Go routine terminating")
}()
} else {
log.Println("Error: "+err.Error())
stdoutRead.Close()
stdinWrite.Close()
log.Println("Cleaned up handles after error")
}
// return err
}