# Nimbus # Copyright (c) 2018-2019 Status Research & Development GmbH # Licensed under either of # * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or # http://www.apache.org/licenses/LICENSE-2.0) # * MIT license ([LICENSE-MIT](LICENSE-MIT) or # http://opensource.org/licenses/MIT) # at your option. This file may not be copied, modified, or distributed except # according to those terms. ## Pretty printing, an alternative to `$` for debugging ## ---------------------------------------------------- ## ## minimal dependencies, avoiding circular import import std/[sequtils, strformat, strutils, tables, times], eth/common, ../../nimbus/constants export sequtils, strformat, strutils # ------------------------------------------------------------------------------ # Helpers # ------------------------------------------------------------------------------ proc reGroup(q: openArray[int]; itemsPerSegment = 16): seq[seq[int]] = var top = 0 while top < q.len: let w = top top = min(w + itemsPerSegment, q.len) result.add q[w ..< top] # ------------------------------------------------------------------------------ # Public functions, units pretty printer # ------------------------------------------------------------------------------ proc ppUs*(elapsed: Duration): string = result = $elapsed.inMicroseconds let ns = elapsed.inNanoseconds mod 1_000 # fraction of a micro second if ns != 0: # to rounded deca milli seconds let du = (ns + 5i64) div 10i64 result &= &".{du:02}" result &= "us" proc ppMs*(elapsed: Duration): string = result = $elapsed.inMilliseconds let ns = elapsed.inNanoseconds mod 1_000_000 # fraction of a milli second if ns != 0: # to rounded deca milli seconds let dm = (ns + 5_000i64) div 10_000i64 result &= &".{dm:02}" result &= "ms" proc ppSecs*(elapsed: Duration): string = result = $elapsed.inSeconds let ns = elapsed.inNanoseconds mod 1_000_000_000 # fraction of a second if ns != 0: # round up let ds = (ns + 5_000_000i64) div 10_000_000i64 result &= &".{ds:02}" result &= "s" proc ppMins*(elapsed: Duration): string = result = $elapsed.inMinutes let ns = elapsed.inNanoseconds mod 60_000_000_000 # fraction of a minute if ns != 0: # round up let dm = (ns + 500_000_000i64) div 1_000_000_000i64 result &= &":{dm:02}" result &= "m" proc toKMG*[T](s: T): string = proc subst(s: var string; tag, new: string): bool = if tag.len < s.len and s[s.len - tag.len ..< s.len] == tag: s = s[0 ..< s.len - tag.len] & new return true result = $s for w in [("000", "K"),("000K","M"),("000M","G"),("000G","T"), ("000T","P"),("000P","E"),("000E","Z"),("000Z","Y")]: if not result.subst(w[0],w[1]): return # ------------------------------------------------------------------------------ # Public functions, pretty printer # ------------------------------------------------------------------------------ proc pp*(s: string; hex = false): string = if hex: let n = (s.len + 1) div 2 (if s.len < 20: s else: s[0 .. 5] & ".." & s[s.len-8 .. s.len-1]) & "[" & (if 0 < n: "#" & $n else: "") & "]" elif s.len <= 30: s else: (if (s.len and 1) == 0: s[0 ..< 8] else: "0" & s[0 ..< 7]) & "..(" & $s.len & ").." & s[s.len-16 ..< s.len] proc pp*(q: openArray[int]; itemsPerLine: int; lineSep: string): string = doAssert q == q.reGroup(itemsPerLine).concat q.reGroup(itemsPerLine) .mapIt(it.mapIt(&"0x{it:02x}").join(", ")) .join("," & lineSep) proc pp*(a: MDigest[256]; collapse = true): string = if not collapse: a.data.mapIt(it.toHex(2)).join.toLowerAscii elif a == ZERO_HASH256: "ZERO_HASH256" elif a == EMPTY_ROOT_HASH: "EMPTY_ROOT_HASH" elif a == EMPTY_UNCLE_HASH: "EMPTY_UNCLE_HASH" elif a == EMPTY_SHA3: "EMPTY_SHA3" elif a == ZERO_HASH256: "ZERO_HASH256" else: a.data.mapIt(it.toHex(2)).join[56 .. 63].toLowerAscii proc pp*(a: openArray[MDigest[256]]; collapse = true): string = "@[" & a.toSeq.mapIt(it.pp).join(" ") & "]" proc pp*(q: openArray[int]; itemsPerLine: int; indent: int): string = q.pp(itemsPerLine = itemsPerLine, lineSep = "\n" & " ".repeat(max(1,indent))) proc pp*(q: openArray[byte]; noHash = false): string = if q.len == 32 and not noHash: var a: array[32,byte] for n in 0..31: a[n] = q[n] MDigest[256](data: a).pp else: q.toSeq.mapIt(it.toHex(2)).join.toLowerAscii.pp(hex = true) # ------------------------------------------------------------------------------ # Elapsed time pretty printer # ------------------------------------------------------------------------------ template showElapsed*(noisy: bool; info: string; code: untyped) = block: let start = getTime() block: code if noisy: let elpd {.inject.} = getTime() - start if 0 < times.inSeconds(elpd): echo "*** ", info, &": {elpd.ppSecs:>4}" else: echo "*** ", info, &": {elpd.ppMs:>4}" template showElapsed*( noisy: bool; info: string; elapsed: Duration; code: untyped) = block: let start = getTime() block: code block: let now = getTime() elapsed = now - start if noisy: let elpd {.inject.} = elapsed if 0 < times.inSeconds(elpd): echo "*** ", info, &": {elpd.ppSecs:>4}" else: echo "*** ", info, &": {elpd.ppMs:>4}" template catchException*(info: string; trace: bool; code: untyped) = block: try: code except CatchableError as e: if trace: echo "*** ", info, ": exception ", e.name, "(", e.msg, ")" echo " ", e.getStackTrace.strip.replace("\n","\n ") template catchException*(info: string; code: untyped) = catchException(info, false, code) # ------------------------------------------------------------------------------ # End # ------------------------------------------------------------------------------