2020-04-11 04:08:25 +00:00
|
|
|
# this module will be further extended in PR
|
|
|
|
# https://github.com/status-im/nim-libp2p/pull/107/
|
|
|
|
|
|
|
|
import chronos
|
|
|
|
import chronicles
|
|
|
|
import macros
|
|
|
|
|
2021-05-21 16:27:01 +00:00
|
|
|
type
|
|
|
|
# Base exception type for libp2p
|
|
|
|
LPError* = object of CatchableError
|
|
|
|
|
2021-06-02 13:39:10 +00:00
|
|
|
func toException*(e: cstring): ref LPError =
|
|
|
|
(ref LPError)(msg: $e)
|
|
|
|
|
|
|
|
func toException*(e: string): ref LPError =
|
|
|
|
(ref LPError)(msg: e)
|
|
|
|
|
|
|
|
# TODO: could not figure how to make it with a simple template
|
2021-05-21 16:27:01 +00:00
|
|
|
# sadly nim needs more love for hygienic templates
|
2020-04-11 04:08:25 +00:00
|
|
|
# so here goes the macro, its based on the proc/template version
|
|
|
|
# and uses quote do so it's quite readable
|
2023-11-16 15:54:34 +00:00
|
|
|
# TODO https://github.com/nim-lang/Nim/issues/22936
|
|
|
|
macro checkFutures*[F](futs: seq[F], exclude: untyped = []): untyped =
|
2020-04-11 04:08:25 +00:00
|
|
|
let nexclude = exclude.len
|
|
|
|
case nexclude
|
|
|
|
of 0:
|
|
|
|
quote:
|
|
|
|
for res in `futs`:
|
|
|
|
if res.failed:
|
|
|
|
let exc = res.readError()
|
|
|
|
# We still don't abort but warn
|
2020-08-20 07:53:28 +00:00
|
|
|
debug "A future has failed, enable trace logging for details",
|
|
|
|
error = exc.name
|
2024-08-14 15:19:54 +00:00
|
|
|
trace "Exception message", description = exc.msg, stack = getStackTrace()
|
2020-04-11 04:08:25 +00:00
|
|
|
else:
|
|
|
|
quote:
|
|
|
|
for res in `futs`:
|
|
|
|
block check:
|
|
|
|
if res.failed:
|
|
|
|
let exc = res.readError()
|
|
|
|
for i in 0 ..< `nexclude`:
|
|
|
|
if exc of `exclude`[i]:
|
2024-08-14 15:19:54 +00:00
|
|
|
trace "A future has failed", error = exc.name, description = exc.msg
|
2020-04-11 04:08:25 +00:00
|
|
|
break check
|
|
|
|
# We still don't abort but warn
|
2020-08-20 07:53:28 +00:00
|
|
|
debug "A future has failed, enable trace logging for details",
|
|
|
|
error = exc.name
|
2024-08-14 15:19:54 +00:00
|
|
|
trace "Exception details", description = exc.msg
|