redis/internal/pool/conn_list.go

87 lines
1.4 KiB
Go
Raw Normal View History

package pool
import (
"sync"
"sync/atomic"
)
type connList struct {
cns []*Conn
2016-03-12 13:41:02 +03:00
mu sync.Mutex
len int32 // atomic
size int32
}
func newConnList(size int) *connList {
return &connList{
2016-03-12 13:41:02 +03:00
cns: make([]*Conn, size),
size: int32(size),
}
}
func (l *connList) Len() int {
return int(atomic.LoadInt32(&l.len))
}
2016-03-12 13:41:02 +03:00
// Reserve reserves place in the list and returns true on success.
// The caller must add connection or cancel reservation if it was reserved.
func (l *connList) Reserve() bool {
len := atomic.AddInt32(&l.len, 1)
reserved := len <= l.size
if !reserved {
atomic.AddInt32(&l.len, -1)
}
return reserved
}
func (l *connList) CancelReservation() {
atomic.AddInt32(&l.len, -1)
}
// Add adds connection to the list. The caller must reserve place first.
func (l *connList) Add(cn *Conn) {
2016-03-12 13:41:02 +03:00
l.mu.Lock()
for i, c := range l.cns {
if c == nil {
2016-03-15 15:04:35 +03:00
cn.idx = int32(i)
2016-03-12 13:41:02 +03:00
l.cns[i] = cn
l.mu.Unlock()
return
}
}
panic("not reached")
}
func (l *connList) Replace(cn *Conn) {
l.mu.Lock()
if l.cns != nil {
l.cns[cn.idx] = cn
}
l.mu.Unlock()
}
// Remove closes connection and removes it from the list.
func (l *connList) Remove(idx int) {
2016-03-12 13:41:02 +03:00
l.mu.Lock()
if l.cns != nil {
l.cns[idx] = nil
l.len -= 1
}
2016-03-12 13:41:02 +03:00
l.mu.Unlock()
}
2016-03-12 13:41:02 +03:00
func (l *connList) Close() error {
l.mu.Lock()
for _, c := range l.cns {
2016-03-12 13:41:02 +03:00
if c == nil {
continue
}
2016-03-15 15:04:35 +03:00
c.idx = -1
c.Close()
}
l.cns = nil
l.len = 0
2016-03-12 13:41:02 +03:00
l.mu.Unlock()
return nil
}