forked from dm3/clojure.java-time
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcore.clj
More file actions
270 lines (220 loc) · 6.61 KB
/
core.clj
File metadata and controls
270 lines (220 loc) · 6.61 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
(ns java-time.core
(:refer-clojure :exclude (zero? range max min abs))
(:import [java.time.temporal ValueRange]
[java.time.chrono Chronology]))
(defprotocol Amount
(zero? [a]
"True if the amount is zero")
(negative? [a]
"True if the amount is negative")
(negate [a]
"Negates a temporal amount:
(negate (negate x)) == x")
(abs [a]
"Returns the absolute value of a temporal amount:
(abs (negate x)) == (abs x)"))
(defprotocol Supporting
(supports? [o p]
"True if the `o` entity supports the `p` property"))
(defprotocol HasChronology
(^java.time.chrono.Chronology chronology [o]
"The `Chronology` of the entity"))
(defprotocol HasFields
(fields [o]
"Fields present in this temporal entity")
(field* [o k]
"Internal use"))
(defprotocol HasUnits
(units [o]
"Units present in this temporal entity.")
(unit* [o k]
"Internal use"))
(defprotocol HasProperties
(properties [o]
"Map of properties present in this temporal entity")
(property [o k]
"Property of this temporal entity under key `k`"))
(defprotocol As
(as* [o k]
"Value of property/unit identified by key/object `k` of the temporal
entity `o`"))
(defprotocol ReadableProperty
(value [p]
"Value of the property"))
(defprotocol ReadableRangeProperty
(range [p]
"Range of values for this property")
(min-value [p]
"Minimum value of this property")
(largest-min-value [p]
"Largest minimum value of this property")
(smallest-max-value [p]
"Smallest maximum value of this property, e.g. 28th of February for months")
(max-value [p]
"Maximum value of this property, e.g. 29th of February for months"))
(defprotocol WritableProperty
(with-value [p v]
"Underlying temporal entity with the value of this property set to `v`"))
(defprotocol WritableRangeProperty
(with-min-value [p]
"Underlying temporal entity with the value set to the minimum available for
this property")
(with-largest-min-value [p]
"Underlying temporal entity with the value set to the largest minimum
available for this property")
(with-smallest-max-value [p]
"Underlying temporal entity with the value set to the smallest maximum
available for this property")
(with-max-value [p]
"Underlying temporal entity with the value set to the maximum
available for this property"))
(defprotocol KnowsTimeBetween
(time-between [o e u]
"Time between temporal entities `o` and `e` in unit `u`.
```
(j/time-between (j/local-date 2015) (j/local-date 2016) :days)
=> 365
(j/time-between :days (j/local-date 2015) (j/local-date 2016))
=> 365
```"))
(defprotocol KnowsIfLeap
(leap? [o]
"True if the year of this entity is a leap year."))
(defprotocol Truncatable
(truncate-to [o u]
"Truncates this entity to the specified time unit. Only works for units that
divide into the length of standard day without remainder (up to `:days`)."))
(defprotocol HasZone
(with-zone [o z]
"Returns this temporal entity with the specified `ZoneId`"))
(defprotocol Plusable
"Internal"
(seq-plus [o os]))
(defprotocol Minusable
"Internal"
(seq-minus [o os]))
(defprotocol Multipliable
(multiply-by [o v]
"Entity `o` multiplied by the value `v`"))
(defprotocol Ordered
(single-before? [a b]
"Internal use")
(single-after? [a b]
"Internal use"))
(defn as
"Values of property/unit identified by keys/objects `ks` of the temporal
entity `o`, e.g.
```
(as (duration 1 :hour) :minutes)
=> 60
(as (local-date 2015 9) :year :month-of-year)
=> [2015 9]
```"
([o k]
(as* o k))
([o k1 k2]
[(as* o k1) (as* o k2)])
([o k1 k2 & ks]
(concat (as o k1 k2) (mapv #(as* o %) ks))))
(defn max
"Latest/longest of the given time entities. Entities should be of the same
type"
[o & os]
(first (sort #(compare %2 %1) (cons o os))))
(defn min
"Earliest/shortest of the given time entities. Entities should be of the same
type"
[o & os]
(first (sort (cons o os))))
(defn before?
"Returns `true` if time entities are ordered from the earliest to the
latest (same semantics as `<`), otherwise `false`.
```
(before? (local-date 2009) (local-date 2010) (local-date 2011))
=> true
(before? (interval (instant 10000) (instant 1000000))
(instant 99999999))
=> true
```"
([x] true)
([x y] (single-before? x y))
([x y & more]
(if (single-before? x y)
(if-some [n (next more)]
(recur y (first more) n)
(single-before? y (first more)))
false)))
(defn after?
"Returns `true` if time entities are ordered from the latest to the
earliest (same semantics as `>`), otherwise `false`.
```
(after? (local-date 2011) (local-date 2010) (local-date 2009))
=> true
(after? (instant 99999999)
(interval (instant 10000) (instant 1000000)))
=> true
```"
([x] true)
([x y] (single-after? x y))
([x y & more]
(if (single-after? x y)
(if-some [n (next more)]
(recur y (first more) n)
(single-after? y (first more)))
false)))
(def ^{:arglists '([x] [x y] [x y & more])} not-after?
"Like [[before?]], except returns `true` if the inputs are equal."
(complement after?))
(def ^{:arglists '([x] [x y] [x y & more])} not-before?
"Like [[after?]], except returns `true` if the inputs are equal."
(complement before?))
(defn plus
"Adds all of the `os` to the time entity `o`. `plus` is not commutative, the
first argument is always the entity which will accumulate the rest of the
arguments.
```
(j/plus (j/local-date 2015) (j/years 1))
=> <java.time.LocalDate \"2016-01-01\">
```"
[o & os]
(seq-plus o os))
(defn minus
"Subtracts all of the `os` from the time entity `o`
```
(j/minus (j/local-date 2015) (j/years 1))
=> <java.time.LocalDate \"2014-01-01\">
```"
[o & os]
(if (seq os)
(seq-minus o os)
(negate o)))
;;;;; Clojure types
(extend-type Number
ReadableProperty
(value [n] n)
WritableProperty
(with-value [n v] v)
Plusable
(seq-plus [n xs]
(apply + n xs))
Minusable
(seq-minus [n xs]
(apply - n xs))
Multipliable
(multiply-by [n v]
(* n (value v)))
Amount
(zero? [n] (clojure.core/zero? n))
(negative? [n] (neg? n))
(negate [n] (- n))
(abs [n] (Math/abs (long n))))
(extend-type nil
ReadableProperty
(value [_] nil)
WritableProperty
(with-value [_ v] v))
(def readable-range-property-fns
{:min-value (fn [p] (.getMinimum ^ValueRange (range p)))
:largest-min-value (fn [p] (.getLargestMinimum ^ValueRange (range p)))
:smallest-max-value (fn [p] (.getSmallestMaximum ^ValueRange (range p)))
:max-value (fn [p] (.getMaximum ^ValueRange (range p)))})