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

57 lines
1.7 KiB
Nim
Raw Normal View History

2019-09-04 03:08: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.
import chronos
2019-09-06 06:51:19 +00:00
import types,
../../connection,
../../varint,
../../vbuffer,
../../stream/lpstream,
nimcrypto/utils
2019-09-04 03:08:51 +00:00
2019-09-06 21:27:55 +00:00
type
Phase = enum Header, Size
proc readMplexVarint(conn: Connection): Future[uint] {.async, gcsafe.} =
2019-09-04 03:08:51 +00:00
var
varint: uint
2019-09-04 03:08:51 +00:00
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, varint)
2019-09-04 03:08:51 +00:00
if res == VarintStatus.Success:
return varint
2019-09-04 03:08:51 +00:00
if res != VarintStatus.Success:
buffer.setLen(0)
return
except TransportIncompleteError, AsyncStreamIncompleteError:
2019-09-04 03:08:51 +00:00
buffer.setLen(0)
proc readMsg*(conn: Connection): Future[(uint, MessageType, seq[byte])] {.async, gcsafe.} =
let header = await conn.readMplexVarint()
let dataLen = await conn.readMplexVarint()
var data: seq[byte]
if dataLen > 0.uint:
data = await conn.read(dataLen.int)
result = (header shr 3, MessageType(header and 0x7), data)
proc writeMsg*(conn: Connection,
id: uint,
2019-09-04 03:08:51 +00:00
msgType: MessageType,
data: seq[byte] = @[]) {.async, gcsafe.} =
2019-09-04 03:08:51 +00:00
## write lenght prefixed
var buf = initVBuffer()
buf.writeVarint((id shl 3) or ord(msgType).uint)
buf.writeVarint(data.len().uint) # size should be always sent
2019-09-04 03:08:51 +00:00
buf.finish()
await conn.write(buf.buffer & data)