2020-11-25 13:01:53 +02:00
|
|
|
package pipe
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common/buf"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Reader is a buf.Reader that reads content from a pipe.
|
|
|
|
type Reader struct {
|
|
|
|
pipe *pipe
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadMultiBuffer implements buf.Reader.
|
|
|
|
func (r *Reader) ReadMultiBuffer() (buf.MultiBuffer, error) {
|
|
|
|
return r.pipe.ReadMultiBuffer()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadMultiBufferTimeout reads content from a pipe within the given duration, or returns buf.ErrTimeout otherwise.
|
|
|
|
func (r *Reader) ReadMultiBufferTimeout(d time.Duration) (buf.MultiBuffer, error) {
|
|
|
|
return r.pipe.ReadMultiBufferTimeout(d)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Interrupt implements common.Interruptible.
|
|
|
|
func (r *Reader) Interrupt() {
|
|
|
|
r.pipe.Interrupt()
|
|
|
|
}
|