This is a Kotlin multiplatform implementation based upon the Time library for Android. The library is made for you if you have ever written something like this:
val duration = 10 * 1000
to represent a duration of 10 seconds(in milliseconds) because most methods in Kotlin/Java take duration parameters in milliseconds.
val tenSeconds = 10.seconds
val fiveMinutes = 5.minutes
val twoHours = 2.hours
val threeDays = 3.days
val tenMinutesFromNow = Calendar.getInstance() + 10.minutes
val tenSecondsInMilliseconds = 10.seconds.inMilliseconds
The main advantage of the library is that all time units are strongly-typed. So, for example:
val tenMinutes = 10.minutes
In the example above, tenMinutes
will be of type Interval<Minute>
. There are seven time units available, from nanoseconds to days:
val tenNanoseconds = 10.nanoseconds
// type is Interval<Nanosecond>
val tenMicroseconds = 10.microseconds
// type is Interval<Microsecond>
val tenMilliseconds = 10.milliseconds
// type is Interval<Millisecond>
val tenSeconds = 10.seconds
// type is Interval<Second>
val tenMinutes = 10.minutes
// type is Interval<Minute>
val tenHours = 10.hours
// type is Interval<Hour>
val tenDays = 10.days
// type is Interval<Day>
You can perform all basic arithmetic operations on time intervals, even of different units:
val duration = 10.minutes + 15.seconds - 3.minutes + 2.hours // Interval<Minute>
val doubled = duration * 2
val seconds = 10.seconds + 3.minutes // Interval<Second>
You can also use these operations with the Calendar
class:
val twoHoursLater = Calendar.getInstance() + 2.hours
Time intervals are easily convertible:
val twoMinutesInSeconds = 2.minutes.inSeconds // Interval<Second>
val fourDaysInHours = 4.days.inHours // Interval<Hour>
You can also use the converted(TimeUnit)
method, although you would rarely need to:
val tenMinutesInSeconds: Interval<Second> = 10.minutes.converted(Second())
You can compare different time units as well:
50.seconds < 2.hours // true
120.minutes == 2.hours // true
100.milliseconds > 2.seconds // false
48.hours in 2.days // true
If, for some reason, you need to create your own time unit, that's super easy to do:
class Week : TimeUnit {
// number of seconds in one week
override val timeIntervalRatio = 604800.0
}
Now you can use it like any other time unit:
val fiveWeeks = Interval<Week>(5)
For the sake of convenience, don't forget to write those handy extensions:
class Week : TimeUnit {
override val timeIntervalRatio = 604800.0
}
val Number.weeks: Interval<Week>
get() = Interval(this)
val Interval<TimeUnit>.inWeeks: Interval<Week>
get() = converted(Week())
Now you can write:
val fiveWeeks = 5.weeks // Interval<Week>
You can also easily convert to weeks:
val valueInWeeks = 14.days.inWeeks // Interval<Week>
For time-related methods in other third-party libraries in your project, if such methods are frequently used, it's best to write extention functions that let you use the time units in this libary in those methods. This is mostly just one line of code.
If such methods aren't frequently used, you can still benefit from the conversion safety that comes with this library.
An example method in a third-party library that does something after a delay period in milliseconds:
class Person {
fun doSomething(delayMillis: Long) {
// method body
}
}
To call the method above with a value of 5 minutes, one would usually write:
val person = Person()
person.doSomething(5 * 60 * 1000)
The above line can be written in a safer and clearer way using this library:
val person = Person()
person.doSomething(5.minutes.inMilliseconds.longValue)
If the method is frequently used, you can write an extension function:
fun Person.doSomething(delay: Interval<TimeUnit>) {
doSomething(delay.inMilliseconds.longValue)
}
Now you can write:
val person = Person()
person.doSomething(5.minutes)
Due to the current development status of the Kotlin multiplatform project, some APIs have been changed.
In the original library, the converted
method uses Java reflection to instantiate
a new class of the required TimeUnit
implementation.
Since in Kotlin multiplatform, the reflection API is still in early stages (and not implemented on some platforms),
I have added a required parameter that points to an instance of the to the expected TimeUnit
implementation.
The content of the Android extensions provided by the original library have not been ported to this implementation.
Add the GitHub registry to your build.gradle
:
allprojects {
repositories {
maven {
url = uri("https://maven.pkg.github.com/mrasterisco/time")
credentials {
username = <YOUR GITHUB USERNAME>
password = <YOUR GITHUB PERSONAL ACCESS TOKEN>
}
}
}
}
GitHub doesn't support accessing packages without authentication (more info. You can generate a personal access token for your account here.
Since version 1.6.2 (with Kotlin 1.4), Time can be imported as dependency by just referencing it in the commonMain
module:
val commonMain by getting {
dependencies {
implementation("io.github.mrasterisco:time:<version>")
}
}
Time is built with Kotlin 1.5 and Gradle 7.0.
The library implements only Kotlin common code and does not provide explicit implementations for any platform, hence it should work out-of-the-box everywhere. See the table below for further details:
iOS | macOS | watchOS | JVM | nodeJS | browserJS | Windows | Linux | |
---|---|---|---|---|---|---|---|---|
Assembled | YES | YES | YES | YES | Removed in 1.6.0 | Removed in 1.6.0 | NO | NO |
Unit Tests | YES, passed | YES, passed | YES, passed | YES, passed | Removed in 1.6.0 | Removed in 1.6.0 | Not built | Not built |
Published to GitHub Packages | YES | YES | YES | YES | Removed in 1.6.0 | Removed in 1.6.0 | NO | NO |
Used in Production | YES | NO | NO | YES | NO | NO | NO | NO |
If you start using this library in a project different on other platforms than iOS, Android or the JVM, please make a PR to update this file, so that others know that it has been implemented successfully on there as well.
The goal is for the library to be used wherever possible. If there are extension functions or features you think the library should have, feel free to add them and send a pull request or open an issue.
This library is heavily based on the Time for Android with a few changes in order to make it work in the Kotlin multiplatform environment. Time was inspired by a Swift library of the same name - Time.
Time is distributed under the MIT license. See LICENSE for details.