1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-25 00:45:24 +00:00
v2fly/proxy/http/chan_reader.go

48 lines
765 B
Go
Raw Normal View History

2015-12-15 21:13:09 +00:00
package http
import (
"io"
"github.com/v2ray/v2ray-core/common/alloc"
)
type ChanReader struct {
stream <-chan *alloc.Buffer
current *alloc.Buffer
eof bool
}
func NewChanReader(stream <-chan *alloc.Buffer) *ChanReader {
this := &ChanReader{
stream: stream,
}
this.fill()
return this
}
func (this *ChanReader) fill() {
2015-12-16 15:37:32 +00:00
b, open := <-this.stream
2015-12-15 21:13:09 +00:00
this.current = b
2015-12-16 15:37:32 +00:00
if !open {
2015-12-15 21:13:09 +00:00
this.eof = true
this.current = nil
}
}
func (this *ChanReader) Read(b []byte) (int, error) {
if this.current == nil {
this.fill()
if this.eof {
return 0, io.EOF
}
}
nBytes := copy(b, this.current.Value)
if nBytes == this.current.Len() {
this.current.Release()
this.current = nil
} else {
this.current.SliceFrom(nBytes)
}
return nBytes, nil
}