mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-09-01 00:54:01 +03:00
FILE / ScuroNeko/mtg
mtglib/internal/doppel/conn.go
Исходный файл и его история в репозитории.
This is a followup for https://github.com/9seconds/mtg/issues/412 it makes sense to manage timers inplace instead of creating for new goroutines: saves memory
119 lines
1.9 KiB
Go
119 lines
1.9 KiB
Go
package doppel
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/9seconds/mtg/v2/essentials"
|
|
"github.com/9seconds/mtg/v2/mtglib/internal/tls"
|
|
)
|
|
|
|
var doppelBufPool = sync.Pool{
|
|
New: func() any {
|
|
b := make([]byte, tls.MaxRecordSize)
|
|
return &b
|
|
},
|
|
}
|
|
|
|
type Conn struct {
|
|
essentials.Conn
|
|
|
|
p *connPayload
|
|
}
|
|
|
|
type connPayload struct {
|
|
ctx context.Context
|
|
ctxCancel context.CancelCauseFunc
|
|
stats Stats
|
|
wg sync.WaitGroup
|
|
writeStream bytes.Buffer
|
|
writtenCond sync.Cond
|
|
done bool
|
|
}
|
|
|
|
func (c Conn) Write(p []byte) (int, error) {
|
|
if len(p) == 0 {
|
|
return 0, context.Cause(c.p.ctx)
|
|
}
|
|
|
|
c.p.writtenCond.L.Lock()
|
|
c.p.writeStream.Write(p)
|
|
c.p.writtenCond.L.Unlock()
|
|
|
|
c.p.writtenCond.Signal()
|
|
|
|
return len(p), context.Cause(c.p.ctx)
|
|
}
|
|
|
|
func (c Conn) start() {
|
|
bp := doppelBufPool.Get().(*[]byte)
|
|
buf := *bp
|
|
defer doppelBufPool.Put(bp)
|
|
|
|
timer := time.NewTimer(c.p.stats.Delay())
|
|
defer timer.Stop()
|
|
|
|
for {
|
|
select {
|
|
case <-c.p.ctx.Done():
|
|
return
|
|
case <-timer.C:
|
|
timer.Reset(c.p.stats.Delay())
|
|
}
|
|
|
|
size := c.p.stats.Size()
|
|
|
|
c.p.writtenCond.L.Lock()
|
|
for c.p.writeStream.Len() == 0 && !c.p.done {
|
|
c.p.writtenCond.Wait()
|
|
}
|
|
n, _ := c.p.writeStream.Read(buf[tls.SizeHeader : tls.SizeHeader+size])
|
|
c.p.writtenCond.L.Unlock()
|
|
|
|
if n == 0 {
|
|
continue
|
|
}
|
|
|
|
if err := tls.WriteRecordInPlace(c.Conn, buf, n); err != nil {
|
|
c.p.ctxCancel(err)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
func (c Conn) Stop() {
|
|
c.p.ctxCancel(nil)
|
|
|
|
c.p.writtenCond.L.Lock()
|
|
c.p.done = true
|
|
c.p.writtenCond.L.Unlock()
|
|
c.p.writtenCond.Broadcast()
|
|
|
|
c.p.wg.Wait()
|
|
}
|
|
|
|
func NewConn(ctx context.Context, conn essentials.Conn, stats Stats) Conn {
|
|
ctx, cancel := context.WithCancelCause(ctx)
|
|
rv := Conn{
|
|
Conn: conn,
|
|
p: &connPayload{
|
|
ctx: ctx,
|
|
ctxCancel: cancel,
|
|
stats: stats,
|
|
writtenCond: sync.Cond{
|
|
L: &sync.Mutex{},
|
|
},
|
|
},
|
|
}
|
|
|
|
rv.p.writeStream.Grow(tls.DefaultBufferSize)
|
|
|
|
rv.p.wg.Go(func() {
|
|
rv.start()
|
|
})
|
|
|
|
return rv
|
|
}
|