|
Akka/Scala example source code file (PrettyDuration.scala)
The PrettyDuration.scala Akka example source code
/**
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com>
*/
package akka.testkit.metrics.reporter
import scala.concurrent.duration._
object PrettyDuration {
implicit class PrettyPrintableDuration(val duration: Duration) extends AnyVal {
def pretty: String = pretty(includeNanos = false)
/** Selects most apropriate TimeUnit for given duration and formats it accordingly */
def pretty(includeNanos: Boolean, precision: Int = 4): String = {
require(precision > 0, "precision must be > 0")
duration match {
case d: FiniteDuration ⇒
val nanos = d.toNanos
val unit = chooseUnit(nanos)
val value = nanos.toDouble / NANOSECONDS.convert(1, unit)
s"%.${precision}g %s%s".format(value, abbreviate(unit), if (includeNanos) s" ($nanos ns)" else "")
case d: Duration.Infinite if d == Duration.MinusInf ⇒ s" -∞ (minus infinity)"
case d ⇒ s"∞ (infinity)"
}
}
def chooseUnit(nanos: Long): TimeUnit = {
val d = nanos.nanos
if (d.toDays > 0) DAYS
else if (d.toHours > 0) HOURS
else if (d.toMinutes > 0) MINUTES
else if (d.toSeconds > 0) SECONDS
else if (d.toMillis > 0) MILLISECONDS
else if (d.toMicros > 0) MICROSECONDS
else NANOSECONDS
}
def abbreviate(unit: TimeUnit): String = unit match {
case NANOSECONDS ⇒ "ns"
case MICROSECONDS ⇒ "μs"
case MILLISECONDS ⇒ "ms"
case SECONDS ⇒ "s"
case MINUTES ⇒ "min"
case HOURS ⇒ "h"
case DAYS ⇒ "d"
}
}
}
Other Akka source code examplesHere is a short list of links related to this Akka PrettyDuration.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.