98 lines
3.3 KiB
Nim
98 lines
3.3 KiB
Nim
## Nim-LibP2P
|
|
## Copyright (c) 2019 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 chronos, chronicles
|
|
import transport,
|
|
../wire,
|
|
../connection,
|
|
../multiaddress,
|
|
../multicodec,
|
|
../stream/chronosstream
|
|
|
|
logScope:
|
|
topic = "TcpTransport"
|
|
|
|
type TcpTransport* = ref object of Transport
|
|
server*: StreamServer
|
|
|
|
proc toMultiAddr*(address: TransportAddress): MultiAddress =
|
|
## Returns string representation of ``address``.
|
|
case address.family
|
|
of AddressFamily.IPv4:
|
|
var a = IpAddress(
|
|
family: IpAddressFamily.IPv4,
|
|
address_v4: address.address_v4
|
|
)
|
|
result = MultiAddress.init(a, Protocol.IPPROTO_TCP, address.port)
|
|
of AddressFamily.IPv6:
|
|
var a = IpAddress(family: IpAddressFamily.IPv6,
|
|
address_v6: address.address_v6)
|
|
result = MultiAddress.init(a, Protocol.IPPROTO_TCP, address.port)
|
|
else:
|
|
raise newException(TransportAddressError, "Invalid address for transport!")
|
|
|
|
proc connHandler*(t: Transport,
|
|
server: StreamServer,
|
|
client: StreamTransport,
|
|
initiator: bool = false):
|
|
Future[Connection] {.async, gcsafe.} =
|
|
trace "handling connection for", address = $client.remoteAddress
|
|
let conn: Connection = newConnection(newChronosStream(server, client))
|
|
conn.observedAddrs = client.remoteAddress.toMultiAddr()
|
|
if not initiator:
|
|
let handlerFut = if t.handler == nil: nil else: t.handler(conn)
|
|
let connHolder: ConnHolder = ConnHolder(connection: conn,
|
|
connFuture: handlerFut)
|
|
t.connections.add(connHolder)
|
|
result = conn
|
|
|
|
proc connCb(server: StreamServer,
|
|
client: StreamTransport) {.async, gcsafe.} =
|
|
trace "incomming connection for", address = $client.remoteAddress
|
|
let t: Transport = cast[Transport](server.udata)
|
|
discard t.connHandler(server, client)
|
|
|
|
method init*(t: TcpTransport) =
|
|
t.multicodec = multiCodec("tcp")
|
|
|
|
method close*(t: TcpTransport): Future[void] {.async, gcsafe.} =
|
|
## start the transport
|
|
trace "stopping transport"
|
|
await procCall Transport(t).close() # call base
|
|
|
|
t.server.stop()
|
|
t.server.close()
|
|
trace "transport stopped"
|
|
|
|
method listen*(t: TcpTransport,
|
|
ma: MultiAddress,
|
|
handler: ConnHandler):
|
|
Future[Future[void]] {.async, gcsafe.} =
|
|
discard await procCall Transport(t).listen(ma, handler) # call base
|
|
|
|
## listen on the transport
|
|
t.server = createStreamServer(t.ma, connCb, {}, t)
|
|
t.server.start()
|
|
|
|
# always get the resolved address in case we're bound to 0.0.0.0:0
|
|
t.ma = t.server.sock.getLocalAddress().toMultiAddr()
|
|
result = t.server.join()
|
|
|
|
method dial*(t: TcpTransport,
|
|
address: MultiAddress):
|
|
Future[Connection] {.async, gcsafe.} =
|
|
trace "dialing remote peer", address = $address
|
|
## dial a peer
|
|
let client: StreamTransport = await connect(address)
|
|
result = await t.connHandler(t.server, client, true)
|
|
|
|
method handles*(t: TcpTransport, address: MultiAddress): bool {.gcsafe.} =
|
|
## TODO: implement logic to properly discriminat TCP multiaddrs
|
|
true
|