代码拉取完成,页面将自动刷新
package pool
import (
"bufio"
"io"
"net"
"strconv"
"time"
)
var noDeadline = time.Time{}
type Conn struct {
NetConn net.Conn
Rd *bufio.Reader // read buffer
Wr *Buffer // write buffer
Buf []byte // reusable
Columns [][]byte // reusable
Inited bool
UsedAt time.Time
ProcessId int32
SecretKey int32
_id int64
}
func NewConn(netConn net.Conn) *Conn {
cn := &Conn{
NetConn: netConn,
Buf: make([]byte, 0, 8192),
UsedAt: time.Now(),
}
cn.Rd = bufio.NewReader(cn)
cn.Wr = NewBuffer(cn, cn.Buf)
return cn
}
func (cn *Conn) IsStale(timeout time.Duration) bool {
return timeout > 0 && time.Since(cn.UsedAt) > timeout
}
func (cn *Conn) NextId() string {
cn._id++
return strconv.FormatInt(cn._id, 10)
}
func (cn *Conn) SetReadTimeout(dur time.Duration) {
cn.UsedAt = time.Now()
if dur == 0 {
cn.NetConn.SetReadDeadline(noDeadline)
} else {
cn.NetConn.SetReadDeadline(cn.UsedAt.Add(dur))
}
}
func (cn *Conn) SetWriteTimeout(dur time.Duration) {
cn.UsedAt = time.Now()
if dur == 0 {
cn.NetConn.SetWriteDeadline(noDeadline)
} else {
cn.NetConn.SetWriteDeadline(cn.UsedAt.Add(dur))
}
}
func (cn *Conn) Read(b []byte) (int, error) {
return cn.NetConn.Read(b)
}
func (cn *Conn) Write(b []byte) (int, error) {
return cn.NetConn.Write(b)
}
func (cn *Conn) ReadN(n int) ([]byte, error) {
if d := n - cap(cn.Buf); d > 0 {
cn.Buf = cn.Buf[:cap(cn.Buf)]
cn.Buf = append(cn.Buf, make([]byte, d)...)
} else {
cn.Buf = cn.Buf[:n]
}
_, err := io.ReadFull(cn.Rd, cn.Buf)
return cn.Buf, err
}
func (cn *Conn) Close() error {
return cn.NetConn.Close()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。