use LPError more consistently (#582)
* use LPError more consistently * don't use Exceptino * annotate with raises * don't panic on concatenation * further rework error handling
This commit is contained in:
parent
1b94c3feda
commit
3da656687b
|
@ -168,8 +168,7 @@ proc build*(b: SwitchBuilder): Switch
|
||||||
if isNil(b.rng):
|
if isNil(b.rng):
|
||||||
b.rng = newRng()
|
b.rng = newRng()
|
||||||
|
|
||||||
let switch = try:
|
let switch = newSwitch(
|
||||||
newSwitch(
|
|
||||||
peerInfo = peerInfo,
|
peerInfo = peerInfo,
|
||||||
transports = transports,
|
transports = transports,
|
||||||
identity = identify,
|
identity = identify,
|
||||||
|
@ -179,8 +178,6 @@ proc build*(b: SwitchBuilder): Switch
|
||||||
maxIn = b.maxIn,
|
maxIn = b.maxIn,
|
||||||
maxOut = b.maxOut,
|
maxOut = b.maxOut,
|
||||||
maxConnsPerPeer = b.maxConnsPerPeer)
|
maxConnsPerPeer = b.maxConnsPerPeer)
|
||||||
except CatchableError as exc:
|
|
||||||
raise newException(Defect, exc.msg)
|
|
||||||
|
|
||||||
return switch
|
return switch
|
||||||
|
|
||||||
|
|
|
@ -375,18 +375,18 @@ proc selectMuxer*(c: ConnManager, conn: Connection): Muxer =
|
||||||
debug "no muxer for connection", conn
|
debug "no muxer for connection", conn
|
||||||
|
|
||||||
proc storeConn*(c: ConnManager, conn: Connection)
|
proc storeConn*(c: ConnManager, conn: Connection)
|
||||||
{.raises: [Defect, CatchableError].} =
|
{.raises: [Defect, LPError].} =
|
||||||
## store a connection
|
## store a connection
|
||||||
##
|
##
|
||||||
|
|
||||||
if isNil(conn):
|
if isNil(conn):
|
||||||
raise newException(CatchableError, "Connection cannot be nil")
|
raise newException(LPError, "Connection cannot be nil")
|
||||||
|
|
||||||
if conn.closed or conn.atEof:
|
if conn.closed or conn.atEof:
|
||||||
raise newException(CatchableError, "Connection closed or EOF")
|
raise newException(LPError, "Connection closed or EOF")
|
||||||
|
|
||||||
if isNil(conn.peerInfo):
|
if isNil(conn.peerInfo):
|
||||||
raise newException(CatchableError, "Empty peer info")
|
raise newException(LPError, "Empty peer info")
|
||||||
|
|
||||||
let peerId = conn.peerInfo.peerId
|
let peerId = conn.peerInfo.peerId
|
||||||
if c.conns.getOrDefault(peerId).len > c.maxConnsPerPeer:
|
if c.conns.getOrDefault(peerId).len > c.maxConnsPerPeer:
|
||||||
|
|
|
@ -14,10 +14,10 @@ import std/[os, osproc, strutils, tables, strtabs]
|
||||||
import pkg/[chronos, chronicles]
|
import pkg/[chronos, chronicles]
|
||||||
import ../varint, ../multiaddress, ../multicodec, ../cid, ../peerid
|
import ../varint, ../multiaddress, ../multicodec, ../cid, ../peerid
|
||||||
import ../wire, ../multihash, ../protobuf/minprotobuf
|
import ../wire, ../multihash, ../protobuf/minprotobuf
|
||||||
import ../crypto/crypto
|
import ../crypto/crypto, ../errors
|
||||||
|
|
||||||
export
|
export
|
||||||
peerid, multiaddress, multicodec, multihash, cid, crypto, wire
|
peerid, multiaddress, multicodec, multihash, cid, crypto, wire, errors
|
||||||
|
|
||||||
when not defined(windows):
|
when not defined(windows):
|
||||||
import posix
|
import posix
|
||||||
|
@ -501,7 +501,8 @@ proc recvMessage(conn: StreamTransport): Future[seq[byte]] {.async.} =
|
||||||
|
|
||||||
result = buffer
|
result = buffer
|
||||||
|
|
||||||
proc newConnection*(api: DaemonAPI): Future[StreamTransport] =
|
proc newConnection*(api: DaemonAPI): Future[StreamTransport]
|
||||||
|
{.raises: [Defect, LPError].} =
|
||||||
result = connect(api.address)
|
result = connect(api.address)
|
||||||
|
|
||||||
proc closeConnection*(api: DaemonAPI, transp: StreamTransport): Future[void] =
|
proc closeConnection*(api: DaemonAPI, transp: StreamTransport): Future[void] =
|
||||||
|
@ -936,10 +937,10 @@ proc streamHandler(server: StreamServer, transp: StreamTransport) {.async.} =
|
||||||
if len(stream.protocol) > 0:
|
if len(stream.protocol) > 0:
|
||||||
var handler = api.handlers.getOrDefault(stream.protocol)
|
var handler = api.handlers.getOrDefault(stream.protocol)
|
||||||
if not isNil(handler):
|
if not isNil(handler):
|
||||||
asyncCheck handler(api, stream)
|
asyncSpawn handler(api, stream)
|
||||||
|
|
||||||
proc addHandler*(api: DaemonAPI, protocols: seq[string],
|
proc addHandler*(api: DaemonAPI, protocols: seq[string],
|
||||||
handler: P2PStreamCallback) {.async.} =
|
handler: P2PStreamCallback) {.async, raises: [Defect, LPError].} =
|
||||||
## Add stream handler ``handler`` for set of protocols ``protocols``.
|
## Add stream handler ``handler`` for set of protocols ``protocols``.
|
||||||
var transp = await api.newConnection()
|
var transp = await api.newConnection()
|
||||||
let maddress = await getSocket(api.pattern, addr api.ucounter)
|
let maddress = await getSocket(api.pattern, addr api.ucounter)
|
||||||
|
@ -1324,7 +1325,7 @@ proc pubsubSubscribe*(api: DaemonAPI, topic: string,
|
||||||
ticket.topic = topic
|
ticket.topic = topic
|
||||||
ticket.handler = handler
|
ticket.handler = handler
|
||||||
ticket.transp = transp
|
ticket.transp = transp
|
||||||
asyncCheck pubsubLoop(api, ticket)
|
asyncSpawn pubsubLoop(api, ticket)
|
||||||
result = ticket
|
result = ticket
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
await api.closeConnection(transp)
|
await api.closeConnection(transp)
|
||||||
|
|
|
@ -8,14 +8,17 @@ import macros
|
||||||
type
|
type
|
||||||
# Base exception type for libp2p
|
# Base exception type for libp2p
|
||||||
LPError* = object of CatchableError
|
LPError* = object of CatchableError
|
||||||
LPAllFuturesError* = object of LPError
|
|
||||||
errors*: seq[ref CatchableError]
|
|
||||||
|
|
||||||
# could not figure how to make it with a simple template
|
func toException*(e: cstring): ref LPError =
|
||||||
|
(ref LPError)(msg: $e)
|
||||||
|
|
||||||
|
func toException*(e: string): ref LPError =
|
||||||
|
(ref LPError)(msg: e)
|
||||||
|
|
||||||
|
# TODO: could not figure how to make it with a simple template
|
||||||
# sadly nim needs more love for hygienic templates
|
# sadly nim needs more love for hygienic templates
|
||||||
# so here goes the macro, its based on the proc/template version
|
# so here goes the macro, its based on the proc/template version
|
||||||
# and uses quote do so it's quite readable
|
# and uses quote do so it's quite readable
|
||||||
|
|
||||||
macro checkFutures*[T](futs: seq[Future[T]], exclude: untyped = []): untyped =
|
macro checkFutures*[T](futs: seq[Future[T]], exclude: untyped = []): untyped =
|
||||||
let nexclude = exclude.len
|
let nexclude = exclude.len
|
||||||
case nexclude
|
case nexclude
|
||||||
|
|
|
@ -909,20 +909,23 @@ proc append*(m1: var MultiAddress, m2: MultiAddress): MaResult[void] =
|
||||||
ok()
|
ok()
|
||||||
|
|
||||||
proc `&`*(m1, m2: MultiAddress): MultiAddress {.
|
proc `&`*(m1, m2: MultiAddress): MultiAddress {.
|
||||||
raises: [Defect, ResultError[string]].} =
|
raises: [Defect, LPError].} =
|
||||||
## Concatenates two addresses ``m1`` and ``m2``, and returns result.
|
## Concatenates two addresses ``m1`` and ``m2``, and returns result.
|
||||||
##
|
##
|
||||||
## This procedure performs validation of concatenated result and can raise
|
## This procedure performs validation of concatenated result and can raise
|
||||||
## exception on error.
|
## exception on error.
|
||||||
|
##
|
||||||
|
|
||||||
concat(m1, m2).tryGet()
|
concat(m1, m2).tryGet()
|
||||||
|
|
||||||
proc `&=`*(m1: var MultiAddress, m2: MultiAddress) {.
|
proc `&=`*(m1: var MultiAddress, m2: MultiAddress) {.
|
||||||
raises: [Defect, ResultError[string]].} =
|
raises: [Defect, LPError].} =
|
||||||
## Concatenates two addresses ``m1`` and ``m2``.
|
## Concatenates two addresses ``m1`` and ``m2``.
|
||||||
##
|
##
|
||||||
## This procedure performs validation of concatenated result and can raise
|
## This procedure performs validation of concatenated result and can raise
|
||||||
## exception on error.
|
## exception on error.
|
||||||
##
|
##
|
||||||
|
|
||||||
m1.append(m2).tryGet()
|
m1.append(m2).tryGet()
|
||||||
|
|
||||||
proc isWire*(ma: MultiAddress): bool =
|
proc isWire*(ma: MultiAddress): bool =
|
||||||
|
|
|
@ -29,6 +29,8 @@ const
|
||||||
type
|
type
|
||||||
Matcher* = proc (proto: string): bool {.gcsafe, raises: [Defect].}
|
Matcher* = proc (proto: string): bool {.gcsafe, raises: [Defect].}
|
||||||
|
|
||||||
|
MultiStreamError* = object of LPError
|
||||||
|
|
||||||
HandlerHolder* = object
|
HandlerHolder* = object
|
||||||
protos*: seq[string]
|
protos*: seq[string]
|
||||||
protocol*: LPProtocol
|
protocol*: LPProtocol
|
||||||
|
@ -46,7 +48,7 @@ template validateSuffix(str: string): untyped =
|
||||||
if str.endsWith("\n"):
|
if str.endsWith("\n"):
|
||||||
str.removeSuffix("\n")
|
str.removeSuffix("\n")
|
||||||
else:
|
else:
|
||||||
raise newException(CatchableError, "MultistreamSelect failed, malformed message")
|
raise newException(MultiStreamError, "MultistreamSelect failed, malformed message")
|
||||||
|
|
||||||
proc select*(m: MultistreamSelect,
|
proc select*(m: MultistreamSelect,
|
||||||
conn: Connection,
|
conn: Connection,
|
||||||
|
@ -64,7 +66,7 @@ proc select*(m: MultistreamSelect,
|
||||||
|
|
||||||
if s != Codec:
|
if s != Codec:
|
||||||
notice "handshake failed", conn, codec = s
|
notice "handshake failed", conn, codec = s
|
||||||
raise newException(CatchableError, "MultistreamSelect handshake failed")
|
raise newException(MultiStreamError, "MultistreamSelect handshake failed")
|
||||||
else:
|
else:
|
||||||
trace "multistream handshake success", conn
|
trace "multistream handshake success", conn
|
||||||
|
|
||||||
|
|
|
@ -53,12 +53,6 @@ func shortLog*(p: PeerInfo): auto =
|
||||||
)
|
)
|
||||||
chronicles.formatIt(PeerInfo): shortLog(it)
|
chronicles.formatIt(PeerInfo): shortLog(it)
|
||||||
|
|
||||||
func toException*(e: string): ref PeerInfoError =
|
|
||||||
(ref PeerInfoError)(msg: e)
|
|
||||||
|
|
||||||
func toException*(e: cstring): ref PeerInfoError =
|
|
||||||
(ref PeerInfoError)(msg: $e)
|
|
||||||
|
|
||||||
template postInit(peerinfo: PeerInfo,
|
template postInit(peerinfo: PeerInfo,
|
||||||
addrs: openarray[MultiAddress],
|
addrs: openarray[MultiAddress],
|
||||||
protocols: openarray[string]) =
|
protocols: openarray[string]) =
|
||||||
|
|
|
@ -163,7 +163,7 @@ proc connectOnce(p: PubSubPeer): Future[void] {.async.} =
|
||||||
try:
|
try:
|
||||||
let newConn = await p.getConn()
|
let newConn = await p.getConn()
|
||||||
if newConn.isNil:
|
if newConn.isNil:
|
||||||
raise (ref CatchableError)(msg: "Cannot establish send connection")
|
raise (ref LPError)(msg: "Cannot establish send connection")
|
||||||
|
|
||||||
# When the send channel goes up, subscriptions need to be sent to the
|
# When the send channel goes up, subscriptions need to be sent to the
|
||||||
# remote peer - if we had multiple channels up and one goes down, all
|
# remote peer - if we had multiple channels up and one goes down, all
|
||||||
|
|
|
@ -65,7 +65,8 @@ proc init*(
|
||||||
data: seq[byte],
|
data: seq[byte],
|
||||||
topic: string,
|
topic: string,
|
||||||
seqno: Option[uint64],
|
seqno: Option[uint64],
|
||||||
sign: bool = true): Message {.gcsafe, raises: [CatchableError, Defect].} =
|
sign: bool = true): Message
|
||||||
|
{.gcsafe, raises: [Defect, LPError].} =
|
||||||
var msg = Message(data: data, topicIDs: @[topic])
|
var msg = Message(data: data, topicIDs: @[topic])
|
||||||
|
|
||||||
# order matters, we want to include seqno in the signature
|
# order matters, we want to include seqno in the signature
|
||||||
|
@ -77,10 +78,15 @@ proc init*(
|
||||||
msg.fromPeer = peer.peerId
|
msg.fromPeer = peer.peerId
|
||||||
if sign:
|
if sign:
|
||||||
if peer.keyType != KeyType.HasPrivate:
|
if peer.keyType != KeyType.HasPrivate:
|
||||||
raise (ref CatchableError)(msg: "Cannot sign message without private key")
|
raise (ref LPError)(msg: "Cannot sign message without private key")
|
||||||
msg.signature = sign(msg, peer.privateKey).tryGet()
|
|
||||||
msg.key = peer.privateKey.getKey().tryGet().getBytes().tryGet()
|
msg.signature = sign(msg, peer.privateKey).expect("Couldn't sign message!")
|
||||||
|
msg.key = peer.privateKey
|
||||||
|
.getKey()
|
||||||
|
.expect("Expected a Private Key!")
|
||||||
|
.getBytes()
|
||||||
|
.expect("Couldn't get Private Key bytes!")
|
||||||
elif sign:
|
elif sign:
|
||||||
raise (ref CatchableError)(msg: "Cannot sign message without peer info")
|
raise (ref LPError)(msg: "Cannot sign message without peer info")
|
||||||
|
|
||||||
msg
|
msg
|
||||||
|
|
|
@ -84,16 +84,16 @@ proc getStreamTracker(name: string): StreamTracker {.gcsafe.} =
|
||||||
if isNil(result):
|
if isNil(result):
|
||||||
result = setupStreamTracker(name)
|
result = setupStreamTracker(name)
|
||||||
|
|
||||||
proc newLPStreamReadError*(p: ref CatchableError): ref CatchableError =
|
proc newLPStreamReadError*(p: ref CatchableError): ref LPStreamReadError =
|
||||||
var w = newException(LPStreamReadError, "Read stream failed")
|
var w = newException(LPStreamReadError, "Read stream failed")
|
||||||
w.msg = w.msg & ", originated from [" & $p.name & "] " & p.msg
|
w.msg = w.msg & ", originated from [" & $p.name & "] " & p.msg
|
||||||
w.par = p
|
w.par = p
|
||||||
result = w
|
result = w
|
||||||
|
|
||||||
proc newLPStreamReadError*(msg: string): ref CatchableError =
|
proc newLPStreamReadError*(msg: string): ref LPStreamReadError =
|
||||||
newException(LPStreamReadError, msg)
|
newException(LPStreamReadError, msg)
|
||||||
|
|
||||||
proc newLPStreamWriteError*(p: ref CatchableError): ref CatchableError =
|
proc newLPStreamWriteError*(p: ref CatchableError): ref LPStreamWriteError =
|
||||||
var w = newException(LPStreamWriteError, "Write stream failed")
|
var w = newException(LPStreamWriteError, "Write stream failed")
|
||||||
w.msg = w.msg & ", originated from [" & $p.name & "] " & p.msg
|
w.msg = w.msg & ", originated from [" & $p.name & "] " & p.msg
|
||||||
w.par = p
|
w.par = p
|
||||||
|
|
|
@ -279,13 +279,13 @@ proc dial*(s: Switch,
|
||||||
Future[Connection] = dial(s, peerId, addrs, @[proto])
|
Future[Connection] = dial(s, peerId, addrs, @[proto])
|
||||||
|
|
||||||
proc mount*[T: LPProtocol](s: Switch, proto: T, matcher: Matcher = nil)
|
proc mount*[T: LPProtocol](s: Switch, proto: T, matcher: Matcher = nil)
|
||||||
{.gcsafe, raises: [Defect, CatchableError].} =
|
{.gcsafe, raises: [Defect, LPError].} =
|
||||||
if isNil(proto.handler):
|
if isNil(proto.handler):
|
||||||
raise newException(CatchableError,
|
raise newException(LPError,
|
||||||
"Protocol has to define a handle method or proc")
|
"Protocol has to define a handle method or proc")
|
||||||
|
|
||||||
if proto.codec.len == 0:
|
if proto.codec.len == 0:
|
||||||
raise newException(CatchableError,
|
raise newException(LPError,
|
||||||
"Protocol has to define a codec string")
|
"Protocol has to define a codec string")
|
||||||
|
|
||||||
s.ms.addHandler(proto.codecs, proto, matcher)
|
s.ms.addHandler(proto.codecs, proto, matcher)
|
||||||
|
@ -408,10 +408,10 @@ proc newSwitch*(peerInfo: PeerInfo,
|
||||||
maxIn = -1,
|
maxIn = -1,
|
||||||
maxOut = -1,
|
maxOut = -1,
|
||||||
maxConnsPerPeer = MaxConnectionsPerPeer): Switch
|
maxConnsPerPeer = MaxConnectionsPerPeer): Switch
|
||||||
{.raises: [Defect, CatchableError].} =
|
{.raises: [Defect, LPError].} =
|
||||||
|
|
||||||
if secureManagers.len == 0:
|
if secureManagers.len == 0:
|
||||||
raise (ref CatchableError)(msg: "Provide at least one secure manager")
|
raise (ref LPError)(msg: "Provide at least one secure manager")
|
||||||
|
|
||||||
let ms = newMultistream()
|
let ms = newMultistream()
|
||||||
let connManager = ConnManager.init(maxConnsPerPeer, maxConnections, maxIn, maxOut)
|
let connManager = ConnManager.init(maxConnsPerPeer, maxConnections, maxIn, maxOut)
|
||||||
|
|
|
@ -20,14 +20,15 @@ logScope:
|
||||||
topics = "libp2p transport"
|
topics = "libp2p transport"
|
||||||
|
|
||||||
type
|
type
|
||||||
TransportClosedError* = object of CatchableError
|
TransportError* = object of LPError
|
||||||
|
TransportClosedError* = object of TransportError
|
||||||
|
|
||||||
Transport* = ref object of RootObj
|
Transport* = ref object of RootObj
|
||||||
ma*: Multiaddress
|
ma*: Multiaddress
|
||||||
multicodec*: MultiCodec
|
multicodec*: MultiCodec
|
||||||
running*: bool
|
running*: bool
|
||||||
|
|
||||||
proc newTransportClosedError*(parent: ref Exception = nil): ref CatchableError =
|
proc newTransportClosedError*(parent: ref Exception = nil): ref LPError =
|
||||||
newException(TransportClosedError,
|
newException(TransportClosedError,
|
||||||
"Transport closed, no more connections!", parent)
|
"Transport closed, no more connections!", parent)
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
## This module implements wire network connection procedures.
|
## This module implements wire network connection procedures.
|
||||||
import chronos, stew/endians2
|
import chronos, stew/endians2
|
||||||
import multiaddress, multicodec
|
import multiaddress, multicodec, errors
|
||||||
|
|
||||||
when defined(windows):
|
when defined(windows):
|
||||||
import winlean
|
import winlean
|
||||||
|
@ -30,8 +30,7 @@ const
|
||||||
mapAnd(mapEq("unix"))
|
mapAnd(mapEq("unix"))
|
||||||
)
|
)
|
||||||
|
|
||||||
proc initTAddress*(ma: MultiAddress): MaResult[TransportAddress]
|
proc initTAddress*(ma: MultiAddress): MaResult[TransportAddress] =
|
||||||
{.raises: [Defect, ResultError[string]].} =
|
|
||||||
## Initialize ``TransportAddress`` with MultiAddress ``ma``.
|
## Initialize ``TransportAddress`` with MultiAddress ``ma``.
|
||||||
##
|
##
|
||||||
## MultiAddress must be wire address, e.g. ``{IP4, IP6, UNIX}/{TCP, UDP}``.
|
## MultiAddress must be wire address, e.g. ``{IP4, IP6, UNIX}/{TCP, UDP}``.
|
||||||
|
@ -39,30 +38,30 @@ proc initTAddress*(ma: MultiAddress): MaResult[TransportAddress]
|
||||||
|
|
||||||
if TRANSPMA.match(ma):
|
if TRANSPMA.match(ma):
|
||||||
var pbuf: array[2, byte]
|
var pbuf: array[2, byte]
|
||||||
let code = ma[0].tryGet().protoCode().tryGet()
|
let code = (?(?ma[0]).protoCode())
|
||||||
if code == multiCodec("unix"):
|
if code == multiCodec("unix"):
|
||||||
var res = TransportAddress(family: AddressFamily.Unix)
|
var res = TransportAddress(family: AddressFamily.Unix)
|
||||||
if ma[0].tryGet().protoArgument(res.address_un).tryGet() == 0:
|
if (?(?ma[0]).protoArgument(res.address_un)) == 0:
|
||||||
err("Incorrect Unix domain address")
|
err("Incorrect Unix domain address")
|
||||||
else:
|
else:
|
||||||
res.port = Port(1)
|
res.port = Port(1)
|
||||||
ok(res)
|
ok(res)
|
||||||
elif code == multiCodec("ip4"):
|
elif code == multiCodec("ip4"):
|
||||||
var res = TransportAddress(family: AddressFamily.IPv4)
|
var res = TransportAddress(family: AddressFamily.IPv4)
|
||||||
if ma[0].tryGet().protoArgument(res.address_v4).tryGet() == 0:
|
if (?(?ma[0]).protoArgument(res.address_v4)) == 0:
|
||||||
err("Incorrect IPv4 address")
|
err("Incorrect IPv4 address")
|
||||||
else:
|
else:
|
||||||
if ma[1].tryGet().protoArgument(pbuf).tryGet() == 0:
|
if (?(?ma[1]).protoArgument(pbuf)) == 0:
|
||||||
err("Incorrect port number")
|
err("Incorrect port number")
|
||||||
else:
|
else:
|
||||||
res.port = Port(fromBytesBE(uint16, pbuf))
|
res.port = Port(fromBytesBE(uint16, pbuf))
|
||||||
ok(res)
|
ok(res)
|
||||||
else:
|
else:
|
||||||
var res = TransportAddress(family: AddressFamily.IPv6)
|
var res = TransportAddress(family: AddressFamily.IPv6)
|
||||||
if ma[0].tryGet().protoArgument(res.address_v6).tryGet() == 0:
|
if (?(?ma[0]).protoArgument(res.address_v6)) == 0:
|
||||||
err("Incorrect IPv6 address")
|
err("Incorrect IPv6 address")
|
||||||
else:
|
else:
|
||||||
if ma[1].tryGet().protoArgument(pbuf).tryGet() == 0:
|
if (?(?ma[1]).protoArgument(pbuf)) == 0:
|
||||||
err("Incorrect port number")
|
err("Incorrect port number")
|
||||||
else:
|
else:
|
||||||
res.port = Port(fromBytesBE(uint16, pbuf))
|
res.port = Port(fromBytesBE(uint16, pbuf))
|
||||||
|
@ -70,16 +69,20 @@ proc initTAddress*(ma: MultiAddress): MaResult[TransportAddress]
|
||||||
else:
|
else:
|
||||||
err("MultiAddress must be wire address (tcp, udp or unix)")
|
err("MultiAddress must be wire address (tcp, udp or unix)")
|
||||||
|
|
||||||
proc connect*(ma: MultiAddress, bufferSize = DefaultStreamBufferSize,
|
proc connect*(
|
||||||
child: StreamTransport = nil): Future[StreamTransport] {.async.} =
|
ma: MultiAddress,
|
||||||
|
bufferSize = DefaultStreamBufferSize,
|
||||||
|
child: StreamTransport = nil): Future[StreamTransport]
|
||||||
|
{.raises: [Defect, LPError, MaInvalidAddress].} =
|
||||||
## Open new connection to remote peer with address ``ma`` and create
|
## Open new connection to remote peer with address ``ma`` and create
|
||||||
## new transport object ``StreamTransport`` for established connection.
|
## new transport object ``StreamTransport`` for established connection.
|
||||||
## ``bufferSize`` is size of internal buffer for transport.
|
## ``bufferSize`` is size of internal buffer for transport.
|
||||||
|
##
|
||||||
|
|
||||||
if not(RTRANSPMA.match(ma)):
|
if not(RTRANSPMA.match(ma)):
|
||||||
raise newException(MaInvalidAddress, "Incorrect or unsupported address!")
|
raise newException(MaInvalidAddress, "Incorrect or unsupported address!")
|
||||||
|
|
||||||
let address = initTAddress(ma).tryGet()
|
return connect(initTAddress(ma).tryGet(), bufferSize, child)
|
||||||
result = await connect(address, bufferSize, child)
|
|
||||||
|
|
||||||
proc createStreamServer*[T](ma: MultiAddress,
|
proc createStreamServer*[T](ma: MultiAddress,
|
||||||
cbproc: StreamCallback,
|
cbproc: StreamCallback,
|
||||||
|
@ -90,24 +93,24 @@ proc createStreamServer*[T](ma: MultiAddress,
|
||||||
bufferSize: int = DefaultStreamBufferSize,
|
bufferSize: int = DefaultStreamBufferSize,
|
||||||
child: StreamServer = nil,
|
child: StreamServer = nil,
|
||||||
init: TransportInitCallback = nil): StreamServer
|
init: TransportInitCallback = nil): StreamServer
|
||||||
{.raises: [Defect, MaInvalidAddress].} =
|
{.raises: [Defect, LPError, MaInvalidAddress].} =
|
||||||
## Create new TCP stream server which bounds to ``ma`` address.
|
## Create new TCP stream server which bounds to ``ma`` address.
|
||||||
if not(RTRANSPMA.match(ma)):
|
if not(RTRANSPMA.match(ma)):
|
||||||
raise newException(MaInvalidAddress, "Incorrect or unsupported address!")
|
raise newException(MaInvalidAddress, "Incorrect or unsupported address!")
|
||||||
|
|
||||||
let address = try:
|
|
||||||
initTAddress(ma)
|
|
||||||
except ResultError[string] as exc:
|
|
||||||
raise newException(Defect, exc.msg)
|
|
||||||
|
|
||||||
if address.isErr:
|
|
||||||
raise newException(MaInvalidAddress, address.error)
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
return createStreamServer(address.get(), cbproc, flags, udata, sock,
|
return createStreamServer(
|
||||||
backlog, bufferSize, child, init)
|
initTAddress(ma).tryGet(),
|
||||||
|
cbproc,
|
||||||
|
flags,
|
||||||
|
udata,
|
||||||
|
sock,
|
||||||
|
backlog,
|
||||||
|
bufferSize,
|
||||||
|
child,
|
||||||
|
init)
|
||||||
except CatchableError as exc:
|
except CatchableError as exc:
|
||||||
raise newException(Defect, exc.msg)
|
raise newException(LPError, exc.msg)
|
||||||
|
|
||||||
proc createStreamServer*[T](ma: MultiAddress,
|
proc createStreamServer*[T](ma: MultiAddress,
|
||||||
flags: set[ServerFlags] = {},
|
flags: set[ServerFlags] = {},
|
||||||
|
@ -117,41 +120,41 @@ proc createStreamServer*[T](ma: MultiAddress,
|
||||||
bufferSize: int = DefaultStreamBufferSize,
|
bufferSize: int = DefaultStreamBufferSize,
|
||||||
child: StreamServer = nil,
|
child: StreamServer = nil,
|
||||||
init: TransportInitCallback = nil): StreamServer
|
init: TransportInitCallback = nil): StreamServer
|
||||||
{.raises: [Defect, MaInvalidAddress].} =
|
{.raises: [Defect, LPError, MaInvalidAddress].} =
|
||||||
## Create new TCP stream server which bounds to ``ma`` address.
|
## Create new TCP stream server which bounds to ``ma`` address.
|
||||||
##
|
##
|
||||||
|
|
||||||
if not(RTRANSPMA.match(ma)):
|
if not(RTRANSPMA.match(ma)):
|
||||||
raise newException(MaInvalidAddress, "Incorrect or unsupported address!")
|
raise newException(MaInvalidAddress, "Incorrect or unsupported address!")
|
||||||
|
|
||||||
let address = try:
|
|
||||||
initTAddress(ma)
|
|
||||||
except ResultError[string] as exc:
|
|
||||||
raise newException(Defect, exc.msg)
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
return createStreamServer(address.get(), flags, udata, sock, backlog,
|
return createStreamServer(
|
||||||
bufferSize, child, init)
|
initTAddress(ma).tryGet(),
|
||||||
|
flags,
|
||||||
|
udata,
|
||||||
|
sock,
|
||||||
|
backlog,
|
||||||
|
bufferSize,
|
||||||
|
child,
|
||||||
|
init)
|
||||||
except CatchableError as exc:
|
except CatchableError as exc:
|
||||||
raise newException(Defect, exc.msg)
|
raise newException(LPError, exc.msg)
|
||||||
|
|
||||||
proc createAsyncSocket*(ma: MultiAddress): AsyncFD
|
proc createAsyncSocket*(ma: MultiAddress): AsyncFD
|
||||||
{.raises: [Defect, ResultError[string]].} =
|
{.raises: [Defect, LPError].} =
|
||||||
## Create new asynchronous socket using MultiAddress' ``ma`` socket type and
|
## Create new asynchronous socket using MultiAddress' ``ma`` socket type and
|
||||||
## protocol information.
|
## protocol information.
|
||||||
##
|
##
|
||||||
## Returns ``asyncInvalidSocket`` on error.
|
## Returns ``asyncInvalidSocket`` on error.
|
||||||
##
|
##
|
||||||
## Note: This procedure only used in `go-libp2p-daemon` wrapper.
|
## Note: This procedure only used in `go-libp2p-daemon` wrapper.
|
||||||
|
##
|
||||||
|
|
||||||
var
|
var
|
||||||
socktype: SockType = SockType.SOCK_STREAM
|
socktype: SockType = SockType.SOCK_STREAM
|
||||||
protocol: Protocol = Protocol.IPPROTO_TCP
|
protocol: Protocol = Protocol.IPPROTO_TCP
|
||||||
|
|
||||||
let maddr = initTAddress(ma)
|
let address = initTAddress(ma).tryGet()
|
||||||
if maddr.isErr():
|
|
||||||
return asyncInvalidSocket
|
|
||||||
|
|
||||||
let address = maddr.tryGet()
|
|
||||||
if address.family in {AddressFamily.IPv4, AddressFamily.IPv6}:
|
if address.family in {AddressFamily.IPv4, AddressFamily.IPv6}:
|
||||||
if ma[1].tryGet().protoCode().tryGet() == multiCodec("udp"):
|
if ma[1].tryGet().protoCode().tryGet() == multiCodec("udp"):
|
||||||
socktype = SockType.SOCK_DGRAM
|
socktype = SockType.SOCK_DGRAM
|
||||||
|
@ -168,22 +171,20 @@ proc createAsyncSocket*(ma: MultiAddress): AsyncFD
|
||||||
try:
|
try:
|
||||||
createAsyncSocket(address.getDomain(), socktype, protocol)
|
createAsyncSocket(address.getDomain(), socktype, protocol)
|
||||||
except CatchableError as exc:
|
except CatchableError as exc:
|
||||||
raise newException(Defect, exc.msg)
|
raise newException(LPError, exc.msg)
|
||||||
|
|
||||||
proc bindAsyncSocket*(sock: AsyncFD, ma: MultiAddress): bool
|
proc bindAsyncSocket*(sock: AsyncFD, ma: MultiAddress): bool
|
||||||
{.raises: [Defect, ResultError[string]].} =
|
{.raises: [Defect, LPError].} =
|
||||||
## Bind socket ``sock`` to MultiAddress ``ma``.
|
## Bind socket ``sock`` to MultiAddress ``ma``.
|
||||||
##
|
##
|
||||||
## Note: This procedure only used in `go-libp2p-daemon` wrapper.
|
## Note: This procedure only used in `go-libp2p-daemon` wrapper.
|
||||||
|
##
|
||||||
|
|
||||||
var
|
var
|
||||||
saddr: Sockaddr_storage
|
saddr: Sockaddr_storage
|
||||||
slen: SockLen
|
slen: SockLen
|
||||||
|
|
||||||
let maddr = initTAddress(ma)
|
let address = initTAddress(ma).tryGet()
|
||||||
if maddr.isErr():
|
|
||||||
return false
|
|
||||||
|
|
||||||
let address = maddr.get()
|
|
||||||
toSAddr(address, saddr, slen)
|
toSAddr(address, saddr, slen)
|
||||||
if bindSocket(SocketHandle(sock), cast[ptr SockAddr](addr saddr),
|
if bindSocket(SocketHandle(sock), cast[ptr SockAddr](addr saddr),
|
||||||
slen) == 0:
|
slen) == 0:
|
||||||
|
|
Loading…
Reference in New Issue