nim-libp2p/libp2p/transports/transport.nim

115 lines
2.8 KiB
Nim
Raw Normal View History

2022-07-01 18:19:57 +00:00
# Nim-LibP2P
2023-01-20 14:47:40 +00:00
# Copyright (c) 2023 Status Research & Development GmbH
2022-07-01 18:19:57 +00: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.
##
when (NimMajor, NimMinor) < (1, 4):
{.push raises: [Defect].}
else:
{.push raises: [].}
import sequtils
2019-09-28 19:56:13 +00:00
import chronos, chronicles
import ../stream/connection,
2019-09-23 22:35:23 +00:00
../multiaddress,
../multicodec,
2023-03-08 11:30:19 +00:00
../muxers/muxer,
../upgrademngrs/upgrade
2020-12-01 17:34:27 +00:00
logScope:
topics = "libp2p transport"
type
TransportError* = object of LPError
TransportInvalidAddrError* = object of TransportError
TransportClosedError* = object of TransportError
Transport* = ref object of RootObj
2021-12-16 10:05:20 +00:00
addrs*: seq[MultiAddress]
running*: bool
upgrader*: Upgrade
proc newTransportClosedError*(parent: ref Exception = nil): ref LPError =
newException(TransportClosedError,
"Transport closed, no more connections!", parent)
2020-05-08 16:08:38 +00:00
method start*(
self: Transport,
addrs: seq[MultiAddress]) {.base, async.} =
## start the transport
##
trace "starting transport on addrs", address = $addrs
self.addrs = addrs
self.running = true
method stop*(self: Transport) {.base, async.} =
2019-08-21 22:53:16 +00:00
## stop and cleanup the transport
## including all outstanding connections
##
trace "stopping transport", address = $self.addrs
self.running = false
method accept*(self: Transport): Future[Connection]
{.base, gcsafe.} =
## accept incoming connections
##
doAssert(false, "Not implemented!")
method dial*(
self: Transport,
hostname: string,
address: MultiAddress,
peerId: Opt[PeerId] = Opt.none(PeerId)): Future[Connection] {.base, gcsafe.} =
## dial a peer
##
doAssert(false, "Not implemented!")
proc dial*(
self: Transport,
address: MultiAddress,
peerId: Opt[PeerId] = Opt.none(PeerId)): Future[Connection] {.gcsafe.} =
self.dial("", address)
method upgradeIncoming*(
self: Transport,
2023-03-08 11:30:19 +00:00
conn: Connection): Future[Muxer] {.base, gcsafe.} =
2019-08-30 22:16:37 +00:00
## base upgrade method that the transport uses to perform
## transport specific upgrades
##
self.upgrader.upgradeIncoming(conn)
method upgradeOutgoing*(
self: Transport,
conn: Connection,
2023-03-08 11:30:19 +00:00
peerId: Opt[PeerId]): Future[Muxer] {.base, gcsafe.} =
## base upgrade method that the transport uses to perform
## transport specific upgrades
##
self.upgrader.upgradeOutgoing(conn, peerId)
2019-08-30 22:16:37 +00:00
method handles*(
self: Transport,
address: MultiAddress): bool {.base, gcsafe.} =
## check if transport supports the multiaddress
##
# by default we skip circuit addresses to avoid
# having to repeat the check in every transport
if address.protocols.isOk:
return address.protocols
.get()
.filterIt(
it == multiCodec("p2p-circuit")
).len == 0