2013-07-02 15:17:31 +04:00
|
|
|
package redis
|
|
|
|
|
|
|
|
import (
|
2013-11-07 18:20:15 +04:00
|
|
|
"errors"
|
2015-01-17 12:56:34 +03:00
|
|
|
"fmt"
|
2014-07-31 17:01:54 +04:00
|
|
|
"log"
|
2013-07-02 15:17:31 +04:00
|
|
|
"sync"
|
2015-01-31 16:20:37 +03:00
|
|
|
"sync/atomic"
|
2013-07-02 15:17:31 +04:00
|
|
|
"time"
|
|
|
|
|
2015-03-20 21:26:37 +03:00
|
|
|
"gopkg.in/bsm/ratelimit.v1"
|
2013-07-02 15:17:31 +04:00
|
|
|
)
|
|
|
|
|
2013-11-07 18:20:15 +04:00
|
|
|
var (
|
2015-01-31 16:20:37 +03:00
|
|
|
errClosed = errors.New("redis: client is closed")
|
|
|
|
errPoolTimeout = errors.New("redis: connection pool timeout")
|
2013-11-07 18:20:15 +04:00
|
|
|
)
|
|
|
|
|
2013-07-02 15:17:31 +04:00
|
|
|
type pool interface {
|
2015-04-05 15:41:16 +03:00
|
|
|
First() *conn
|
2015-04-22 10:32:54 +03:00
|
|
|
Get() (*conn, error)
|
2013-07-02 15:17:31 +04:00
|
|
|
Put(*conn) error
|
|
|
|
Remove(*conn) error
|
|
|
|
Len() int
|
2015-05-02 16:11:18 +03:00
|
|
|
FreeLen() int
|
2013-07-02 15:17:31 +04:00
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
type connList struct {
|
|
|
|
cns []*conn
|
|
|
|
mx sync.Mutex
|
|
|
|
len int32 // atomic
|
|
|
|
size int32
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
func newConnList(size int) *connList {
|
|
|
|
return &connList{
|
|
|
|
cns: make([]*conn, 0, size),
|
|
|
|
size: int32(size),
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
func (l *connList) Len() int {
|
|
|
|
return int(atomic.LoadInt32(&l.len))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reserve reserves place in the list and returns true on success. The
|
|
|
|
// caller must add or remove connection if place was reserved.
|
|
|
|
func (l *connList) Reserve() bool {
|
|
|
|
len := atomic.AddInt32(&l.len, 1)
|
|
|
|
reserved := len <= l.size
|
|
|
|
if !reserved {
|
|
|
|
atomic.AddInt32(&l.len, -1)
|
2015-01-24 15:12:48 +03:00
|
|
|
}
|
2015-05-02 16:11:18 +03:00
|
|
|
return reserved
|
|
|
|
}
|
2015-01-24 15:12:48 +03:00
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
// Add adds connection to the list. The caller must reserve place first.
|
|
|
|
func (l *connList) Add(cn *conn) {
|
|
|
|
l.mx.Lock()
|
|
|
|
l.cns = append(l.cns, cn)
|
|
|
|
l.mx.Unlock()
|
2015-01-24 15:12:48 +03:00
|
|
|
}
|
|
|
|
|
2015-05-10 11:15:59 +03:00
|
|
|
// Remove closes connection and removes it from the list.
|
2015-05-02 16:11:18 +03:00
|
|
|
func (l *connList) Remove(cn *conn) error {
|
|
|
|
defer l.mx.Unlock()
|
|
|
|
l.mx.Lock()
|
|
|
|
|
|
|
|
if cn == nil {
|
|
|
|
atomic.AddInt32(&l.len, -1)
|
|
|
|
return nil
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
for i, c := range l.cns {
|
|
|
|
if c == cn {
|
|
|
|
l.cns = append(l.cns[:i], l.cns[i+1:]...)
|
|
|
|
atomic.AddInt32(&l.len, -1)
|
|
|
|
return cn.Close()
|
|
|
|
}
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
2014-05-11 18:11:55 +04:00
|
|
|
|
2015-06-03 14:18:15 +03:00
|
|
|
if l.closed() {
|
|
|
|
return nil
|
|
|
|
}
|
2015-05-02 16:11:18 +03:00
|
|
|
panic("conn not found in the list")
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
func (l *connList) Replace(cn, newcn *conn) error {
|
|
|
|
defer l.mx.Unlock()
|
|
|
|
l.mx.Lock()
|
|
|
|
|
|
|
|
for i, c := range l.cns {
|
|
|
|
if c == cn {
|
|
|
|
l.cns[i] = newcn
|
|
|
|
return cn.Close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-03 14:18:15 +03:00
|
|
|
if l.closed() {
|
|
|
|
return newcn.Close()
|
|
|
|
}
|
2015-05-02 16:11:18 +03:00
|
|
|
panic("conn not found in the list")
|
2013-11-04 11:53:48 +04:00
|
|
|
}
|
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
func (l *connList) Close() (retErr error) {
|
|
|
|
l.mx.Lock()
|
|
|
|
for _, c := range l.cns {
|
|
|
|
if err := c.Close(); err != nil {
|
|
|
|
retErr = err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
l.cns = nil
|
|
|
|
atomic.StoreInt32(&l.len, 0)
|
|
|
|
l.mx.Unlock()
|
|
|
|
return retErr
|
2015-01-31 16:20:37 +03:00
|
|
|
}
|
|
|
|
|
2015-06-03 14:18:15 +03:00
|
|
|
func (l *connList) closed() bool {
|
|
|
|
return l.cns == nil
|
|
|
|
}
|
|
|
|
|
2013-07-02 15:17:31 +04:00
|
|
|
type connPool struct {
|
2015-05-23 17:55:08 +03:00
|
|
|
dialer func() (*conn, error)
|
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
rl *ratelimit.RateLimiter
|
2015-05-23 17:55:08 +03:00
|
|
|
opt *Options
|
2015-05-02 16:11:18 +03:00
|
|
|
conns *connList
|
2015-04-05 15:41:16 +03:00
|
|
|
freeConns chan *conn
|
2014-05-11 18:11:55 +04:00
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
_closed int32
|
2015-01-17 12:56:34 +03:00
|
|
|
|
|
|
|
lastDialErr error
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
|
2015-05-23 17:55:08 +03:00
|
|
|
func newConnPool(opt *Options) *connPool {
|
2015-05-02 16:11:18 +03:00
|
|
|
p := &connPool{
|
2015-05-23 17:55:08 +03:00
|
|
|
dialer: newConnDialer(opt),
|
|
|
|
|
|
|
|
rl: ratelimit.New(2*opt.getPoolSize(), time.Second),
|
2015-04-05 15:41:16 +03:00
|
|
|
opt: opt,
|
2015-05-23 17:55:08 +03:00
|
|
|
conns: newConnList(opt.getPoolSize()),
|
|
|
|
freeConns: make(chan *conn, opt.getPoolSize()),
|
2015-01-31 16:20:37 +03:00
|
|
|
}
|
2015-05-23 17:55:08 +03:00
|
|
|
if p.opt.getIdleTimeout() > 0 {
|
2015-05-02 16:11:18 +03:00
|
|
|
go p.reaper()
|
|
|
|
}
|
|
|
|
return p
|
2015-01-31 16:20:37 +03:00
|
|
|
}
|
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
func (p *connPool) closed() bool {
|
|
|
|
return atomic.LoadInt32(&p._closed) == 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *connPool) isIdle(cn *conn) bool {
|
2015-05-23 17:55:08 +03:00
|
|
|
return p.opt.getIdleTimeout() > 0 && time.Since(cn.usedAt) > p.opt.getIdleTimeout()
|
2015-05-02 16:11:18 +03:00
|
|
|
}
|
2015-01-31 16:20:37 +03:00
|
|
|
|
2015-04-05 15:41:16 +03:00
|
|
|
// First returns first non-idle connection from the pool or nil if
|
|
|
|
// there are no connections.
|
|
|
|
func (p *connPool) First() *conn {
|
2015-01-31 16:20:37 +03:00
|
|
|
for {
|
|
|
|
select {
|
2015-04-05 15:41:16 +03:00
|
|
|
case cn := <-p.freeConns:
|
2015-05-02 16:11:18 +03:00
|
|
|
if p.isIdle(cn) {
|
|
|
|
p.conns.Remove(cn)
|
2015-04-05 15:41:16 +03:00
|
|
|
continue
|
2015-01-31 16:20:37 +03:00
|
|
|
}
|
2015-04-05 15:41:16 +03:00
|
|
|
return cn
|
2015-01-31 16:20:37 +03:00
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
panic("not reached")
|
|
|
|
}
|
2013-07-02 15:17:31 +04:00
|
|
|
|
2015-04-05 15:41:16 +03:00
|
|
|
// wait waits for free non-idle connection. It returns nil on timeout.
|
2015-05-10 11:15:59 +03:00
|
|
|
func (p *connPool) wait() *conn {
|
2015-05-23 17:55:08 +03:00
|
|
|
deadline := time.After(p.opt.getPoolTimeout())
|
2015-01-31 16:20:37 +03:00
|
|
|
for {
|
|
|
|
select {
|
2015-04-05 15:41:16 +03:00
|
|
|
case cn := <-p.freeConns:
|
2015-05-02 16:11:18 +03:00
|
|
|
if p.isIdle(cn) {
|
2015-04-17 14:44:56 +03:00
|
|
|
p.Remove(cn)
|
2015-04-05 15:41:16 +03:00
|
|
|
continue
|
2015-01-31 16:20:37 +03:00
|
|
|
}
|
2015-04-05 15:41:16 +03:00
|
|
|
return cn
|
2015-01-31 16:20:37 +03:00
|
|
|
case <-deadline:
|
2015-04-05 15:41:16 +03:00
|
|
|
return nil
|
2015-01-31 16:20:37 +03:00
|
|
|
}
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
2015-01-31 16:20:37 +03:00
|
|
|
panic("not reached")
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
|
2015-01-31 16:20:37 +03:00
|
|
|
// Establish a new connection
|
2014-05-15 15:21:37 +04:00
|
|
|
func (p *connPool) new() (*conn, error) {
|
2015-03-20 21:26:37 +03:00
|
|
|
if p.rl.Limit() {
|
2015-01-17 12:56:34 +03:00
|
|
|
err := fmt.Errorf(
|
2015-01-31 15:04:30 +03:00
|
|
|
"redis: you open connections too fast (last error: %v)",
|
2015-01-17 12:56:34 +03:00
|
|
|
p.lastDialErr,
|
|
|
|
)
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-04-22 10:32:54 +03:00
|
|
|
|
2015-05-23 17:55:08 +03:00
|
|
|
cn, err := p.dialer()
|
2015-01-17 12:56:34 +03:00
|
|
|
if err != nil {
|
|
|
|
p.lastDialErr = err
|
2015-04-22 10:32:54 +03:00
|
|
|
return nil, err
|
2014-05-15 15:21:37 +04:00
|
|
|
}
|
2015-04-22 10:32:54 +03:00
|
|
|
|
|
|
|
return cn, nil
|
|
|
|
}
|
|
|
|
|
2015-05-10 11:15:59 +03:00
|
|
|
// Get returns existed connection from the pool or creates a new one.
|
2015-04-22 10:32:54 +03:00
|
|
|
func (p *connPool) Get() (*conn, error) {
|
2015-05-02 16:11:18 +03:00
|
|
|
if p.closed() {
|
2015-04-22 10:32:54 +03:00
|
|
|
return nil, errClosed
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
|
2015-05-10 11:15:59 +03:00
|
|
|
// Fetch first non-idle connection, if available.
|
2015-04-05 15:41:16 +03:00
|
|
|
if cn := p.First(); cn != nil {
|
2015-04-22 10:32:54 +03:00
|
|
|
return cn, nil
|
2013-11-07 18:20:15 +04:00
|
|
|
}
|
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
// Try to create a new one.
|
|
|
|
if p.conns.Reserve() {
|
2014-06-28 15:47:37 +04:00
|
|
|
cn, err := p.new()
|
2013-07-02 15:17:31 +04:00
|
|
|
if err != nil {
|
2015-05-02 16:11:18 +03:00
|
|
|
p.conns.Remove(nil)
|
2015-04-22 10:32:54 +03:00
|
|
|
return nil, err
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
2015-05-02 16:11:18 +03:00
|
|
|
p.conns.Add(cn)
|
2015-04-22 10:32:54 +03:00
|
|
|
return cn, nil
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
|
2015-05-10 11:15:59 +03:00
|
|
|
// Otherwise, wait for the available connection.
|
|
|
|
if cn := p.wait(); cn != nil {
|
2015-04-22 10:32:54 +03:00
|
|
|
return cn, nil
|
2015-04-05 15:41:16 +03:00
|
|
|
}
|
|
|
|
|
2015-04-22 10:32:54 +03:00
|
|
|
return nil, errPoolTimeout
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *connPool) Put(cn *conn) error {
|
2013-09-29 12:11:18 +04:00
|
|
|
if cn.rd.Buffered() != 0 {
|
2014-03-04 22:40:55 +04:00
|
|
|
b, _ := cn.rd.ReadN(cn.rd.Buffered())
|
2014-07-31 17:01:54 +04:00
|
|
|
log.Printf("redis: connection has unread data: %q", b)
|
2014-03-04 22:40:55 +04:00
|
|
|
return p.Remove(cn)
|
2013-09-17 13:03:17 +04:00
|
|
|
}
|
2015-05-23 17:55:08 +03:00
|
|
|
if p.opt.getIdleTimeout() > 0 {
|
2013-12-30 15:02:14 +04:00
|
|
|
cn.usedAt = time.Now()
|
|
|
|
}
|
2015-04-05 15:41:16 +03:00
|
|
|
p.freeConns <- cn
|
2013-07-02 15:17:31 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-02-06 17:30:49 +04:00
|
|
|
func (p *connPool) Remove(cn *conn) error {
|
2015-05-02 16:11:18 +03:00
|
|
|
// Replace existing connection with new one and unblock waiter.
|
2015-04-17 14:44:56 +03:00
|
|
|
newcn, err := p.new()
|
|
|
|
if err != nil {
|
2015-06-03 16:45:46 +03:00
|
|
|
log.Printf("redis: new failed: %s", err)
|
2015-05-02 16:11:18 +03:00
|
|
|
return p.conns.Remove(cn)
|
2013-11-07 18:20:15 +04:00
|
|
|
}
|
2015-06-03 16:45:46 +03:00
|
|
|
err = p.conns.Replace(cn, newcn)
|
2015-05-02 16:11:18 +03:00
|
|
|
p.freeConns <- newcn
|
2015-06-03 16:45:46 +03:00
|
|
|
return err
|
2014-02-06 17:30:49 +04:00
|
|
|
}
|
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
// Len returns total number of connections.
|
2013-07-02 15:17:31 +04:00
|
|
|
func (p *connPool) Len() int {
|
2015-05-02 16:11:18 +03:00
|
|
|
return p.conns.Len()
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
// FreeLen returns number of free connections.
|
|
|
|
func (p *connPool) FreeLen() int {
|
|
|
|
return len(p.freeConns)
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
|
2015-05-10 11:15:59 +03:00
|
|
|
func (p *connPool) Close() (retErr error) {
|
2015-05-02 16:11:18 +03:00
|
|
|
if !atomic.CompareAndSwapInt32(&p._closed, 0, 1) {
|
|
|
|
return errClosed
|
2013-11-07 18:20:15 +04:00
|
|
|
}
|
2015-06-03 14:50:43 +03:00
|
|
|
// Wait for app to free connections, but don't close them immediately.
|
|
|
|
for i := 0; i < p.Len(); i++ {
|
|
|
|
if cn := p.wait(); cn == nil {
|
2015-05-10 11:15:59 +03:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2015-06-03 14:50:43 +03:00
|
|
|
// Close all connections.
|
2015-05-10 11:15:59 +03:00
|
|
|
if err := p.conns.Close(); err != nil {
|
|
|
|
retErr = err
|
|
|
|
}
|
|
|
|
return retErr
|
2015-05-02 16:11:18 +03:00
|
|
|
}
|
2015-01-31 16:20:37 +03:00
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
func (p *connPool) reaper() {
|
2015-05-23 17:55:08 +03:00
|
|
|
ticker := time.NewTicker(time.Minute)
|
2015-05-02 16:11:18 +03:00
|
|
|
defer ticker.Stop()
|
|
|
|
|
|
|
|
for _ = range ticker.C {
|
|
|
|
if p.closed() {
|
2014-05-11 18:11:55 +04:00
|
|
|
break
|
|
|
|
}
|
2015-05-02 16:11:18 +03:00
|
|
|
|
|
|
|
// pool.First removes idle connections from the pool and
|
|
|
|
// returns first non-idle connection. So just put returned
|
|
|
|
// connection back.
|
|
|
|
if cn := p.First(); cn != nil {
|
|
|
|
p.Put(cn)
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
type singleConnPool struct {
|
2015-06-03 16:45:46 +03:00
|
|
|
pool pool
|
2013-07-02 15:17:31 +04:00
|
|
|
reusable bool
|
2014-01-06 16:31:37 +04:00
|
|
|
|
2015-06-03 16:45:46 +03:00
|
|
|
cn *conn
|
2014-01-06 16:31:37 +04:00
|
|
|
closed bool
|
2015-06-03 16:45:46 +03:00
|
|
|
mx sync.Mutex
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
|
2014-06-28 15:47:37 +04:00
|
|
|
func newSingleConnPool(pool pool, reusable bool) *singleConnPool {
|
2013-07-02 15:17:31 +04:00
|
|
|
return &singleConnPool{
|
|
|
|
pool: pool,
|
|
|
|
reusable: reusable,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-28 15:47:37 +04:00
|
|
|
func (p *singleConnPool) SetConn(cn *conn) {
|
2015-06-03 16:45:46 +03:00
|
|
|
p.mx.Lock()
|
|
|
|
if p.cn != nil {
|
|
|
|
panic("p.cn != nil")
|
|
|
|
}
|
2014-06-28 15:47:37 +04:00
|
|
|
p.cn = cn
|
2015-06-03 16:45:46 +03:00
|
|
|
p.mx.Unlock()
|
2014-06-28 15:47:37 +04:00
|
|
|
}
|
|
|
|
|
2015-04-05 15:41:16 +03:00
|
|
|
func (p *singleConnPool) First() *conn {
|
2015-06-03 16:45:46 +03:00
|
|
|
p.mx.Lock()
|
|
|
|
cn := p.cn
|
|
|
|
p.mx.Unlock()
|
|
|
|
return cn
|
2015-04-05 15:41:16 +03:00
|
|
|
}
|
|
|
|
|
2015-04-22 10:32:54 +03:00
|
|
|
func (p *singleConnPool) Get() (*conn, error) {
|
2015-06-03 16:45:46 +03:00
|
|
|
defer p.mx.Unlock()
|
|
|
|
p.mx.Lock()
|
2014-06-28 15:47:37 +04:00
|
|
|
|
2014-01-06 16:31:37 +04:00
|
|
|
if p.closed {
|
2015-04-22 10:32:54 +03:00
|
|
|
return nil, errClosed
|
2014-01-06 16:31:37 +04:00
|
|
|
}
|
2013-07-02 15:17:31 +04:00
|
|
|
if p.cn != nil {
|
2015-04-22 10:32:54 +03:00
|
|
|
return p.cn, nil
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
|
2015-04-22 10:32:54 +03:00
|
|
|
cn, err := p.pool.Get()
|
2013-07-02 15:17:31 +04:00
|
|
|
if err != nil {
|
2015-04-22 10:32:54 +03:00
|
|
|
return nil, err
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
p.cn = cn
|
2014-06-28 15:47:37 +04:00
|
|
|
|
2015-04-22 10:32:54 +03:00
|
|
|
return p.cn, nil
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *singleConnPool) Put(cn *conn) error {
|
2015-06-03 16:45:46 +03:00
|
|
|
defer p.mx.Unlock()
|
|
|
|
p.mx.Lock()
|
2013-07-02 15:17:31 +04:00
|
|
|
if p.cn != cn {
|
|
|
|
panic("p.cn != cn")
|
|
|
|
}
|
2014-01-06 16:31:37 +04:00
|
|
|
if p.closed {
|
|
|
|
return errClosed
|
|
|
|
}
|
2013-07-02 15:17:31 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *singleConnPool) Remove(cn *conn) error {
|
2015-06-03 16:45:46 +03:00
|
|
|
defer p.mx.Unlock()
|
|
|
|
p.mx.Lock()
|
2014-05-11 18:11:55 +04:00
|
|
|
if p.cn == nil {
|
|
|
|
panic("p.cn == nil")
|
|
|
|
}
|
2013-07-02 15:17:31 +04:00
|
|
|
if p.cn != cn {
|
|
|
|
panic("p.cn != cn")
|
|
|
|
}
|
2014-01-06 16:31:37 +04:00
|
|
|
if p.closed {
|
|
|
|
return errClosed
|
|
|
|
}
|
2014-05-11 18:11:55 +04:00
|
|
|
return p.remove()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *singleConnPool) remove() error {
|
|
|
|
err := p.pool.Remove(p.cn)
|
2013-07-02 15:17:31 +04:00
|
|
|
p.cn = nil
|
2014-05-11 18:11:55 +04:00
|
|
|
return err
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *singleConnPool) Len() int {
|
2015-06-03 16:45:46 +03:00
|
|
|
defer p.mx.Unlock()
|
|
|
|
p.mx.Lock()
|
2013-07-02 15:17:31 +04:00
|
|
|
if p.cn == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2015-05-02 16:11:18 +03:00
|
|
|
func (p *singleConnPool) FreeLen() int {
|
2015-06-03 16:45:46 +03:00
|
|
|
defer p.mx.Unlock()
|
|
|
|
p.mx.Lock()
|
2013-11-07 18:20:15 +04:00
|
|
|
if p.cn == nil {
|
2015-06-03 16:45:46 +03:00
|
|
|
return 1
|
2013-11-07 18:20:15 +04:00
|
|
|
}
|
2015-06-03 16:45:46 +03:00
|
|
|
return 0
|
2013-11-07 18:20:15 +04:00
|
|
|
}
|
|
|
|
|
2013-07-02 15:17:31 +04:00
|
|
|
func (p *singleConnPool) Close() error {
|
2015-06-03 16:45:46 +03:00
|
|
|
defer p.mx.Unlock()
|
|
|
|
p.mx.Lock()
|
2014-01-06 16:31:37 +04:00
|
|
|
if p.closed {
|
2015-06-03 16:45:46 +03:00
|
|
|
return errClosed
|
2014-01-06 16:31:37 +04:00
|
|
|
}
|
|
|
|
p.closed = true
|
2013-07-02 15:17:31 +04:00
|
|
|
var err error
|
|
|
|
if p.cn != nil {
|
|
|
|
if p.reusable {
|
2015-06-03 14:18:15 +03:00
|
|
|
err = p.pool.Put(p.cn)
|
|
|
|
p.cn = nil
|
2013-07-02 15:17:31 +04:00
|
|
|
} else {
|
2014-06-28 15:47:37 +04:00
|
|
|
err = p.remove()
|
2013-07-02 15:17:31 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|