60 lines
1.8 KiB
Nim
60 lines
1.8 KiB
Nim
## Nim-LibP2P
|
|
## Copyright (c) 2018 Status Research & Development GmbH
|
|
## Licensed under either of
|
|
## * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
## * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
## at your option.
|
|
## This file may not be copied, modified, or distributed except according to
|
|
## those terms.
|
|
|
|
import options
|
|
import chronos, chronicles
|
|
import ../../connection,
|
|
../../protobuf/minprotobuf,
|
|
../../peerinfo,
|
|
../../peer,
|
|
rpcmsg
|
|
|
|
logScope:
|
|
topic = "PubSubPeer"
|
|
|
|
type
|
|
PubSubPeer* = ref object of RootObj
|
|
peerInfo*: PeerInfo
|
|
conn*: Connection
|
|
handler*: RPCHandler
|
|
topics*: seq[string]
|
|
id*: string # base58 peer id string
|
|
|
|
RPCHandler* = proc(peer: PubSubPeer, msg: seq[RPCMsg]): Future[void] {.gcsafe.}
|
|
|
|
proc handle*(p: PubSubPeer) {.async, gcsafe.} =
|
|
debug "pubsub rpc", peer = p.id
|
|
try:
|
|
while not p.conn.closed:
|
|
let data = await p.conn.readLp()
|
|
debug "Read data from peer", peer = p.peerInfo, data = data
|
|
let msg = decodeRpcMsg(data)
|
|
debug "Decoded msg from peer", peer = p.peerInfo, msg = msg
|
|
await p.handler(p, @[msg])
|
|
except:
|
|
debug "An exception occured while processing pubsub rpc requests", exc = getCurrentExceptionMsg()
|
|
return
|
|
finally:
|
|
debug "closing connection to pubsub peer", peer = p.id
|
|
await p.conn.close()
|
|
|
|
proc send*(p: PubSubPeer, msgs: seq[RPCMsg]) {.async, gcsafe.} =
|
|
for m in msgs:
|
|
debug "sending msgs to peer", peer = p.id, msgs = msgs
|
|
let encoded = encodeRpcMsg(m)
|
|
if encoded.buffer.len > 0:
|
|
await p.conn.writeLp(encoded.buffer)
|
|
|
|
proc newPubSubPeer*(conn: Connection, handler: RPCHandler): PubSubPeer =
|
|
new result
|
|
result.handler = handler
|
|
result.conn = conn
|
|
result.peerInfo = conn.peerInfo
|
|
result.id = conn.peerInfo.peerId.get().pretty()
|