2022-07-01 18:19:57 +00:00
|
|
|
# Nim-LibP2P
|
2024-03-12 20:05:53 +00:00
|
|
|
# Copyright (c) 2023-2024 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.
|
2019-08-28 02:30:53 +00:00
|
|
|
|
2023-06-07 11:12:49 +00:00
|
|
|
{.push raises: [].}
|
2021-05-21 16:27:01 +00:00
|
|
|
|
2022-12-01 11:20:40 +00:00
|
|
|
import chronos, stew/results
|
2020-06-19 17:29:43 +00:00
|
|
|
import ../stream/connection
|
2019-08-28 02:30:53 +00:00
|
|
|
|
2022-12-01 11:20:40 +00:00
|
|
|
export results
|
|
|
|
|
|
|
|
const DefaultMaxIncomingStreams* = 10
|
|
|
|
|
2019-08-28 19:12:15 +00:00
|
|
|
type
|
2024-03-28 08:42:31 +00:00
|
|
|
LPProtoHandler* = proc(conn: Connection, proto: string): Future[void] {.async.}
|
2019-08-30 23:45:57 +00:00
|
|
|
|
2019-08-29 20:55:30 +00:00
|
|
|
LPProtocol* = ref object of RootObj
|
2020-09-21 09:16:29 +00:00
|
|
|
codecs*: seq[string]
|
2024-03-28 08:42:31 +00:00
|
|
|
handlerImpl: LPProtoHandler ## invoked by the protocol negotiator
|
2022-06-30 09:21:33 +00:00
|
|
|
started*: bool
|
2022-12-01 11:20:40 +00:00
|
|
|
maxIncomingStreams: Opt[int]
|
2019-08-28 19:12:15 +00:00
|
|
|
|
2019-08-31 17:58:49 +00:00
|
|
|
method init*(p: LPProtocol) {.base, gcsafe.} =
|
|
|
|
discard
|
2024-03-12 20:05:53 +00:00
|
|
|
|
|
|
|
method start*(p: LPProtocol) {.async: (raises: [CancelledError], raw: true), base.} =
|
|
|
|
let fut = newFuture[void]()
|
|
|
|
fut.complete()
|
|
|
|
p.started = true
|
|
|
|
fut
|
|
|
|
|
|
|
|
method stop*(p: LPProtocol) {.async: (raises: [], raw: true), base.} =
|
|
|
|
let fut = newFuture[void]()
|
|
|
|
fut.complete()
|
|
|
|
p.started = false
|
|
|
|
fut
|
2022-06-30 09:21:33 +00:00
|
|
|
|
2022-12-01 11:20:40 +00:00
|
|
|
proc maxIncomingStreams*(p: LPProtocol): int =
|
|
|
|
p.maxIncomingStreams.get(DefaultMaxIncomingStreams)
|
|
|
|
|
|
|
|
proc `maxIncomingStreams=`*(p: LPProtocol, val: int) =
|
|
|
|
p.maxIncomingStreams = Opt.some(val)
|
2020-09-21 09:16:29 +00:00
|
|
|
|
2021-01-18 21:32:42 +00:00
|
|
|
func codec*(p: LPProtocol): string =
|
2024-03-28 08:42:31 +00:00
|
|
|
doAssert(p.codecs.len > 0, "Codecs sequence was empty!")
|
2020-09-21 09:16:29 +00:00
|
|
|
p.codecs[0]
|
|
|
|
|
|
|
|
func `codec=`*(p: LPProtocol, codec: string) =
|
2021-01-18 21:32:42 +00:00
|
|
|
# always insert as first codec
|
2020-09-21 09:16:29 +00:00
|
|
|
# if we use this abstraction
|
|
|
|
p.codecs.insert(codec, 0)
|
2022-12-01 11:20:40 +00:00
|
|
|
|
2024-03-28 08:42:31 +00:00
|
|
|
template `handler`*(p: LPProtocol): LPProtoHandler =
|
|
|
|
p.handlerImpl
|
|
|
|
|
|
|
|
template `handler`*(p: LPProtocol, conn: Connection, proto: string): Future[void] =
|
|
|
|
p.handlerImpl(conn, proto)
|
|
|
|
|
|
|
|
func `handler=`*(p: LPProtocol, handler: LPProtoHandler) =
|
|
|
|
p.handlerImpl = handler
|
|
|
|
|
|
|
|
# Callbacks that are annotated with `{.async: (raises).}` explicitly
|
|
|
|
# document the types of errors that they may raise, but are not compatible
|
|
|
|
# with `LPProtoHandler` and need to use a custom `proc` type.
|
|
|
|
# They are internally wrapped into a `LPProtoHandler`, but still allow the
|
|
|
|
# compiler to check that their `{.async: (raises).}` annotation is correct.
|
|
|
|
# https://github.com/nim-lang/Nim/issues/23432
|
|
|
|
func `handler=`*[E](
|
|
|
|
p: LPProtocol,
|
|
|
|
handler: proc(conn: Connection, proto: string): InternalRaisesFuture[void, E],
|
|
|
|
) =
|
|
|
|
proc wrap(conn: Connection, proto: string): Future[void] {.async.} =
|
|
|
|
await handler(conn, proto)
|
2024-06-11 15:18:06 +00:00
|
|
|
|
2024-03-28 08:42:31 +00:00
|
|
|
p.handlerImpl = wrap
|
|
|
|
|
2022-12-01 11:20:40 +00:00
|
|
|
proc new*(
|
2024-03-28 08:42:31 +00:00
|
|
|
T: type LPProtocol,
|
|
|
|
codecs: seq[string],
|
|
|
|
handler: LPProtoHandler,
|
|
|
|
maxIncomingStreams: Opt[int] | int = Opt.none(int),
|
|
|
|
): T =
|
2022-12-01 11:20:40 +00:00
|
|
|
T(
|
|
|
|
codecs: codecs,
|
2024-03-28 08:42:31 +00:00
|
|
|
handlerImpl: handler,
|
2022-12-01 11:20:40 +00:00
|
|
|
maxIncomingStreams:
|
|
|
|
when maxIncomingStreams is int:
|
|
|
|
Opt.some(maxIncomingStreams)
|
|
|
|
else:
|
|
|
|
maxIncomingStreams
|
2024-06-11 15:18:06 +00:00
|
|
|
,
|
2022-12-01 11:20:40 +00:00
|
|
|
)
|
2024-03-28 08:42:31 +00:00
|
|
|
|
|
|
|
proc new*[E](
|
|
|
|
T: type LPProtocol,
|
|
|
|
codecs: seq[string],
|
|
|
|
handler: proc(conn: Connection, proto: string): InternalRaisesFuture[void, E],
|
|
|
|
maxIncomingStreams: Opt[int] | int = Opt.none(int),
|
|
|
|
): T =
|
|
|
|
proc wrap(conn: Connection, proto: string): Future[void] {.async.} =
|
|
|
|
await handler(conn, proto)
|
2024-06-11 15:18:06 +00:00
|
|
|
|
2024-03-28 08:42:31 +00:00
|
|
|
T.new(codec, wrap, maxIncomingStreams)
|