mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
2.8 KiB
100 lines
2.8 KiB
// Copyright 2015 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package discover
|
|
|
|
import (
|
|
"slices"
|
|
"sort"
|
|
"time"
|
|
|
|
"github.com/ethereum/go-ethereum/p2p/enode"
|
|
)
|
|
|
|
type BucketNode struct {
|
|
Node *enode.Node `json:"node"`
|
|
AddedToTable time.Time `json:"addedToTable"`
|
|
AddedToBucket time.Time `json:"addedToBucket"`
|
|
Checks int `json:"checks"`
|
|
Live bool `json:"live"`
|
|
}
|
|
|
|
// tableNode is an entry in Table.
|
|
type tableNode struct {
|
|
*enode.Node
|
|
revalList *revalidationList
|
|
addedToTable time.Time // first time node was added to bucket or replacement list
|
|
addedToBucket time.Time // time it was added in the actual bucket
|
|
livenessChecks uint // how often liveness was checked
|
|
isValidatedLive bool // true if existence of node is considered validated right now
|
|
}
|
|
|
|
func unwrapNodes(ns []*tableNode) []*enode.Node {
|
|
result := make([]*enode.Node, len(ns))
|
|
for i, n := range ns {
|
|
result[i] = n.Node
|
|
}
|
|
return result
|
|
}
|
|
|
|
func (n *tableNode) String() string {
|
|
return n.Node.String()
|
|
}
|
|
|
|
// nodesByDistance is a list of nodes, ordered by distance to target.
|
|
type nodesByDistance struct {
|
|
entries []*enode.Node
|
|
target enode.ID
|
|
}
|
|
|
|
// push adds the given node to the list, keeping the total size below maxElems.
|
|
func (h *nodesByDistance) push(n *enode.Node, maxElems int) {
|
|
ix := sort.Search(len(h.entries), func(i int) bool {
|
|
return enode.DistCmp(h.target, h.entries[i].ID(), n.ID()) > 0
|
|
})
|
|
|
|
end := len(h.entries)
|
|
if len(h.entries) < maxElems {
|
|
h.entries = append(h.entries, n)
|
|
}
|
|
if ix < end {
|
|
// Slide existing entries down to make room.
|
|
// This will overwrite the entry we just appended.
|
|
copy(h.entries[ix+1:], h.entries[ix:])
|
|
h.entries[ix] = n
|
|
}
|
|
}
|
|
|
|
type nodeType interface {
|
|
ID() enode.ID
|
|
}
|
|
|
|
// containsID reports whether ns contains a node with the given ID.
|
|
func containsID[N nodeType](ns []N, id enode.ID) bool {
|
|
for _, n := range ns {
|
|
if n.ID() == id {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// deleteNode removes a node from the list.
|
|
func deleteNode[N nodeType](list []N, id enode.ID) []N {
|
|
return slices.DeleteFunc(list, func(n N) bool {
|
|
return n.ID() == id
|
|
})
|
|
}
|
|
|