split mplex
This commit is contained in:
parent
c2ce55a94a
commit
6058a3fc69
|
@ -0,0 +1,34 @@
|
||||||
|
## 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
|
||||||
|
import ../../stream/bufferstream
|
||||||
|
import types
|
||||||
|
|
||||||
|
type
|
||||||
|
Channel* = ref object of BufferStream
|
||||||
|
id*: int
|
||||||
|
initiator*: bool
|
||||||
|
isReset*: bool
|
||||||
|
closedLocal*: bool
|
||||||
|
closedRemote*: bool
|
||||||
|
handlerFuture*: Future[void]
|
||||||
|
|
||||||
|
proc newChannel*(id: int,
|
||||||
|
initiator: bool,
|
||||||
|
handler: WriteHandler,
|
||||||
|
size: int = MaxMsgSize): Channel =
|
||||||
|
new result
|
||||||
|
result.id = id
|
||||||
|
result.initiator = initiator
|
||||||
|
result.initBufferStream(handler, size)
|
||||||
|
|
||||||
|
proc closed*(s: Channel): bool = s.closedLocal and s.closedRemote
|
||||||
|
proc close*(s: Channel) {.async.} = discard
|
||||||
|
proc reset*(s: Channel) {.async.} = discard
|
|
@ -0,0 +1,43 @@
|
||||||
|
## 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
|
||||||
|
import ../../connection, ../../varint,
|
||||||
|
../../vbuffer, mplex, types,
|
||||||
|
../../stream/lpstream
|
||||||
|
|
||||||
|
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
|
||||||
|
except LPStreamIncompleteError:
|
||||||
|
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))
|
||||||
|
if size > 0:
|
||||||
|
buf.writeVarint(LPSomeUVarint(size.uint))
|
||||||
|
buf.finish()
|
||||||
|
result = conn.write(buf.buffer)
|
|
@ -9,27 +9,13 @@
|
||||||
|
|
||||||
import tables, sequtils
|
import tables, sequtils
|
||||||
import chronos
|
import chronos
|
||||||
import ../varint, ../connection,
|
import ../../varint, ../../connection,
|
||||||
../vbuffer, ../protocol,
|
../../vbuffer, ../../protocol,
|
||||||
../stream/bufferstream, ../stream/lpstream,
|
../../stream/bufferstream,
|
||||||
muxer
|
../../stream/lpstream, ../muxer,
|
||||||
|
coder, types, channel
|
||||||
|
|
||||||
const MaxMsgSize* = 1 shl 20 # 1mb
|
type
|
||||||
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
|
Mplex* = ref object of Muxer
|
||||||
remote*: Table[int, Channel]
|
remote*: Table[int, Channel]
|
||||||
local*: Table[int, Channel]
|
local*: Table[int, Channel]
|
||||||
|
@ -37,71 +23,9 @@ type
|
||||||
maxChannels*: uint
|
maxChannels*: uint
|
||||||
streamHandler*: StreamHandler
|
streamHandler*: StreamHandler
|
||||||
|
|
||||||
Channel* = ref object of BufferStream
|
proc newMplexUnknownMsgError(): ref MplexUnknownMsgError =
|
||||||
id*: int
|
|
||||||
initiator*: bool
|
|
||||||
isReset*: bool
|
|
||||||
closedLocal*: bool
|
|
||||||
closedRemote*: bool
|
|
||||||
mplex*: Mplex
|
|
||||||
handlerFuture*: Future[void]
|
|
||||||
|
|
||||||
proc newMplexUnknownMsgError*(): ref MplexUnknownMsgError =
|
|
||||||
result = newException(MplexUnknownMsgError, "Unknown mplex message type")
|
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
|
|
||||||
except LPStreamIncompleteError:
|
|
||||||
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))
|
|
||||||
if size > 0:
|
|
||||||
buf.writeVarint(LPSomeUVarint(size.uint))
|
|
||||||
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
|
|
||||||
result.initBufferStream(handler, size)
|
|
||||||
|
|
||||||
proc closed*(s: Channel): bool = s.closedLocal and s.closedRemote
|
|
||||||
proc close*(s: Channel) {.async.} = discard
|
|
||||||
proc reset*(s: Channel) {.async.} = discard
|
|
||||||
|
|
||||||
##########################################
|
##########################################
|
||||||
## Mplex
|
## Mplex
|
||||||
##########################################
|
##########################################
|
||||||
|
@ -123,7 +47,7 @@ proc newStreamInternal*(m: Mplex,
|
||||||
await m.connection.writeHeader(id, msgType, data.len) # write header
|
await m.connection.writeHeader(id, msgType, data.len) # write header
|
||||||
await m.connection.write(data) # write data
|
await m.connection.write(data) # write data
|
||||||
|
|
||||||
result = newChannel(m, id, initiator, writeHandler)
|
result = newChannel(id, initiator, writeHandler)
|
||||||
m.getChannelList(initiator)[id] = result
|
m.getChannelList(initiator)[id] = result
|
||||||
|
|
||||||
proc newStreamInternal*(m: Mplex): Future[Channel] {.gcsafe.} =
|
proc newStreamInternal*(m: Mplex): Future[Channel] {.gcsafe.} =
|
|
@ -0,0 +1,28 @@
|
||||||
|
## 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
|
||||||
|
import ../../connection
|
||||||
|
|
||||||
|
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.}
|
|
@ -1,8 +1,14 @@
|
||||||
import unittest, sequtils, sugar
|
import unittest, sequtils, sugar
|
||||||
import chronos, nimcrypto/utils
|
import chronos, nimcrypto/utils
|
||||||
import ../libp2p/muxers/mplex, ../libp2p/connection,
|
import ../libp2p/connection,
|
||||||
../libp2p/stream/lpstream, ../libp2p/tcptransport,
|
../libp2p/stream/lpstream,
|
||||||
../libp2p/transport, ../libp2p/multiaddress
|
../libp2p/tcptransport,
|
||||||
|
../libp2p/transport,
|
||||||
|
../libp2p/multiaddress,
|
||||||
|
../libp2p/muxers/mplex/mplex,
|
||||||
|
../libp2p/muxers/mplex/coder,
|
||||||
|
../libp2p/muxers/mplex/types,
|
||||||
|
../libp2p/muxers/mplex/channel
|
||||||
|
|
||||||
type
|
type
|
||||||
TestEncodeStream = ref object of LPStream
|
TestEncodeStream = ref object of LPStream
|
||||||
|
|
Loading…
Reference in New Issue