2019-08-20 16:18:15 +00:00
|
|
|
## 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.
|
|
|
|
|
2019-09-12 00:15:04 +00:00
|
|
|
import chronos, chronicles
|
2019-09-06 00:16:21 +00:00
|
|
|
import transport, ../wire, ../connection,
|
|
|
|
../multiaddress, ../connection,
|
|
|
|
../multicodec, ../stream/chronosstream
|
2019-08-20 16:18:15 +00:00
|
|
|
|
2019-09-12 00:15:04 +00:00
|
|
|
logScope:
|
|
|
|
topic = "TcpTransport"
|
|
|
|
|
2019-08-20 16:18:15 +00:00
|
|
|
type TcpTransport* = ref object of Transport
|
|
|
|
server*: StreamServer
|
|
|
|
|
2019-08-28 19:03:58 +00:00
|
|
|
proc connHandler*(t: Transport,
|
|
|
|
server: StreamServer,
|
2019-09-05 15:20:05 +00:00
|
|
|
client: StreamTransport,
|
|
|
|
initiator: bool = false):
|
2019-08-30 22:16:37 +00:00
|
|
|
Future[Connection] {.async, gcsafe.} =
|
2019-09-23 21:51:28 +00:00
|
|
|
trace "handling connection for", address = $client.remoteAddress
|
2019-08-22 21:35:47 +00:00
|
|
|
let conn: Connection = newConnection(newChronosStream(server, client))
|
2019-09-05 15:20:05 +00:00
|
|
|
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)
|
2019-08-22 21:35:47 +00:00
|
|
|
result = conn
|
|
|
|
|
2019-08-20 16:18:15 +00:00
|
|
|
proc connCb(server: StreamServer,
|
2019-08-30 15:28:07 +00:00
|
|
|
client: StreamTransport) {.async, gcsafe.} =
|
2019-09-23 21:51:28 +00:00
|
|
|
trace "incomming connection for", address = $client.remoteAddress
|
2019-08-21 22:53:16 +00:00
|
|
|
let t: Transport = cast[Transport](server.udata)
|
|
|
|
discard t.connHandler(server, client)
|
2019-08-20 16:18:15 +00:00
|
|
|
|
|
|
|
method init*(t: TcpTransport) =
|
|
|
|
t.multicodec = multiCodec("tcp")
|
|
|
|
|
2019-08-30 15:28:07 +00:00
|
|
|
method close*(t: TcpTransport): Future[void] {.async, gcsafe.} =
|
2019-08-20 16:18:15 +00:00
|
|
|
## start the transport
|
2019-09-23 21:51:28 +00:00
|
|
|
trace "stopping transport"
|
2019-08-21 23:13:20 +00:00
|
|
|
await procCall Transport(t).close() # call base
|
2019-08-21 22:53:16 +00:00
|
|
|
|
|
|
|
t.server.stop()
|
2019-09-13 00:56:32 +00:00
|
|
|
t.server.close()
|
2019-09-23 21:51:28 +00:00
|
|
|
trace "transport stopped"
|
2019-08-20 16:18:15 +00:00
|
|
|
|
2019-08-26 15:37:15 +00:00
|
|
|
method listen*(t: TcpTransport,
|
|
|
|
ma: MultiAddress,
|
2019-08-30 22:16:37 +00:00
|
|
|
handler: ConnHandler):
|
2019-09-13 00:56:32 +00:00
|
|
|
# TODO: need to check how this futures
|
|
|
|
# are being returned, it doesn't seem to be right
|
2019-09-12 00:15:04 +00:00
|
|
|
Future[Future[void]] {.async, gcsafe.} =
|
|
|
|
discard await procCall Transport(t).listen(ma, handler) # call base
|
2019-08-21 23:13:20 +00:00
|
|
|
|
|
|
|
## listen on the transport
|
2019-09-12 00:15:04 +00:00
|
|
|
t.server = createStreamServer(t.ma, connCb, {}, t)
|
|
|
|
t.server.start()
|
|
|
|
result = t.server.join()
|
2019-08-20 16:18:15 +00:00
|
|
|
|
2019-08-26 15:37:15 +00:00
|
|
|
method dial*(t: TcpTransport,
|
2019-08-30 22:16:37 +00:00
|
|
|
address: MultiAddress):
|
|
|
|
Future[Connection] {.async, gcsafe.} =
|
2019-09-23 21:51:28 +00:00
|
|
|
trace "dialing remote peer", address = $address
|
2019-08-20 16:18:15 +00:00
|
|
|
## dial a peer
|
|
|
|
let client: StreamTransport = await connect(address)
|
2019-09-05 15:20:05 +00:00
|
|
|
result = await t.connHandler(t.server, client, true)
|
2019-08-22 00:23:13 +00:00
|
|
|
|
2019-08-31 17:59:21 +00:00
|
|
|
method handles*(t: TcpTransport, address: MultiAddress): bool {.gcsafe.} = true
|