prox5/daemons.go

126 lines
2.3 KiB
Go

package prox5
import (
"errors"
"strconv"
"sync"
"sync/atomic"
"time"
cmap "github.com/orcaman/concurrent-map/v2"
)
type proxyMap struct {
plot cmap.ConcurrentMap[string, *Proxy]
parent *ProxyEngine
}
func (sm proxyMap) add(sock string) (*Proxy, bool) {
sm.plot.SetIfAbsent(sock, &Proxy{
Endpoint: sock,
protocol: newImmutableProto(),
lastValidated: time.UnixMilli(0),
timesValidated: 0,
timesBad: 0,
parent: sm.parent,
lock: stateUnlocked,
})
return sm.plot.Get(sock)
}
func (sm proxyMap) delete(sock string) error {
if _, ok := sm.plot.Get(sock); !ok {
return errors.New("proxy not found")
}
sm.plot.Remove(sock)
return nil
}
func (sm proxyMap) clear() {
sm.plot.Clear()
}
func (p5 *ProxyEngine) recycling() int {
switch {
case !p5.GetRecyclingStatus(), p5.proxyMap.plot.Count() < 1:
return 0
default:
select {
case <-p5.recyleTimer.C:
break
default:
return 0
}
}
var count = 0
var printedFull = false
var o = &sync.Once{}
for tuple := range p5.proxyMap.plot.IterBuffered() {
select {
case <-p5.ctx.Done():
return 0
case p5.Pending <- tuple.Val:
count++
default:
o.Do(func() {
atomic.AddInt64(&p5.stats.timesChannelFull, 1)
})
if !printedFull {
if time.Since(p5.stats.lastWarnedChannelFull) > 5*time.Second {
p5.scale()
p5.DebugLogger.Print("can't recycle, channel full")
printedFull = true
p5.stats.lastWarnedChannelFull = time.Now()
}
}
time.Sleep(2 * time.Millisecond)
continue
}
}
return count
}
func (p5 *ProxyEngine) jobSpawner() {
if p5.pool.IsClosed() {
p5.pool.Reboot()
}
p5.dbgPrint(simpleString("job spawner started"))
defer p5.dbgPrint(simpleString("job spawner paused"))
q := make(chan bool)
go func() {
for {
select {
case <-p5.ctx.Done():
q <- true
return
case sock := <-p5.Pending:
_ = p5.scale()
if err := p5.pool.Submit(sock.validate); err != nil {
p5.dbgPrint(simpleString(err.Error()))
}
default:
count := p5.recycling()
if count > 0 {
buf := strs.Get()
buf.MustWriteString("recycled ")
buf.MustWriteString(strconv.Itoa(count))
buf.MustWriteString(" proxies from our map")
p5.dbgPrint(buf)
}
}
}
}()
<-q
p5.pool.Release()
}