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
271
272
273
274
275
276
277
278
279
280
281
open! Core
module type Diff = sig
type t
val round_to_nice : dir:[ `Up | `Near | `Down ] -> t -> t
val ( / ) : t -> float -> t
end
module type S = sig
type t
module Diff : Diff
val ( + ) : t -> Diff.t -> t
val ( - ) : t -> t -> Diff.t
val round_to_multiple_of_nice : relative_to:t -> dir:[ `Up | `Down ] -> t -> Diff.t -> t
val ( = ) : t -> t -> bool
val ( <= ) : t -> t -> bool
end
let nice_num x ~round_dir =
assert (Float.(x >= 0.));
let exp = Float.round_down (Float.log10 x) in
let d = 10. ** exp in
let f = if Float.(d = 0.) then x else x /. d in
let nf =
match round_dir with
| `Near ->
(match () with
| _ when Float.(f < 1.5) -> 1.
| _ when Float.(f < 3.) -> 2.
| _ when Float.(f < 7.) -> 5.
| _ -> 10.)
| `Up ->
(match () with
| _ when Float.(f <= 1.) -> 1.
| _ when Float.(f <= 2.) -> 2.
| _ when Float.(f <= 5.) -> 5.
| _ -> 10.)
| `Down ->
(match () with
| _ when Float.(f < 1.) -> 0.5
| _ when Float.(f < 2.) -> 1.
| _ when Float.(f < 5.) -> 2.
| _ -> 5.)
in
nf *. (10. ** exp)
;;
let nice_num_out_of_24 ~round_dir f =
assert (Float.(f >= 1. && f < 24.));
match round_dir with
| `Near ->
(match () with
| _ when Float.(f < 1.5) -> 1.
| _ when Float.(f < 3.5) -> 2.
| _ when Float.(f < 8.5) -> 6.
| _ when Float.(f < 17.) -> 12.
| _ -> 24.)
| `Up ->
(match () with
| _ when Float.(f <= 1.) -> 1.
| _ when Float.(f <= 2.) -> 2.
| _ when Float.(f <= 6.) -> 6.
| _ when Float.(f <= 12.) -> 12.
| _ -> 24.)
| `Down ->
(match () with
| _ when Float.(f < 2.) -> 1.
| _ when Float.(f < 6.) -> 2.
| _ when Float.(f < 12.) -> 6.
| _ -> 12.)
;;
let nice_num_out_of_60 ~round_dir f =
assert (Float.(f >= 1. && f < 60.));
match round_dir with
| `Near ->
(match () with
| _ when Float.(f < 1.5) -> 1.
| _ when Float.(f < 3.) -> 2.
| _ when Float.(f < 7.) -> 5.
| _ when Float.(f < 12.5) -> 10.
| _ when Float.(f < 22.5) -> 15.
| _ when Float.(f < 45.) -> 30.
| _ -> 60.)
| `Up ->
(match () with
| _ when Float.(f <= 1.) -> 1.
| _ when Float.(f <= 2.) -> 2.
| _ when Float.(f <= 5.) -> 5.
| _ when Float.(f <= 10.) -> 10.
| _ when Float.(f <= 15.) -> 15.
| _ when Float.(f <= 30.) -> 30.
| _ -> 60.)
| `Down ->
(match () with
| _ when Float.(f < 2.) -> 1.
| _ when Float.(f < 5.) -> 2.
| _ when Float.(f < 10.) -> 5.
| _ when Float.(f < 15.) -> 10.
| _ when Float.(f < 30.) -> 15.
| _ -> 30.)
;;
module S_float : S with type t = float and type Diff.t = float = struct
module Diff = struct
type t = float
let round_to_nice ~dir x = nice_num x ~round_dir:dir
let ( / ) = Float.( / )
end
include Float
let round_to_multiple_of_nice ~relative_to ~dir x d =
let round =
match dir with
| `Down -> Float.round_down
| `Up -> Float.round_up
in
(round ((x -. relative_to) /. d) *. d) +. relative_to
;;
end
module Diff_time_ns_span : Diff with type t = Time_ns.Span.t = struct
type t = Time_ns.Span.t
let ( / ) t x = Time_ns.Span.(t / x)
let round_to_nice ~dir t =
assert (Time_ns.Span.is_positive t);
match Time_ns.Span.to_parts t with
| { hr; _ } when hr >= 24 ->
nice_num ~round_dir:dir ((hr |> Float.of_int) /. 24.) |> Time_ns.Span.of_day
| { hr; _ } when hr > 0 ->
nice_num_out_of_24 ~round_dir:dir (hr |> Float.of_int) |> Time_ns.Span.of_hr
| { min; _ } when min > 0 ->
nice_num_out_of_60 ~round_dir:dir (t |> Time_ns.Span.to_min) |> Time_ns.Span.of_min
| { sec; _ } when sec > 0 ->
nice_num_out_of_60 ~round_dir:dir (t |> Time_ns.Span.to_sec) |> Time_ns.Span.of_sec
| _ -> nice_num ~round_dir:dir (t |> Time_ns.Span.to_ns) |> Time_ns.Span.of_ns
;;
end
module S_time_ns_span : S with type t = Time_ns.Span.t and type Diff.t = Time_ns.Span.t =
struct
include Time_ns.Span
module Diff = Diff_time_ns_span
let round_to_multiple_of_nice ~relative_to ~dir t d =
let floor =
Time_ns.Span.(scale_int63 d (div (t + neg relative_to) d) + relative_to)
in
match dir with
| `Up when Time_ns.Span.(floor < t) -> floor + d
| _ -> floor
;;
end
module S_time_ns : S with type t = Time_ns.t and type Diff.t = Time_ns.Span.t = struct
module Diff = Diff_time_ns_span
type t = Time_ns.t
let ( + ) = Time_ns.add
let ( - ) = Time_ns.diff
let ( <= ) = Time_ns.( <= )
let ( = ) = Time_ns.( = )
let round_to_multiple_of_nice ~relative_to ~dir t d =
let diff = Time_ns.diff t relative_to in
let diff =
S_time_ns_span.round_to_multiple_of_nice ~relative_to:Time_ns.Span.zero ~dir diff d
in
Time_ns.add relative_to diff
;;
end
module Diff_byte_units : Diff with type t = Byte_units.t = struct
type t = Byte_units.t
let ( / ) = Byte_units.( / )
let one_kilobyte = 1. |> Byte_units.of_kilobytes
let one_megabyte = 1. |> Byte_units.of_megabytes
let one_gigabyte = 1. |> Byte_units.of_gigabytes
let round_to_nice ~dir x =
if Byte_units.(x < one_kilobyte)
then
nice_num (x |> Byte_units.bytes_float) ~round_dir:dir
|> Byte_units.of_bytes_float_exn
else if Byte_units.(x < one_megabyte)
then nice_num (x |> Byte_units.kilobytes) ~round_dir:dir |> Byte_units.of_kilobytes
else if Byte_units.(x < one_gigabyte)
then nice_num (x |> Byte_units.megabytes) ~round_dir:dir |> Byte_units.of_megabytes
else nice_num (x |> Byte_units.gigabytes) ~round_dir:dir |> Byte_units.of_gigabytes
;;
end
module S_byte_units : S with type t = Byte_units.t and type Diff.t = Byte_units.t = struct
module Diff = Diff_byte_units
include Byte_units
let round_to_multiple_of_nice ~relative_to ~dir t d =
S_float.round_to_multiple_of_nice
~relative_to:(relative_to |> Byte_units.bytes_float)
~dir
(t |> Byte_units.bytes_float)
(d |> Byte_units.bytes_float)
|> Byte_units.of_bytes_float_exn
;;
end
module Make (T : S) = struct
let round x = T.Diff.round_to_nice ~dir:`Near x
let round_down x = T.Diff.round_to_nice ~dir:`Down x
let round_up x = T.Diff.round_to_nice ~dir:`Up x
let round_down_to_multiple_of_nice ~relative_to ~step x =
T.round_to_multiple_of_nice ~relative_to ~dir:`Down x step
;;
let round_up_to_multiple_of_nice ~relative_to ~step x =
T.round_to_multiple_of_nice ~relative_to ~dir:`Up x step
;;
let loose_labels ?(max_count = 5) ~relative_to lower upper =
assert (max_count >= 2 && T.(lower <= upper));
if T.(lower = upper)
then []
else (
let range = T.Diff.round_to_nice ~dir:`Near T.(upper - lower) in
let d =
T.Diff.round_to_nice ~dir:`Up T.Diff.(range / (max_count - 1 |> Float.of_int))
in
let graph_min = T.round_to_multiple_of_nice ~relative_to ~dir:`Down lower d in
let graph_max = T.round_to_multiple_of_nice ~relative_to ~dir:`Up upper d in
let rec range start end_ step =
if T.(end_ <= start) then [] else start :: range T.(start + step) end_ step
in
let start = if T.(graph_min = lower) then graph_min else T.(graph_min + d) in
let end_ =
if T.(graph_max = upper)
then T.(graph_max + T.Diff.(d / 2.))
else T.(graph_max + T.Diff.(d / -2.))
in
range start end_ d)
;;
end
include Make (S_float)
let loose_labels = loose_labels ~relative_to:0.
module Time_ns = struct
include Make (S_time_ns)
let start_of_day_utc t =
let zone = Time_float.Zone.utc in
let date = t |> Time_ns.to_date ~zone in
Time_ns.of_date_ofday ~zone date Time_ns.Ofday.start_of_day
;;
module Span = struct
include Make (S_time_ns_span)
let loose_labels = loose_labels ~relative_to:Time_ns.Span.zero
end
end
module Byte_units = struct
include Make (S_byte_units)
let loose_labels = loose_labels ~relative_to:Byte_units.zero
end