1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-16 04:35:24 +00:00
v2fly/common/io/chan_reader.go

65 lines
938 B
Go
Raw Normal View History

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