nwaku/waku/v2/protocol/waku_relay.nim

88 lines
2.4 KiB
Nim
Raw Normal View History

## Waku Relay module. Thin layer on top of GossipSub.
2020-04-29 05:02:42 +00:00
##
## See https://github.com/vacp2p/specs/blob/master/specs/waku/v2/waku-relay.md
## for spec.
2020-04-29 05:02:42 +00:00
import
chronos, chronicles, metrics,
libp2p/protocols/pubsub/[pubsub, gossipsub],
libp2p/protocols/pubsub/rpc/messages,
libp2p/stream/connection
2020-05-01 05:00:00 +00:00
logScope:
topics = "wakurelay"
2020-05-01 05:00:00 +00:00
2020-12-22 11:50:20 +00:00
const WakuRelayCodec* = "/vac/waku/relay/2.0.0-beta2"
2020-05-01 05:00:00 +00:00
type
WakuRelay* = ref object of GossipSub
method init*(w: WakuRelay) =
debug "init"
proc handler(conn: Connection, proto: string) {.async.} =
## main protocol handler that gets triggered on every
## connection for a protocol string
## e.g. ``/wakusub/0.0.1``, etc...
##
debug "Incoming WakuRelay connection"
await w.handleConn(conn, proto)
# XXX: Handler hijack GossipSub here?
w.handler = handler
w.codec = WakuRelayCodec
method initPubSub*(w: WakuRelay) =
debug "initWakuRelay"
2020-06-02 11:27:53 +00:00
# after discussions with @sinkingsugar, this is essentially what is needed for
# the libp2p `StrictNoSign` policy
w.anonymize = true
w.verifySignature = false
w.sign = false
# Here we can fine-tune GossipSub params for our purposes
w.parameters = GossipSubParams.init()
# Setting pruneBackoff allows us to restart nodes and trigger a re-subscribe within reasonable time.
w.parameters.pruneBackoff = 30.seconds
procCall GossipSub(w).initPubSub()
2020-06-02 11:27:53 +00:00
w.init()
method subscribe*(w: WakuRelay,
pubSubTopic: string,
handler: TopicHandler) =
debug "subscribe", pubSubTopic=pubSubTopic
procCall GossipSub(w).subscribe(pubSubTopic, handler)
method publish*(w: WakuRelay,
pubSubTopic: string,
message: seq[byte]
): Future[int] {.async.} =
debug "publish", pubSubTopic=pubSubTopic, message=message
2020-06-02 11:27:53 +00:00
return await procCall GossipSub(w).publish(pubSubTopic, message)
method unsubscribe*(w: WakuRelay,
topics: seq[TopicPair]) =
debug "unsubscribe"
procCall GossipSub(w).unsubscribe(topics)
method unsubscribeAll*(w: WakuRelay,
pubSubTopic: string) =
debug "unsubscribeAll"
procCall GossipSub(w).unsubscribeAll(pubSubTopic)
# GossipSub specific methods --------------------------------------------------
method start*(w: WakuRelay) {.async.} =
debug "start"
await procCall GossipSub(w).start()
method stop*(w: WakuRelay) {.async.} =
debug "stop"
await procCall GossipSub(w).stop()