-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathoperator_interval.go
581 lines (537 loc) · 19.4 KB
/
operator_interval.go
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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package interpreter
import (
"fmt"
"time"
"github.com/google/cql/model"
"github.com/google/cql/result"
"github.com/google/cql/types"
)
// INTERVAL OPERATORS - https://cql.hl7.org/09-b-cqlreference.html#interval-operators-3
// end of(argument Interval<T>) T
// https://cql.hl7.org/09-b-cqlreference.html#end
func (i *interpreter) evalEnd(m model.IUnaryExpression, intervalObj result.Value) (result.Value, error) {
return end(intervalObj, &i.evaluationTimestamp)
}
// end returns the upper value of the interval.
// This function wraps the complexities of null inclusive bounds as well as non-inclusive boundary
// calculation via value predecessor functionality.
func end(intervalObj result.Value, evaluationTimestamp *time.Time) (result.Value, error) {
if result.IsNull(intervalObj) {
return result.New(nil)
}
interval, err := result.ToInterval(intervalObj)
if err != nil {
return result.Value{}, err
}
if interval.HighInclusive {
if result.IsNull(interval.High) {
iType, ok := intervalObj.RuntimeType().(*types.Interval)
if !ok {
return result.Value{}, fmt.Errorf("internal error - end got Value that is not an interval type")
}
return maxValue(iType.PointType, evaluationTimestamp)
}
return interval.High, nil
}
if result.IsNull(interval.High) {
return interval.High, nil
}
return predecessor(interval.High, evaluationTimestamp)
}
// start of(argument Interval<T>) T
// https://cql.hl7.org/09-b-cqlreference.html#start
func (i *interpreter) evalStart(m model.IUnaryExpression, intervalObj result.Value) (result.Value, error) {
return start(intervalObj, &i.evaluationTimestamp)
}
// start returns the lower value of the interval.
// This function wraps the complexities of null inclusive bounds as well as non-inclusive boundary
// calculation via value successor functionality.
func start(intervalObj result.Value, evaluationTimestamp *time.Time) (result.Value, error) {
if result.IsNull(intervalObj) {
return result.New(nil)
}
interval, err := result.ToInterval(intervalObj)
if err != nil {
return result.Value{}, err
}
if interval.LowInclusive {
if result.IsNull(interval.Low) {
iType, ok := intervalObj.RuntimeType().(*types.Interval)
if !ok {
return result.Value{}, fmt.Errorf("internal error - start got Value that is not an interval type")
}
return minValue(iType.PointType, evaluationTimestamp)
}
return interval.Low, nil
}
if result.IsNull(interval.Low) {
return interval.Low, nil
}
return successor(interval.Low, evaluationTimestamp)
}
// startAndEnd returns the start and end of the interval.
// This function is a helper for calling start() and end() in the same function.
func startAndEnd(intervalObj result.Value, evaluationTimestamp *time.Time) (result.Value, result.Value, error) {
start, err := start(intervalObj, evaluationTimestamp)
if err != nil {
return result.Value{}, result.Value{}, err
}
end, err := end(intervalObj, evaluationTimestamp)
if err != nil {
return result.Value{}, result.Value{}, err
}
return start, end, nil
}
// op(left DateTime, right Interval<DateTime>) Boolean
// op(left Date, right Interval<Date>) Boolean
// https://cql.hl7.org/09-b-cqlreference.html#after-1
// https://cql.hl7.org/09-b-cqlreference.html#before-1
// https://cql.hl7.org/09-b-cqlreference.html#on-or-after-2
// https://cql.hl7.org/09-b-cqlreference.html#on-or-before-2
// TODO(b/308016038): Once Start and End are properly supported, handle low/high inclusivity.
func (i *interpreter) evalCompareDateTimeInterval(be model.IBinaryExpression, lObj, rObj result.Value) (result.Value, error) {
if result.IsNull(lObj) || result.IsNull(rObj) {
return result.New(nil)
}
l, err := result.ToDateTime(lObj)
if err != nil {
return result.Value{}, err
}
p, err := precisionFromBinaryExpression(be)
if err != nil {
return result.Value{}, err
}
allowUnsetPrec := true
if err := validatePrecisionByType(p, allowUnsetPrec, be.Left().GetResultType()); err != nil {
return result.Value{}, err
}
switch be.(type) {
case *model.After:
e, err := end(rObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
rHigh, err := result.ToDateTime(e)
if err != nil {
return result.Value{}, err
}
return afterDateTimeWithPrecision(l, rHigh, p)
case *model.Before:
s, err := start(rObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
rLow, err := result.ToDateTime(s)
if err != nil {
return result.Value{}, err
}
return beforeDateTimeWithPrecision(l, rLow, p)
case *model.SameOrAfter:
e, err := end(rObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
rHigh, err := result.ToDateTime(e)
if err != nil {
return result.Value{}, err
}
return afterOrEqualDateTimeWithPrecision(l, rHigh, p)
case *model.SameOrBefore:
s, err := start(rObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
rLow, err := result.ToDateTime(s)
if err != nil {
return result.Value{}, err
}
return beforeOrEqualDateTimeWithPrecision(l, rLow, p)
}
return result.Value{}, fmt.Errorf("internal error - unsupported Binary Comparison Expression %v", be)
}
// op(left Interval<DateTime>, right Interval<DateTime>) Boolean
// op(left Interval<Date>, right Interval<Date>) Boolean
// https://cql.hl7.org/09-b-cqlreference.html#after-1
// https://cql.hl7.org/09-b-cqlreference.html#before-1
// https://cql.hl7.org/09-b-cqlreference.html#on-or-after-2
// https://cql.hl7.org/09-b-cqlreference.html#on-or-before-2
func (i *interpreter) evalCompareIntervalDateTimeInterval(be model.IBinaryExpression, lObj, rObj result.Value) (result.Value, error) {
if result.IsNull(lObj) || result.IsNull(rObj) {
return result.New(nil)
}
p, err := precisionFromBinaryExpression(be)
if err != nil {
return result.Value{}, err
}
iType, ok := be.Left().GetResultType().(*types.Interval)
if !ok {
return result.Value{}, fmt.Errorf("internal error - evalCompareIntervalDateTimeInterval got Value that is not an interval type")
}
pointType := iType.PointType
allowUnsetPrec := true
if err := validatePrecisionByType(p, allowUnsetPrec, pointType); err != nil {
return result.Value{}, err
}
switch be.(type) {
case *model.After:
// lObj starts after the rObj ends
lObjStart, err := start(lObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
rObjEnd, err := end(rObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
lStart, rEnd, err := applyToValues(lObjStart, rObjEnd, result.ToDateTime)
if err != nil {
return result.Value{}, err
}
return afterDateTimeWithPrecision(lStart, rEnd, p)
case *model.Before:
// lObj ends before rObj ond one starts
lObjEnd, err := end(lObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
rObjStart, err := start(rObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
lEnd, rStart, err := applyToValues(lObjEnd, rObjStart, result.ToDateTime)
if err != nil {
return result.Value{}, err
}
return beforeDateTimeWithPrecision(lEnd, rStart, p)
case *model.SameOrAfter:
// lObj starts on or after the rObj ends
lObjStart, err := start(lObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
rObjEnd, err := end(rObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
lStart, rEnd, err := applyToValues(lObjStart, rObjEnd, result.ToDateTime)
if err != nil {
return result.Value{}, err
}
return afterOrEqualDateTimeWithPrecision(lStart, rEnd, p)
case *model.SameOrBefore:
// lObj ends on or before rObj one starts
lObjEnd, err := end(lObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
rObjStart, err := start(rObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
lEnd, rStart, err := applyToValues(lObjEnd, rObjStart, result.ToDateTime)
if err != nil {
return result.Value{}, err
}
return beforeOrEqualDateTimeWithPrecision(lEnd, rStart, p)
}
return result.Value{}, fmt.Errorf("internal error - unsupported Binary Comparison Expression in evalCompareIntervalDateTimeInterval: %v", be)
}
// Overlaps(left Interval<Date>, right Interval<Date>) Boolean
// Overlaps(left Interval<DateTime>, right Interval<DateTime>) Boolean
// https://cql.hl7.org/09-b-cqlreference.html#overlaps
func (i *interpreter) evalOverlapsIntervalDateTimeInterval(be model.IBinaryExpression, lObj, rObj result.Value) (result.Value, error) {
if result.IsNull(lObj) || result.IsNull(rObj) {
return result.New(nil)
}
p, err := precisionFromBinaryExpression(be)
if err != nil {
return result.Value{}, err
}
iType, ok := be.Left().GetResultType().(*types.Interval)
if !ok {
return result.Value{}, fmt.Errorf("internal error - evalCompareIntervalDateTimeInterval got Value that is not an interval type")
}
pointType := iType.PointType
allowUnsetPrec := true
if err := validatePrecisionByType(p, allowUnsetPrec, pointType); err != nil {
return result.Value{}, err
}
if p != "" {
return result.Value{}, fmt.Errorf("internal error - overlaps does not yet support precision")
}
// Get left interval bounds.
lObjStart, lObjEnd, err := startAndEnd(lObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
leftStart, leftEnd, err := applyToValues(lObjStart, lObjEnd, result.ToDateTime)
if err != nil {
return result.Value{}, err
}
// Get right interval bounds.
rObjStart, rObjEnd, err := startAndEnd(rObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
rightStart, rightEnd, err := applyToValues(rObjStart, rObjEnd, result.ToDateTime)
if err != nil {
return result.Value{}, err
}
// Due to complexity regarding DateTime precision, we will calculate each case separately and
// return the OR of all results. If any of the cases are true, then the result is true, if any
// of the cases are null, then the result is null, otherwise the result is false.
compResults := []result.Value{}
// Case 1. Left starts during right interval.
leftStartsDuringRightIntervalValue, err := dateTimeInIntervalWithPrecision(leftStart, rightStart, rightEnd, p)
if err != nil {
return result.Value{}, err
}
compResults = append(compResults, leftStartsDuringRightIntervalValue)
// Case 2. Left ends during right interval.
leftEndsDuringRightIntervalValue, err := dateTimeInIntervalWithPrecision(leftEnd, rightStart, rightEnd, p)
if err != nil {
return result.Value{}, err
}
compResults = append(compResults, leftEndsDuringRightIntervalValue)
// Case 3. Right starts during left interval.
rightStartsDuringLeftIntervalValue, err := dateTimeInIntervalWithPrecision(rightStart, leftStart, leftEnd, p)
if err != nil {
return result.Value{}, err
}
compResults = append(compResults, rightStartsDuringLeftIntervalValue)
// Case 4. Right ends during left interval.
rightEndsDuringLeftIntervalValue, err := dateTimeInIntervalWithPrecision(rightEnd, leftStart, leftEnd, p)
if err != nil {
return result.Value{}, err
}
compResults = append(compResults, rightEndsDuringLeftIntervalValue)
trueVal, err := result.New(true)
if err != nil {
return result.Value{}, err
}
nullVal, err := result.New(nil)
if err != nil {
return result.Value{}, err
}
if valueInList(trueVal, compResults) {
return trueVal, nil
} else if valueInList(nullVal, compResults) {
return nullVal, nil
}
return result.New(false)
}
// in _precision_ (point Decimal, argument Interval<Decimal>) Boolean
// in _precision_ (point Long, argument Interval<Long>) Boolean
// in _precision_ (point Integer, argument Interval<Integer>) Boolean
// in _precision_ (point Quantity, argument Interval<Quantity>) Boolean
// https://cql.hl7.org/09-b-cqlreference.html#in
// 'Contains' with the left and right args reversed is forwarded here.
func evalInIntervalNumeral(b model.IBinaryExpression, pointObj, intervalObj result.Value) (result.Value, error) {
if result.IsNull(pointObj) {
return result.New(nil)
}
if result.IsNull(intervalObj) {
return result.New(false)
}
// start and end handles null inclusivity as well as non-inclusive logic.
s, e, err := startAndEnd(intervalObj, nil)
if err != nil {
return result.Value{}, err
}
// This will only happen for null exclusive bounds.
// TODO b/335910011 - fix not inclusive but outside of the opposite bounds.
if result.IsNull(s) || result.IsNull(e) {
return result.New(nil)
}
switch pointObj.RuntimeType() {
case types.Decimal:
point, err := result.ToFloat64(pointObj)
if err != nil {
return result.Value{}, err
}
startVal, endVal, err := applyToValues(s, e, result.ToFloat64)
if err != nil {
return result.Value{}, err
}
return numeralInInterval(point, startVal, endVal)
case types.Integer:
point, err := result.ToInt32(pointObj)
if err != nil {
return result.Value{}, err
}
startVal, endVal, err := applyToValues(s, e, result.ToInt32)
if err != nil {
return result.Value{}, err
}
return numeralInInterval(point, startVal, endVal)
case types.Long:
point, err := result.ToInt64(pointObj)
if err != nil {
return result.Value{}, err
}
startVal, endVal, err := applyToValues(s, e, result.ToInt64)
if err != nil {
return result.Value{}, err
}
return numeralInInterval(point, startVal, endVal)
case types.Quantity:
point, err := result.ToQuantity(pointObj)
if err != nil {
return result.Value{}, err
}
startVal, endVal, err := applyToValues(s, e, result.ToQuantity)
if err != nil {
return result.Value{}, err
}
if point.Unit != startVal.Unit {
return result.Value{}, fmt.Errorf("in operator recieved Quantities with differing unit values, unit conversion is not currently supported, got: %v, %v", point.Unit, startVal.Unit)
}
if point.Unit != endVal.Unit {
return result.Value{}, fmt.Errorf("in operator recieved Quantities with differing unit values, unit conversion is not currently supported, got: %v, %v", point.Unit, endVal.Unit)
}
return numeralInInterval(point.Value, startVal.Value, endVal.Value)
default:
return result.Value{}, fmt.Errorf("internal error - unsupported point type in evalInIntervalNumeral: %v", pointObj.RuntimeType())
}
}
func numeralInInterval[t float64 | int64 | int32](point, startVal, endVal t) (result.Value, error) {
// This should only happen in cases such as Interval[1, 1).
if compareNumeral(startVal, endVal) == leftAfterRight {
return result.New(false)
}
lowCompare := compareNumeral(point, startVal)
highCompare := compareNumeral(point, endVal)
return inInterval(lowCompare, highCompare, true, true)
}
func compareNumeral[t float64 | int64 | int32](left, right t) comparison {
if left == right {
return leftEqualRight
} else if left < right {
return leftBeforeRight
}
return leftAfterRight
}
// duringDateTimeWithPrecision returns whether or not the given DateTimeValue is during the given
// low high interval. Returns null in cases where values cannot be compared such as right precision being
// less than left precision.
// All values are expected to be inclusive bounds.
// Return a null value if the comparison cannot be made due to insufficient precision.
func dateTimeInIntervalWithPrecision(a, low, high result.DateTime, p model.DateTimePrecision) (result.Value, error) {
lowComp, err := compareDateTimeWithPrecision(a, low, p)
if err != nil {
return result.Value{}, err
}
highComp, err := compareDateTimeWithPrecision(a, high, p)
if err != nil {
return result.Value{}, err
}
if lowComp == insufficientPrecision || highComp == insufficientPrecision {
return result.New(nil)
} else if (lowComp == leftEqualRight || lowComp == leftAfterRight) && (highComp == leftEqualRight || highComp == leftBeforeRight) {
return result.New(true)
}
return result.New(false)
}
// in _precision_ (point DateTime, argument Interval<DateTime>) Boolean
// in _precision_ (point Date, argument Interval<Date>) Boolean
// https://cql.hl7.org/09-b-cqlreference.html#in
// 'IncludedIn' with left arg of point type is forwarded here.
// 'Contains' with the left and right args reversed is forwarded here.
func (i *interpreter) evalInIntervalDateTime(b model.IBinaryExpression, pointObj, intervalObj result.Value) (result.Value, error) {
m := b.(*model.In)
precision := model.DateTimePrecision(m.Precision)
allowUnsetPrec := true
if err := validatePrecisionByType(precision, allowUnsetPrec, m.Left().GetResultType()); err != nil {
return result.Value{}, err
}
if result.IsNull(pointObj) {
return result.New(nil)
}
if result.IsNull(intervalObj) {
return result.New(false)
}
point, err := result.ToDateTime(pointObj)
if err != nil {
return result.Value{}, err
}
interval, err := result.ToInterval(intervalObj)
if err != nil {
return result.Value{}, err
}
var lowCompare, highCompare comparison
s, err := start(intervalObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
if result.IsNull(s) {
lowCompare = comparedToNull
} else {
low, err := result.ToDateTime(s)
if err != nil {
return result.Value{}, err
}
lowCompare, err = compareDateTimeWithPrecision(point, low, precision)
if err != nil {
return result.Value{}, err
}
}
e, err := end(intervalObj, &i.evaluationTimestamp)
if err != nil {
return result.Value{}, err
}
if result.IsNull(e) {
highCompare = comparedToNull
} else {
high, err := result.ToDateTime(e)
if err != nil {
return result.Value{}, err
}
highCompare, err = compareDateTimeWithPrecision(point, high, precision)
if err != nil {
return result.Value{}, err
}
}
return inInterval(lowCompare, highCompare, interval.LowInclusive, interval.HighInclusive)
}
func inInterval(lowCompare, highCompare comparison, lowInclusive, highInclusive bool) (result.Value, error) {
// This includes cases where we know the point is for sure outside the interval such as:
// 5 in Interval[0, 2] - point is outside the interval
if lowCompare == leftBeforeRight || highCompare == leftAfterRight {
return result.New(false)
}
// Handles Cases:
// 3 in Interval[0, 3) - point is on the exclusive bound
// 3 in Interval[3, 3) - ignores cases like this, the will fall through to null
if (lowCompare == leftEqualRight && !lowInclusive) && !(highCompare == leftEqualRight && highInclusive) {
return result.New(false)
}
if (highCompare == leftEqualRight && !highInclusive) && !(lowCompare == leftEqualRight && lowInclusive) {
return result.New(false)
}
// This handles three cases:
// 3 in Interval[0, 5] - point is within the interval
// 3 in Interval[0, 3] - point is on the boundary but the boundary is inclusive
if lowCompare == leftAfterRight || (lowInclusive && lowCompare == leftEqualRight) {
if highCompare == leftBeforeRight || (highInclusive && highCompare == leftEqualRight) {
return result.New(true)
}
}
// All other cases return null, this includes:
// * Cases where a start/end bound was null: 3 in Interval(null, 5]
// * Cases where Dates/DateTimes have insufficient precision for the comparison:
// Date(2020) in Interval[Date(2020, 3), Date(2020, 4)]
return result.New(nil)
}