-
Notifications
You must be signed in to change notification settings - Fork 9
/
terminal.go
83 lines (67 loc) · 1.25 KB
/
terminal.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package toolkit
import (
//"io/ioutil"
"os/exec"
//"time"
)
func RunCommand(cmd string, parm ...string) (string, error) {
cmdOut, err := exec.Command(cmd, parm...).Output()
if err == nil {
return string(cmdOut), nil
} else {
return "", err
}
}
type AsyncCommand struct {
Txt string
Parms []string
Output []byte
Error error
channelInput chan string
channelStopInput chan bool
}
/*
func (a *AsyncCommand) Run() {
var e error
c := exec.Command(a.Txt, a.Parms...)
cIn, _ := c.StdinPipe()
cOut, _ := c.StdoutPipe()
if a.channelInput == nil {
a.channelInput = make(chan string)
}
if a.channelStopInput == nil {
a.channelStopInput = make(chan bool)
}
a.Output = nil
a.Error = nil
e = c.Start()
if e != nil {
a.Error = "Unable start " + e.Error()
return
}
// writing to stdin via channel
go func() {
closeInput := false
for !closeInput {
select {
case <-a.channelStopInput:
closeInput = true
close(a.channelInput)
cIn.Close()
case in <- a.channelInput:
cIn.Write([]byte(in))
default:
time.Sleep(1 * time.Millisecond)
}
}
}()
outs, _ := ioutil.ReadAll(cOut)
e = c.Wait()
if e != nil {
a.Error = "Unable to wait - " + e.Error()
return
}
a.Error = nil
a.Output = outs
}
*/