1
0
mirror of https://github.com/mamoe/mirai.git synced 2025-04-03 14:20:10 +08:00

Change Duration.asHumanReadable to Duration.toHumanReadableString for clearer semantics

This commit is contained in:
Him188 2020-12-17 09:21:59 +08:00
parent 6ccd20c377
commit 95013a6ca2
4 changed files with 18 additions and 19 deletions
mirai-core-api/src
commonMain/kotlin/contact
commonTest/kotlin/utils
mirai-core-utils/src/commonMain/kotlin
mirai-core/src/commonMain/kotlin

View File

@ -12,7 +12,7 @@
package net.mamoe.mirai.contact
import net.mamoe.mirai.message.data.Message
import net.mamoe.mirai.utils.asHumanReadable
import net.mamoe.mirai.utils.toHumanReadableString
import kotlin.time.ExperimentalTime
import kotlin.time.seconds
@ -42,6 +42,6 @@ public class MessageTooLargeException(
@OptIn(ExperimentalTime::class)
public class BotIsBeingMutedException(
public val target: Group
) : RuntimeException("bot is being muted, remaining ${target.botMuteRemaining.seconds.asHumanReadable} seconds")
) : RuntimeException("bot is being muted, remaining ${target.botMuteRemaining.seconds.toHumanReadableString()} seconds")
public inline val BotIsBeingMutedException.botMuteRemaining: Int get() = target.botMuteRemaining

View File

@ -22,10 +22,10 @@ internal class TimeTest {
20.toDuration(DurationUnit.HOURS) +
15.toDuration(DurationUnit.MINUTES) +
2057.toDuration(DurationUnit.MILLISECONDS)
println(time0.asHumanReadable)
assertTrue { time0.asHumanReadable == "1d 20h 15min 2.057s" }
println(time0.toHumanReadableString())
assertTrue { time0.toHumanReadableString() == "1d 20h 15min 2.057s" }
val time1 = 1.toDuration(DurationUnit.DAYS) + 59.toDuration(DurationUnit.MINUTES)
println(time1.asHumanReadable)
assertTrue { time1.asHumanReadable == "1d 59min 0.0s" }
println(time1.toHumanReadableString())
assertTrue { time1.toHumanReadableString() == "1d 59min 0.0s" }
}
}

View File

@ -84,16 +84,15 @@ public inline val Int.monthsToSeconds: Long
// @MiraiExperimentalApi
@ExperimentalTime
public val Duration.asHumanReadable: String
get() {
val days = toInt(DurationUnit.DAYS)
val hours = toInt(DurationUnit.HOURS) % 24
val minutes = toInt(DurationUnit.MINUTES) % 60
val s = floor(toDouble(DurationUnit.SECONDS) % 60 * 1000) / 1000
return buildString {
if (days != 0) append("${days}d ")
if (hours != 0) append("${hours}h ")
if (minutes != 0) append("${minutes}min ")
append("${s}s")
}
public fun Duration.toHumanReadableString(): String {
val days = toInt(DurationUnit.DAYS)
val hours = toInt(DurationUnit.HOURS) % 24
val minutes = toInt(DurationUnit.MINUTES) % 60
val s = floor(toDouble(DurationUnit.SECONDS) % 60 * 1000) / 1000
return buildString {
if (days != 0) append("${days}d ")
if (hours != 0) append("${hours}h ")
if (minutes != 0) append("${minutes}min ")
append("${s}s")
}
}

View File

@ -159,7 +159,7 @@ internal abstract class AbstractBot<N : BotNetworkHandler> constructor(
}
if (!failed) {
logger.info { "Reconnected successfully in ${time.asHumanReadable}" }
logger.info { "Reconnected successfully in ${time.toHumanReadableString()}" }
}
}
is BotOfflineEvent.Active -> {