protobook.go 2.37 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package pstoremem

import (
	"sync"

	peer "github.com/libp2p/go-libp2p-peer"

	pstore "github.com/libp2p/go-libp2p-peerstore"
)

const maxInternedProtocols = 64
const maxInternedProtocolSize = 128

type protoSegment struct {
vyzo's avatar
vyzo committed
15
	sync.RWMutex
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
	interned  map[string]string
	protocols map[peer.ID]map[string]struct{}
}

type protoSegments [256]*protoSegment

func (s *protoSegments) get(id peer.ID) *protoSegment {
	b := []byte(id)
	return s[b[len(b)-1]]
}

func (s *protoSegment) internProtocol(proto string) string {
	if len(proto) > maxInternedProtocolSize {
		return proto
	}

	if interned, ok := s.interned[proto]; ok {
		return interned
	}

	if len(s.interned) >= maxInternedProtocols {
		s.interned = make(map[string]string, maxInternedProtocols)
	}

	s.interned[proto] = proto
	return proto
}

type memoryProtoBook struct {
	segments protoSegments
}

var _ pstore.ProtoBook = (*memoryProtoBook)(nil)

func NewProtoBook() pstore.ProtoBook {
	return &memoryProtoBook{
		segments: func() (ret protoSegments) {
			for i := range ret {
				ret[i] = &protoSegment{
					interned:  make(map[string]string),
					protocols: make(map[peer.ID]map[string]struct{}),
				}
			}
			return ret
		}(),
	}
}

func (pb *memoryProtoBook) SetProtocols(p peer.ID, protos ...string) error {
	s := pb.segments.get(p)
vyzo's avatar
vyzo committed
66 67
	s.Lock()
	defer s.Unlock()
68 69 70 71 72 73 74 75 76 77 78 79 80

	newprotos := make(map[string]struct{}, len(protos))
	for _, proto := range protos {
		newprotos[s.internProtocol(proto)] = struct{}{}
	}

	s.protocols[p] = newprotos

	return nil
}

func (pb *memoryProtoBook) AddProtocols(p peer.ID, protos ...string) error {
	s := pb.segments.get(p)
vyzo's avatar
vyzo committed
81 82
	s.Lock()
	defer s.Unlock()
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98

	protomap, ok := s.protocols[p]
	if !ok {
		protomap = make(map[string]struct{})
		s.protocols[p] = protomap
	}

	for _, proto := range protos {
		protomap[s.internProtocol(proto)] = struct{}{}
	}

	return nil
}

func (pb *memoryProtoBook) GetProtocols(p peer.ID) ([]string, error) {
	s := pb.segments.get(p)
vyzo's avatar
vyzo committed
99 100
	s.RLock()
	defer s.RUnlock()
101 102 103 104 105 106 107 108 109 110 111

	out := make([]string, 0, len(s.protocols))
	for k := range s.protocols[p] {
		out = append(out, k)
	}

	return out, nil
}

func (pb *memoryProtoBook) SupportsProtocols(p peer.ID, protos ...string) ([]string, error) {
	s := pb.segments.get(p)
vyzo's avatar
vyzo committed
112 113
	s.RLock()
	defer s.RUnlock()
114 115 116 117 118 119 120 121 122 123

	out := make([]string, 0, len(protos))
	for _, proto := range protos {
		if _, ok := s.protocols[p][proto]; ok {
			out = append(out, proto)
		}
	}

	return out, nil
}