package proxy
import (
"crypto/tls"
"sort"
"time"
"github.com/miekg/dns"
)
type persistConn struct {
c *dns.Conn
used time.Time
}
type Transport struct {
avgDialTime int64
conns [typeTotalCount][]*persistConn
expire time.Duration
addr string
tlsConfig *tls.Config
proxyName string
dial chan string
yield chan *persistConn
ret chan *persistConn
stop chan bool
}
func newTransport(proxyName, addr string) *Transport {
t := &Transport{
avgDialTime: int64(maxDialTimeout / 2),
conns: [typeTotalCount][]*persistConn{},
expire: defaultExpire,
addr: addr,
dial: make(chan string),
yield: make(chan *persistConn),
ret: make(chan *persistConn),
stop: make(chan bool),
proxyName: proxyName,
}
return t
}
func (t *Transport) connManager() {
ticker := time.NewTicker(defaultExpire)
defer ticker.Stop()
Wait:
for {
select {
case proto := <-t.dial:
transtype := stringToTransportType(proto)
if stack := t.conns[transtype]; len(stack) > 0 {
pc := stack[len(stack)-1]
if time.Since(pc.used) < t.expire {
t.conns[transtype] = stack[:len(stack)-1]
t.ret <- pc
continue Wait
}
t.conns[transtype] = nil
go closeConns(stack)
}
t.ret <- nil
case pc := <-t.yield:
transtype := t.transportTypeFromConn(pc)
t.conns[transtype] = append(t.conns[transtype], pc)
case <-ticker.C:
t.cleanup(false)
case <-t.stop:
t.cleanup(true)
close(t.ret)
return
}
}
}
func closeConns(conns []*persistConn) {
for _, pc := range conns {
pc.c.Close()
}
}
func (t *Transport) cleanup(all bool) {
staleTime := time.Now().Add(-t.expire)
for transtype, stack := range t.conns {
if len(stack) == 0 {
continue
}
if all {
t.conns[transtype] = nil
go closeConns(stack)
continue
}
if stack[0].used.After(staleTime) {
continue
}
good := sort.Search(len(stack), func(i int) bool {
return stack[i].used.After(staleTime)
})
t.conns[transtype] = stack[good:]
go closeConns(stack[:good])
}
}
const yieldTimeout = 25 * time.Millisecond
func (t *Transport) Yield(pc *persistConn) {
pc.used = time.Now()
select {
case t.yield <- pc:
return
case <-time.After(yieldTimeout):
return
}
}
func (t *Transport) Start() { go t.connManager() }
func (t *Transport) Stop() { close(t.stop) }
func (t *Transport) SetExpire(expire time.Duration) { t.expire = expire }
func (t *Transport) SetTLSConfig(cfg *tls.Config) { t.tlsConfig = cfg }
const (
defaultExpire = 10 * time.Second
minDialTimeout = 1 * time.Second
maxDialTimeout = 30 * time.Second
)