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.
|
|
|
|
|
|
|
|
import chronos
|
2019-08-26 15:37:15 +00:00
|
|
|
import transport, wire, connection,
|
2019-08-28 19:03:58 +00:00
|
|
|
multiaddress, connection,
|
|
|
|
multicodec, chronosstream
|
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-08-30 22:16:37 +00:00
|
|
|
client: StreamTransport):
|
|
|
|
Future[Connection] {.async, gcsafe.} =
|
2019-08-22 21:35:47 +00:00
|
|
|
let conn: Connection = newConnection(newChronosStream(server, client))
|
|
|
|
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
|
|
|
|
|
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-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-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()
|
|
|
|
await t.server.closeWait()
|
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):
|
|
|
|
Future[void] {.async, gcsafe.} =
|
2019-08-21 23:13:20 +00:00
|
|
|
await procCall Transport(t).listen(ma, handler) # call base
|
|
|
|
|
|
|
|
## listen on the transport
|
2019-08-20 16:18:15 +00:00
|
|
|
let listenFuture: Future[void] = newFuture[void]()
|
|
|
|
result = listenFuture
|
|
|
|
|
2019-08-21 19:15:51 +00:00
|
|
|
let server = createStreamServer(t.ma, connCb, {}, t)
|
|
|
|
t.server = server
|
2019-08-21 04:58:12 +00:00
|
|
|
server.start()
|
2019-08-21 23:13:20 +00:00
|
|
|
listenFuture.complete()
|
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-08-20 16:18:15 +00:00
|
|
|
## dial a peer
|
|
|
|
let client: StreamTransport = await connect(address)
|
2019-08-21 22:53:16 +00:00
|
|
|
result = await t.connHandler(t.server, client)
|
2019-08-22 00:23:13 +00:00
|
|
|
|
2019-08-30 15:28:07 +00:00
|
|
|
method handles*(t: Transport, address: MultiAddress): bool {.gcsafe.} = true
|