nim-libp2p/libp2p/connection.nim

99 lines
3.0 KiB
Nim
Raw Normal View History

## 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-08-27 21:45:21 +00:00
import peerinfo, multiaddress, stream, peerinfo, varint, vbuffer
const DefaultReadSize: uint = 64*1024
type
2019-08-27 21:45:21 +00:00
Connection* = ref object of LPStream
peerInfo*: PeerInfo
2019-08-30 05:15:43 +00:00
stream*: LPStream
2019-08-27 21:45:21 +00:00
proc newConnection*(stream: LPStream): Connection =
## create a new Connection for the specified async reader/writer
new result
result.stream = stream
2019-08-26 15:37:15 +00:00
method read*(s: Connection, n = -1): Future[seq[byte]] {.async.} =
result = await s.stream.read(n)
2019-08-26 15:37:15 +00:00
method readExactly*(s: Connection,
pbytes: pointer,
nbytes: int): Future[void] {.async.} =
await s.stream.readExactly(pbytes, nbytes)
2019-08-26 15:37:15 +00:00
method readLine*(s: Connection,
limit = 0,
sep = "\r\n"): Future[string] {.async.} =
result = await s.stream.readLine(limit, sep)
2019-08-21 19:15:51 +00:00
2019-08-26 15:37:15 +00:00
method readOnce*(s: Connection,
pbytes: pointer,
nbytes: int): Future[int] {.async.} =
result = await s.stream.readOnce(pbytes, nbytes)
2019-08-26 15:37:15 +00:00
method readUntil*(s: Connection,
pbytes: pointer,
nbytes: int,
sep: seq[byte]): Future[int] {.async.} =
result = await s.stream.readUntil(pbytes, nbytes, sep)
method write*(s: Connection, pbytes: pointer, nbytes: int) {.async.} =
await s.stream.write(pbytes, nbytes)
method write*(s: Connection, msg: string, msglen = -1) {.async.} =
await s.stream.write(msg, msglen)
2019-08-21 22:53:16 +00:00
2019-08-23 00:03:29 +00:00
method write*(s: Connection, msg: seq[byte], msglen = -1) {.async.} =
await s.stream.write(msg, msglen)
2019-08-21 22:53:16 +00:00
method close*(s: Connection) {.async.} =
await s.stream.close()
s.closed = true
2019-08-26 15:37:15 +00:00
proc readLp*(s: Connection): Future[seq[byte]] {.async.} =
## read lenght prefixed msg
var
size: uint
length: int
res: VarintStatus
var buffer = newSeq[byte](10)
try:
for i in 0..<len(buffer):
await s.readExactly(addr buffer[i], 1)
res = LP.getUVarint(buffer.toOpenArray(0, i), length, size)
if res == VarintStatus.Success:
break
if res != VarintStatus.Success or size > DefaultReadSize:
buffer.setLen(0)
buffer.setLen(size)
await s.readExactly(addr buffer[0], int(size))
except TransportIncompleteError:
buffer.setLen(0)
result = buffer
proc writeLp*(s: Connection, msg: string | seq[byte]) {.async.} =
## write lenght prefixed
var buf = initVBuffer()
buf.writeSeq(msg)
buf.finish()
result = s.write(buf.buffer)
2019-08-30 05:15:43 +00:00
method getPeerInfo*(c: Connection): Future[PeerInfo] {.base, async.} =
## get up to date peer info
## TODO: implement PeerInfo refresh over identify
discard
2019-08-30 05:15:43 +00:00
method getObservedAddrs*(c: Connection): Future[MultiAddress] {.base, async.} =
## get resolved multiaddresses for the connection
discard