2022-07-01 20:19:57 +02:00
|
|
|
# Nim-LibP2P
|
|
|
|
# Copyright (c) 2022 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-08-27 20:30:53 -06:00
|
|
|
|
2022-08-03 13:33:19 +02:00
|
|
|
when (NimMajor, NimMinor) < (1, 4):
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
else:
|
|
|
|
{.push raises: [].}
|
2021-05-21 10:27:01 -06:00
|
|
|
|
2019-08-27 20:30:53 -06:00
|
|
|
import chronos
|
2020-06-19 11:29:43 -06:00
|
|
|
import ../stream/connection
|
2019-08-27 20:30:53 -06:00
|
|
|
|
2019-08-28 13:12:15 -06:00
|
|
|
type
|
2021-05-21 10:27:01 -06:00
|
|
|
LPProtoHandler* = proc (
|
|
|
|
conn: Connection,
|
|
|
|
proto: string):
|
|
|
|
Future[void]
|
|
|
|
{.gcsafe, raises: [Defect].}
|
2019-08-30 17:45:57 -06:00
|
|
|
|
2019-08-29 14:55:30 -06:00
|
|
|
LPProtocol* = ref object of RootObj
|
2020-09-21 18:16:29 +09:00
|
|
|
codecs*: seq[string]
|
2019-09-02 14:45:52 -06:00
|
|
|
handler*: LPProtoHandler ## this handler gets invoked by the protocol negotiator
|
2022-06-30 11:21:33 +02:00
|
|
|
started*: bool
|
2019-08-28 13:12:15 -06:00
|
|
|
|
2019-08-31 11:58:49 -06:00
|
|
|
method init*(p: LPProtocol) {.base, gcsafe.} = discard
|
2022-06-30 11:21:33 +02:00
|
|
|
method start*(p: LPProtocol) {.async, base.} = p.started = true
|
|
|
|
method stop*(p: LPProtocol) {.async, base.} = p.started = false
|
|
|
|
|
2020-09-21 18:16:29 +09:00
|
|
|
|
2021-01-18 15:32:42 -06:00
|
|
|
func codec*(p: LPProtocol): string =
|
2020-09-21 18:16:29 +09:00
|
|
|
assert(p.codecs.len > 0, "Codecs sequence was empty!")
|
|
|
|
p.codecs[0]
|
|
|
|
|
|
|
|
func `codec=`*(p: LPProtocol, codec: string) =
|
2021-01-18 15:32:42 -06:00
|
|
|
# always insert as first codec
|
2020-09-21 18:16:29 +09:00
|
|
|
# if we use this abstraction
|
|
|
|
p.codecs.insert(codec, 0)
|