79 lines
2.3 KiB
Nim
Raw Normal View History

2019-09-03 21:08:51 -06:00
## Nim-LibP2P
2019-09-24 11:48:23 -06:00
## Copyright (c) 2019 Status Research & Development GmbH
2019-09-03 21:08:51 -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.
2019-09-08 00:34:08 -06:00
import chronos, options, sequtils, strformat
2019-09-09 11:33:32 -06:00
import nimcrypto/utils, chronicles
import types,
2019-09-12 11:07:34 -06:00
../../connection,
../../varint,
../../vbuffer,
2019-09-09 11:33:32 -06:00
../../stream/lpstream
2019-09-03 21:08:51 -06:00
2019-09-09 20:15:52 -06:00
logScope:
topic = "mplex-coder"
2019-09-06 15:27:55 -06:00
type
2019-09-07 17:34:11 -06:00
Msg* = tuple
id: uint
msgType: MessageType
data: seq[byte]
2019-09-06 15:27:55 -06:00
2019-09-07 17:34:11 -06:00
proc readMplexVarint(conn: Connection): Future[Option[uint]] {.async, gcsafe.} =
2019-09-03 21:08:51 -06:00
var
varint: uint
2019-09-03 21:08:51 -06:00
length: int
res: VarintStatus
var buffer = newSeq[byte](10)
2019-09-07 17:34:11 -06:00
result = none(uint)
2019-09-03 21:08:51 -06:00
try:
for i in 0..<len(buffer):
await conn.readExactly(addr buffer[i], 1)
res = LP.getUVarint(buffer.toOpenArray(0, i), length, varint)
2019-09-03 21:08:51 -06:00
if res == VarintStatus.Success:
2019-09-07 17:34:11 -06:00
return some(varint)
2019-09-03 21:08:51 -06:00
if res != VarintStatus.Success:
buffer.setLen(0)
return
2019-09-09 11:33:32 -06:00
except LPStreamIncompleteError:
2019-09-03 21:08:51 -06:00
buffer.setLen(0)
2019-09-07 17:34:11 -06:00
proc readMsg*(conn: Connection): Future[Option[Msg]] {.async, gcsafe.} =
let headerVarint = await conn.readMplexVarint()
if headerVarint.isNone:
return
trace "readMsg: read header varint ", varint = headerVarint
2019-09-07 17:34:11 -06:00
let dataLenVarint = await conn.readMplexVarint()
var data: seq[byte]
2019-09-07 17:34:11 -06:00
if dataLenVarint.isSome and dataLenVarint.get() > 0.uint:
trace "readMsg: read size varint ", varint = dataLenVarint
2019-09-07 17:34:11 -06:00
data = await conn.read(dataLenVarint.get().int)
let header = headerVarint.get()
result = some((header shr 3, MessageType(header and 0x7), data))
proc writeMsg*(conn: Connection,
2019-09-07 17:34:11 -06:00
id: uint,
msgType: MessageType,
data: seq[byte] = @[]) {.async, gcsafe.} =
2019-09-03 21:08:51 -06:00
## write lenght prefixed
var buf = initVBuffer()
2019-09-07 17:34:11 -06:00
let header = (id shl 3 or ord(msgType).uint)
buf.writeVarint(id shl 3 or ord(msgType).uint)
buf.writeVarint(data.len().uint) # size should be always sent
2019-09-03 21:08:51 -06:00
buf.finish()
await conn.write(buf.buffer & data)
2019-09-07 17:34:11 -06:00
proc writeMsg*(conn: Connection,
id: uint,
msgType: MessageType,
data: string) {.async, gcsafe.} =
2019-09-11 20:10:38 -06:00
result = conn.writeMsg(id, msgType, cast[seq[byte]](data))