diff options
author | obscuren <geffobscura@gmail.com> | 2015-05-26 20:51:41 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-05-26 20:51:41 +0800 |
commit | 2f2dd80e480d90fa3bd2f5b2f2413a0eb51f3fa9 (patch) | |
tree | 4fb20244d3c10cdbeb85b993ac6d2e73f73016fa /p2p/discover/table.go | |
parent | e6b143b00dcdb3841d41af0e9a1942f5c24d669f (diff) | |
parent | d74ee40c86fed3a48d88de1094efc0a2f464b659 (diff) | |
download | go-tangerine-0.9.24.tar go-tangerine-0.9.24.tar.gz go-tangerine-0.9.24.tar.bz2 go-tangerine-0.9.24.tar.lz go-tangerine-0.9.24.tar.xz go-tangerine-0.9.24.tar.zst go-tangerine-0.9.24.zip |
Merge branch 'develop'v0.9.24
Diffstat (limited to 'p2p/discover/table.go')
-rw-r--r-- | p2p/discover/table.go | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/p2p/discover/table.go b/p2p/discover/table.go index 91d617f05..b523a0684 100644 --- a/p2p/discover/table.go +++ b/p2p/discover/table.go @@ -8,6 +8,7 @@ package discover import ( "crypto/rand" + "encoding/binary" "net" "sort" "sync" @@ -90,10 +91,58 @@ func newTable(t transport, ourID NodeID, ourAddr *net.UDPAddr, nodeDBPath string } // Self returns the local node. +// The returned node should not be modified by the caller. func (tab *Table) Self() *Node { return tab.self } +// ReadRandomNodes fills the given slice with random nodes from the +// table. It will not write the same node more than once. The nodes in +// the slice are copies and can be modified by the caller. +func (tab *Table) ReadRandomNodes(buf []*Node) (n int) { + tab.mutex.Lock() + defer tab.mutex.Unlock() + // TODO: tree-based buckets would help here + // Find all non-empty buckets and get a fresh slice of their entries. + var buckets [][]*Node + for _, b := range tab.buckets { + if len(b.entries) > 0 { + buckets = append(buckets, b.entries[:]) + } + } + if len(buckets) == 0 { + return 0 + } + // Shuffle the buckets. + for i := uint32(len(buckets)) - 1; i > 0; i-- { + j := randUint(i) + buckets[i], buckets[j] = buckets[j], buckets[i] + } + // Move head of each bucket into buf, removing buckets that become empty. + var i, j int + for ; i < len(buf); i, j = i+1, (j+1)%len(buckets) { + b := buckets[j] + buf[i] = &(*b[0]) + buckets[j] = b[1:] + if len(b) == 1 { + buckets = append(buckets[:j], buckets[j+1:]...) + } + if len(buckets) == 0 { + break + } + } + return i + 1 +} + +func randUint(max uint32) uint32 { + if max == 0 { + return 0 + } + var b [4]byte + rand.Read(b[:]) + return binary.BigEndian.Uint32(b[:]) % max +} + // Close terminates the network listener and flushes the node database. func (tab *Table) Close() { tab.net.close() |