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

177 lines
5.7 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-04 01:42:00 +00:00
import tables, sequtils
2019-09-03 20:40:51 +00:00
import chronos
import ../varint, ../connection,
../vbuffer, ../protocol,
2019-09-04 01:42:00 +00:00
../stream/bufferstream, ../stream/lpstream,
2019-09-03 20:40:51 +00:00
muxer
const MaxMsgSize* = 1 shl 20 # 1mb
const MaxChannels* = 1000
const MplexCodec* = "/mplex/6.7.0"
type
MplexUnknownMsgError* = object of CatchableError
MessageType* {.pure.} = enum
New,
MsgIn,
MsgOut,
CloseIn,
CloseOut,
ResetIn,
ResetOut
StreamHandler = proc(conn: Connection): Future[void] {.gcsafe.}
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
streamHandler*: StreamHandler
Channel* = ref object of BufferStream
id*: int
initiator*: bool
isReset*: bool
closedLocal*: bool
closedRemote*: bool
mplex*: Mplex
2019-09-04 02:28:03 +00:00
handlerFuture*: Future[void]
2019-09-03 20:40:51 +00:00
proc newMplexUnknownMsgError*(): ref MplexUnknownMsgError =
result = newException(MplexUnknownMsgError, "Unknown mplex message type")
##########################################
## Read/Write Helpers
##########################################
proc readHeader*(conn: Connection): Future[(uint, MessageType)] {.async, gcsafe.} =
var
header: uint
length: int
res: VarintStatus
var buffer = newSeq[byte](10)
try:
for i in 0..<len(buffer):
await conn.readExactly(addr buffer[i], 1)
res = LP.getUVarint(buffer.toOpenArray(0, i), length, header)
if res == VarintStatus.Success:
return (header shr 3, MessageType(header and 0x7))
if res != VarintStatus.Success:
buffer.setLen(0)
return
2019-09-04 01:42:00 +00:00
except LPStreamIncompleteError:
2019-09-03 20:40:51 +00:00
buffer.setLen(0)
proc writeHeader*(conn: Connection,
id: int,
msgType: MessageType,
size: int) {.async, gcsafe.} =
## write lenght prefixed
var buf = initVBuffer()
buf.writeVarint(LPSomeUVarint(id.uint shl 3 or msgType.uint))
2019-09-04 01:42:00 +00:00
if size > 0:
buf.writeVarint(LPSomeUVarint(size.uint))
2019-09-03 20:40:51 +00:00
buf.finish()
result = conn.write(buf.buffer)
##########################################
## Channel
##########################################
proc newChannel*(mplex: Mplex,
id: int,
initiator: bool,
handler: WriteHandler,
size: int = MaxMsgSize): Channel =
new result
result.id = id
result.mplex = mplex
result.initiator = initiator
2019-09-04 01:42:00 +00:00
result.initBufferStream(handler, size)
2019-09-03 20:40:51 +00:00
proc closed*(s: Channel): bool = s.closedLocal and s.closedRemote
proc close*(s: Channel) {.async.} = discard
proc reset*(s: Channel) {.async.} = discard
##########################################
## Mplex
##########################################
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,
chanId: int):
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-03 20:40:51 +00:00
proc writeHandler(data: seq[byte]): Future[void] {.async, gcsafe.} =
2019-09-04 01:42:00 +00:00
let msgType = if initiator: MessageType.MsgOut else: MessageType.MsgIn
2019-09-03 20:40:51 +00:00
await m.connection.writeHeader(id, msgType, data.len) # write header
await m.connection.write(data) # write data
2019-09-04 01:42:00 +00:00
result = newChannel(m, id, initiator, writeHandler)
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)
proc handle*(m: Mplex): Future[void] {.async, gcsafe.} =
try:
while not m.connection.closed:
let (id, msgType) = await m.connection.readHeader()
let initiator = bool(ord(msgType) and 1)
case msgType:
of MessageType.New:
let channel = await m.newStreamInternal(false, id.int)
2019-09-04 02:28:03 +00:00
channel.handlerFuture = m.streamHandler(newConnection(channel))
2019-09-04 01:42:00 +00:00
of MessageType.MsgIn, MessageType.MsgOut:
let channel = m.getChannelList(initiator)[id.int]
let msg = await m.connection.readLp()
await channel.pushTo(msg)
of MessageType.CloseIn, MessageType.CloseOut:
let channel = m.getChannelList(initiator)[id.int]
await channel.close()
of MessageType.ResetIn, MessageType.ResetOut:
let channel = m.getChannelList(initiator)[id.int]
await channel.reset()
else: raise newMplexUnknownMsgError()
except Exception as exc:
#TODO: add proper loging
discard
finally:
await m.connection.close()
2019-09-03 20:40:51 +00:00
proc newMplex*(conn: Connection,
streamHandler: StreamHandler,
maxChanns: uint = MaxChannels): Mplex =
new result
result.connection = conn
result.maxChannels = maxChanns
result.streamHandler = streamHandler
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-04 01:42:00 +00:00
method newStream*(m: Mplex): Future[Connection] {.async, gcsafe.} =
let channel = await m.newStreamInternal()
await m.connection.writeHeader(channel.id, MessageType.New, 0)
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-03 20:40:51 +00:00
await m.connection.close()