redis/internal/pool/conn.go

84 lines
1.4 KiB
Go
Raw Normal View History

package pool
import (
"bufio"
"net"
"sync/atomic"
"time"
)
const defaultBufSize = 4096
2016-03-12 13:41:02 +03:00
var noDeadline = time.Time{}
type Conn struct {
idx int32
2016-03-12 13:41:02 +03:00
NetConn net.Conn
Rd *bufio.Reader
Buf []byte
2016-03-15 15:04:35 +03:00
Inited bool
UsedAt time.Time
ReadTimeout time.Duration
WriteTimeout time.Duration
}
func NewConn(netConn net.Conn) *Conn {
cn := &Conn{
2016-03-12 13:41:02 +03:00
idx: -1,
NetConn: netConn,
Buf: make([]byte, defaultBufSize),
UsedAt: time.Now(),
}
cn.Rd = bufio.NewReader(cn)
return cn
}
func (cn *Conn) Index() int {
return int(atomic.LoadInt32(&cn.idx))
2016-03-12 14:39:50 +03:00
}
2016-03-15 15:04:35 +03:00
func (cn *Conn) SetIndex(newIdx int) int {
oldIdx := cn.Index()
if !atomic.CompareAndSwapInt32(&cn.idx, int32(oldIdx), int32(newIdx)) {
return -1
}
return oldIdx
}
func (cn *Conn) IsStale(timeout time.Duration) bool {
return timeout > 0 && time.Since(cn.UsedAt) > timeout
2016-03-12 13:41:02 +03:00
}
func (cn *Conn) Read(b []byte) (int, error) {
cn.UsedAt = time.Now()
if cn.ReadTimeout != 0 {
cn.NetConn.SetReadDeadline(cn.UsedAt.Add(cn.ReadTimeout))
} else {
cn.NetConn.SetReadDeadline(noDeadline)
}
return cn.NetConn.Read(b)
}
func (cn *Conn) Write(b []byte) (int, error) {
cn.UsedAt = time.Now()
if cn.WriteTimeout != 0 {
cn.NetConn.SetWriteDeadline(cn.UsedAt.Add(cn.WriteTimeout))
} else {
cn.NetConn.SetWriteDeadline(noDeadline)
}
return cn.NetConn.Write(b)
}
func (cn *Conn) RemoteAddr() net.Addr {
return cn.NetConn.RemoteAddr()
}
2016-03-15 15:04:35 +03:00
func (cn *Conn) Close() error {
return cn.NetConn.Close()
}