1
Fork 0
galene/estimator/estimator.go

70 lines
1.7 KiB
Go
Raw Normal View History

2020-04-30 20:15:52 +02:00
package estimator
import (
"sync/atomic"
"time"
2020-12-06 19:43:17 +01:00
"galene/rtptime"
2020-04-30 20:15:52 +02:00
)
type Estimator struct {
interval uint64
time uint64
bytes uint32
packets uint32
2020-05-31 23:54:55 +02:00
totalBytes uint32
totalPackets uint32
rate uint32
packetRate uint32
2020-04-30 20:15:52 +02:00
}
func New(interval time.Duration) *Estimator {
return &Estimator{
interval: rtptime.FromDuration(interval, rtptime.JiffiesPerSec),
time: rtptime.Now(rtptime.JiffiesPerSec),
2020-04-30 20:15:52 +02:00
}
}
func (e *Estimator) swap(now uint64) {
tm := atomic.LoadUint64(&e.time)
jiffies := now - tm
bytes := atomic.SwapUint32(&e.bytes, 0)
packets := atomic.SwapUint32(&e.packets, 0)
atomic.AddUint32(&e.totalBytes, bytes)
atomic.AddUint32(&e.totalPackets, packets)
var rate, packetRate uint32
if jiffies >= rtptime.JiffiesPerSec/1000 {
rate = uint32(uint64(bytes) * rtptime.JiffiesPerSec / jiffies)
packetRate =
uint32(uint64(packets) * rtptime.JiffiesPerSec / jiffies)
2020-04-30 20:15:52 +02:00
}
atomic.StoreUint32(&e.rate, rate)
atomic.StoreUint32(&e.packetRate, packetRate)
atomic.StoreUint64(&e.time, now)
2020-04-30 20:15:52 +02:00
}
2020-05-31 23:47:12 +02:00
func (e *Estimator) Accumulate(count uint32) {
atomic.AddUint32(&e.bytes, count)
atomic.AddUint32(&e.packets, 1)
2020-04-30 20:15:52 +02:00
}
func (e *Estimator) estimate(now uint64) (uint32, uint32) {
tm := atomic.LoadUint64(&e.time)
if now < tm || now-tm > e.interval {
2020-04-30 20:15:52 +02:00
e.swap(now)
}
return atomic.LoadUint32(&e.rate), atomic.LoadUint32(&e.packetRate)
2020-04-30 20:15:52 +02:00
}
func (e *Estimator) Estimate() (uint32, uint32) {
return e.estimate(rtptime.Now(rtptime.JiffiesPerSec))
2020-04-30 20:15:52 +02:00
}
2020-05-31 23:54:55 +02:00
func (e *Estimator) Totals() (uint32, uint32) {
b := atomic.LoadUint32(&e.totalBytes) + atomic.LoadUint32(&e.bytes)
p := atomic.LoadUint32(&e.totalPackets) + atomic.LoadUint32(&e.packets)
2020-05-31 23:54:55 +02:00
return p, b
}