1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-03 10:15:20 -04:00
v2fly/common/io/chan_reader.go

63 lines
932 B
Go
Raw Normal View History

2016-05-25 16:36:52 -04:00
package io
2015-12-15 16:13:09 -05:00
import (
"io"
2016-05-25 16:36:52 -04:00
"sync"
2015-12-15 16:13:09 -05:00
2016-08-20 14:55:45 -04:00
"v2ray.com/core/common/alloc"
2015-12-15 16:13:09 -05:00
)
type ChanReader struct {
2016-05-25 16:36:52 -04:00
sync.Mutex
stream Reader
2015-12-15 16:13:09 -05:00
current *alloc.Buffer
eof bool
}
2016-05-25 16:36:52 -04:00
func NewChanReader(stream Reader) *ChanReader {
2016-11-10 17:41:28 -05:00
return &ChanReader{
2015-12-15 16:13:09 -05:00
stream: stream,
}
}
2016-08-24 05:17:42 -04:00
// Private: Visible for testing.
2016-05-25 16:36:52 -04:00
func (this *ChanReader) Fill() {
2016-04-18 12:44:10 -04:00
b, err := this.stream.Read()
2015-12-15 16:13:09 -05:00
this.current = b
2016-04-18 12:44:10 -04:00
if err != nil {
2015-12-15 16:13:09 -05:00
this.eof = true
this.current = nil
}
}
func (this *ChanReader) Read(b []byte) (int, error) {
2016-05-25 16:36:52 -04:00
if this.eof {
return 0, io.EOF
}
this.Lock()
defer this.Unlock()
2015-12-15 16:13:09 -05:00
if this.current == nil {
2016-05-25 16:36:52 -04:00
this.Fill()
2015-12-15 16:13:09 -05:00
if this.eof {
return 0, io.EOF
}
}
2016-07-17 06:18:26 -04:00
nBytes, err := this.current.Read(b)
if this.current.IsEmpty() {
2015-12-15 16:13:09 -05:00
this.current.Release()
this.current = nil
}
2016-07-17 06:18:26 -04:00
return nBytes, err
2015-12-15 16:13:09 -05:00
}
2016-05-25 16:36:52 -04:00
func (this *ChanReader) Release() {
this.Lock()
defer this.Unlock()
this.eof = true
this.current.Release()
this.current = nil
this.stream = nil
}