2019-08-27 20:30:53 -06:00
|
|
|
## Nim-LibP2P
|
2019-09-24 11:48:23 -06:00
|
|
|
## Copyright (c) 2019 Status Research & Development GmbH
|
2019-08-27 20:30:53 -06: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.
|
|
|
|
|
2021-05-21 10:27:01 -06:00
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
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
|
2019-08-28 13:12:15 -06:00
|
|
|
|
2019-08-31 11:58:49 -06:00
|
|
|
method init*(p: LPProtocol) {.base, gcsafe.} = discard
|
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)
|