mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
37 lines
896 B
Go
37 lines
896 B
Go
|
package p2p
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/ethereum/go-ethereum/p2p/enode"
|
||
|
)
|
||
|
|
||
|
// filterNodes wraps an iterator such that Next only returns nodes for which
|
||
|
// the 'check' function returns true. This custom implementation also
|
||
|
// checks for context deadlines so that in the event the parent context has
|
||
|
// expired, we do exit from the search rather than perform more network
|
||
|
// lookups for additional peers.
|
||
|
func filterNodes(ctx context.Context, it enode.Iterator, check func(*enode.Node) bool) enode.Iterator {
|
||
|
return &filterIter{ctx, it, check}
|
||
|
}
|
||
|
|
||
|
type filterIter struct {
|
||
|
context.Context
|
||
|
enode.Iterator
|
||
|
check func(*enode.Node) bool
|
||
|
}
|
||
|
|
||
|
// Next looks up for the next valid node according to our
|
||
|
// filter criteria.
|
||
|
func (f *filterIter) Next() bool {
|
||
|
for f.Iterator.Next() {
|
||
|
if f.Context.Err() != nil {
|
||
|
return false
|
||
|
}
|
||
|
if f.check(f.Node()) {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
return false
|
||
|
}
|