v2ray-core/proxy/testing/mocks/inboundhandler.go

73 lines
1.4 KiB
Go
Raw Normal View History

package mocks
import (
"io"
"sync"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/app/dispatcher"
v2io "v2ray.com/core/common/io"
v2net "v2ray.com/core/common/net"
"v2ray.com/core/proxy"
)
type InboundConnectionHandler struct {
2016-06-03 22:38:22 +00:00
ListeningPort v2net.Port
ListeningAddress v2net.Address
2016-01-31 16:01:28 +00:00
PacketDispatcher dispatcher.PacketDispatcher
ConnInput io.Reader
ConnOutput io.Writer
}
2016-11-27 20:39:09 +00:00
func (v *InboundConnectionHandler) Start() error {
return nil
}
2016-11-27 20:39:09 +00:00
func (v *InboundConnectionHandler) Port() v2net.Port {
return v.ListeningPort
2016-01-19 22:41:40 +00:00
}
2016-11-27 20:39:09 +00:00
func (v *InboundConnectionHandler) Close() {
}
2016-11-27 20:39:09 +00:00
func (v *InboundConnectionHandler) Communicate(destination v2net.Destination) error {
ray := v.PacketDispatcher.DispatchToOutbound(&proxy.SessionInfo{
2016-08-14 15:08:01 +00:00
Source: v2net.TCPDestination(v2net.LocalHostIP, v2net.Port(0)),
Destination: destination,
2016-11-13 13:33:00 +00:00
Inbound: &proxy.InboundHandlerMeta{
AllowPassiveConnection: false,
},
2016-08-14 15:08:01 +00:00
})
input := ray.InboundInput()
output := ray.InboundOutput()
readFinish := &sync.Mutex{}
writeFinish := &sync.Mutex{}
readFinish.Lock()
writeFinish.Lock()
go func() {
2016-11-27 20:39:09 +00:00
v2reader := v2io.NewAdaptiveReader(v.ConnInput)
defer v2reader.Release()
v2io.Pipe(v2reader, input)
2016-04-18 16:44:10 +00:00
input.Close()
readFinish.Unlock()
}()
go func() {
2016-11-27 20:39:09 +00:00
v2writer := v2io.NewAdaptiveWriter(v.ConnOutput)
defer v2writer.Release()
v2io.Pipe(output, v2writer)
2016-04-18 16:44:10 +00:00
output.Release()
writeFinish.Unlock()
}()
readFinish.Lock()
writeFinish.Lock()
return nil
}