1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-11 05:30:57 -04:00
v2fly/proxy/http/chan_reader.go

49 lines
802 B
Go
Raw Normal View History

2015-12-15 16:13:09 -05:00
package http
import (
"io"
"github.com/v2ray/v2ray-core/common/alloc"
2016-04-18 12:44:10 -04:00
v2io "github.com/v2ray/v2ray-core/common/io"
2015-12-15 16:13:09 -05:00
)
type ChanReader struct {
2016-04-18 12:44:10 -04:00
stream v2io.Reader
2015-12-15 16:13:09 -05:00
current *alloc.Buffer
eof bool
}
2016-04-18 12:44:10 -04:00
func NewChanReader(stream v2io.Reader) *ChanReader {
2015-12-15 16:13:09 -05:00
this := &ChanReader{
stream: stream,
}
this.fill()
return this
}
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) {
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
}