This repository has been archived by the owner on May 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
QuantityFunctions.java
411 lines (380 loc) · 13.8 KB
/
QuantityFunctions.java
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
/*
* Units of Measurement Implementation for Java SE
* Copyright (c) 2005-2021, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
* and the following disclaimer in the documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of JSR-363 nor the names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package tec.uom.se.function;
import java.util.Comparator;
import java.util.Objects;
import java.util.function.BinaryOperator;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.function.Supplier;
import java.util.stream.Collector;
import javax.measure.Quantity;
import javax.measure.Unit;
/**
* @author Otavio
* @author Werner
* @version 1.0
* @since 1.0
*
*/
@SuppressWarnings("rawtypes")
public final class QuantityFunctions {
private QuantityFunctions() {
}
/**
* Creates a comparator to sort by number, ignoring the unit.
*
* @return <p>
* <b>Given:</b>
* <p>
* <code>
* Quantity<Time> day = timeFactory.create(1, Units.DAY);<br/>
* Quantity<Time> hours = timeFactory.create(18, Units.HOUR);<br/>
* Quantity<Time> minutes = timeFactory.create(15, Units.HOUR);<br/>
* Quantity<Time> seconds = timeFactory.create(100, Units.HOUR);<br/>
* </code>
* <p>
* will return: <code>day, hours, minutes, seconds</code>
* </p>
* @throws NullPointerException
*/
public static <Q extends Quantity<Q>> Comparator<Quantity<Q>> sortNumber() {
return Comparator.comparingDouble(q -> q.getValue().doubleValue());
}
/**
* Creates a comparator to sort by number descending, ignoring the unit.
*
* @return <p>
* <b>Given:</b>
* <p>
* <code>
* Quantity<Time> day = timeFactory.create(1, Units.DAY);<br/>
* Quantity<Time> hours = timeFactory.create(18, Units.HOUR);<br/>
* Quantity<Time> minutes = timeFactory.create(15, Units.HOUR);<br/>
* Quantity<Time> seconds = timeFactory.create(100, Units.HOUR);<br/>
* </code>
* <p>
* will return: <code>seconds, hours, minutes, day</code>
* </p>
* @throws NullPointerException
*/
public static <Q extends Quantity<Q>> Comparator<Quantity<Q>> sortNumberDesc() {
Comparator<Quantity<Q>> sortNumber = sortNumber();
return sortNumber.reversed();
}
/**
* Creates a comparator to sort by name, ignoring the value.
*
* @return <p>
* <b>Given:</b>
* <p>
* <code>
* Quantity<Time> day = timeFactory.create(1, Units.DAY);<br/>
* Quantity<Time> hours = timeFactory.create(18, Units.HOUR);<br/>
* Quantity<Time> minutes = timeFactory.create(15, Units.HOUR);<br/>
* Quantity<Time> seconds = timeFactory.create(100, Units.HOUR);<br/>
* </code>
* <p>
* will return: <code>day, hours, minutes, seconds</code>
* </p>
* @throws NullPointerException
*/
public static <Q extends Quantity<Q>> Comparator<Quantity<Q>> sortSymbol() {
return Comparator.comparing(q -> q.getUnit().getSymbol());
}
/**
* Creates a comparator to sort by name descending, ignoring the value.
*
* @return <p>
* <b>Given:</b>
* </p>
* <code>
* Quantity<Time> day = timeFactory.create(1, Units.DAY);<br/>
* Quantity<Time> hours = timeFactory.create(18, Units.HOUR);<br/>
* Quantity<Time> minutes = timeFactory.create(15, Units.HOUR);<br/>
* Quantity<Time> seconds = timeFactory.create(100, Units.HOUR);<br/>
* </code>
* <p>
* will return: <code>seconds, minutes, hour, day</code>
* </p>
* @throws NullPointerException
*/
public static <Q extends Quantity<Q>> Comparator<Quantity<Q>> sortSymbolDesc() {
Comparator<Quantity<Q>> sortSymbol = sortSymbol();
return sortSymbol.reversed();
}
/**
* Creates a comparator to sort by natural order, looking to both the unit and the value.
*
* @return <p>
* <b>Given:</b>
* </p>
* <code>
* Quantity<Time> day = timeFactory.create(1, Units.DAY);<br/>
* Quantity<Time> hours = timeFactory.create(18, Units.HOUR);<br/>
* Quantity<Time> minutes = timeFactory.create(15, Units.HOUR);<br/>
* Quantity<Time> seconds = timeFactory.create(100, Units.HOUR);<br/>
* </code>
* <p>
* will return: <code>seconds, minutes, hours, day</code>
* </p>
* @throws NullPointerException
*/
@SuppressWarnings("unchecked")
public static <Q extends Quantity<Q>> Comparator<Quantity<Q>> sortNatural() {
return new NaturalOrder();
}
/**
* Creates a comparator to sort by natural order descending, looking to both the unit and the value.
*
* @return <p>
* <b>Given:</b>
* </p>
* <code>
* Quantity<Time> day = timeFactory.create(1, Units.DAY);<br/>
* Quantity<Time> hours = timeFactory.create(18, Units.HOUR);<br/>
* Quantity<Time> minutes = timeFactory.create(15, Units.HOUR);<br/>
* Quantity<Time> seconds = timeFactory.create(100, Units.HOUR);<br/>
* </code>
* <p>
* will return: <code>day, hour, minute, second</code>
* </p>
* @throws NullPointerException
*/
public static <Q extends Quantity<Q>> Comparator<Quantity<Q>> sortNaturalDesc() {
Comparator<Quantity<Q>> sortNatural = sortNatural();
return sortNatural.reversed();
}
/**
* Creates a BinaryOperator to calculate the minimum Quantity
*
* @return the min BinaryOperator, not null.
*/
public static <Q extends Quantity<Q>> BinaryOperator<Quantity<Q>> min() {
return (q1, q2) -> {
double d1 = q1.getValue().doubleValue();
double d2 = q2.to(q1.getUnit()).getValue().doubleValue();
double min = Double.min(d1, d2);
if (min == d1) {
return q1;
}
return q2;
};
}
/**
* Creates a BinaryOperator to calculate the maximum Quantity
*
* @return the max BinaryOperator, not null.
*/
public static <Q extends Quantity<Q>> BinaryOperator<Quantity<Q>> max() {
return (q1, q2) -> {
double d1 = q1.getValue().doubleValue();
double d2 = q2.to(q1.getUnit()).getValue().doubleValue();
double min = Double.max(d1, d2);
if (min == d1) {
return q1;
}
return q2;
};
}
/**
* Creates a BinaryOperator to sum.
*
* @return the sum BinaryOperator
*/
public static <Q extends Quantity<Q>> BinaryOperator<Quantity<Q>> sum() {
return Quantity::add;
}
/**
* Creates a BinaryOperator to sum converting to unit
*
* @param unit
* unit to be converting
* @return the sum BinaryOperator converting to unit
*/
public static <Q extends Quantity<Q>> BinaryOperator<Quantity<Q>> sum(Unit<Q> unit) {
return (q1, q2) -> q1.to(unit).add(q2.to(unit));
}
/**
* Predicate to filter to one or more units
*
* @param units
* - units to be filtered (optional)
* @return A predicate to filter one or more units
*/
@SafeVarargs
public static <Q extends Quantity<Q>> Predicate<Quantity<Q>> fiterByUnit(Unit<Q>... units) {
if (Objects.isNull(units) || units.length == 0) {
return q -> true;
}
Predicate<Quantity<Q>> predicate = null;
for (Unit<Q> u : units) {
if (Objects.isNull(predicate)) {
predicate = q -> q.getUnit().equals(u);
} else {
predicate = predicate.or(q -> q.getUnit().equals(u));
}
}
return predicate;
}
/**
* Predicate to filter excluding these units
*
* @param units
* - units to be filtered (optional)
* @return A predicate to filter to not be these units
*/
@SafeVarargs
public static <Q extends Quantity<Q>> Predicate<Quantity<Q>> fiterByExcludingUnit(Unit<Q>... units) {
if (Objects.isNull(units) || units.length == 0) {
return q -> true;
}
return fiterByUnit(units).negate();
}
/**
* creates a Filter to greater than number, ignoring units
*
* @param value
* - the value to be used in Predicate
* @return the Predicate greater than this number, ignoring units
*/
public static <Q extends Quantity<Q>> Predicate<Quantity<Q>> isGreaterThan(Number value) {
return q -> q.getValue().doubleValue() > value.doubleValue();
}
/**
* creates a filter to greater than the quantity measure
*
* @param quantity
* - the measure to be used in filter
* @return the Predicate greater than this measure
*/
public static <Q extends Quantity<Q>> Predicate<Quantity<Q>> isGreaterThan(Quantity<Q> quantity) {
return q -> q.to(quantity.getUnit()).getValue().doubleValue() > quantity.getValue().doubleValue();
}
/**
* creates a Filter to greater or equals than number, ignoring units
*
* @param value
* - the value to be used in Predicate
* @return the Predicate greater or equals than this number, ignoring units
*/
public static <Q extends Quantity<Q>> Predicate<Quantity<Q>> isGreaterThanOrEqualTo(Number value) {
return q -> q.getValue().doubleValue() >= value.doubleValue();
}
/**
* creates a filter to greater or equals than the quantity measure
*
* @param quantity
* - the measure to be used in filter
* @return the Predicate greater or equals than this measure
*/
public static <Q extends Quantity<Q>> Predicate<Quantity<Q>> isGreaterThanOrEqualTo(Quantity<Q> quantity) {
return q -> q.to(quantity.getUnit()).getValue().doubleValue() >= quantity.getValue().doubleValue();
}
/**
* creates a Filter to lesser than number, ignoring units
*
* @param value
* - the value to be used in Predicate
* @return the Predicate greater than this number, ignoring units
*/
public static <Q extends Quantity<Q>> Predicate<Quantity<Q>> isLesserThan(Number value) {
return q -> q.getValue().doubleValue() < value.doubleValue();
}
/**
* creates a filter to lesser than the quantity measure
*
* @param quantity
* - the measure to be used in filter
* @return the Predicate lesser than this measure
*/
public static <Q extends Quantity<Q>> Predicate<Quantity<Q>> isLesserThan(Quantity<Q> quantity) {
return q -> q.to(quantity.getUnit()).getValue().doubleValue() < quantity.getValue().doubleValue();
}
/**
* creates a Filter to lesser or equals than number, ignoring units
*
* @param value
* - the value to be used in Predicate
* @return the Predicate lesser or equals than this number, ignoring units
*/
public static <Q extends Quantity<Q>> Predicate<Quantity<Q>> isLesserThanOrEqualTo(Number value) {
return q -> q.getValue().doubleValue() <= value.doubleValue();
}
/**
* creates a filter to lesser or equals than the quantity measure
*
* @param quantity
* - the measure to be used in filter
* @return the Predicate lesser or equals than this measure
*/
public static <Q extends Quantity<Q>> Predicate<Quantity<Q>> isLesserThanOrEqualTo(Quantity<Q> quantity) {
return q -> q.to(quantity.getUnit()).getValue().doubleValue() <= quantity.getValue().doubleValue();
}
/**
* creates a Filter to between, lesser or equals and greater or equals, than number, ignoring units
*
* @param min
* - the min value to be used in Predicate
* @param max
* - the max value to be used in Predicate
* @return the Predicate lesser or equals than this number, ignoring units
*/
public static <Q extends Quantity<Q>> Predicate<Quantity<Q>> isBetween(Number min, Number max) {
Predicate<Quantity<Q>> minFilter = isGreaterThanOrEqualTo(min);
Predicate<Quantity<Q>> maxFilter = isLesserThanOrEqualTo(max);
return minFilter.and(maxFilter);
}
/**
* creates a filter to between, lesser or equals and greater or equals, than the quantity measure
*
* @param min
* - the min value to be used in Predicate
* @param max
* - the max value to be used in Predicate
* @return the Predicate lesser or equals than this measure
*/
public static <Q extends Quantity<Q>> Predicate<Quantity<Q>> isBetween(Quantity<Q> min, Quantity<Q> max) {
return isGreaterThanOrEqualTo(min).and(isLesserThanOrEqualTo(max));
}
/**
* Summary of Quantity
*
* @return the QuantitySummaryStatistics
*/
public static <Q extends Quantity<Q>> Collector<Quantity<Q>, QuantitySummaryStatistics<Q>, QuantitySummaryStatistics<Q>> summarizeQuantity(
Unit<Q> unit) {
Supplier<QuantitySummaryStatistics<Q>> supplier = () -> new QuantitySummaryStatistics<>(unit);
return Collector.of(supplier, QuantitySummaryStatistics<Q>::accept, QuantitySummaryStatistics<Q>::combine);
}
public static <Q extends Quantity<Q>> Function<Quantity<Q>, Unit<Q>> groupByUnit() {
return Quantity::getUnit;
}
}