-
Notifications
You must be signed in to change notification settings - Fork 0
/
chan_reader.go
62 lines (53 loc) · 863 Bytes
/
chan_reader.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
package io
import (
"io"
"sync"
"v2ray.com/core/common/alloc"
)
type ChanReader struct {
sync.Mutex
stream Reader
current *alloc.Buffer
eof bool
}
func NewChanReader(stream Reader) *ChanReader {
return &ChanReader{
stream: stream,
}
}
// Private: Visible for testing.
func (v *ChanReader) Fill() {
b, err := v.stream.Read()
v.current = b
if err != nil {
v.eof = true
v.current = nil
}
}
func (v *ChanReader) Read(b []byte) (int, error) {
if v.eof {
return 0, io.EOF
}
v.Lock()
defer v.Unlock()
if v.current == nil {
v.Fill()
if v.eof {
return 0, io.EOF
}
}
nBytes, err := v.current.Read(b)
if v.current.IsEmpty() {
v.current.Release()
v.current = nil
}
return nBytes, err
}
func (v *ChanReader) Release() {
v.Lock()
defer v.Unlock()
v.eof = true
v.current.Release()
v.current = nil
v.stream = nil
}