2022-07-01 18:19:57 +00: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-28 02:30:53 +00:00
|
|
|
|
2021-05-21 16:27:01 +00:00
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
2019-08-28 02:30:53 +00:00
|
|
|
import chronos
|
2020-06-19 17:29:43 +00:00
|
|
|
import ../stream/connection
|
2019-08-28 02:30:53 +00:00
|
|
|
|
2019-08-28 19:12:15 +00:00
|
|
|
type
|
2021-05-21 16:27:01 +00:00
|
|
|
LPProtoHandler* = proc (
|
|
|
|
conn: Connection,
|
|
|
|
proto: string):
|
|
|
|
Future[void]
|
|
|
|
{.gcsafe, raises: [Defect].}
|
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]
|
2019-09-02 20:45:52 +00:00
|
|
|
handler*: LPProtoHandler ## this handler gets invoked by the protocol negotiator
|
2022-06-30 09:21:33 +00:00
|
|
|
started*: bool
|
2019-08-28 19:12:15 +00:00
|
|
|
|
2019-08-31 17:58:49 +00:00
|
|
|
method init*(p: LPProtocol) {.base, gcsafe.} = discard
|
2022-06-30 09:21:33 +00:00
|
|
|
method start*(p: LPProtocol) {.async, base.} = p.started = true
|
|
|
|
method stop*(p: LPProtocol) {.async, base.} = p.started = false
|
|
|
|
|
2020-09-21 09:16:29 +00:00
|
|
|
|
2021-01-18 21:32:42 +00:00
|
|
|
func codec*(p: LPProtocol): string =
|
2020-09-21 09:16:29 +00:00
|
|
|
assert(p.codecs.len > 0, "Codecs sequence was empty!")
|
|
|
|
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)
|