prox5/daemons.go

133 lines
2.1 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"
2022-07-25 06:23:12 +00:00
"strings"
"sync"
2022-09-03 15:01:35 +00:00
"time"
"git.tcp.direct/kayos/prox5/internal/pools"
)
2021-09-20 01:23:18 +00:00
type swampMap struct {
2021-09-20 08:49:06 +00:00
plot map[string]*Proxy
2021-09-23 13:16:23 +00:00
mu *sync.RWMutex
2021-09-20 08:49:06 +00:00
parent *Swamp
}
func (sm swampMap) add(sock string) (*Proxy, bool) {
sm.mu.Lock()
defer sm.mu.Unlock()
if sm.exists(sock) {
return nil, false
}
sm.plot[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,
2021-09-20 08:49:06 +00:00
}
return sm.plot[sock], true
}
func (sm swampMap) exists(sock string) bool {
if _, ok := sm.plot[sock]; !ok {
return false
}
return true
}
2021-09-20 08:49:06 +00:00
func (sm swampMap) delete(sock string) error {
sm.mu.Lock()
defer sm.mu.Unlock()
2021-09-20 08:49:06 +00:00
if !sm.exists(sock) {
return errors.New("proxy does not exist in map")
}
sm.plot[sock] = nil
2021-09-20 08:49:06 +00:00
delete(sm.plot, sock)
return nil
}
func (sm swampMap) clear() {
sm.mu.Lock()
defer sm.mu.Unlock()
2022-05-30 10:42:18 +00:00
for key := range sm.plot {
delete(sm.plot, key)
}
}
2021-09-20 01:23:18 +00:00
2022-09-22 23:45:15 +00:00
func (p5 *Swamp) recycling() int {
if !p5.GetRecyclingStatus() {
return 0
}
2022-09-22 23:45:15 +00:00
if len(p5.swampmap.plot) < 1 {
return 0
}
2022-05-30 10:42:18 +00:00
var count int
2021-09-23 13:16:23 +00:00
2022-09-22 23:45:15 +00:00
p5.swampmap.mu.RLock()
defer p5.swampmap.mu.RUnlock()
2021-11-24 12:01:11 +00:00
2022-09-22 23:45:15 +00:00
for _, sock := range p5.swampmap.plot {
select {
2022-09-22 23:45:15 +00:00
case <-p5.ctx.Done():
2022-05-30 10:42:18 +00:00
return 0
2022-09-22 23:45:15 +00:00
case p5.Pending <- sock:
count++
2022-09-03 15:01:35 +00:00
default:
2022-08-28 16:37:40 +00:00
continue
}
}
return count
}
2022-09-22 23:45:15 +00:00
func (p5 *Swamp) jobSpawner() {
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:
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-23 22:57:46 +00:00
time.Sleep(500 * time.Millisecond)
2022-09-22 23:45:15 +00:00
count := p5.recycling()
buf := pools.CopABuffer.Get().(*strings.Builder)
2022-07-25 06:23:12 +00:00
buf.WriteString("recycled ")
buf.WriteString(strconv.Itoa(count))
buf.WriteString(" proxies from our map")
2022-09-22 23:45:15 +00:00
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
}