wip: initial multistream handler implementation

This commit is contained in:
Dmitriy Ryajov 2019-08-23 17:54:30 -06:00
parent 307c76e139
commit e13f42f9bb
2 changed files with 97 additions and 62 deletions

View File

@ -13,9 +13,9 @@ import connection, varint, vbuffer
const MsgSize* = 64*1024 const MsgSize* = 64*1024
const Codec* = "/multistream/1.0.0" const Codec* = "/multistream/1.0.0"
const MultiCodec* = Codec & "\n" const MultiCodec* = "\x19" & Codec & "\n"
const Na = "na\n" const Na = "\x3na\n"
const Ls = "ls\n" const Ls = "\x3ls\n"
type type
MultisteamSelectException = object of CatchableError MultisteamSelectException = object of CatchableError
@ -30,56 +30,59 @@ type
MultisteamSelect* = ref object of RootObj MultisteamSelect* = ref object of RootObj
handlers*: seq[HandlerHolder] handlers*: seq[HandlerHolder]
codec*: seq[byte] codec*: string
na*: seq[byte] na*: string
ls*: seq[byte] ls*: string
proc lp*(data: string, s: var seq[byte]): int =
var buf = initVBuffer(s)
buf.writeSeq(data)
buf.finish()
s = buf.buffer
proc newMultistream*(): MultisteamSelect = proc newMultistream*(): MultisteamSelect =
new result new result
result.codec = newSeq[byte]() result.codec = MultiCodec
discard lp(MultiCodec, result.codec) result.ls = Ls
result.na = Na
result.na = newSeq[byte]() proc select*(m: MultisteamSelect, conn: Connection, proto: string = ""): Future[bool] {.async.} =
discard lp(Na, result.na)
result.ls = newSeq[byte]()
discard lp(Ls, result.ls)
proc select*(m: MultisteamSelect, conn: Connection, proto: string): Future[bool] {.async.} =
## select a remote protocol ## select a remote protocol
## TODO: select should support a list of protos to be selected
await conn.write(m.codec) # write handshake await conn.write(m.codec) # write handshake
await conn.writeLp(proto) # select proto await conn.writeLp(proto) # select proto
var ms = cast[string](await conn.readLp()) var ms = cast[string](await conn.readLp())
echo MultiCodec ms.removeSuffix("\n")
if ms != MultiCodec: if ms != Codec:
raise newException(MultisteamSelectException, raise newException(MultisteamSelectException,
"Error: invalid multistream codec " & "\"" & ms & "\"") "Error: invalid multistream codec " & "\"" & ms & "\"")
var msProto = cast[string](await conn.readLp()) if proto.len() <= 0:
msProto.removeSuffix("\n") return true
result = msProto == proto
proc ls*(m: MultisteamSelect): Future[seq[string]] {.async.} = ms = cast[string](await conn.readLp())
## list all remote protocol strings ms.removeSuffix("\n")
discard result = ms == proto
# proc handle*(m: MultisteamSelect, conn: Connection) {.async.} = proc handle*(m: MultisteamSelect, conn: Connection) {.async.} =
# ## handle requests on connection ## handle requests on connection
# await conn.write(m.codec) if not (await m.select(conn)):
return
# let ms = await conn.readLine(0, "\n") block handleLoop:
# if ms != MultiCodec: var ms = cast[string](await conn.readLp())
# raise newException(MultisteamSelectException, ms.removeSuffix("\n")
# "Error: invalid multistream codec " & "\"" & $ms & "\"") if ms.len() <= 0:
await conn.writeLp(Na)
# let ms = await conn.readLine(0, "\n")
case ms:
of "ls":
for h in m.handlers:
await conn.writeLp(h.proto)
break handleLoop
else:
for h in m.handlers:
if (not isNil(h.match) and h.match(ms)) or ms == h.proto:
await h.handler(conn, ms)
break
else:
await conn.write(Na)
break handleLoop
proc addHandler*(m: MultisteamSelect, proc addHandler*(m: MultisteamSelect,
proto: string, proto: string,

View File

@ -3,12 +3,12 @@ import chronos
import ../libp2p/connection, ../libp2p/multistreamselect, import ../libp2p/connection, ../libp2p/multistreamselect,
../libp2p/readerwriter, ../libp2p/connection ../libp2p/readerwriter, ../libp2p/connection
# custom select stream ## Stream for select test
type type
TestStream = ref object of ReadWrite TestSelectStream = ref object of ReadWrite
step*: int step*: int
method readExactly*(s: TestStream, pbytes: pointer, nbytes: int): Future[void] {.async.} = method readExactly*(s: TestSelectStream, pbytes: pointer, nbytes: int): Future[void] {.async.} =
case s.step: case s.step:
of 1: of 1:
var buf = newSeq[byte](1) var buf = newSeq[byte](1)
@ -16,7 +16,7 @@ method readExactly*(s: TestStream, pbytes: pointer, nbytes: int): Future[void] {
copyMem(cast[pointer](cast[uint](pbytes)), addr buf[0], buf.len()) copyMem(cast[pointer](cast[uint](pbytes)), addr buf[0], buf.len())
s.step = 2 s.step = 2
of 2: of 2:
var buf = MultiCodec var buf = "/multistream/1.0.0\n"
copyMem(cast[pointer](cast[uint](pbytes)), addr buf[0], buf.len()) copyMem(cast[pointer](cast[uint](pbytes)), addr buf[0], buf.len())
s.step = 3 s.step = 3
of 3: of 3:
@ -30,30 +30,62 @@ method readExactly*(s: TestStream, pbytes: pointer, nbytes: int): Future[void] {
else: else:
copyMem(cast[pointer](cast[uint](pbytes)), cstring("\0x3na\n"), "\0x3na\n".len()) copyMem(cast[pointer](cast[uint](pbytes)), cstring("\0x3na\n"), "\0x3na\n".len())
proc newTestStream(): TestStream = proc newTestSelectStream(): TestSelectStream =
new result
result.step = 1
## Stream for handles test
type
TestHandlesStream = ref object of ReadWrite
step*: int
method readExactly*(s: TestHandlesStream, pbytes: pointer, nbytes: int): Future[void] {.async.} =
case s.step:
of 1:
var buf = newSeq[byte](1)
buf[0] = 19
copyMem(cast[pointer](cast[uint](pbytes)), addr buf[0], buf.len())
s.step = 2
of 2:
var buf = "/multistream/1.0.0\n"
copyMem(cast[pointer](cast[uint](pbytes)), addr buf[0], buf.len())
s.step = 3
of 3:
var buf = newSeq[byte](1)
buf[0] = 18
copyMem(cast[pointer](cast[uint](pbytes)), addr buf[0], buf.len())
s.step = 4
of 4:
var buf = "/test/proto/1.0.0\n"
copyMem(cast[pointer](cast[uint](pbytes)), addr buf[0], buf.len())
else:
copyMem(cast[pointer](cast[uint](pbytes)), cstring("\0x3na\n"), "\0x3na\n".len())
proc newTestHandlesStream(): TestHandlesStream =
new result new result
result.step = 1 result.step = 1
suite "Multistream select": suite "Multistream select":
test "test select": # test "test select custom proto":
proc testSelect(): Future[bool] {.async.} = # proc testSelect(): Future[bool] {.async.} =
let ms = newMultistream()
let conn = newConnection(newTestStream())
result = await ms.select(conn, "/test/proto/1.0.0")
check:
waitFor(testSelect()) == true
# test "test handle":
# proc testHandle(): Future[bool] {.async.} =
# let ms = newMultistream() # let ms = newMultistream()
# let conn = newConnection(newTestStream()) # let conn = newConnection(newTestSelectStream())
# result = await ms.select(conn, "/test/proto/1.0.0")
# proc testHandler(conn: Connection, proto: string): Future[void] =
# check proto == "/test/proto/1.0.0"
# ms.addHandler("/test/proto/1.0.0", testHandler)
# await ms.handle(conn)
# check: # check:
# waitFor(testHandle()) == true # waitFor(testSelect()) == true
test "test handle custom proto":
proc testHandle(): Future[bool] {.async.} =
let ms = newMultistream()
let conn = newConnection(newTestHandlesStream())
proc testHandler(conn: Connection, proto: string): Future[void] {.async.} =
check proto == "/test/proto/1.0.0"
ms.addHandler("/test/proto/1.0.0", testHandler)
await ms.handle(conn)
result = true
check:
waitFor(testHandle()) == true