-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprep.go
103 lines (86 loc) · 1.71 KB
/
prep.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package process
import (
"bufio"
"errors"
"fmt"
"io"
"sync"
"github.com/nixpare/broadcaster"
)
func (p *Process) prepareStdout(stdout io.Writer) error {
p.stdOutErrWG.Add(1)
outPipe, err := p.Exec.StdoutPipe()
if err != nil {
return err
}
go func() {
defer func() {
p.outBc.Reset()
p.stdOutErrWG.Done()
}()
pipeOutput(p.outBc, outPipe, stdout, "stdout")
}()
return nil
}
func (p *Process) prepareStderr(stderr io.Writer) error {
p.stdOutErrWG.Add(1)
errPipe, err := p.Exec.StderrPipe()
if err != nil {
return err
}
go func() {
defer func() {
p.errBc.Reset()
p.stdOutErrWG.Done()
}()
pipeOutput(p.errBc, errPipe, stderr, "stderr")
}()
return nil
}
func pipeOutput(bc *broadcaster.BufBroadcaster[[]byte], r io.ReadCloser, w io.Writer, pipeID string) {
pipeR, pipeW := io.Pipe()
var buf [1024]byte
br := bufio.NewReader(pipeR)
var wg sync.WaitGroup
wg.Add(1)
go func() {
defer wg.Done()
for {
line, err := br.ReadBytes('\n')
if err != nil {
if !errors.Is(err, io.EOF) {
line = []byte(fmt.Sprintf("broken %s pipe: %v", pipeID, err))
}
}
if len(line) > 0 {
if line[len(line)-1] == '\n' {
line = line[:len(line)-1]
}
bc.Send(line)
}
if err != nil {
break
}
}
}()
for {
n, err := r.Read(buf[:])
b := buf[:n]
if err != nil {
if !errors.Is(err, io.EOF) {
b = append(b, []byte(fmt.Sprintf("broken %s pipe: %v", pipeID, err))...)
}
}
if len(b) > 0 {
pipeW.Write(b)
if w != nil && w != dev_null {
w.Write(b)
}
}
if err != nil {
pipeW.CloseWithError(err)
break
}
}
wg.Wait()
}