2019-08-20 10:18:15 -06:00
|
|
|
## Nim-LibP2P
|
2019-09-24 11:48:23 -06:00
|
|
|
## Copyright (c) 2019 Status Research & Development GmbH
|
2019-08-20 10:18:15 -06:00
|
|
|
## 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.
|
2020-11-01 16:23:26 -06:00
|
|
|
##
|
2019-08-20 10:18:15 -06:00
|
|
|
|
2021-05-21 10:27:01 -06:00
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
2020-07-14 02:02:16 +02:00
|
|
|
import sequtils
|
2019-09-28 13:56:13 -06:00
|
|
|
import chronos, chronicles
|
2020-06-19 11:29:43 -06:00
|
|
|
import ../stream/connection,
|
2019-09-23 16:35:23 -06:00
|
|
|
../multiaddress,
|
2020-07-14 02:02:16 +02:00
|
|
|
../multicodec
|
2019-08-20 10:18:15 -06:00
|
|
|
|
2020-12-01 11:34:27 -06:00
|
|
|
logScope:
|
|
|
|
topics = "libp2p transport"
|
|
|
|
|
2019-08-20 10:18:15 -06:00
|
|
|
type
|
2021-06-02 07:39:10 -06:00
|
|
|
TransportError* = object of LPError
|
|
|
|
TransportClosedError* = object of TransportError
|
2019-08-20 10:18:15 -06:00
|
|
|
|
|
|
|
Transport* = ref object of RootObj
|
|
|
|
ma*: Multiaddress
|
|
|
|
multicodec*: MultiCodec
|
2020-11-18 20:06:42 -06:00
|
|
|
running*: bool
|
|
|
|
|
2021-06-02 07:39:10 -06:00
|
|
|
proc newTransportClosedError*(parent: ref Exception = nil): ref LPError =
|
2020-11-18 20:06:42 -06:00
|
|
|
newException(TransportClosedError,
|
|
|
|
"Transport closed, no more connections!", parent)
|
2020-05-08 18:08:38 +02:00
|
|
|
|
2020-05-18 13:04:05 -06:00
|
|
|
method initTransport*(t: Transport) {.base, gcsafe, locks: "unknown".} =
|
2019-08-20 10:18:15 -06:00
|
|
|
## perform protocol initialization
|
2020-11-18 20:06:42 -06:00
|
|
|
##
|
|
|
|
|
2019-08-20 10:18:15 -06:00
|
|
|
discard
|
|
|
|
|
2020-11-18 20:06:42 -06:00
|
|
|
method start*(t: Transport, ma: MultiAddress) {.base, async.} =
|
|
|
|
## start the transport
|
|
|
|
##
|
|
|
|
|
|
|
|
t.ma = ma
|
|
|
|
trace "starting transport", address = $ma
|
|
|
|
|
|
|
|
method stop*(t: Transport) {.base, async.} =
|
2019-08-21 16:53:16 -06:00
|
|
|
## stop and cleanup the transport
|
|
|
|
## including all outstanding connections
|
2020-11-18 20:06:42 -06:00
|
|
|
##
|
|
|
|
|
2020-05-18 11:05:34 -06:00
|
|
|
discard
|
2019-08-20 10:18:15 -06:00
|
|
|
|
2020-11-18 20:06:42 -06:00
|
|
|
method accept*(t: Transport): Future[Connection]
|
|
|
|
{.base, async, gcsafe.} =
|
|
|
|
## accept incoming connections
|
|
|
|
##
|
|
|
|
|
|
|
|
discard
|
2019-08-20 10:18:15 -06:00
|
|
|
|
2019-08-26 09:37:15 -06:00
|
|
|
method dial*(t: Transport,
|
2020-11-18 20:06:42 -06:00
|
|
|
address: MultiAddress): Future[Connection]
|
|
|
|
{.base, async, gcsafe.} =
|
2019-08-20 10:18:15 -06:00
|
|
|
## dial a peer
|
2020-11-18 20:06:42 -06:00
|
|
|
##
|
|
|
|
|
2019-08-20 10:18:15 -06:00
|
|
|
discard
|
|
|
|
|
2019-09-23 16:35:23 -06:00
|
|
|
method upgrade*(t: Transport) {.base, async, gcsafe.} =
|
2019-08-30 16:16:37 -06:00
|
|
|
## base upgrade method that the transport uses to perform
|
|
|
|
## transport specific upgrades
|
2020-11-18 20:06:42 -06:00
|
|
|
##
|
|
|
|
|
2019-08-30 16:16:37 -06:00
|
|
|
discard
|
|
|
|
|
2019-08-30 09:28:07 -06:00
|
|
|
method handles*(t: Transport, address: MultiAddress): bool {.base, gcsafe.} =
|
2020-11-18 20:06:42 -06:00
|
|
|
## check if transport supports the multiaddress
|
|
|
|
##
|
2019-12-03 22:44:54 -06:00
|
|
|
|
2020-03-27 08:25:52 -06:00
|
|
|
# by default we skip circuit addresses to avoid
|
2019-12-03 22:44:54 -06:00
|
|
|
# having to repeat the check in every transport
|
2021-05-21 10:27:01 -06:00
|
|
|
if address.protocols.isOk:
|
|
|
|
return address.protocols.get().filterIt( it == multiCodec("p2p-circuit") ).len == 0
|
2019-09-12 11:07:34 -06:00
|
|
|
|
|
|
|
method localAddress*(t: Transport): MultiAddress {.base, gcsafe.} =
|
|
|
|
## get the local address of the transport in case started with 0.0.0.0:0
|
2020-11-18 20:06:42 -06:00
|
|
|
##
|
|
|
|
|
2019-09-12 11:07:34 -06:00
|
|
|
discard
|