mirror of
https://github.com/status-im/nim-libp2p.git
synced 2025-02-21 09:08:17 +00:00
with sugar
This commit is contained in:
parent
5e0870d4a4
commit
479c83c1df
@ -189,9 +189,8 @@ proc getGossipPeers(g: GossipSub): Table[string, ControlMessage] {.gcsafe.} =
|
|||||||
|
|
||||||
proc heartbeat(g: GossipSub) {.async.} =
|
proc heartbeat(g: GossipSub) {.async.} =
|
||||||
while g.heartbeatRunning:
|
while g.heartbeatRunning:
|
||||||
await g.heartbeatLock.acquire()
|
withLock g.heartbeatLock:
|
||||||
try:
|
try:
|
||||||
|
|
||||||
trace "running heartbeat"
|
trace "running heartbeat"
|
||||||
|
|
||||||
for t in toSeq(g.topics.keys):
|
for t in toSeq(g.topics.keys):
|
||||||
@ -215,8 +214,6 @@ proc heartbeat(g: GossipSub) {.async.} =
|
|||||||
raise exc
|
raise exc
|
||||||
except CatchableError as exc:
|
except CatchableError as exc:
|
||||||
trace "exception ocurred in gossipsub heartbeat", exc = exc.msg
|
trace "exception ocurred in gossipsub heartbeat", exc = exc.msg
|
||||||
finally:
|
|
||||||
g.heartbeatLock.release()
|
|
||||||
|
|
||||||
await sleepAsync(1.seconds)
|
await sleepAsync(1.seconds)
|
||||||
|
|
||||||
@ -227,8 +224,7 @@ method handleDisconnect*(g: GossipSub, peer: PubSubPeer) {.async.} =
|
|||||||
await procCall FloodSub(g).handleDisconnect(peer)
|
await procCall FloodSub(g).handleDisconnect(peer)
|
||||||
|
|
||||||
# must avoid running this while manipulating mesh/gossip tables
|
# must avoid running this while manipulating mesh/gossip tables
|
||||||
await g.heartbeatLock.acquire()
|
withLock g.heartbeatLock:
|
||||||
try:
|
|
||||||
for t in toSeq(g.gossipsub.keys):
|
for t in toSeq(g.gossipsub.keys):
|
||||||
g.gossipsub[t].excl(peer.id)
|
g.gossipsub[t].excl(peer.id)
|
||||||
|
|
||||||
@ -249,8 +245,6 @@ method handleDisconnect*(g: GossipSub, peer: PubSubPeer) {.async.} =
|
|||||||
|
|
||||||
libp2p_gossipsub_peers_per_topic_fanout
|
libp2p_gossipsub_peers_per_topic_fanout
|
||||||
.set(g.fanout[t].len.int64, labelValues = [t])
|
.set(g.fanout[t].len.int64, labelValues = [t])
|
||||||
finally:
|
|
||||||
g.heartbeatLock.release()
|
|
||||||
|
|
||||||
method subscribeToPeer*(p: GossipSub,
|
method subscribeToPeer*(p: GossipSub,
|
||||||
conn: Connection) {.async.} =
|
conn: Connection) {.async.} =
|
||||||
@ -264,8 +258,7 @@ method subscribeTopic*(g: GossipSub,
|
|||||||
await procCall PubSub(g).subscribeTopic(topic, subscribe, peerId)
|
await procCall PubSub(g).subscribeTopic(topic, subscribe, peerId)
|
||||||
|
|
||||||
# must avoid running this while manipulating mesh/gossip tables
|
# must avoid running this while manipulating mesh/gossip tables
|
||||||
await g.heartbeatLock.acquire()
|
withLock g.heartbeatLock:
|
||||||
try:
|
|
||||||
if topic notin g.gossipsub:
|
if topic notin g.gossipsub:
|
||||||
g.gossipsub[topic] = initHashSet[string]()
|
g.gossipsub[topic] = initHashSet[string]()
|
||||||
|
|
||||||
@ -282,8 +275,6 @@ method subscribeTopic*(g: GossipSub,
|
|||||||
.set(g.gossipsub[topic].len.int64, labelValues = [topic])
|
.set(g.gossipsub[topic].len.int64, labelValues = [topic])
|
||||||
|
|
||||||
trace "gossip peers", peers = g.gossipsub[topic].len, topic
|
trace "gossip peers", peers = g.gossipsub[topic].len, topic
|
||||||
finally:
|
|
||||||
g.heartbeatLock.release()
|
|
||||||
|
|
||||||
proc handleGraft(g: GossipSub,
|
proc handleGraft(g: GossipSub,
|
||||||
peer: PubSubPeer,
|
peer: PubSubPeer,
|
||||||
@ -486,14 +477,11 @@ method publish*(g: GossipSub,
|
|||||||
trace "publish: sending message to peer", peer = p
|
trace "publish: sending message to peer", peer = p
|
||||||
sent.add(peer.send(@[RPCMsg(messages: @[msg])]))
|
sent.add(peer.send(@[RPCMsg(messages: @[msg])]))
|
||||||
else:
|
else:
|
||||||
# Notice this needs a better fix! for now it's a hack
|
# this absolutely should not happen
|
||||||
error "publish: peer or peerInfo was nil", missing = p
|
# if it happens there is a bug that needs fixing asap
|
||||||
if topic in g.mesh:
|
# this ain't no place to manage connections
|
||||||
g.mesh[topic].excl(p)
|
fatal "publish: peer or peerInfo was nil", missing = p
|
||||||
if topic in g.fanout:
|
doAssert(false, "publish: peer or peerInfo was nil")
|
||||||
g.fanout[topic].excl(p)
|
|
||||||
if topic in g.gossipsub:
|
|
||||||
g.gossipsub[topic].excl(p)
|
|
||||||
|
|
||||||
sent = await allFinished(sent)
|
sent = await allFinished(sent)
|
||||||
checkFutures(sent)
|
checkFutures(sent)
|
||||||
@ -511,31 +499,24 @@ method start*(g: GossipSub) {.async.} =
|
|||||||
## start pubsub
|
## start pubsub
|
||||||
## start long running/repeating procedures
|
## start long running/repeating procedures
|
||||||
|
|
||||||
# interlock start to to avoid overlapping to stops
|
withLock g.heartbeatLock:
|
||||||
await g.heartbeatLock.acquire()
|
|
||||||
|
|
||||||
# setup the heartbeat interval
|
# setup the heartbeat interval
|
||||||
g.heartbeatRunning = true
|
g.heartbeatRunning = true
|
||||||
g.heartbeatFut = g.heartbeat()
|
g.heartbeatFut = g.heartbeat()
|
||||||
|
|
||||||
g.heartbeatLock.release()
|
|
||||||
|
|
||||||
method stop*(g: GossipSub) {.async.} =
|
method stop*(g: GossipSub) {.async.} =
|
||||||
trace "gossipsub stop"
|
trace "gossipsub stop"
|
||||||
|
|
||||||
## stop pubsub
|
## stop pubsub
|
||||||
## stop long running tasks
|
## stop long running tasks
|
||||||
|
|
||||||
await g.heartbeatLock.acquire()
|
withLock g.heartbeatLock:
|
||||||
|
|
||||||
# stop heartbeat interval
|
# stop heartbeat interval
|
||||||
g.heartbeatRunning = false
|
g.heartbeatRunning = false
|
||||||
if not g.heartbeatFut.finished:
|
if not g.heartbeatFut.finished:
|
||||||
trace "awaiting last heartbeat"
|
trace "awaiting last heartbeat"
|
||||||
await g.heartbeatFut
|
await g.heartbeatFut
|
||||||
|
|
||||||
g.heartbeatLock.release()
|
|
||||||
|
|
||||||
method initPubSub*(g: GossipSub) =
|
method initPubSub*(g: GossipSub) =
|
||||||
procCall FloodSub(g).initPubSub()
|
procCall FloodSub(g).initPubSub()
|
||||||
|
|
||||||
|
@ -35,3 +35,10 @@ func shortLog*(item: string): string =
|
|||||||
result &= item[0..<split]
|
result &= item[0..<split]
|
||||||
result &= "..."
|
result &= "..."
|
||||||
result &= item[(item.len - split)..item.high]
|
result &= item[(item.len - split)..item.high]
|
||||||
|
|
||||||
|
template withLock*(l: auto, body: untyped): untyped =
|
||||||
|
await l.acquire()
|
||||||
|
try:
|
||||||
|
body
|
||||||
|
finally:
|
||||||
|
l.release()
|
Loading…
x
Reference in New Issue
Block a user