prox5/daemons.go

126 lines
2.3 KiB
Go
Raw Normal View History

2022-05-23 01:05:50 +00:00
package prox5
2021-09-20 01:23:18 +00:00
import (
2021-09-20 08:49:06 +00:00
"errors"
2022-09-03 15:01:35 +00:00
"strconv"
2023-01-01 00:40:32 +00:00
"sync"
2022-12-27 15:25:10 +00:00
"sync/atomic"
2022-09-03 15:01:35 +00:00
"time"
2022-12-27 12:47:37 +00:00
cmap "github.com/orcaman/concurrent-map/v2"
)
2021-09-20 01:23:18 +00:00
2022-10-16 10:53:04 +00:00
type proxyMap struct {
2022-12-27 12:47:37 +00:00
plot cmap.ConcurrentMap[string, *Proxy]
2022-10-16 10:53:04 +00:00
parent *ProxyEngine
}
2022-10-16 10:53:04 +00:00
func (sm proxyMap) add(sock string) (*Proxy, bool) {
2022-12-27 12:47:37 +00:00
sm.plot.SetIfAbsent(sock, &Proxy{
2022-06-28 02:27:52 +00:00
Endpoint: sock,
2022-09-22 23:24:35 +00:00
protocol: newImmutableProto(),
2022-06-28 02:27:52 +00:00
lastValidated: time.UnixMilli(0),
timesValidated: 0,
timesBad: 0,
parent: sm.parent,
lock: stateUnlocked,
2022-12-27 12:47:37 +00:00
})
2022-12-27 12:47:37 +00:00
return sm.plot.Get(sock)
}
2022-10-16 10:53:04 +00:00
func (sm proxyMap) delete(sock string) error {
2022-12-27 12:47:37 +00:00
if _, ok := sm.plot.Get(sock); !ok {
return errors.New("proxy not found")
2021-09-20 08:49:06 +00:00
}
2022-12-27 12:47:37 +00:00
sm.plot.Remove(sock)
2021-09-20 08:49:06 +00:00
return nil
}
2022-10-16 10:53:04 +00:00
func (sm proxyMap) clear() {
2022-12-27 12:47:37 +00:00
sm.plot.Clear()
}
2021-09-20 01:23:18 +00:00
2022-10-16 10:53:04 +00:00
func (p5 *ProxyEngine) recycling() int {
2022-12-27 12:55:03 +00:00
switch {
case !p5.GetRecyclingStatus(), p5.proxyMap.plot.Count() < 1:
return 0
2022-12-27 12:55:03 +00:00
default:
2023-01-01 00:40:32 +00:00
select {
case <-p5.recyleTimer.C:
break
default:
return 0
}
}
2022-12-27 12:55:03 +00:00
var count = 0
var printedFull = false
2021-11-24 12:01:11 +00:00
2023-01-01 00:40:32 +00:00
var o = &sync.Once{}
2022-12-27 12:47:37 +00:00
for tuple := range p5.proxyMap.plot.IterBuffered() {
select {
2022-09-22 23:45:15 +00:00
case <-p5.ctx.Done():
2022-05-30 10:42:18 +00:00
return 0
2022-12-27 12:47:37 +00:00
case p5.Pending <- tuple.Val:
count++
2022-09-03 15:01:35 +00:00
default:
2023-01-01 00:40:32 +00:00
o.Do(func() {
atomic.AddInt64(&p5.stats.timesChannelFull, 1)
})
2022-12-27 12:47:37 +00:00
if !printedFull {
if time.Since(p5.stats.lastWarnedChannelFull) > 20*time.Second {
2023-01-01 00:40:32 +00:00
p5.scale()
2022-12-27 15:25:10 +00:00
p5.DebugLogger.Print("can't recycle, channel full")
printedFull = true
p5.stats.lastWarnedChannelFull = time.Now()
}
2022-12-27 12:47:37 +00:00
}
time.Sleep(1 * time.Second)
2022-08-28 16:37:40 +00:00
continue
}
}
return count
}
2022-10-16 10:53:04 +00:00
func (p5 *ProxyEngine) jobSpawner() {
2022-09-22 23:45:15 +00:00
if p5.pool.IsClosed() {
p5.pool.Reboot()
2021-10-25 09:57:38 +00:00
}
2022-05-30 10:42:18 +00:00
2022-09-22 23:45:15 +00:00
p5.dbgPrint(simpleString("job spawner started"))
defer p5.dbgPrint(simpleString("job spawner paused"))
2021-10-25 09:57:38 +00:00
q := make(chan bool)
go func() {
for {
select {
2022-09-22 23:45:15 +00:00
case <-p5.ctx.Done():
2021-10-25 09:57:38 +00:00
q <- true
return
2022-09-22 23:45:15 +00:00
case sock := <-p5.Pending:
2022-12-27 15:25:10 +00:00
_ = p5.scale()
2022-09-22 23:45:15 +00:00
if err := p5.pool.Submit(sock.validate); err != nil {
p5.dbgPrint(simpleString(err.Error()))
}
2022-09-03 15:01:35 +00:00
default:
2022-09-22 23:45:15 +00:00
count := p5.recycling()
2023-01-01 01:02:46 +00:00
if count > 0 {
buf := strs.Get()
buf.MustWriteString("recycled ")
buf.MustWriteString(strconv.Itoa(count))
buf.MustWriteString(" proxies from our map")
p5.dbgPrint(buf)
}
}
2021-09-20 01:23:18 +00:00
}
}()
2021-10-25 09:57:38 +00:00
<-q
2022-09-22 23:45:15 +00:00
p5.pool.Release()
2021-09-20 01:23:18 +00:00
}