blob: fcf566c8ba7926d23fa121680e48fffb40d9ce78 (
plain)
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
|
package roadrunner
import (
"bytes"
"sync"
)
// thread safe errBuffer
type errBuffer struct {
mu sync.Mutex
buffer *bytes.Buffer
}
// Len returns the number of bytes of the unread portion of the errBuffer;
// b.Len() == len(b.Bytes()).
func (b *errBuffer) Len() int {
b.mu.Lock()
defer b.mu.Unlock()
return b.buffer.Len()
}
// Write appends the contents of p to the errBuffer, growing the errBuffer as
// needed. The return value n is the length of p; err is always nil. If the
// errBuffer becomes too large, Write will panic with ErrTooLarge.
func (b *errBuffer) Write(p []byte) (n int, err error) {
b.mu.Lock()
defer b.mu.Unlock()
return b.buffer.Write(p)
}
// Strings fetches all errBuffer data into string.
func (b *errBuffer) String() string {
b.mu.Lock()
defer b.mu.Unlock()
return b.buffer.String()
}
|