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

151 lines
4.6 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.
2019-09-09 17:33:32 +00:00
import strformat
import chronos, chronicles
2019-09-12 17:07:34 +00:00
import types,
2019-09-08 07:59:14 +00:00
coder,
nimcrypto/utils,
2019-09-12 17:07:34 +00:00
../../stream/bufferstream,
../../stream/lpstream,
2019-09-09 17:33:32 +00:00
../../connection
2019-09-04 03:08:51 +00:00
2019-09-10 02:15:52 +00:00
logScope:
topic = "mplex-channel"
2019-09-06 21:27:55 +00:00
const DefaultChannelSize* = DefaultBufferSize * 64 # 64kb
2019-09-04 03:08:51 +00:00
type
2019-09-12 17:07:34 +00:00
LPChannel* = ref object of BufferStream
id*: uint
2019-09-06 21:27:55 +00:00
name*: string
2019-09-04 06:40:11 +00:00
conn*: Connection
2019-09-04 03:08:51 +00:00
initiator*: bool
isReset*: bool
closedLocal*: bool
closedRemote*: bool
handlerFuture*: Future[void]
2019-09-04 06:40:11 +00:00
msgCode*: MessageType
closeCode*: MessageType
resetCode*: MessageType
2019-09-07 23:32:32 +00:00
asyncLock: AsyncLock
2019-09-04 03:08:51 +00:00
proc newChannel*(id: uint,
2019-09-04 06:40:11 +00:00
conn: Connection,
2019-09-04 03:08:51 +00:00
initiator: bool,
2019-09-06 21:27:55 +00:00
name: string = "",
2019-09-12 17:07:34 +00:00
size: int = DefaultChannelSize): LPChannel =
2019-09-04 03:08:51 +00:00
new result
result.id = id
2019-09-06 21:27:55 +00:00
result.name = name
2019-09-04 06:40:11 +00:00
result.conn = conn
2019-09-04 03:08:51 +00:00
result.initiator = initiator
2019-09-04 06:40:11 +00:00
result.msgCode = if initiator: MessageType.MsgOut else: MessageType.MsgIn
result.closeCode = if initiator: MessageType.CloseOut else: MessageType.CloseIn
result.resetCode = if initiator: MessageType.ResetOut else: MessageType.ResetIn
2019-09-07 23:32:32 +00:00
result.asyncLock = newAsyncLock()
2019-09-04 03:08:51 +00:00
2019-09-04 06:40:11 +00:00
let chan = result
proc writeHandler(data: seq[byte]): Future[void] {.async, gcsafe.} =
2019-09-07 23:32:32 +00:00
# writes should happen in sequence
await chan.asyncLock.acquire()
2019-09-14 13:55:52 +00:00
info "writeHandler: sending data ", data = data.toHex(), id = chan.id
await conn.writeMsg(chan.id, chan.msgCode, data) # write header
2019-09-07 23:32:32 +00:00
chan.asyncLock.release()
2019-09-04 06:40:11 +00:00
result.initBufferStream(writeHandler, size)
2019-09-12 17:07:34 +00:00
proc closeMessage(s: LPChannel) {.async, gcsafe.} =
await s.conn.writeMsg(s.id, s.closeCode) # write header
2019-09-04 06:40:11 +00:00
2019-09-12 17:07:34 +00:00
proc closed*(s: LPChannel): bool =
2019-09-07 23:32:32 +00:00
s.closedLocal and s.closedLocal
2019-09-04 06:40:11 +00:00
2019-09-12 17:07:34 +00:00
proc closedByRemote*(s: LPChannel) {.async.} =
2019-09-04 06:40:11 +00:00
s.closedRemote = true
2019-09-12 17:07:34 +00:00
proc cleanUp*(s: LPChannel): Future[void] =
2019-09-07 23:32:32 +00:00
result = procCall close(BufferStream(s))
2019-09-12 17:07:34 +00:00
method close*(s: LPChannel) {.async, gcsafe.} =
2019-09-04 06:40:11 +00:00
s.closedLocal = true
await s.closeMessage()
2019-09-12 17:07:34 +00:00
proc resetMessage(s: LPChannel) {.async, gcsafe.} =
await s.conn.writeMsg(s.id, s.resetCode)
2019-09-04 06:40:11 +00:00
2019-09-12 17:07:34 +00:00
proc resetByRemote*(s: LPChannel) {.async, gcsafe.} =
2019-09-04 16:40:05 +00:00
await allFutures(s.close(), s.closedByRemote())
2019-09-04 06:40:11 +00:00
s.isReset = true
2019-09-12 17:07:34 +00:00
proc reset*(s: LPChannel) {.async.} =
2019-09-04 16:40:05 +00:00
await allFutures(s.resetMessage(), s.resetByRemote())
2019-09-04 06:40:11 +00:00
2019-09-12 17:07:34 +00:00
proc isReadEof(s: LPChannel): bool =
2019-09-04 06:51:16 +00:00
bool((s.closedRemote or s.closedLocal) and s.len() < 1)
2019-09-04 06:40:11 +00:00
2019-09-12 17:07:34 +00:00
proc pushTo*(s: LPChannel, data: seq[byte]): Future[void] {.gcsafe.} =
2019-09-04 06:40:11 +00:00
if s.closedRemote:
raise newLPStreamClosedError()
2019-09-04 06:51:16 +00:00
result = procCall pushTo(BufferStream(s), data)
2019-09-04 06:40:11 +00:00
2019-09-12 17:07:34 +00:00
method read*(s: LPChannel, n = -1): Future[seq[byte]] {.gcsafe.} =
2019-09-04 06:40:11 +00:00
if s.isReadEof():
raise newLPStreamClosedError()
result = procCall read(BufferStream(s), n)
2019-09-12 17:07:34 +00:00
method readExactly*(s: LPChannel,
2019-09-04 06:40:11 +00:00
pbytes: pointer,
nbytes: int):
Future[void] {.gcsafe.} =
if s.isReadEof():
raise newLPStreamClosedError()
result = procCall readExactly(BufferStream(s), pbytes, nbytes)
2019-09-12 17:07:34 +00:00
method readLine*(s: LPChannel,
2019-09-04 06:40:11 +00:00
limit = 0,
sep = "\r\n"):
Future[string] {.gcsafe.} =
if s.isReadEof():
raise newLPStreamClosedError()
result = procCall readLine(BufferStream(s), limit, sep)
2019-09-12 17:07:34 +00:00
method readOnce*(s: LPChannel,
2019-09-04 06:40:11 +00:00
pbytes: pointer,
nbytes: int):
Future[int] {.gcsafe.} =
if s.isReadEof():
raise newLPStreamClosedError()
result = procCall readOnce(BufferStream(s), pbytes, nbytes)
2019-09-12 17:07:34 +00:00
method readUntil*(s: LPChannel,
2019-09-04 06:40:11 +00:00
pbytes: pointer, nbytes: int,
sep: seq[byte]):
Future[int] {.gcsafe.} =
if s.isReadEof():
raise newLPStreamClosedError()
result = procCall readOnce(BufferStream(s), pbytes, nbytes)
2019-09-12 17:07:34 +00:00
method write*(s: LPChannel,
2019-09-04 06:40:11 +00:00
pbytes: pointer,
nbytes: int): Future[void] {.gcsafe.} =
if s.closedLocal:
raise newLPStreamClosedError()
result = procCall write(BufferStream(s), pbytes, nbytes)
2019-09-12 17:07:34 +00:00
method write*(s: LPChannel, msg: string, msglen = -1) {.async, gcsafe.} =
2019-09-04 06:40:11 +00:00
if s.closedLocal:
raise newLPStreamClosedError()
result = procCall write(BufferStream(s), msg, msglen)
2019-09-12 17:07:34 +00:00
method write*(s: LPChannel, msg: seq[byte], msglen = -1) {.async, gcsafe.} =
2019-09-04 06:40:11 +00:00
if s.closedLocal:
raise newLPStreamClosedError()
result = procCall write(BufferStream(s), msg, msglen)