diff options
author | Ferenc Szabo <frncmx@gmail.com> | 2019-01-11 17:23:45 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2019-01-11 17:23:45 +0800 |
commit | 2eb838ed9776c9c3ec922e1116a5d50babda31c5 (patch) | |
tree | 1ad75862e2c0e7bcff2ec898c1f757c58eaaa650 /p2p/simulations/connect.go | |
parent | 38cce9ac333d674616047be14c270d7cfbd43641 (diff) | |
download | dexon-2eb838ed9776c9c3ec922e1116a5d50babda31c5.tar dexon-2eb838ed9776c9c3ec922e1116a5d50babda31c5.tar.gz dexon-2eb838ed9776c9c3ec922e1116a5d50babda31c5.tar.bz2 dexon-2eb838ed9776c9c3ec922e1116a5d50babda31c5.tar.lz dexon-2eb838ed9776c9c3ec922e1116a5d50babda31c5.tar.xz dexon-2eb838ed9776c9c3ec922e1116a5d50babda31c5.tar.zst dexon-2eb838ed9776c9c3ec922e1116a5d50babda31c5.zip |
p2p/simulations: eliminate concept of pivot (#18426)
Diffstat (limited to 'p2p/simulations/connect.go')
-rw-r--r-- | p2p/simulations/connect.go | 52 |
1 files changed, 4 insertions, 48 deletions
diff --git a/p2p/simulations/connect.go b/p2p/simulations/connect.go index 606dda056..bb7e7999a 100644 --- a/p2p/simulations/connect.go +++ b/p2p/simulations/connect.go @@ -25,21 +25,8 @@ import ( var ( ErrNodeNotFound = errors.New("node not found") - ErrNoPivotNode = errors.New("no pivot node set") ) -// ConnectToPivotNode connects the node with provided NodeID -// to the pivot node, already set by Network.SetPivotNode method. -// It is useful when constructing a star network topology -// when Network adds and removes nodes dynamically. -func (net *Network) ConnectToPivotNode(id enode.ID) (err error) { - pivot := net.GetPivotNode() - if pivot == nil { - return ErrNoPivotNode - } - return net.connect(pivot.ID(), id) -} - // ConnectToLastNode connects the node with provided NodeID // to the last node that is up, and avoiding connection to self. // It is useful when constructing a chain network topology @@ -115,35 +102,23 @@ func (net *Network) ConnectNodesRing(ids []enode.ID) (err error) { return net.connect(ids[l-1], ids[0]) } -// ConnectNodesStar connects all nodes in a star topology -// with the center at provided NodeID. +// ConnectNodesStar connects all nodes into a star topology // If ids argument is nil, all nodes that are up will be connected. -func (net *Network) ConnectNodesStar(pivot enode.ID, ids []enode.ID) (err error) { +func (net *Network) ConnectNodesStar(ids []enode.ID, center enode.ID) (err error) { if ids == nil { ids = net.getUpNodeIDs() } for _, id := range ids { - if pivot == id { + if center == id { continue } - if err := net.connect(pivot, id); err != nil { + if err := net.connect(center, id); err != nil { return err } } return nil } -// ConnectNodesStarPivot connects all nodes in a star topology -// with the center at already set pivot node. -// If ids argument is nil, all nodes that are up will be connected. -func (net *Network) ConnectNodesStarPivot(ids []enode.ID) (err error) { - pivot := net.GetPivotNode() - if pivot == nil { - return ErrNoPivotNode - } - return net.ConnectNodesStar(pivot.ID(), ids) -} - // connect connects two nodes but ignores already connected error. func (net *Network) connect(oneID, otherID enode.ID) error { return ignoreAlreadyConnectedErr(net.Connect(oneID, otherID)) @@ -155,22 +130,3 @@ func ignoreAlreadyConnectedErr(err error) error { } return err } - -// SetPivotNode sets the NodeID of the network's pivot node. -// Pivot node is just a specific node that should be treated -// differently then other nodes in test. SetPivotNode and -// GetPivotNode are just a convenient functions to set and -// retrieve it. -func (net *Network) SetPivotNode(id enode.ID) { - net.lock.Lock() - defer net.lock.Unlock() - net.pivotNodeID = id -} - -// GetPivotNode returns NodeID of the pivot node set by -// Network.SetPivotNode method. -func (net *Network) GetPivotNode() (node *Node) { - net.lock.RLock() - defer net.lock.RUnlock() - return net.getNode(net.pivotNodeID) -} |