mirror of
https://github.com/soheilhy/cmux.git
synced 2024-11-10 11:41:52 +08:00
9421819d79
Fixes race conditions in matchers. Impact on benchmarks: name old time/op new time/op delta CMuxConnHTTP1-4 664ns ±19% 849ns ± 6% +27.91% (p=0.000 n=9+10) CMuxConnHTTP2-4 745ns ±16% 699ns ± 9% ~ (p=0.075 n=9+10) CMuxConnHTTP1n2-4 930ns ±28% 1079ns ± 4% +16.00% (p=0.022 n=10+9) CMuxConnHTTP2n1-4 1.18µs ±52% 0.98µs ±13% ~ (p=1.000 n=10+10) name old alloc/op new alloc/op delta CMuxConnHTTP1-4 256B ± 0% 256B ± 0% ~ (all samples are equal) CMuxConnHTTP2-4 288B ± 0% 288B ± 0% ~ (all samples are equal) CMuxConnHTTP1n2-4 288B ± 0% 288B ± 0% ~ (all samples are equal) CMuxConnHTTP2n1-4 288B ± 0% 288B ± 0% ~ (all samples are equal) name old allocs/op new allocs/op delta CMuxConnHTTP1-4 3.00 ± 0% 3.00 ± 0% ~ (all samples are equal) CMuxConnHTTP2-4 4.00 ± 0% 4.00 ± 0% ~ (all samples are equal) CMuxConnHTTP1n2-4 4.00 ± 0% 4.00 ± 0% ~ (all samples are equal) CMuxConnHTTP2n1-4 4.00 ± 0% 4.00 ± 0% ~ (all samples are equal)
184 lines
3.2 KiB
Go
184 lines
3.2 KiB
Go
// Copyright 2016 The CMux Authors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
// implied. See the License for the specific language governing
|
|
// permissions and limitations under the License.
|
|
|
|
package cmux
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
"sync"
|
|
)
|
|
|
|
// patriciaTree is a simple patricia tree that handles []byte instead of string
|
|
// and cannot be changed after instantiation.
|
|
type patriciaTree struct {
|
|
root *ptNode
|
|
mu struct {
|
|
sync.Mutex
|
|
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)
|
|
}
|
|
}
|
|
t := patriciaTree{root: newNode(bs)}
|
|
t.mu.buf = make([]byte, max+1)
|
|
|
|
return &t
|
|
}
|
|
|
|
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 {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
|
|
n, _ := io.ReadFull(r, t.mu.buf)
|
|
return t.root.match(t.mu.buf[:n], true)
|
|
}
|
|
|
|
func (t *patriciaTree) match(r io.Reader) bool {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
|
|
n, _ := io.ReadFull(r, t.mu.buf)
|
|
return t.root.match(t.mu.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)
|
|
}
|