You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
v2ray-core/transport/ray/direct.go

120 lines
1.7 KiB

package ray
import (
"io"
"v2ray.com/core/common/buf"
)
const (
bufferSize = 512
)
9 years ago
// NewRay creates a new Ray for direct traffic transport.
func NewRay() Ray {
return &directRay{
Input: NewStream(),
Output: NewStream(),
}
}
type directRay struct {
Input *Stream
Output *Stream
}
8 years ago
func (v *directRay) OutboundInput() InputStream {
return v.Input
}
8 years ago
func (v *directRay) OutboundOutput() OutputStream {
return v.Output
}
8 years ago
func (v *directRay) InboundInput() OutputStream {
return v.Input
}
8 years ago
func (v *directRay) InboundOutput() InputStream {
return v.Output
}
type Stream struct {
buffer chan *buf.Buffer
srcClose chan bool
destClose chan bool
}
func NewStream() *Stream {
return &Stream{
buffer: make(chan *buf.Buffer, bufferSize),
srcClose: make(chan bool),
destClose: make(chan bool),
}
}
func (v *Stream) Read() (*buf.Buffer, error) {
select {
case <-v.destClose:
return nil, io.ErrClosedPipe
case b := <-v.buffer:
return b, nil
default:
select {
case b := <-v.buffer:
return b, nil
case <-v.srcClose:
return nil, io.EOF
}
}
}
8 years ago
func (v *Stream) Write(data *buf.Buffer) (err error) {
if data.IsEmpty() {
return
}
select {
case <-v.destClose:
return io.ErrClosedPipe
case <-v.srcClose:
return io.ErrClosedPipe
default:
select {
case <-v.destClose:
return io.ErrClosedPipe
case <-v.srcClose:
return io.ErrClosedPipe
case v.buffer <- data:
return nil
}
}
}
8 years ago
func (v *Stream) Close() {
8 years ago
defer swallowPanic()
close(v.srcClose)
}
8 years ago
func (v *Stream) Release() {
8 years ago
defer swallowPanic()
close(v.destClose)
v.Close()
8 years ago
n := len(v.buffer)
for i := 0; i < n; i++ {
select {
case b := <-v.buffer:
b.Release()
default:
return
}
}
8 years ago
}
func swallowPanic() {
recover()
}