| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 | 
							- package net
 
- import (
 
- 	"io"
 
- 	"net"
 
- 	"time"
 
- 	"v2ray.com/core/common"
 
- 	"v2ray.com/core/common/buf"
 
- 	"v2ray.com/core/common/signal"
 
- )
 
- type ConnectionOption func(*connection)
 
- func ConnectionLocalAddr(a net.Addr) ConnectionOption {
 
- 	return func(c *connection) {
 
- 		c.local = a
 
- 	}
 
- }
 
- func ConnectionRemoteAddr(a net.Addr) ConnectionOption {
 
- 	return func(c *connection) {
 
- 		c.remote = a
 
- 	}
 
- }
 
- func ConnectionInput(writer io.Writer) ConnectionOption {
 
- 	return func(c *connection) {
 
- 		c.writer = buf.NewWriter(writer)
 
- 	}
 
- }
 
- func ConnectionInputMulti(writer buf.Writer) ConnectionOption {
 
- 	return func(c *connection) {
 
- 		c.writer = writer
 
- 	}
 
- }
 
- func ConnectionOutput(reader io.Reader) ConnectionOption {
 
- 	return func(c *connection) {
 
- 		c.reader = buf.NewBufferedReader(buf.NewReader(reader))
 
- 	}
 
- }
 
- func ConnectionOutputMulti(reader buf.Reader) ConnectionOption {
 
- 	return func(c *connection) {
 
- 		c.reader = buf.NewBufferedReader(reader)
 
- 	}
 
- }
 
- func ConnectionOnClose(n io.Closer) ConnectionOption {
 
- 	return func(c *connection) {
 
- 		c.onClose = n
 
- 	}
 
- }
 
- func NewConnection(opts ...ConnectionOption) net.Conn {
 
- 	c := &connection{
 
- 		done: signal.NewDone(),
 
- 		local: &net.TCPAddr{
 
- 			IP:   []byte{0, 0, 0, 0},
 
- 			Port: 0,
 
- 		},
 
- 		remote: &net.TCPAddr{
 
- 			IP:   []byte{0, 0, 0, 0},
 
- 			Port: 0,
 
- 		},
 
- 	}
 
- 	for _, opt := range opts {
 
- 		opt(c)
 
- 	}
 
- 	return c
 
- }
 
- type connection struct {
 
- 	reader  *buf.BufferedReader
 
- 	writer  buf.Writer
 
- 	done    *signal.Done
 
- 	onClose io.Closer
 
- 	local   Addr
 
- 	remote  Addr
 
- }
 
- func (c *connection) Read(b []byte) (int, error) {
 
- 	return c.reader.Read(b)
 
- }
 
- // ReadMultiBuffer implements buf.Reader.
 
- func (c *connection) ReadMultiBuffer() (buf.MultiBuffer, error) {
 
- 	return c.reader.ReadMultiBuffer()
 
- }
 
- // Write implements net.Conn.Write().
 
- func (c *connection) Write(b []byte) (int, error) {
 
- 	if c.done.Done() {
 
- 		return 0, io.ErrClosedPipe
 
- 	}
 
- 	l := len(b)
 
- 	mb := buf.NewMultiBufferCap(int32(l)/buf.Size + 1)
 
- 	common.Must2(mb.Write(b))
 
- 	return l, c.writer.WriteMultiBuffer(mb)
 
- }
 
- func (c *connection) WriteMultiBuffer(mb buf.MultiBuffer) error {
 
- 	if c.done.Done() {
 
- 		return io.ErrClosedPipe
 
- 	}
 
- 	return c.writer.WriteMultiBuffer(mb)
 
- }
 
- // Close implements net.Conn.Close().
 
- func (c *connection) Close() error {
 
- 	common.Must(c.done.Close())
 
- 	common.Close(c.reader)
 
- 	common.Close(c.writer)
 
- 	if c.onClose != nil {
 
- 		return c.onClose.Close()
 
- 	}
 
- 	return nil
 
- }
 
- // LocalAddr implements net.Conn.LocalAddr().
 
- func (c *connection) LocalAddr() net.Addr {
 
- 	return c.local
 
- }
 
- // RemoteAddr implements net.Conn.RemoteAddr().
 
- func (c *connection) RemoteAddr() net.Addr {
 
- 	return c.remote
 
- }
 
- // SetDeadline implements net.Conn.SetDeadline().
 
- func (c *connection) SetDeadline(t time.Time) error {
 
- 	return nil
 
- }
 
- // SetReadDeadline implements net.Conn.SetReadDeadline().
 
- func (c *connection) SetReadDeadline(t time.Time) error {
 
- 	return nil
 
- }
 
- // SetWriteDeadline implements net.Conn.SetWriteDeadline().
 
- func (c *connection) SetWriteDeadline(t time.Time) error {
 
- 	return nil
 
- }
 
 
  |