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

121 lines
4.3 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
import tables, sequtils, options, strformat
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
remote*: Table[uint, Channel]
local*: Table[uint, Channel]
currentId*: uint
2019-09-03 20:40:51 +00:00
maxChannels*: uint
proc newMplexNoSuchChannel(id: uint, msgType: MessageType): ref MplexNoSuchChannel =
2019-09-06 21:27:55 +00:00
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")
proc getChannelList(m: Mplex, initiator: bool): var Table[uint, Channel] =
2019-09-04 01:42:00 +00:00
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,
chanId: uint = 0,
2019-09-06 21:27:55 +00:00
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
method handle*(m: Mplex) {.async, gcsafe.} =
try:
2019-09-04 01:42:00 +00:00
while not m.connection.closed:
let msgRes = await m.connection.readMsg()
if msgRes.isNone:
await sleepAsync(100.millis)
continue
2019-09-06 21:27:55 +00:00
let (id, msgType, data) = msgRes.get()
let initiator = bool(ord(msgType) and 1)
var channel: Channel
if MessageType(msgType) != MessageType.New:
let channels = m.getChannelList(initiator)
if not channels.contains(id):
raise newMplexNoSuchChannel(id, msgType)
channel = channels[id]
case msgType:
of MessageType.New:
channel = await m.newStreamInternal(false, id, cast[string](data))
if not isNil(m.streamHandler):
let handlerFut = m.streamHandler(newConnection(channel))
proc cleanUpChan(udata: pointer) {.gcsafe.} =
if handlerFut.finished:
channel.close().addCallback(
proc(udata: pointer) =
# TODO: is waitFor() OK here?
channel.cleanUp()
.addCallback(proc(udata: pointer) =
echo &"cleaned up channel {$id}")
)
handlerFut.addCallback(cleanUpChan)
continue
of MessageType.MsgIn, MessageType.MsgOut:
await channel.pushTo(data)
of MessageType.CloseIn, MessageType.CloseOut:
await channel.closedByRemote()
m.getChannelList(initiator).del(id)
of MessageType.ResetIn, MessageType.ResetOut:
await channel.resetByRemote()
break
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
result.remote = initTable[uint, Channel]()
result.local = initTable[uint, 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()
await m.connection.writeMsg(channel.id, MessageType.New, 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()