mirror of
https://github.com/jech/galene.git
synced 2024-11-08 17:55:59 +01:00
774432bd5e
addMapping assumes the piddelta is constant, so it doesn't need the pid.
221 lines
4.2 KiB
Go
221 lines
4.2 KiB
Go
// Package packetmap implements remapping of sequence numbers and picture ids.
|
|
package packetmap
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
const maxEntries = 128
|
|
|
|
type Map struct {
|
|
mu sync.Mutex
|
|
next uint16
|
|
nextPid uint16
|
|
delta uint16
|
|
pidDelta uint16
|
|
lastEntry uint16
|
|
entries []entry
|
|
}
|
|
|
|
type entry struct {
|
|
first, count uint16
|
|
delta uint16
|
|
pidDelta uint16
|
|
}
|
|
|
|
// Map maps a seqno, adding the mapping if required. It returns whether
|
|
// the seqno could be mapped, the target seqno, and the pid delta to apply.
|
|
func (m *Map) Map(seqno uint16, pid uint16) (bool, uint16, uint16) {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
|
|
if m.delta == 0 && m.entries == nil {
|
|
if compare(m.next, seqno) <= 0 ||
|
|
uint16(m.next - seqno) > 8 * 1024 {
|
|
m.next = seqno + 1
|
|
m.nextPid = pid
|
|
}
|
|
return true, seqno, 0
|
|
}
|
|
|
|
if compare(m.next, seqno) <= 0 {
|
|
if uint16(seqno-m.next) > 8*1024 {
|
|
m.reset()
|
|
m.next = seqno + 1
|
|
m.nextPid = pid
|
|
return true, seqno, 0
|
|
}
|
|
addMapping(m, seqno, m.delta, m.pidDelta)
|
|
m.next = seqno + 1
|
|
m.nextPid = pid
|
|
return true, seqno + m.delta, m.pidDelta
|
|
}
|
|
|
|
if uint16(m.next-seqno) > 8*1024 {
|
|
m.reset()
|
|
m.next = seqno + 1
|
|
m.nextPid = pid
|
|
return true, seqno, 0
|
|
}
|
|
|
|
return m.direct(seqno)
|
|
}
|
|
|
|
func (m *Map) reset() {
|
|
m.next = 0
|
|
m.nextPid = 0
|
|
m.delta = 0
|
|
m.pidDelta = 0
|
|
m.lastEntry = 0
|
|
m.entries = nil
|
|
}
|
|
|
|
func addMapping(m *Map, seqno, delta, pidDelta uint16) {
|
|
if len(m.entries) == 0 {
|
|
// this shouldn't happen
|
|
return
|
|
}
|
|
|
|
i := m.lastEntry
|
|
if delta == m.entries[i].delta && pidDelta == m.entries[i].pidDelta {
|
|
m.entries[m.lastEntry].count = seqno - m.entries[i].first + 1
|
|
return
|
|
}
|
|
|
|
f := seqno
|
|
d := m.entries[i].delta - delta
|
|
// expand the interval to cover missing values, but make sure the
|
|
// targets don't overlap.
|
|
if d < 8192 {
|
|
ff := m.entries[i].first + m.entries[i].count + d
|
|
if compare(ff, seqno) < 0 {
|
|
f = ff
|
|
}
|
|
}
|
|
e := entry{
|
|
first: f,
|
|
count: seqno - f + 1,
|
|
delta: delta,
|
|
pidDelta: pidDelta,
|
|
}
|
|
|
|
if len(m.entries) < maxEntries {
|
|
m.entries = append(m.entries, e)
|
|
m.lastEntry = uint16(len(m.entries) - 1)
|
|
return
|
|
}
|
|
|
|
j := (m.lastEntry + 1) % maxEntries
|
|
m.entries[j] = e
|
|
m.lastEntry = j
|
|
}
|
|
|
|
// direct maps a seqno to a target seqno. It returns true if the seqno
|
|
// could be mapped, the target seqno, and the pid delta to apply.
|
|
// Called with m.mu taken.
|
|
func (m *Map) direct(seqno uint16) (bool, uint16, uint16) {
|
|
if len(m.entries) == 0 {
|
|
return false, 0, 0
|
|
}
|
|
i := m.lastEntry
|
|
for {
|
|
f := m.entries[i].first
|
|
if compare(seqno, f) >= 0 {
|
|
if compare(seqno, f+m.entries[i].count) < 0 {
|
|
return true,
|
|
seqno + m.entries[i].delta,
|
|
m.entries[i].pidDelta
|
|
}
|
|
return false, 0, 0
|
|
}
|
|
if i > 0 {
|
|
i--
|
|
} else {
|
|
i = uint16(len(m.entries) - 1)
|
|
}
|
|
if i == m.lastEntry {
|
|
break
|
|
}
|
|
}
|
|
return false, 0, 0
|
|
}
|
|
|
|
// Reverse maps a target seqno to the original seqno. It returns true if
|
|
// the seqno could be mapped, the original seqno, and the pid delta to
|
|
// apply in reverse.
|
|
func (m *Map) Reverse(seqno uint16) (bool, uint16, uint16) {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
|
|
if m.delta == 0 && m.entries == nil {
|
|
return true, seqno, 0
|
|
}
|
|
if m.entries == nil {
|
|
if m.delta == 0 {
|
|
return true, seqno, 0
|
|
}
|
|
return false, 0, 0
|
|
}
|
|
|
|
i := m.lastEntry
|
|
for {
|
|
f := m.entries[i].first + m.entries[i].delta
|
|
if compare(seqno, f) >= 0 {
|
|
if compare(seqno, f+m.entries[i].count) < 0 {
|
|
return true,
|
|
seqno - m.entries[i].delta,
|
|
m.entries[i].pidDelta
|
|
}
|
|
return false, 0, 0
|
|
}
|
|
if i > 0 {
|
|
i--
|
|
} else {
|
|
i = uint16(len(m.entries) - 1)
|
|
}
|
|
if i == m.lastEntry {
|
|
break
|
|
}
|
|
}
|
|
return false, 0, 0
|
|
}
|
|
|
|
// Drop attempts to record a dropped packet. It returns true if the
|
|
// packet is safe to drop.
|
|
func (m *Map) Drop(seqno uint16, pid uint16) bool {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
|
|
if seqno != m.next {
|
|
return false
|
|
}
|
|
|
|
if len(m.entries) == 0 {
|
|
m.entries = []entry{
|
|
entry{
|
|
first: seqno - 8192,
|
|
count: 8192,
|
|
delta: 0,
|
|
pidDelta: 0,
|
|
},
|
|
}
|
|
}
|
|
|
|
m.pidDelta += pid - m.nextPid
|
|
m.nextPid = pid
|
|
|
|
m.delta--
|
|
m.next = seqno + 1
|
|
return true
|
|
}
|
|
|
|
// compare performs comparison modulo 2^16.
|
|
func compare(s1, s2 uint16) int {
|
|
if s1 == s2 {
|
|
return 0
|
|
}
|
|
if ((s2 - s1) & 0x8000) != 0 {
|
|
return 1
|
|
}
|
|
return -1
|
|
}
|