v2ray-core/transport/internet/tcp/connection.go

109 lines
2.0 KiB
Go
Raw Normal View History

2016-06-14 20:54:08 +00:00
package tcp
2016-04-27 21:01:31 +00:00
import (
2016-06-14 20:54:08 +00:00
"io"
2016-04-27 21:01:31 +00:00
"net"
"time"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/transport/internet/internal"
2016-06-11 23:30:56 +00:00
)
2016-05-30 22:21:41 +00:00
type ConnectionManager interface {
Recycle(string, net.Conn)
}
2016-06-14 20:54:08 +00:00
type RawConnection struct {
net.TCPConn
}
func (this *RawConnection) Reusable() bool {
return false
}
func (this *RawConnection) SetReusable(b bool) {}
2016-06-29 22:08:20 +00:00
func (this *RawConnection) SysFd() (int, error) {
2016-08-15 15:44:46 +00:00
return internal.GetSysFd(&this.TCPConn)
2016-06-29 22:08:20 +00:00
}
2016-05-02 21:53:16 +00:00
type Connection struct {
2016-05-30 22:21:41 +00:00
dest string
2016-05-02 21:53:16 +00:00
conn net.Conn
2016-05-30 22:21:41 +00:00
listener ConnectionManager
2016-05-29 20:33:04 +00:00
reusable bool
2016-10-02 21:43:58 +00:00
config *Config
2016-04-27 21:01:31 +00:00
}
2016-10-02 21:43:58 +00:00
func NewConnection(dest string, conn net.Conn, manager ConnectionManager, config *Config) *Connection {
2016-06-14 20:54:08 +00:00
return &Connection{
dest: dest,
conn: conn,
listener: manager,
2016-10-17 12:35:13 +00:00
reusable: config.ConnectionReuse.IsEnabled(),
2016-10-02 21:43:58 +00:00
config: config,
2016-06-14 20:54:08 +00:00
}
}
2016-05-02 21:53:16 +00:00
func (this *Connection) Read(b []byte) (int, error) {
2016-04-27 21:01:31 +00:00
if this == nil || this.conn == nil {
2016-06-14 20:54:08 +00:00
return 0, io.EOF
2016-04-27 21:01:31 +00:00
}
return this.conn.Read(b)
}
2016-05-02 21:53:16 +00:00
func (this *Connection) Write(b []byte) (int, error) {
2016-04-27 21:01:31 +00:00
if this == nil || this.conn == nil {
2016-06-14 20:54:08 +00:00
return 0, io.ErrClosedPipe
2016-04-27 21:01:31 +00:00
}
return this.conn.Write(b)
}
2016-05-02 21:53:16 +00:00
func (this *Connection) Close() error {
2016-04-27 21:01:31 +00:00
if this == nil || this.conn == nil {
2016-06-14 20:54:08 +00:00
return io.ErrClosedPipe
2016-04-27 21:01:31 +00:00
}
2016-06-14 20:54:08 +00:00
if this.Reusable() {
2016-05-30 22:21:41 +00:00
this.listener.Recycle(this.dest, this.conn)
2016-05-29 20:33:04 +00:00
return nil
}
2016-06-14 20:54:08 +00:00
err := this.conn.Close()
this.conn = nil
return err
2016-04-27 21:01:31 +00:00
}
2016-05-02 21:53:16 +00:00
func (this *Connection) LocalAddr() net.Addr {
2016-04-27 21:01:31 +00:00
return this.conn.LocalAddr()
}
2016-05-02 21:53:16 +00:00
func (this *Connection) RemoteAddr() net.Addr {
2016-04-27 21:01:31 +00:00
return this.conn.RemoteAddr()
}
2016-05-02 21:53:16 +00:00
func (this *Connection) SetDeadline(t time.Time) error {
2016-04-27 21:01:31 +00:00
return this.conn.SetDeadline(t)
}
2016-05-02 21:53:16 +00:00
func (this *Connection) SetReadDeadline(t time.Time) error {
2016-04-27 21:01:31 +00:00
return this.conn.SetReadDeadline(t)
}
2016-05-02 21:53:16 +00:00
func (this *Connection) SetWriteDeadline(t time.Time) error {
2016-04-27 21:01:31 +00:00
return this.conn.SetWriteDeadline(t)
}
2016-05-29 20:33:04 +00:00
func (this *Connection) SetReusable(reusable bool) {
2016-10-17 12:35:13 +00:00
if !this.config.ConnectionReuse.IsEnabled() {
2016-06-14 20:54:08 +00:00
return
}
2016-05-29 20:33:04 +00:00
this.reusable = reusable
}
func (this *Connection) Reusable() bool {
return this.reusable
}
2016-06-11 23:30:56 +00:00
func (this *Connection) SysFd() (int, error) {
2016-08-15 15:44:46 +00:00
return internal.GetSysFd(this.conn)
2016-06-11 23:30:56 +00:00
}