1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
package at.hannibal2.skyhanni.utils
import java.util.regex.Pattern
object TimeUtils {
private val pattern =
Pattern.compile("(?:(?<y>\\d+) ?y(?:\\w* ?)?)?(?:(?<d>\\d+) ?d(?:\\w* ?)?)?(?:(?<h>\\d+) ?h(?:\\w* ?)?)?(?:(?<m>\\d+) ?m(?:\\w* ?)?)?(?:(?<s>\\d+) ?s(?:\\w* ?)?)?")
fun formatDuration(
millis: Long,
biggestUnit: TimeUnit = TimeUnit.YEAR,
showMilliSeconds: Boolean = false,
longName: Boolean = false
): String {
var milliseconds = millis + 999
val map = mutableMapOf<TimeUnit, Int>()
for (unit in TimeUnit.values()) {
if (unit.ordinal >= biggestUnit.ordinal) {
val factor = unit.factor
map[unit] = (milliseconds / factor).toInt()
milliseconds %= factor
}
}
val builder = StringBuilder()
for ((unit, value) in map.entries) {
if (value > 0 || builder.isNotEmpty() || unit == TimeUnit.SECOND) {
builder.append(value)
val name = if (longName) {
" " + unit.longName + if (value > 1) "s" else ""
} else {
unit.shortName
}
if (unit == TimeUnit.SECOND) {
if (showMilliSeconds) {
val formatMillis = milliseconds / 100
builder.append(".")
builder.append(formatMillis)
}
builder.append(name)
} else {
builder.append("$name ")
}
}
}
return builder.toString()
}
fun getMillis(string: String): Long {
val matcher = pattern.matcher(string.lowercase().trim())
if (!matcher.matches()) {
throw RuntimeException("Matcher is null for '$string'")
}
val years = matcher.group("y")?.toLong() ?: 0L
val days = matcher.group("d")?.toLong() ?: 0L
val hours = matcher.group("h")?.toLong() ?: 0L
val minutes = matcher.group("m")?.toLong() ?: 0L
val seconds = matcher.group("s")?.toLong() ?: 0L
var millis = 0L
millis += seconds * 1000
millis += minutes * 60 * 1000
millis += hours * 60 * 60 * 1000
millis += days * 24 * 60 * 60 * 1000
millis += (years * 365.25 * 24 * 60 * 60 * 1000).toLong()
return millis
}
}
private const val FACTOR_SECONDS = 1000L
private const val FACTOR_MINUTES = FACTOR_SECONDS * 60
private const val FACTOR_HOURS = FACTOR_MINUTES * 60
private const val FACTOR_DAYS = FACTOR_HOURS * 24
private const val FACTOR_YEARS = (FACTOR_DAYS * 365.25).toLong()
enum class TimeUnit(val factor: Long, val shortName: String, val longName: String) {
YEAR(FACTOR_YEARS, "y", "Year"),
DAY(FACTOR_DAYS, "d", "Day"),
HOUR(FACTOR_HOURS, "h", "Hour"),
MINUTE(FACTOR_MINUTES, "m", "Minute"),
SECOND(FACTOR_SECONDS, "s", "Second"),
;
}
|