nim-libp2p/libp2p/muxers/mplex/mplex.nim

119 lines
4.2 KiB
Nim
Raw Normal View History

2019-09-03 20:40:51 +00:00
## Nim-LibP2P
## Copyright (c) 2018 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-09-05 15:20:21 +00:00
## TODO: I have to be carefull to clean channels up correctly,
## both by removing from the internal tables as well as
## releasing resource when the channel is completelly
## finished. This is complicated because half-closed
## streams makes closing channels non-deterministic.
##
## This still needs to be implemented properly - I'm leaving it
## here to not forget that this needs to be fixed ASAP.
2019-09-04 16:40:05 +00:00
2019-09-06 21:27:55 +00:00
import tables, sequtils, strformat, options
2019-09-03 20:40:51 +00:00
import chronos
2019-09-06 06:51:19 +00:00
import coder, types, channel,
../../varint,
../../connection,
../../vbuffer,
../../protocols/protocol,
2019-09-04 03:08:51 +00:00
../../stream/bufferstream,
2019-09-06 06:51:19 +00:00
../../stream/lpstream,
../muxer
2019-09-03 20:40:51 +00:00
2019-09-04 03:08:51 +00:00
type
2019-09-03 20:40:51 +00:00
Mplex* = ref object of Muxer
2019-09-04 01:42:00 +00:00
remote*: Table[int, Channel]
local*: Table[int, Channel]
2019-09-03 20:40:51 +00:00
currentId*: int
maxChannels*: uint
2019-09-06 21:27:55 +00:00
proc newMplexNoSuchChannel(id: int, msgType: MessageType): ref MplexNoSuchChannel =
result = newException(MplexNoSuchChannel, &"No such channel id {$id} and message {$msgType}")
2019-09-04 03:08:51 +00:00
proc newMplexUnknownMsgError(): ref MplexUnknownMsgError =
2019-09-03 20:40:51 +00:00
result = newException(MplexUnknownMsgError, "Unknown mplex message type")
2019-09-04 01:42:00 +00:00
proc getChannelList(m: Mplex, initiator: bool): var Table[int, Channel] =
if initiator:
2019-09-03 20:40:51 +00:00
result = m.remote
else:
result = m.local
2019-09-04 01:42:00 +00:00
proc newStreamInternal*(m: Mplex,
initiator: bool = true,
2019-09-06 21:27:55 +00:00
chanId: int,
name: string = ""):
2019-09-04 01:42:00 +00:00
Future[Channel] {.async, gcsafe.} =
2019-09-03 20:40:51 +00:00
## create new channel/stream
2019-09-04 01:42:00 +00:00
let id = if initiator: m.currentId.inc(); m.currentId else: chanId
2019-09-06 21:27:55 +00:00
result = newChannel(id, m.connection, initiator, name)
2019-09-04 01:42:00 +00:00
m.getChannelList(initiator)[id] = result
2019-09-03 20:40:51 +00:00
2019-09-04 01:42:00 +00:00
proc newStreamInternal*(m: Mplex): Future[Channel] {.gcsafe.} =
result = m.newStreamInternal(true, 0)
2019-09-04 16:40:05 +00:00
method handle*(m: Mplex): Future[void] {.async, gcsafe.} =
2019-09-04 01:42:00 +00:00
try:
while not m.connection.closed:
let (id, msgType) = await m.connection.readHeader()
let initiator = bool(ord(msgType) and 1)
2019-09-06 21:27:55 +00:00
var channel: Channel
if MessageType(msgType) != MessageType.New:
let channels = m.getChannelList(initiator)
if not channels.contains(id.int):
raise newMplexNoSuchChannel(id.int, msgType)
channel = channels[id.int]
2019-09-04 01:42:00 +00:00
case msgType:
of MessageType.New:
2019-09-06 21:27:55 +00:00
var name: seq[byte]
try:
name = await m.connection.readLp()
except LPStreamIncompleteError as exc:
echo exc.msg
except Exception as exc:
echo exc.msg
raise
let channel = await m.newStreamInternal(false, id.int, cast[string](name))
if not isNil(m.streamHandler):
channel.handlerFuture = m.streamHandler(newConnection(channel))
2019-09-04 01:42:00 +00:00
of MessageType.MsgIn, MessageType.MsgOut:
let msg = await m.connection.readLp()
await channel.pushTo(msg)
of MessageType.CloseIn, MessageType.CloseOut:
2019-09-04 16:40:05 +00:00
await channel.closedByRemote()
m.getChannelList(initiator).del(id.int)
2019-09-04 01:42:00 +00:00
of MessageType.ResetIn, MessageType.ResetOut:
2019-09-04 16:40:05 +00:00
await channel.resetByRemote()
2019-09-04 01:42:00 +00:00
else: raise newMplexUnknownMsgError()
finally:
await m.connection.close()
2019-09-03 20:40:51 +00:00
proc newMplex*(conn: Connection,
maxChanns: uint = MaxChannels): Mplex =
new result
result.connection = conn
result.maxChannels = maxChanns
2019-09-04 01:42:00 +00:00
result.remote = initTable[int, Channel]()
result.local = initTable[int, Channel]()
2019-09-03 20:40:51 +00:00
2019-09-06 21:27:55 +00:00
method newStream*(m: Mplex, name: string = ""): Future[Connection] {.async, gcsafe.} =
2019-09-04 01:42:00 +00:00
let channel = await m.newStreamInternal()
2019-09-06 21:27:55 +00:00
await m.connection.writeHeader(channel.id, MessageType.New, len(name))
if name.len > 0:
await m.connection.write(name)
2019-09-04 01:42:00 +00:00
result = newConnection(channel)
2019-09-03 20:40:51 +00:00
2019-09-04 01:42:00 +00:00
method close*(m: Mplex) {.async, gcsafe.} =
await allFutures(@[allFutures(toSeq(m.remote.values).mapIt(it.close())),
allFutures(toSeq(m.local.values).mapIt(it.close()))])
2019-09-04 16:40:05 +00:00
m.connection.reset()