mirror of
https://github.com/soheilhy/cmux.git
synced 2024-11-09 19:21:52 +08:00
703b087a39
Remove all the extra allocations in the Patricia tree. O(1) allocation for Patricia and ~10% improvement for HTTP1 matching. benchmark old ns/op new ns/op delta BenchmarkCMuxConnHTTP1-4 908 782 -13.88% BenchmarkCMuxConnHTTP2-4 835 818 -2.04% BenchmarkCMuxConnHTTP1n2-4 1074 1033 -3.82% BenchmarkCMuxConnHTTP2n1-4 1010 901 -10.79% benchmark old allocs new allocs delta BenchmarkCMuxConnHTTP1-4 5 3 -40.00% BenchmarkCMuxConnHTTP2-4 4 4 +0.00% BenchmarkCMuxConnHTTP1n2-4 6 4 -33.33% BenchmarkCMuxConnHTTP2n1-4 6 4 -33.33% benchmark old bytes new bytes delta BenchmarkCMuxConnHTTP1-4 276 272 -1.45% BenchmarkCMuxConnHTTP2-4 304 304 +0.00% BenchmarkCMuxConnHTTP1n2-4 306 304 -0.65% BenchmarkCMuxConnHTTP2n1-4 308 304 -1.30%
160 lines
2.5 KiB
Go
160 lines
2.5 KiB
Go
package cmux
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
)
|
|
|
|
// patriciaTree is a simple patricia tree that handles []byte instead of string
|
|
// and cannot be changed after instantiation.
|
|
type patriciaTree struct {
|
|
root *ptNode
|
|
buf []byte // preallocated buffer to read data while matching
|
|
}
|
|
|
|
func newPatriciaTree(bs ...[]byte) *patriciaTree {
|
|
max := 0
|
|
for _, b := range bs {
|
|
if max < len(b) {
|
|
max = len(b)
|
|
}
|
|
}
|
|
return &patriciaTree{
|
|
root: newNode(bs),
|
|
buf: make([]byte, max+1),
|
|
}
|
|
}
|
|
|
|
func newPatriciaTreeString(strs ...string) *patriciaTree {
|
|
b := make([][]byte, len(strs))
|
|
for i, s := range strs {
|
|
b[i] = []byte(s)
|
|
}
|
|
return newPatriciaTree(b...)
|
|
}
|
|
|
|
func (t *patriciaTree) matchPrefix(r io.Reader) bool {
|
|
n, _ := io.ReadFull(r, t.buf)
|
|
return t.root.match(t.buf[:n], true)
|
|
}
|
|
|
|
func (t *patriciaTree) match(r io.Reader) bool {
|
|
n, _ := io.ReadFull(r, t.buf)
|
|
return t.root.match(t.buf[:n], false)
|
|
}
|
|
|
|
type ptNode struct {
|
|
prefix []byte
|
|
next map[byte]*ptNode
|
|
terminal bool
|
|
}
|
|
|
|
func newNode(strs [][]byte) *ptNode {
|
|
if len(strs) == 0 {
|
|
return &ptNode{
|
|
prefix: []byte{},
|
|
terminal: true,
|
|
}
|
|
}
|
|
|
|
if len(strs) == 1 {
|
|
return &ptNode{
|
|
prefix: strs[0],
|
|
terminal: true,
|
|
}
|
|
}
|
|
|
|
p, strs := splitPrefix(strs)
|
|
n := &ptNode{
|
|
prefix: p,
|
|
}
|
|
|
|
nexts := make(map[byte][][]byte)
|
|
for _, s := range strs {
|
|
if len(s) == 0 {
|
|
n.terminal = true
|
|
continue
|
|
}
|
|
nexts[s[0]] = append(nexts[s[0]], s[1:])
|
|
}
|
|
|
|
n.next = make(map[byte]*ptNode)
|
|
for first, rests := range nexts {
|
|
n.next[first] = newNode(rests)
|
|
}
|
|
|
|
return n
|
|
}
|
|
|
|
func splitPrefix(bss [][]byte) (prefix []byte, rest [][]byte) {
|
|
if len(bss) == 0 || len(bss[0]) == 0 {
|
|
return prefix, bss
|
|
}
|
|
|
|
if len(bss) == 1 {
|
|
return bss[0], [][]byte{{}}
|
|
}
|
|
|
|
for i := 0; ; i++ {
|
|
var cur byte
|
|
eq := true
|
|
for j, b := range bss {
|
|
if len(b) <= i {
|
|
eq = false
|
|
break
|
|
}
|
|
|
|
if j == 0 {
|
|
cur = b[i]
|
|
continue
|
|
}
|
|
|
|
if cur != b[i] {
|
|
eq = false
|
|
break
|
|
}
|
|
}
|
|
|
|
if !eq {
|
|
break
|
|
}
|
|
|
|
prefix = append(prefix, cur)
|
|
}
|
|
|
|
rest = make([][]byte, 0, len(bss))
|
|
for _, b := range bss {
|
|
rest = append(rest, b[len(prefix):])
|
|
}
|
|
|
|
return prefix, rest
|
|
}
|
|
|
|
func (n *ptNode) match(b []byte, prefix bool) bool {
|
|
l := len(n.prefix)
|
|
if l > 0 {
|
|
if l > len(b) {
|
|
l = len(b)
|
|
}
|
|
if !bytes.Equal(b[:l], n.prefix) {
|
|
return false
|
|
}
|
|
}
|
|
|
|
if n.terminal && (prefix || len(n.prefix) == len(b)) {
|
|
return true
|
|
}
|
|
|
|
nextN, ok := n.next[b[l]]
|
|
if !ok {
|
|
return false
|
|
}
|
|
|
|
if l == len(b) {
|
|
b = b[l:l]
|
|
} else {
|
|
b = b[l+1:]
|
|
}
|
|
return nextN.match(b, prefix)
|
|
}
|