72 lines
1.9 KiB
Nim
72 lines
1.9 KiB
Nim
# Nim-LibP2P
|
|
# Copyright (c) 2023-2024 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.
|
|
|
|
{.push raises: [].}
|
|
|
|
import chronos, chronicles
|
|
import ../stream/connection, ../errors
|
|
|
|
logScope:
|
|
topics = "libp2p muxer"
|
|
|
|
const DefaultChanTimeout* = 5.minutes
|
|
|
|
type
|
|
MuxerError* = object of LPError
|
|
TooManyChannels* = object of MuxerError
|
|
|
|
StreamHandler* = proc(conn: Connection): Future[void] {.async: (raises: []).}
|
|
MuxerHandler* = proc(muxer: Muxer): Future[void] {.async: (raises: []).}
|
|
|
|
Muxer* = ref object of RootObj
|
|
streamHandler*: StreamHandler
|
|
handler*: Future[void].Raising([])
|
|
connection*: Connection
|
|
|
|
# user provider proc that returns a constructed Muxer
|
|
MuxerConstructor* = proc(conn: Connection): Muxer {.gcsafe, closure, raises: [].}
|
|
|
|
# this wraps a creator proc that knows how to make muxers
|
|
MuxerProvider* = object
|
|
newMuxer*: MuxerConstructor
|
|
codec*: string
|
|
|
|
func shortLog*(m: Muxer): auto =
|
|
if m == nil:
|
|
"nil"
|
|
else:
|
|
shortLog(m.connection)
|
|
|
|
chronicles.formatIt(Muxer):
|
|
shortLog(it)
|
|
|
|
# muxer interface
|
|
method newStream*(
|
|
m: Muxer, name: string = "", lazy: bool = false
|
|
): Future[Connection] {.
|
|
base, async: (raises: [CancelledError, LPStreamError, MuxerError], raw: true)
|
|
.} =
|
|
raiseAssert("Not implemented!")
|
|
|
|
method close*(m: Muxer) {.base, async: (raises: []).} =
|
|
if m.connection != nil:
|
|
await m.connection.close()
|
|
|
|
method handle*(m: Muxer): Future[void] {.base, async: (raises: []).} =
|
|
discard
|
|
|
|
proc new*(
|
|
T: typedesc[MuxerProvider], creator: MuxerConstructor, codec: string
|
|
): T {.gcsafe.} =
|
|
let muxerProvider = T(newMuxer: creator, codec: codec)
|
|
muxerProvider
|
|
|
|
method getStreams*(m: Muxer): seq[Connection] {.base.} =
|
|
raiseAssert("Not implemented!")
|