-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathItem.java
More file actions
611 lines (542 loc) · 17.6 KB
/
Item.java
File metadata and controls
611 lines (542 loc) · 17.6 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
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
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
package org.rumbledb.api;
import java.io.Serializable;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.List;
import java.util.Map;
import org.apache.spark.api.java.JavaRDD;
import org.joda.time.DateTime;
import org.joda.time.Period;
import org.rumbledb.context.DynamicContext;
import org.rumbledb.context.FunctionIdentifier;
import org.rumbledb.context.Name;
import org.rumbledb.items.structured.JSoundDataFrame;
import org.rumbledb.runtime.RuntimeIterator;
import org.rumbledb.runtime.flwor.NativeClauseContext;
import org.rumbledb.types.FunctionSignature;
import org.rumbledb.types.ItemType;
import com.esotericsoftware.kryo.KryoSerializable;
/**
* An instance of this class is an item in the JSONiq data model.
*
* JSONiq manipulates sequences of items.
*
* All calls should be made via this interface. Objects of type Item should never be cast to a subclass (in a subsequent
* version,
* we will make the classes implementing this interface visible only at the package level).
*
* An item can be structured or atomic or a function.
*
* Structured items include objects and arrays. Objects are mappings from strings (keys) to items. Arrays are ordered
* lists of items.
*
* Atomic items have a lexical value and a type. Rumble does not support all atomic types yet.
*
* @author Ghislain Fourny, Stefan Irimescu, Can Berker Cikis
*/
public interface Item extends Serializable, KryoSerializable {
/**
* Tests whether the item is an array.
*
* @return true if it is an array, false otherwise.
*/
default boolean isArray() {
return false;
}
/**
* Tests whether the item is an object.
*
* @return true if it is an object, false otherwise.
*/
default boolean isObject() {
return false;
}
/**
* Tests whether the item is a function.
*
* @return true if it is a function, false otherwise
*/
default boolean isFunction() {
return false;
}
/**
* Tests whether the item is an atomic item.
*
* @return true if it is an atomic item, false otherwise.
*/
default boolean isAtomic() {
return false;
}
/**
* Tests whether the item is an atomic item of type string.
*
* @return true if it is an atomic item of type string, false otherwise.
*/
default boolean isString() {
return false;
}
/**
* Tests whether the item is an atomic item of type default boolean.
*
* @return true if it is an atomic item of type default boolean, false otherwise.
*/
default boolean isBoolean() {
return false;
}
/**
* Tests whether the item is the null item.
*
* @return true if it is the null item, false otherwise.
*/
default boolean isNull() {
return false;
}
/**
* Tests whether the item is a number (decimal or double).
*
* @return true if it is a number, false otherwise.
*/
default boolean isNumeric() {
return false;
}
/**
* Tests whether the item is an atomic item of type decimal.
*
* @return true if it is an atomic item of type decimal, false otherwise.
*/
default boolean isDecimal() {
return false;
}
/**
* Tests whether the item is an atomic item of type integer.
*
* @return true if it is an atomic item of type integer, false otherwise.
*/
default boolean isInteger() {
return false;
}
/**
* Tests whether the item is an atomic item of type int.
*
* @return true if it is an atomic item of type int, false otherwise.
*/
default boolean isInt() {
return false;
}
/**
* Tests whether the item is an atomic item of type double.
*
* @return true if it is an atomic item of type double, false otherwise.
*/
default boolean isDouble() {
return false;
}
/**
* Tests whether the item is an atomic item of type float.
*
* @return true if it is an atomic item of type float, false otherwise.
*/
default boolean isFloat() {
return false;
}
/**
* Tests whether the item is an atomic item of type duration.
*
* @return true if it is an atomic item of type duration, false otherwise.
*/
default boolean isDuration() {
return false;
}
/**
* Tests whether the item is an atomic item of type yearMonthDuration.
*
* @return true if it is an atomic item of type yearMonthDuration, false otherwise.
*/
default boolean isYearMonthDuration() {
return false;
}
/**
* Tests whether the item is an atomic item of type dayTimeDuration.
*
* @return true if it is an atomic item of type dayTimeDuration, false otherwise.
*/
default boolean isDayTimeDuration() {
return false;
}
/**
* Tests whether the item is an atomic item of type dateTime.
*
* @return true if it is an atomic item of type dateTime, false otherwise.
*/
default boolean isDateTime() {
return false;
}
/**
* Tests whether the item is an atomic item of type date.
*
* @return true if it is an atomic item of type date, false otherwise.
*/
default boolean isDate() {
return false;
}
/**
* Tests whether the item is an atomic item of type time.
*
* @return true if it is an atomic item of type time, false otherwise.
*/
default boolean isTime() {
return false;
}
/**
* Tests whether the item is an atomic item of type anyURI.
*
* @return true if it is an atomic item of type anyURI, false otherwise.
*/
default boolean isAnyURI() {
return false;
}
/**
* Tests whether the item is an atomic item of type base64Binary or hexBinary.
*
* @return true if it is an atomic item of type base64Binary or hexBinary, false otherwise.
*/
default boolean isBinary() {
return false;
}
/**
* Tests whether the item is an atomic item of type hexBinary.
*
* @return true if it is an atomic item of type hexBinary, false otherwise.
*/
default boolean isHexBinary() {
return false;
}
/**
* Tests whether the item is an atomic item of type base64Binary.
*
* @return true if it is an atomic item of type base64Binary, false otherwise.
*/
default boolean isBase64Binary() {
return false;
}
/**
* Returns the members of the item if it is an array.
*
* @return the list of the array members.
*/
default List<Item> getItems() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the member of the item at the specified position if it is an array.
*
* @param position a position.
* @return the member at position position.
*/
default Item getItemAt(int position) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the keys of the item, if it is an object.
*
* @return the list of the keys.
*/
default List<String> getKeys() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the values of the item, if it is an object.
*
* @return the list of the value items.
*/
default List<Item> getValues() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the value associated with a specific key, if it is an object.
*
* @param key a key.
* @return the value associated with key.
*/
default Item getItemByKey(String key) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the size of the item, if it is an array.
*
* @return the size as an int.
*/
default int getSize() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the string value of the item, if it is a string.
*
* @return the string value.
*/
default String getStringValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the boolean value of the item, if it is a boolean.
*
* @return the boolean value.
*/
default boolean getBooleanValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the double value of the item, if it is a double.
*
* @return the double value.
*/
default double getDoubleValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the float value of the item, if it is a float.
*
* @return the float value.
*/
default float getFloatValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the int value of the item, if it is an int.
*
* @return the integer value as an int.
*/
default int getIntValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the integer value of the item as a bit integer, if it is an integer.
*
* @return the integer value as a BigInteger.
*/
default BigInteger getIntegerValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the decimal value of the item, if it is a decimal.
*
* @return the decimal value as a BigDecimal.
*/
default BigDecimal getDecimalValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the period value of the item, if it is a duration.
*
* @return the period value as a Period.
*/
default Period getDurationValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the dateTime value of the item, if it is a atomic item of type dateTimeItem or dateItem or timeItem.
*
* @return the dateTime value as a DateTime.
*/
default DateTime getDateTimeValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the byte[] value of the item, if it is a atomic item of type hexBinary or Base64Binary.
*
* @return the binary value as an array of bytes.
*/
default byte[] getBinaryValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the dynamic type of the item (only for error message purposes).
*
* @return the dynamic type as an item type.
*/
default ItemType getDynamicType() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the identifier (name and arity) of the function, if it is a function item.
*
* @return the function identifier.
*/
default FunctionIdentifier getIdentifier() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the names of the parameters of the function, if it is a function item.
*
* @return the function parameter names.
*/
default List<Name> getParameterNames() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the signature of the function, if it is a function item.
*
* @return the function signature.
*/
default FunctionSignature getSignature() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the body iterator, if it is a function item.
*
* @return the function signature.
*/
default public RuntimeIterator getBodyIterator() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the body iterator, if it is a function item.
*
* @return the function signature.
*/
default public Map<Long, RuntimeIterator> getBodyIterators() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the local variable bindings, if it is a function item.
*
* @return the function signature.
*/
default public Map<Name, List<Item>> getLocalVariablesInClosure() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the RDD variable bindings, if it is a function item.
*
* @return the function signature.
*/
default public Map<Name, JavaRDD<Item>> getRDDVariablesInClosure() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the DataFrame variable bindings, if it is a function item.
*
* @return the function signature.
*/
default public Map<Name, JSoundDataFrame> getDFVariablesInClosure() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the module dynamic context, if it is a function item.
*
* @return the function signature.
*/
default public DynamicContext getModuleDynamicContext() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* @return true if the Item has a timeZone, false otherwise
*/
default boolean hasTimeZone() {
return false;
}
/**
* Tests whether the item contains a representation of date or time (or both).
*
* @return true if it is an atomic item of type time, date or dateTime, false otherwise.
*/
default boolean hasDateTime() {
return false;
}
/**
* Returns the effective boolean value of the item, if atomic.
*
* @return the effective boolean value.
*/
default boolean getEffectiveBooleanValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Appends an item, if it is an array.
*
* @param item an item.
*/
default void putItem(Item item) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Adds a value pair, if it is an array item.
*
* @param value a value.
*/
default void append(Item value) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Adds a key-value pair, if it is an object item.
*
* @param key a key.
* @param value a value.
*/
default void putItemByKey(String key, Item value) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Casts the item to a double value (must be a numeric).
*
* @return the double value.
*/
default double castToDoubleValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Casts the item to a float value (must be a numeric).
*
* @return the float value.
*/
default float castToFloatValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Casts the item to a decimal value (must be a numeric).
*
* @return the BigDecimal value.
*/
default BigDecimal castToDecimalValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Casts the item to a big integer value (must be a numeric).
*
* @return the BigInteger value.
*/
default BigInteger castToIntegerValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Casts the item to an integer value (must be a numeric).
*
* @return the int value.
*/
default int castToIntValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Tests for logical equality. The semantics are that of the eq operator.
*
* @param other another item.
* @return true it is equal to other, false otherwise.
*/
boolean equals(Object other);
/**
* Computes a hash code.
*
* @return a hash code as an int.
*/
int hashCode();
String serialize();
/**
* Get sparkSql string for the item
*
* @param context input context
* @return String representing the item in a sparksql query or null if it is not supported for the item
*/
default NativeClauseContext generateNativeQuery(NativeClauseContext context) {
return NativeClauseContext.NoNativeQuery;
}
}