mirror of
https://github.com/logos-storage/nim-chronos.git
synced 2026-08-09 07:43:35 +00:00
Investigated Transport close bug and fixed it.
Removed old integrated tests and hexdump Removed trailing whitespaces.
This commit is contained in:
parent
e33ed13fb5
commit
3fb9a91cbe
@ -43,7 +43,7 @@ proc setSockOpt*(socket: AsyncFD, level, optname, optval: int): bool =
|
|||||||
if setsockopt(SocketHandle(socket), cint(level), cint(optname), addr(value),
|
if setsockopt(SocketHandle(socket), cint(level), cint(optname), addr(value),
|
||||||
sizeof(value).SockLen) < 0'i32:
|
sizeof(value).SockLen) < 0'i32:
|
||||||
result = false
|
result = false
|
||||||
|
|
||||||
proc getSockOpt*(socket: AsyncFD, level, optname: int, value: var int): bool =
|
proc getSockOpt*(socket: AsyncFD, level, optname: int, value: var int): bool =
|
||||||
## `getsockopt()` for integer options.
|
## `getsockopt()` for integer options.
|
||||||
var res: cint
|
var res: cint
|
||||||
@ -89,7 +89,7 @@ proc wrapAsyncSocket*(sock: SocketHandle): AsyncFD =
|
|||||||
close(sock)
|
close(sock)
|
||||||
return asyncInvalidSocket
|
return asyncInvalidSocket
|
||||||
result = AsyncFD(sock)
|
result = AsyncFD(sock)
|
||||||
register(result)
|
register(result)
|
||||||
|
|
||||||
proc closeAsyncSocket*(s: AsyncFD) {.inline.} =
|
proc closeAsyncSocket*(s: AsyncFD) {.inline.} =
|
||||||
## Closes asynchronous socket handle ``s``.
|
## Closes asynchronous socket handle ``s``.
|
||||||
|
|||||||
@ -1,92 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (c) 2016 Eugene Kabanov <ka@hardcore.kiev.ua>
|
|
||||||
#
|
|
||||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
# of this software and associated documentation files (the "Software"), to deal
|
|
||||||
# in the Software without restriction, including without limitation the rights
|
|
||||||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
# copies of the Software, and to permit persons to whom the Software is
|
|
||||||
# furnished to do so, subject to the following conditions:
|
|
||||||
#
|
|
||||||
# The above copyright notice and this permission notice shall be included in all
|
|
||||||
# copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
# SOFTWARE.
|
|
||||||
#
|
|
||||||
|
|
||||||
from strutils import toHex, repeat
|
|
||||||
|
|
||||||
proc dumpHex*(pbytes: pointer, nbytes: int, items = 1, ascii = true): string =
|
|
||||||
## Return hexadecimal memory dump representation pointed by ``p``.
|
|
||||||
## ``nbytes`` - number of bytes to show
|
|
||||||
## ``items`` - number of bytes in group (supported ``items`` count is
|
|
||||||
## 1, 2, 4, 8)
|
|
||||||
## ``ascii`` - if ``true`` show ASCII representation of memory dump.
|
|
||||||
result = ""
|
|
||||||
let hexSize = items * 2
|
|
||||||
var i = 0
|
|
||||||
var slider = pbytes
|
|
||||||
var asciiText = ""
|
|
||||||
while i < nbytes:
|
|
||||||
if i %% 16 == 0:
|
|
||||||
result = result & toHex(cast[BiggestInt](slider),
|
|
||||||
sizeof(BiggestInt) * 2) & ": "
|
|
||||||
var k = 0
|
|
||||||
while k < items:
|
|
||||||
var ch = cast[ptr char](cast[uint](slider) + k.uint)[]
|
|
||||||
if ord(ch) > 31 and ord(ch) < 127: asciiText &= ch else: asciiText &= "."
|
|
||||||
inc(k)
|
|
||||||
case items:
|
|
||||||
of 1:
|
|
||||||
result = result & toHex(cast[BiggestInt](cast[ptr uint8](slider)[]),
|
|
||||||
hexSize)
|
|
||||||
of 2:
|
|
||||||
result = result & toHex(cast[BiggestInt](cast[ptr uint16](slider)[]),
|
|
||||||
hexSize)
|
|
||||||
of 4:
|
|
||||||
result = result & toHex(cast[BiggestInt](cast[ptr uint32](slider)[]),
|
|
||||||
hexSize)
|
|
||||||
of 8:
|
|
||||||
result = result & toHex(cast[BiggestInt](cast[ptr uint64](slider)[]),
|
|
||||||
hexSize)
|
|
||||||
else:
|
|
||||||
raise newException(ValueError, "Wrong items size!")
|
|
||||||
result = result & " "
|
|
||||||
slider = cast[pointer](cast[uint](slider) + items.uint)
|
|
||||||
i = i + items
|
|
||||||
if i %% 16 == 0:
|
|
||||||
result = result & " " & asciiText
|
|
||||||
asciiText.setLen(0)
|
|
||||||
result = result & "\n"
|
|
||||||
|
|
||||||
if i %% 16 != 0:
|
|
||||||
var spacesCount = ((16 - (i %% 16)) div items) * (hexSize + 1) + 1
|
|
||||||
result = result & repeat(' ', spacesCount)
|
|
||||||
result = result & asciiText
|
|
||||||
result = result & "\n"
|
|
||||||
|
|
||||||
proc dumpHex*[T](v: openarray[T], items: int = 0, ascii = true): string =
|
|
||||||
## Return hexadecimal memory dump representation of openarray[T] ``v``.
|
|
||||||
## ``items`` - number of bytes in group (supported ``items`` count is
|
|
||||||
## 0, 1, 2, 4, 8). If ``items`` is ``0`` group size will depend on
|
|
||||||
## ``sizeof(T)``.
|
|
||||||
## ``ascii`` - if ``true`` show ASCII representation of memory dump.
|
|
||||||
var i = 0
|
|
||||||
if items == 0:
|
|
||||||
when sizeof(T) == 2:
|
|
||||||
i = 2
|
|
||||||
elif sizeof(T) == 4:
|
|
||||||
i = 4
|
|
||||||
elif sizeof(T) == 8:
|
|
||||||
i = 8
|
|
||||||
else:
|
|
||||||
i = 1
|
|
||||||
else:
|
|
||||||
i = items
|
|
||||||
result = dumpHex(unsafeAddr v[0], sizeof(T) * len(v), i, ascii)
|
|
||||||
@ -15,23 +15,23 @@ when defined(nimdoc):
|
|||||||
## copying is done within the kernel, ``sendfile()`` is more efficient than
|
## copying is done within the kernel, ``sendfile()`` is more efficient than
|
||||||
## the combination of ``read(2)`` and ``write(2)``, which would require
|
## the combination of ``read(2)`` and ``write(2)``, which would require
|
||||||
## transferring data to and from user space.
|
## transferring data to and from user space.
|
||||||
##
|
##
|
||||||
## ``infd`` should be a file descriptor opened for reading and
|
## ``infd`` should be a file descriptor opened for reading and
|
||||||
## ``outfd`` should be a descriptor opened for writing.
|
## ``outfd`` should be a descriptor opened for writing.
|
||||||
##
|
##
|
||||||
## The ``infd`` argument must correspond to a file which supports
|
## The ``infd`` argument must correspond to a file which supports
|
||||||
## ``mmap(2)``-like operations (i.e., it cannot be a socket).
|
## ``mmap(2)``-like operations (i.e., it cannot be a socket).
|
||||||
##
|
##
|
||||||
## ``offset`` the file offset from which ``sendfile()`` will start reading
|
## ``offset`` the file offset from which ``sendfile()`` will start reading
|
||||||
## data from ``infd``.
|
## data from ``infd``.
|
||||||
##
|
##
|
||||||
## ``count`` is the number of bytes to copy between the file descriptors.
|
## ``count`` is the number of bytes to copy between the file descriptors.
|
||||||
##
|
##
|
||||||
## If the transfer was successful, the number of bytes written to ``outfd``
|
## If the transfer was successful, the number of bytes written to ``outfd``
|
||||||
## is returned. Note that a successful call to ``sendfile()`` may write
|
## is returned. Note that a successful call to ``sendfile()`` may write
|
||||||
## fewer bytes than requested; the caller should be prepared to retry the
|
## fewer bytes than requested; the caller should be prepared to retry the
|
||||||
## call if there were unsent bytes.
|
## call if there were unsent bytes.
|
||||||
##
|
##
|
||||||
## On error, ``-1`` is returned.
|
## On error, ``-1`` is returned.
|
||||||
|
|
||||||
when defined(linux) or defined(android):
|
when defined(linux) or defined(android):
|
||||||
|
|||||||
@ -26,7 +26,7 @@ elif defined(macosx):
|
|||||||
|
|
||||||
proc posix_gettimeofday(tp: var Timeval, unused: pointer = nil) {.
|
proc posix_gettimeofday(tp: var Timeval, unused: pointer = nil) {.
|
||||||
importc: "gettimeofday", header: "<sys/time.h>".}
|
importc: "gettimeofday", header: "<sys/time.h>".}
|
||||||
|
|
||||||
proc fastEpochTime*(): uint64 {.inline.} =
|
proc fastEpochTime*(): uint64 {.inline.} =
|
||||||
var t: Timeval
|
var t: Timeval
|
||||||
posix_gettimeofday(t)
|
posix_gettimeofday(t)
|
||||||
|
|||||||
@ -104,7 +104,7 @@ proc `$`*(address: TransportAddress): string =
|
|||||||
|
|
||||||
proc strAddress*(address: string): TransportAddress =
|
proc strAddress*(address: string): TransportAddress =
|
||||||
## Parses string representation of ``address``.
|
## Parses string representation of ``address``.
|
||||||
##
|
##
|
||||||
## IPv4 transport address format is ``a.b.c.d:port``.
|
## IPv4 transport address format is ``a.b.c.d:port``.
|
||||||
## IPv6 transport address format is ``[::]:port``.
|
## IPv6 transport address format is ``[::]:port``.
|
||||||
var parts = address.rsplit(":", maxsplit = 1)
|
var parts = address.rsplit(":", maxsplit = 1)
|
||||||
|
|||||||
@ -460,7 +460,7 @@ proc newDatagramTransport*(cbproc: DatagramCallback,
|
|||||||
bufSize: int = DefaultDatagramBufferSize
|
bufSize: int = DefaultDatagramBufferSize
|
||||||
): DatagramTransport =
|
): DatagramTransport =
|
||||||
## Create new UDP datagram transport (IPv4).
|
## Create new UDP datagram transport (IPv4).
|
||||||
##
|
##
|
||||||
## ``cbproc`` - callback which will be called, when new datagram received.
|
## ``cbproc`` - callback which will be called, when new datagram received.
|
||||||
## ``remote`` - bind transport to remote address (optional).
|
## ``remote`` - bind transport to remote address (optional).
|
||||||
## ``local`` - bind transport to local address (to serving incoming
|
## ``local`` - bind transport to local address (to serving incoming
|
||||||
@ -481,7 +481,7 @@ proc newDatagramTransport6*(cbproc: DatagramCallback,
|
|||||||
bufSize: int = DefaultDatagramBufferSize
|
bufSize: int = DefaultDatagramBufferSize
|
||||||
): DatagramTransport =
|
): DatagramTransport =
|
||||||
## Create new UDP datagram transport (IPv6).
|
## Create new UDP datagram transport (IPv6).
|
||||||
##
|
##
|
||||||
## ``cbproc`` - callback which will be called, when new datagram received.
|
## ``cbproc`` - callback which will be called, when new datagram received.
|
||||||
## ``remote`` - bind transport to remote address (optional).
|
## ``remote`` - bind transport to remote address (optional).
|
||||||
## ``local`` - bind transport to local address (to serving incoming
|
## ``local`` - bind transport to local address (to serving incoming
|
||||||
|
|||||||
@ -539,6 +539,9 @@ else:
|
|||||||
|
|
||||||
proc writeStreamLoop(udata: pointer) {.gcsafe.} =
|
proc writeStreamLoop(udata: pointer) {.gcsafe.} =
|
||||||
var cdata = cast[ptr CompletionData](udata)
|
var cdata = cast[ptr CompletionData](udata)
|
||||||
|
if not isNil(cdata) and cdata.fd == 0:
|
||||||
|
# Transport was closed earlier, exiting
|
||||||
|
return
|
||||||
var transp = cast[UnixStreamTransport](cdata.udata)
|
var transp = cast[UnixStreamTransport](cdata.udata)
|
||||||
let fd = SocketHandle(cdata.fd)
|
let fd = SocketHandle(cdata.fd)
|
||||||
if len(transp.queue) > 0:
|
if len(transp.queue) > 0:
|
||||||
@ -584,6 +587,9 @@ else:
|
|||||||
|
|
||||||
proc readStreamLoop(udata: pointer) {.gcsafe.} =
|
proc readStreamLoop(udata: pointer) {.gcsafe.} =
|
||||||
var cdata = cast[ptr CompletionData](udata)
|
var cdata = cast[ptr CompletionData](udata)
|
||||||
|
if not isNil(cdata) and cdata.fd == 0:
|
||||||
|
# Transport was closed earlier, exiting
|
||||||
|
return
|
||||||
var transp = cast[UnixStreamTransport](cdata.udata)
|
var transp = cast[UnixStreamTransport](cdata.udata)
|
||||||
let fd = SocketHandle(cdata.fd)
|
let fd = SocketHandle(cdata.fd)
|
||||||
while true:
|
while true:
|
||||||
|
|||||||
@ -1,13 +0,0 @@
|
|||||||
import asyncdispatch2
|
|
||||||
|
|
||||||
proc task() {.async.} =
|
|
||||||
await sleepAsync(10)
|
|
||||||
|
|
||||||
when isMainModule:
|
|
||||||
var counter = 0
|
|
||||||
var f = task()
|
|
||||||
while not f.finished:
|
|
||||||
inc(counter)
|
|
||||||
poll()
|
|
||||||
|
|
||||||
echo counter
|
|
||||||
@ -1,10 +0,0 @@
|
|||||||
import asyncdispatch2
|
|
||||||
|
|
||||||
proc task() {.async.} =
|
|
||||||
await sleepAsync(1000)
|
|
||||||
|
|
||||||
proc waitTask() {.async.} =
|
|
||||||
echo await withTimeout(task(), 100)
|
|
||||||
|
|
||||||
when isMainModule:
|
|
||||||
waitFor waitTask()
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
import ../asyncdispatch2
|
|
||||||
|
|
||||||
proc task() {.async.} =
|
|
||||||
if true:
|
|
||||||
raise newException(ValueError, "Test Error")
|
|
||||||
|
|
||||||
proc waitTask() {.async.} =
|
|
||||||
await task()
|
|
||||||
|
|
||||||
when isMainModule:
|
|
||||||
waitFor waitTask()
|
|
||||||
@ -10,9 +10,9 @@ import strutils, net, unittest
|
|||||||
import ../asyncdispatch2
|
import ../asyncdispatch2
|
||||||
|
|
||||||
const
|
const
|
||||||
TestsCount = 100000
|
TestsCount = 10000
|
||||||
ClientsCount = 100
|
ClientsCount = 100
|
||||||
MessagesCount = 1000
|
MessagesCount = 100
|
||||||
|
|
||||||
proc client1(transp: DatagramTransport, pbytes: pointer, nbytes: int,
|
proc client1(transp: DatagramTransport, pbytes: pointer, nbytes: int,
|
||||||
raddr: TransportAddress, udata: pointer): Future[void] {.async.} =
|
raddr: TransportAddress, udata: pointer): Future[void] {.async.} =
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user