-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathoperator_list.go
378 lines (347 loc) · 10.4 KB
/
operator_list.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
// 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"
"github.com/google/cql/model"
"github.com/google/cql/result"
"github.com/google/cql/types"
)
// LIST OPERATORS - https://cql.hl7.org/09-b-cqlreference.html#list-operators-2
// exists(argument List<T>) Boolean
// https://cql.hl7.org/09-b-cqlreference.html#exists
func evalExists(m model.IUnaryExpression, listObj result.Value) (result.Value, error) {
if result.IsNull(listObj) {
return result.New(false)
}
list, err := result.ToSlice(listObj)
if err != nil {
return result.Value{}, err
}
if len(list) == 0 {
return result.New(false)
}
for _, elemObj := range list {
if result.IsNull(elemObj) {
return result.New(false)
}
}
return result.New(true)
}
// except(argument List<T>, argument List<T>) List<T>
// https://cql.hl7.org/09-b-cqlreference.html#except-1
func evalExcept(m model.IBinaryExpression, lObj, rObj result.Value) (result.Value, error) {
if result.IsNull(lObj) {
return result.New(nil)
}
l, err := result.ToSlice(lObj)
if err != nil {
return result.Value{}, err
}
// If the right value is null treat it as an empty list.
var r []result.Value
if !result.IsNull(rObj) {
r, err = result.ToSlice(rObj)
if err != nil {
return result.Value{}, err
}
}
// create a list of the elements that are in the first list and are not in the second list using
// the equality operator where each element in the result must be unique.
var exceptList []result.Value
for _, elemObj := range l {
if valueInList(elemObj, r) {
continue
}
if valueInList(elemObj, exceptList) {
continue
}
exceptList = append(exceptList, elemObj)
}
return result.New(result.List{
Value: exceptList,
StaticType: lObj.GolangValue().(result.List).StaticType,
})
}
// flatten(argument List<List<T>>) List<T>
// https://cql.hl7.org/09-b-cqlreference.html#flatten
func evalFlatten(m model.IUnaryExpression, listObj result.Value) (result.Value, error) {
if result.IsNull(listObj) {
return result.New(nil)
}
list, err := result.ToSlice(listObj)
if err != nil {
return result.Value{}, err
}
var flattenedList []result.Value
for _, elemObj := range list {
if result.IsNull(elemObj) {
continue
}
elemList, err := result.ToSlice(elemObj)
if err != nil {
return result.Value{}, err
}
flattenedList = append(flattenedList, elemList...)
}
return result.New(result.List{
Value: flattenedList,
StaticType: listObj.GolangValue().(result.List).StaticType.ElementType.(*types.List),
})
}
// in(element T, argument List<T>) Boolean
// https://cql.hl7.org/09-b-cqlreference.html#in-1
func evalInList(m model.IBinaryExpression, lObj, listObj result.Value) (result.Value, error) {
if result.IsNull(listObj) {
return result.New(nil)
}
r, err := result.ToSlice(listObj)
if err != nil {
return result.Value{}, err
}
return result.New(valueInList(lObj, r))
}
// intersect(argument List<T>, argument List<T>) List<T>
// https://cql.hl7.org/09-b-cqlreference.html#intersect
func evalIntersect(m model.IBinaryExpression, lObj, rObj result.Value) (result.Value, error) {
if result.IsNull(lObj) || result.IsNull(rObj) {
return result.New(nil)
}
l, err := result.ToSlice(lObj)
if err != nil {
return result.Value{}, err
}
r, err := result.ToSlice(rObj)
if err != nil {
return result.Value{}, err
}
// create a list of the intersection of the two lists using the equality operator where
// each element in the result must be unique.
var intersection []result.Value
for _, elemObj := range l {
if !valueInList(elemObj, r) {
continue
}
if valueInList(elemObj, intersection) {
continue
}
intersection = append(intersection, elemObj)
}
return result.New(result.List{
Value: intersection,
StaticType: lObj.GolangValue().(result.List).StaticType,
})
}
// Distinct(argument List<T>) List<T>
// https://cql.hl7.org/09-b-cqlreference.html#distinct
// In the future we should make result.Value hashable so we can use a map instead of a list to
// check for duplicates.
func evalDistinct(m model.IUnaryExpression, listObj result.Value) (result.Value, error) {
if result.IsNull(listObj) {
return result.New(nil)
}
list, err := result.ToSlice(listObj)
if err != nil {
return result.Value{}, err
}
var distinctList []result.Value
for _, elemObj := range list {
if !valueInList(elemObj, distinctList) {
distinctList = append(distinctList, elemObj)
}
}
return result.New(result.List{
Value: distinctList,
StaticType: listObj.GolangValue().(result.List).StaticType,
})
}
// First(argument List<T>) T
// https://cql.hl7.org/09-b-cqlreference.html#first
func evalFirst(m model.IUnaryExpression, listObj result.Value) (result.Value, error) {
if result.IsNull(listObj) {
return result.New(nil)
}
list, err := result.ToSlice(listObj)
if err != nil {
return result.Value{}, err
}
if len(list) == 0 {
return result.New(nil)
}
return list[0], nil
}
// Last(argument List<T>) T
// https://cql.hl7.org/09-b-cqlreference.html#last
func evalLast(m model.IUnaryExpression, listObj result.Value) (result.Value, error) {
if result.IsNull(listObj) {
return result.New(nil)
}
list, err := result.ToSlice(listObj)
if err != nil {
return result.Value{}, err
}
if len(list) == 0 {
return result.New(nil)
}
return list[len(list)-1], nil
}
// IndexOf(argument List<T>, element T) Integer
// https://cql.hl7.org/09-b-cqlreference.html#indexof
func evalIndexOf(m model.IBinaryExpression, listObj, valueObj result.Value) (result.Value, error) {
if result.IsNull(listObj) || result.IsNull(valueObj) {
return result.New(nil)
}
list, err := result.ToSlice(listObj)
if err != nil {
return result.Value{}, err
}
if len(list) == 0 {
return result.New(int32(-1))
}
for i, elemObj := range list {
if valueObj.Equal(elemObj) {
return result.New(int32(i))
}
}
return result.New(int32(-1))
}
// Length(argument List<T>) Integer
// https://cql.hl7.org/09-b-cqlreference.html#length-1
func evalLengthList(m model.IUnaryExpression, listObj result.Value) (result.Value, error) {
if result.IsNull(listObj) {
return result.New(int32(0))
}
list, err := result.ToSlice(listObj)
if err != nil {
return result.Value{}, err
}
return result.New(int32(len(list)))
}
// singleton from(argument List<T>) T
// https://cql.hl7.org/09-b-cqlreference.html#singleton-from
func evalSingletonFrom(m model.IUnaryExpression, listObj result.Value) (result.Value, error) {
if result.IsNull(listObj) {
return result.New(nil)
}
list, err := result.ToSlice(listObj)
if err != nil {
return result.Value{}, err
}
switch len(list) {
case 0:
return result.New(nil)
case 1:
return list[0], nil
default:
return result.Value{}, fmt.Errorf("singleton from requires a list of length 0 or 1, but got length %d", len(list))
}
}
// Skip(argument List<T>, index Integer) List<T>
// https://cql.hl7.org/09-b-cqlreference.html#skip
func evalSkip(m model.IBinaryExpression, listObj, indexObj result.Value) (result.Value, error) {
if result.IsNull(listObj) {
return result.New(nil)
}
if result.IsNull(indexObj) {
return result.New(nil)
}
list, err := result.ToSlice(listObj)
if err != nil {
return result.Value{}, err
}
index, err := result.ToInt32(indexObj)
if err != nil {
return result.Value{}, err
}
staticType := listObj.GolangValue().(result.List).StaticType
// If the index is out of bounds, return an empty list.
if index < 0 || index >= int32(len(list)) {
return result.New(result.List{StaticType: staticType})
}
return result.New(result.List{Value: list[index:], StaticType: staticType})
}
// Tail(argument List<T>) List<T>
// https://cql.hl7.org/09-b-cqlreference.html#tail
func evalTail(m model.IUnaryExpression, listObj result.Value) (result.Value, error) {
if result.IsNull(listObj) {
return result.New(nil)
}
list, err := result.ToSlice(listObj)
if err != nil {
return result.Value{}, err
}
staticType := listObj.GolangValue().(result.List).StaticType
// If the list is empty, return an empty list.
if len(list) == 0 {
return result.New(result.List{StaticType: staticType})
}
return result.New(result.List{Value: list[1:], StaticType: staticType})
}
// Take(argument List<T>, number Integer) List<T>
// https://cql.hl7.org/09-b-cqlreference.html#take
// Removes the last n elements from the list.
func evalTake(m model.IBinaryExpression, listObj, numberObj result.Value) (result.Value, error) {
if result.IsNull(listObj) {
return result.New(nil)
}
list, err := result.ToSlice(listObj)
if err != nil {
return result.Value{}, err
}
staticType := listObj.GolangValue().(result.List).StaticType
if result.IsNull(numberObj) {
return result.New(result.List{StaticType: staticType})
}
number, err := result.ToInt32(numberObj)
if err != nil {
return result.Value{}, err
}
if number <= 0 {
return result.New(result.List{StaticType: staticType})
}
if number > int32(len(list)) {
return result.New(result.List{Value: list, StaticType: staticType})
}
return result.New(result.List{Value: list[:number], StaticType: staticType})
}
// Indexer(argument List<T>, index Integer) T
// [](argument List<T>, index Integer) T
// https://cql.hl7.org/09-b-cqlreference.html#indexer-1
// Indexer is also defined for String, see operator_string.go for that implementation.
func (i *interpreter) evalIndexerList(m model.IBinaryExpression, lObj, rObj result.Value) (result.Value, error) {
if result.IsNull(lObj) || result.IsNull(rObj) {
return result.New(nil)
}
list, err := result.ToSlice(lObj)
if err != nil {
return result.Value{}, err
}
idx, err := result.ToInt32(rObj)
if err != nil {
return result.Value{}, err
}
if idx < 0 || idx >= int32(len(list)) {
return result.New(nil)
}
return list[idx], nil
}
// valueInList returns true if the value is in the list using equality scemantics.
func valueInList(value result.Value, list []result.Value) bool {
for _, elemObj := range list {
if value.Equal(elemObj) {
return true
}
}
return false
}