A Clojure wrapper for Java 8 Date-Time API.
Main goals:
- Provide a consistent API for common operations with instants, date-times, zones and periods.
- Provide an escape hatch from Java types to clojure data structures.
- Avoid reflective calls.
- Provide an entry point into Java-Time by freeing the user from importing most of the Java-Time classes.
Why use Clojure.Java-Time over clj-time or Clojure.Joda-Time?
- You don't want to have a dependency on the Joda-Time library
- You already use Java 8
- You prefer as little Java interop code as possible
This library employs a structured and comprehensive approach to exposing the Java 8 Date-Time API to the Clojure world. It's very similar to Clojure.Joda-Time in its design goals and overall feeling, so if you ever used that you will feel at home!
Why use Clojure.Java-Time over cljc.java-time with tick?
- You only plan on running on the JVM
- You prefer a single
require
over multiple ones
I don't see any reasons except for aesthetical pleasure and existing knowledge to choose one over the other. However, I have neither used or benchmarked Cljc.Java-Time and Tick so my endorsement is purely on the merits of a broader feature set.
If you already used Joda Time before you might think: "What in the world could they do better?". After all, Joda-Time already provides a pretty comprehensive set of tools for dealing with time-related concepts. Turns out, it's a tad more complicated than it has to be. Also, a few concepts have faulty designs which lead to hard to fix bugs and misuse. You can see the birds-eye view of changes and some of the rationale on the author's (Stephen Colebourne) blog:
You can also take a look at a comprehensive comparison by the Time4J authors.
Add the following dependency to your deps.edn
clojure.java-time/clojure.java-time {:mvn/version "0.3.3"}
or to your project.clj
or build.boot
:
[clojure.java-time "0.3.2"]
The API of the Clojure.Java-Time
consists of one namespace, namely java-time
. For the purposes of this guide,
we will use
the main namespace:
(refer-clojure :exclude [range iterate format max min])
(use 'java-time)
Java Time API may seem daunting. Instead of a single java.util.Date
you have
a ZonedDateTime
, OffsetDateTime
, LocalDateTime
, Instant
, and other
types. You would be well served by reading the official documentation for the
Java Time API,
but we'll also do a quick run-through here.
LocalDate
, LocalTime
and LocalDateTime
are used to represent a date, time
and date-time respectively without an offset or a timezone. The local time entities
are used to represent human-based dates/times. They are a good fit for representing
the time of various events:
LocalDate
- birthday, holidayLocalTime
- bus schedule, opening time of a shopLocalDateTime
- start of a competition
A local date/time can be created as you'd expect:
(local-date 2015 10)
=> #<java.time.LocalDate 2015-10-01>
(local-time 10)
=> #<java.time.LocalTime 10:00>
(local-date-time 2015 10)
=> #<java.time.LocalDateTime 2015-10-01T00:00>
There are two types which deal with zones: OffsetDateTime
and
ZonedDateTime
. They do pretty much what you would expect from their name.
You can think of the Offset
time as a more concrete version of the Zoned
time. For example, the same timezone can have different offsets throughout the
year due to DST or governmental regulations.
(offset-time 10)
=> #<java.time.OffsetTime 10:00+01:00>
(offset-date-time 2015 10)
=> #<java.time.OffsetDateTime 2015-10-01T10:00+01:00>
(zoned-date-time 2015 10)
=> #<java.time.ZonedDateTime 2015-10-01T10:00+01:00[Europe/London]>
Offset/Zone times only take the offset/zone as the last arguments for the
maximum arity constructor. You can influence the zone/offset by using the
with-zone
or with-offset
functions, like so:
(with-zone (zoned-date-time 2015 10) "UTC")
=> #<java.time.ZonedDateTime 2015-10-01T00:00Z[UTC]>
(with-zone-same-instant (zoned-date-time 2015 10) "UTC")
=> #<java.time.ZonedDateTime 2015-09-30T23:00Z[UTC]>
(with-clock (system-clock "UTC")
(zoned-date-time 2015 10))
=> #<java.time.ZonedDateTime 2015-10-01T00:00Z[UTC]>
An Instant
is used to generate a time stamp representing machine time. It
doesn't have an offset or a time zone. You can think of it as of a number of
milliseconds since epoch (1970-01-01T00:00:00Z
). An instant is directly
analogous to java.util.Date
:
user=> (instant)
#<java.time.Instant "2015-09-26T05:25:48.667Z">
user=> (java.util.Date.)
#inst "2015-09-26T05:25:50.118-00:00"
Every other date entity can be converted to an instant (local ones will require an additional zone information).
Java Time Period entities are considerably simpler than the Joda-Time periods. They are fixed containers of years, months and days. You can use them to represent any period of time with a granularity larger or equal to a single day. Duration, on the other hand, represents a standard duration less than or equal to a single standard (24-hour) day.
The current incarnation of the library is relatively slow while calling the 2-3
arity zoned-date-time/offset-time/offset-date-time
constructors for the
first time in a given Clojure runtime. If you need predictable latency at the
time of the first call in your business logic, please warm the
constructors you are going to use up by calling them beforehand, e.g.:
(defn warm-up []
(zoned-date-time 2015 1 1)
(zoned-date-time 2015 1)
(zoned-date-time 2015))
The "constructor" here refers to an arity of a function together with its type
signature. For example, a (zoned-date-time 2015)
and (zoned-date-time (system-clock))
are different constructors.
First, let's do a quick run through common use cases.
What is the current date?
(def now (local-date))
=> #object[java.time.LocalDate "2015-09-27"]
What's the next day?
(plus now (days 1))
=> #object[java.time.LocalDate "2015-09-28"]
The previous day?
(minus now (days 1))
=> #object[java.time.LocalDate "2015-09-26"]
Three days starting at now
?
(take 3 (iterate plus now (days 1))) ;; note `java-time/iterate`
=> (#object[java.time.LocalDate "2015-09-27"]
#object[java.time.LocalDate "2015-09-28"]
#object[java.time.LocalDate "2015-09-29"])
When is the first Monday in month?
(adjust now :first-in-month :monday)
=> #object[java.time.LocalDate "2015-09-07"]
Date with some of its fields truncated:
(truncate-to (local-date-time 2015 9 28 10 15) :days)
=> #object[java.time.LocalDateTime "2015-09-28T00:00"]
Date-time adjusted to the given hour:
(adjust (local-date-time 2015 9 28 10 15) (local-time 6))
=> #object[java.time.LocalDateTime "2015-09-28T06:00"]
The latest of the given dates?
(max (local-date 2015 9 20) (local-date 2015 9 28) (local-date 2015 9 1))
=> #object[java.time.LocalDate "2015-09-28"]
The shortest of the given durations?
(min (duration 10 :seconds) (duration 5 :hours) (duration 3000 :millis))
=> #object[java.time.Duration "PT3S"]
Get the year field out of the date:
(as (local-date 2015 9 28) :year)
=> 2015
Get multiple fields:
(as (local-date 2015 9 28) :year :month-of-year :day-of-month)
=> (2015 9 28)
Get the duration in a different unit:
java-time> (plus (hours 3) (minutes 2))
#object[java.time.Duration "PT3H2M"]
java-time> (as *1 :minutes)
182
Format a date:
(format "MM/dd" (zoned-date-time 2015 9 28))
=> "09/28"
Parse a date:
(local-date "MM/yyyy/dd" "09/2015/28")
=> #object[java.time.LocalDate "2015-09-28"]
Zoned date-times and offset date-times/times always take the zone/offset as the last argument. Offsets can be specified as float values:
(zone-offset +1.5)
=> #<java.time.ZoneOffset +01:30>
(zone-offset -1.5)
=> #<java.time.ZoneOffset -01:30>
Compare dates:
(before? (year 2020) (year 2021))
=> true
(after? (year 2021) (year 2021))
=> false
(let [expiration-date (year 2010)
purchase-date (year 2010)]
(not-before? expiration-date purchase-date))
=> true
(let [start-date (year 2011)
cutoff-date (year 2010)]
(not-after? start-date cutoff-date))
=> false
Time entities can be converted to other time entities if the target contains less information, e.g. (assuming we're in UTC timezone):
(zoned-date-time (offset-date-time 2015 9 28 1))
=> #object[java.time.ZonedDateTime "2015-09-28T01:00Z"]
(instant (offset-date-time 2015 9 28 1))
=> #object[java.time.Instant "2015-09-28T01:00:00Z"]
(offset-time (offset-date-time 2015 9 28 1))
=> #object[java.time.OffsetTime "01:00Z"]
(local-date-time (offset-date-time 2015 9 28 1))
=> #object[java.time.LocalDateTime "2015-09-28T01:00"]
(local-time (offset-time 1))
=> #object[java.time.LocalTime 0x3a3cd6d5 "01:00"]
Any date which can be converted to an instant, can also be converted to a
java.util.Date
:
(java-date (zoned-date-time 2015 9 28))
=> #inst "2015-09-27T22:00:00.000-00:00"
(java-date 50000)
=> #inst "1970-01-01T00:00:50.000-00:00"
An instance of java.util.Date
serves the same purpose as the new
java.time.Instant
. It's a machine timestamp which isn't aware of the
timezone. Please, do not get confused by the way it is printed by the Clojure
printer - the UTC timezone is applied during formatting.
Sometimes you'll have to work with the legacy java.sql.Date/Time/Timestamp
types. The correspondence between the legacy types and the new Date-Time
entities is as follows:
java.time.LocalDate
-java.sql.Date
java.time.LocalDateTime
-java.sql.Timestamp
java.time.LocalTime
-java.sql.Time
(sql-date 2015 9 28)
=> #inst "2015-09-27T22:00:00.000-00:00"
(sql-timestamp 2015 9 28 10 20 30 4000000)
=> #inst "2015-09-28T09:20:30.004-00:00"
(sql-time 10 20 30)
=> #inst "1970-01-01T09:20:30.000-00:00"
The results of the above calls get printed as #inst
because all of the
java.sql.Date/Time/Timestamp
are subtypes of java.util.Date
.
Coincidentally, this makes it impossible to plug the java.sql.*
types into
the Clojure.Java-Time conversion graph.
Conversions to the legacy types also go the other way around:
(j/local-date (j/sql-date 2015 9 28))
#object[java.time.LocalDate "2015-09-28"]
(j/local-date-time (j/sql-timestamp 2015 9 28 10 20 30 4000000))
#object[java.time.LocalDateTime "2015-09-28T10:20:30.004"]
(j/local-time (j/sql-time 10 20 30))
#object[java.time.LocalTime "10:20:30"]
If you add an optional [org.threeten/threeten-extra "1.2"]
dependency to the
project, you will get an Interval
, AmPm
, DayOfMonth
, DayOfYear
,
Quarter
and YearQuarter
data types as well as a couple more adjusters.
An interval can be constructed from two entities that can be converted to instants:
(interval (offset-date-time 2015 1 1) (zoned-date-time 2016 1 1))
=> #<org.threeten.extra.Interval 2015-01-01T00:00:00Z/2016-01-01T00:00:00Z>
(move-start-by *1 (duration 5 :days))
=> #<org.threeten.extra.Interval 2015-01-06T00:00:00Z/2016-01-01T00:00:00Z>
(move-end-by *1 (duration 5 :days))
=> #<org.threeten.extra.Interval 2015-01-06T00:00:00Z/2016-01-06T00:00:00Z>
(contains? *1 (offset-date-time 2015 1 1))
=> false
Bonus! if you have Joda Time on the classpath (either directly, or via
clj-time
), you can seamlessly convert from Joda Time to Java Time types:
(java-time.repl/show-path org.joda.time.DateTime java.time.OffsetTime)
=> {:cost 2.0,
:path [[#<java_time.graph.Types@15e43c24 [org.joda.time.DateTime]>
#<java_time.graph.Types@78a2235c [java.time.Instant java.time.ZoneId]>]
[#<java_time.graph.Types@6d8ded1a [java.time.Instant java.time.ZoneId]>
#<java_time.graph.Types@5360f6ae [java.time.OffsetTime]>]]}
(offset-time (org.joda.time.DateTime/now))
=> #<java.time.OffsetTime 22:00:00.000000000-00:00>
Clojure 1.9 added an Inst
protocol which is implemented for java.util.Date
and java.time.Instant
by
default. If you're stuck on Joda-Time, you can extend the
org.joda.time.ReadableInstant
, which includes both Instant
and DateTime
using the following:
(java-time/when-joda-time-loaded
(extend-type org.joda.time.ReadableInstant
Inst (inst-ms* [inst] (.getMillis inst))))
This snippet isn't included in the Clojure.Java-Time code by default as both
the Inst
protocol and the Joda-Time types are external to the library.
Java Time introduced a concept of Clock
- a time entity which can seed the
dates, times and zones. However, there's no built-in facility which would allow
you to influence the date-times created using default constructors ala Joda's
DateTimeUtils/setCurrentMillisSystem
. Clojure.Java-Time tries to fix that with
the with-clock
macro and the corresponding with-clock-fn
function:
(zone-id)
=> #<java.time.ZoneRegion Europe/London>
(with-clock (system-clock "UTC")
(zone-id))
=> #<java.time.ZoneRegion UTC>
In addition to the built-in java.time
clocks, we provide a Mock clock which
can be very handy in testing:
(def clock (mock-clock 0 "UTC"))
=> #'user/clock
(with-clock clock
(j/instant))
=> #object[java.time.Instant "1970-01-01T00:00:00Z"]
(advance-clock! clock (plus (hours 5) (minutes 20)))
=> nil
(with-clock clock
(j/instant))
=> #object[java.time.Instant "1970-01-01T05:20:00Z"]
(set-clock! clock 0)
=> nil
(with-clock clock
(j/instant))
=> #object[java.time.Instant "1970-01-01T00:00:00Z"]
Clock overrides works for all of the date-time types.
Date-Time entities are composed of date fields, while Duration entities are
composed of time units. You can see all of the predefined fields and units
via the java-time.repl
ns:
(java-time.repl/show-fields)
=> (:aligned-day-of-week-in-month
:aligned-day-of-week-in-year
:aligned-week-of-month
:aligned-week-of-year
:am-pm-of-day
:clock-hour-of-am-pm
...)
(java-time.repl/show-units)
=> (:centuries
:days
:decades
:eras
:forever
:half-days
...)
You can obtain any field/unit like this:
(field :year)
=> #object[java.time.temporal.ChronoField "Year"]
(unit :days)
=> #object[java.time.temporal.ChronoUnit "Days"]
(field (local-date 2015) :year)
=> #object[java.time.temporal.ChronoField "Year"]
You can obtain all of the fields/units of the temporal entity:
(fields (local-date))
=> {:proleptic-month #object[java.time.temporal.ChronoField ...}
(units (duration))
=> {:seconds #object[java.time.temporal.ChronoUnit "Seconds"],
:nanos #object[java.time.temporal.ChronoUnit "Nanos"]}
By themselves the fields and units aren't very interesting. You can get the range of valid values for a field and a duration between two dates, but that's about it:
(range (field :year))
=> #object[java.time.temporal.ValueRange "-999999999 - 999999999"]
(range (field :day-of-month))
=> #object[java.time.temporal.ValueRange "1 - 28/31"]
(time-between (local-date 2015 9) (local-date 2015 9 28) :days)
=> 27
Fields and units become interesting in conjunction with properties. Java-Time doesn't support the concept of properties which is present in Joda-Time. There are reasons for that which I feel are only valid in a statically-typed API like Java's. In Clojure, properties allow expressing time entity modifications and queries uniformly across all of the entity types.
(def prop (property (local-date 2015 2 28) :day-of-month))
=> #java_time.temporal.TemporalFieldProperty{...}
(value prop)
=> 28
(with-min-value prop)
=> #object[java.time.LocalDate "2015-02-01"]
(with-value prop 20)
=> #object[java.time.LocalDate "2015-02-20"]
(with-max-value prop)
=> #object[java.time.LocalDate "2015-02-28"]
(properties (local-date 2015 9 28))
=> {:proleptic-month #java_time.temporal.TemporalFieldProperty{...}, ...}
Most of the temporal entity constructors with arities 1 to 3 use the conversion graph underneath. This provides for a very flexible way of defining the conversions while avoiding huge conditional statements and multiple definitions of the identical conversion logic. However, the flexibility comes with a cost:
- The first call to a constructor will take a long time as it will try to find a path in the conversion graph. Subsequent calls will reuse the path.
- It's not trivial to evaluate the impact of adding and removing conversions both on the performance and the conversion path chosen for certain arguments.
- You might get nonsensical results for some of the paths in the graph that you might expect would make sense.
Hopefully, the performance issue will be resolved in the future...
You can play with the conversion graph using the following helpers:
(java-time.repl/show-path org.joda.time.DateTime java.time.OffsetTime)
=> {:cost 2.0,
:path [[#<java_time.graph.Types@15e43c24 [org.joda.time.DateTime]>
#<java_time.graph.Types@78a2235c [java.time.Instant java.time.ZoneId]>]
[#<java_time.graph.Types@6d8ded1a [java.time.Instant java.time.ZoneId]>
#<java_time.graph.Types@5360f6ae [java.time.OffsetTime]>]]}
(java-time.repl/show-graph)
=> {1
{org.threeten.extra.DayOfYear
[[#object[java_time.graph.Types "[java.lang.Number]"]
#object[java_time.graph.Conversion "Cost:1.0"]]],
java.lang.Number
[[#object[java_time.graph.Types "[java.time.Instant]"]
#object[java_time.graph.Conversion "Cost:1.0"]]
...