1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-27 22:36:12 -04:00

introduct Connection interface

This commit is contained in:
v2ray 2016-04-27 23:01:31 +02:00
parent d9367efb2d
commit 94eab286c0
7 changed files with 105 additions and 80 deletions

View File

@ -118,7 +118,7 @@ func (this *DokodemoDoor) ListenTCP(port v2net.Port) error {
return nil
}
func (this *DokodemoDoor) HandleTCPConnection(conn *hub.TCPConn) {
func (this *DokodemoDoor) HandleTCPConnection(conn hub.Connection) {
defer conn.Close()
ray := this.packetDispatcher.DispatchToOutbound(v2net.TCPDestination(this.address, this.port))

View File

@ -95,7 +95,7 @@ func parseHost(rawHost string, defaultPort v2net.Port) (v2net.Destination, error
return v2net.TCPDestination(v2net.DomainAddress(host), port), nil
}
func (this *HttpProxyServer) handleConnection(conn *hub.TCPConn) {
func (this *HttpProxyServer) handleConnection(conn hub.Connection) {
defer conn.Close()
reader := bufio.NewReader(conn)

View File

@ -156,7 +156,7 @@ func (this *Shadowsocks) handlerUDPPayload(payload *alloc.Buffer, source v2net.D
})
}
func (this *Shadowsocks) handleConnection(conn *hub.TCPConn) {
func (this *Shadowsocks) handleConnection(conn hub.Connection) {
defer conn.Close()
buffer := alloc.NewSmallBuffer()

View File

@ -92,7 +92,7 @@ func (this *Server) Listen(port v2net.Port) error {
return nil
}
func (this *Server) handleConnection(connection *hub.TCPConn) {
func (this *Server) handleConnection(connection hub.Connection) {
defer connection.Close()
timedReader := v2net.NewTimeOutReader(120, connection)

View File

@ -114,7 +114,7 @@ func (this *VMessInboundHandler) Listen(port v2net.Port) error {
return nil
}
func (this *VMessInboundHandler) HandleConnection(connection *hub.TCPConn) {
func (this *VMessInboundHandler) HandleConnection(connection hub.Connection) {
defer connection.Close()
connReader := v2net.NewTimeOutReader(16, connection)

View File

@ -0,0 +1,97 @@
package hub
import (
"net"
"time"
"github.com/v2ray/v2ray-core/common"
)
type ConnectionHandler func(Connection)
type Connection interface {
common.Releasable
Read([]byte) (int, error)
Write([]byte) (int, error)
Close() error
LocalAddr() net.Addr
RemoteAddr() net.Addr
SetDeadline(t time.Time) error
SetReadDeadline(t time.Time) error
SetWriteDeadline(t time.Time) error
CloseRead() error
CloseWrite() error
}
type TCPConnection struct {
conn *net.TCPConn
listener *TCPHub
}
func (this *TCPConnection) Read(b []byte) (int, error) {
if this == nil || this.conn == nil {
return 0, ErrorClosedConnection
}
return this.conn.Read(b)
}
func (this *TCPConnection) Write(b []byte) (int, error) {
if this == nil || this.conn == nil {
return 0, ErrorClosedConnection
}
return this.conn.Write(b)
}
func (this *TCPConnection) Close() error {
if this == nil || this.conn == nil {
return ErrorClosedConnection
}
err := this.conn.Close()
return err
}
func (this *TCPConnection) Release() {
if this == nil || this.listener == nil {
return
}
this.Close()
this.conn = nil
this.listener = nil
}
func (this *TCPConnection) LocalAddr() net.Addr {
return this.conn.LocalAddr()
}
func (this *TCPConnection) RemoteAddr() net.Addr {
return this.conn.RemoteAddr()
}
func (this *TCPConnection) SetDeadline(t time.Time) error {
return this.conn.SetDeadline(t)
}
func (this *TCPConnection) SetReadDeadline(t time.Time) error {
return this.conn.SetReadDeadline(t)
}
func (this *TCPConnection) SetWriteDeadline(t time.Time) error {
return this.conn.SetWriteDeadline(t)
}
func (this *TCPConnection) CloseRead() error {
if this == nil || this.conn == nil {
return nil
}
return this.conn.CloseRead()
}
func (this *TCPConnection) CloseWrite() error {
if this == nil || this.conn == nil {
return nil
}
return this.conn.CloseWrite()
}

View File

@ -3,7 +3,6 @@ package hub
import (
"errors"
"net"
"time"
"github.com/v2ray/v2ray-core/common/log"
v2net "github.com/v2ray/v2ray-core/common/net"
@ -13,84 +12,13 @@ var (
ErrorClosedConnection = errors.New("Connection already closed.")
)
type TCPConn struct {
conn *net.TCPConn
listener *TCPHub
}
func (this *TCPConn) Read(b []byte) (int, error) {
if this == nil || this.conn == nil {
return 0, ErrorClosedConnection
}
return this.conn.Read(b)
}
func (this *TCPConn) Write(b []byte) (int, error) {
if this == nil || this.conn == nil {
return 0, ErrorClosedConnection
}
return this.conn.Write(b)
}
func (this *TCPConn) Close() error {
if this == nil || this.conn == nil {
return ErrorClosedConnection
}
err := this.conn.Close()
return err
}
func (this *TCPConn) Release() {
if this == nil || this.listener == nil {
return
}
this.Close()
this.conn = nil
this.listener = nil
}
func (this *TCPConn) LocalAddr() net.Addr {
return this.conn.LocalAddr()
}
func (this *TCPConn) RemoteAddr() net.Addr {
return this.conn.RemoteAddr()
}
func (this *TCPConn) SetDeadline(t time.Time) error {
return this.conn.SetDeadline(t)
}
func (this *TCPConn) SetReadDeadline(t time.Time) error {
return this.conn.SetReadDeadline(t)
}
func (this *TCPConn) SetWriteDeadline(t time.Time) error {
return this.conn.SetWriteDeadline(t)
}
func (this *TCPConn) CloseRead() error {
if this == nil || this.conn == nil {
return nil
}
return this.conn.CloseRead()
}
func (this *TCPConn) CloseWrite() error {
if this == nil || this.conn == nil {
return nil
}
return this.conn.CloseWrite()
}
type TCPHub struct {
listener *net.TCPListener
connCallback func(*TCPConn)
connCallback ConnectionHandler
accepting bool
}
func ListenTCP(port v2net.Port, callback func(*TCPConn)) (*TCPHub, error) {
func ListenTCP(port v2net.Port, callback ConnectionHandler) (*TCPHub, error) {
listener, err := net.ListenTCP("tcp", &net.TCPAddr{
IP: []byte{0, 0, 0, 0},
Port: int(port),
@ -123,7 +51,7 @@ func (this *TCPHub) start() {
}
continue
}
go this.connCallback(&TCPConn{
go this.connCallback(&TCPConnection{
conn: conn,
listener: this,
})