-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathDateTimeResult.java
More file actions
436 lines (396 loc) · 17.3 KB
/
DateTimeResult.java
File metadata and controls
436 lines (396 loc) · 17.3 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
/*******************************************************************************
* Copyright (c) 2009-2013 CWI All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v1.0 which accompanies this
* distribution, and is available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*
* * Jurgen J. Vinju - Jurgen.Vinju@cwi.nl - CWI * Mark Hills - Mark.Hills@cwi.nl (CWI) * Arnold
* Lankamp - Arnold.Lankamp@cwi.nl
*******************************************************************************/
package org.rascalmpl.interpreter.result;
import static org.rascalmpl.interpreter.result.ResultFactory.bool;
import static org.rascalmpl.interpreter.result.ResultFactory.makeResult;
import java.time.Duration;
import java.time.LocalDate;
import java.time.Period;
import java.time.temporal.ChronoUnit;
import java.time.temporal.Temporal;
import java.util.Iterator;
import org.rascalmpl.exceptions.RuntimeExceptionFactory;
import org.rascalmpl.interpreter.IEvaluatorContext;
import org.rascalmpl.interpreter.staticErrors.InvalidDateTimeComparison;
import org.rascalmpl.interpreter.staticErrors.UndeclaredField;
import org.rascalmpl.interpreter.staticErrors.UnexpectedType;
import org.rascalmpl.interpreter.staticErrors.UnsupportedOperation;
import org.rascalmpl.util.DateTimeConversions;
import org.rascalmpl.values.ValueFactoryFactory;
import io.usethesource.vallang.IBool;
import io.usethesource.vallang.IDateTime;
import io.usethesource.vallang.IInteger;
import io.usethesource.vallang.IValue;
import io.usethesource.vallang.IValueFactory;
import io.usethesource.vallang.exceptions.InvalidDateTimeException;
import io.usethesource.vallang.type.Type;
import io.usethesource.vallang.type.TypeFactory;
import io.usethesource.vallang.type.TypeStore;
public class DateTimeResult extends ElementResult<IDateTime> {
private static TypeFactory TF = TypeFactory.getInstance();
private static IValueFactory VF = ValueFactoryFactory.getValueFactory();
public static final TypeStore TS = new TypeStore();
public static final Type Duration = TF.abstractDataType(TS, "Duration");
public static final Type duration = TF.constructor(TS, Duration, "duration",
TF.integerType(), "years", TF.integerType(), "months",
TF.integerType(), "days", TF.integerType(), "hours",
TF.integerType(), "minutes", TF.integerType(), "seconds",
TF.integerType(), "milliseconds");
public DateTimeResult(Type type, IDateTime value, IEvaluatorContext ctx) {
super(type, value, ctx);
}
public DateTimeResult(Type type, IDateTime value, Iterator<Result<IValue>> iter, IEvaluatorContext ctx) {
super(type, value, iter, ctx);
}
@Override
public <V extends IValue> Result<IBool> equals(Result<V> that) {
return that.equalToDateTime(this);
}
@Override
protected Result<IBool> equalToDateTime(DateTimeResult that) {
return bool(that.value.equals(this.value), ctx);
}
@Override
public <V extends IValue> Result<IBool> nonEquals(Result<V> that) {
return that.nonEqualToDateTime(this);
}
@Override
protected Result<IBool> nonEqualToDateTime(DateTimeResult that) {
return bool(!that.value.equals(this.value), ctx);
}
@Override
public <U extends IValue> Result<U> fieldAccess(String name, TypeStore store) {
IValueFactory vf = getValueFactory();
IDateTime dt = getValue();
try {
if (name.equals("year")) {
if (!dt.isTime()) {
return makeResult(getTypeFactory().integerType(), vf.integer(dt.getYear()), ctx);
}
throw new UnsupportedOperation("Can not retrieve the year on a time value",ctx.getCurrentAST());
} else if (name.equals("month")) {
if (!dt.isTime()) {
return makeResult(getTypeFactory().integerType(), vf.integer(getValue().getMonthOfYear()), ctx);
}
throw new UnsupportedOperation("Can not retrieve the month on a time value",ctx.getCurrentAST());
} else if (name.equals("day")) {
if (!dt.isTime()) {
return makeResult(getTypeFactory().integerType(), vf.integer(getValue().getDayOfMonth()), ctx);
}
throw new UnsupportedOperation("Can not retrieve the day on a time value",ctx.getCurrentAST());
} else if (name.equals("hour")) {
if (!dt.isDate()) {
return makeResult(getTypeFactory().integerType(), vf.integer(getValue().getHourOfDay()), ctx);
}
throw new UnsupportedOperation("Can not retrieve the hour on a date value",ctx.getCurrentAST());
} else if (name.equals("minute")) {
if (!dt.isDate()) {
return makeResult(getTypeFactory().integerType(), vf.integer(getValue().getMinuteOfHour()), ctx);
}
throw new UnsupportedOperation("Can not retrieve the minute on a date value",ctx.getCurrentAST());
} else if (name.equals("second")) {
if (!dt.isDate()) {
return makeResult(getTypeFactory().integerType(), vf.integer(getValue().getSecondOfMinute()), ctx);
}
throw new UnsupportedOperation("Can not retrieve the second on a date value",ctx.getCurrentAST());
} else if (name.equals("millisecond")) {
if (!dt.isDate()) {
return makeResult(getTypeFactory().integerType(), vf.integer(getValue().getMillisecondsOfSecond()), ctx);
}
throw new UnsupportedOperation("Can not retrieve the millisecond on a date value",ctx.getCurrentAST());
} else if (name.equals("timezoneOffsetHours")) {
if (!dt.isDate()) {
return makeResult(getTypeFactory().integerType(), vf.integer(getValue().getTimezoneOffsetHours()), ctx);
}
throw new UnsupportedOperation("Can not retrieve the timezone offset hours on a date value",ctx.getCurrentAST());
} else if (name.equals("timezoneOffsetMinutes")) {
if (!dt.isDate()) {
return makeResult(getTypeFactory().integerType(), vf.integer(getValue().getTimezoneOffsetMinutes()), ctx);
}
throw new UnsupportedOperation("Can not retrieve the timezone offset minutes on a date value",ctx.getCurrentAST());
} else if (name.equals("century")) {
if (!dt.isTime()) {
return makeResult(getTypeFactory().integerType(), vf.integer(getValue().getCentury()), ctx);
}
throw new UnsupportedOperation("Can not retrieve the century on a time value",ctx.getCurrentAST());
} else if (name.equals("isDate")) {
return makeResult(getTypeFactory().boolType(), vf.bool(getValue().isDate()), ctx);
} else if (name.equals("isTime")) {
return makeResult(getTypeFactory().boolType(), vf.bool(getValue().isTime()), ctx);
} else if (name.equals("isDateTime")) {
return makeResult(getTypeFactory().boolType(), vf.bool(getValue().isDateTime()), ctx);
} else if (name.equals("justDate")) {
if (!dt.isTime()) {
return makeResult(getTypeFactory().dateTimeType(),
vf.date(dt.getYear(), dt.getMonthOfYear(), dt.getDayOfMonth()), ctx);
}
throw new UnsupportedOperation("Can not retrieve the date component of a time value",ctx.getCurrentAST());
} else if (name.equals("justTime")) {
if (!dt.isDate()) {
return makeResult(getTypeFactory().dateTimeType(),
vf.time(dt.getHourOfDay(), dt.getMinuteOfHour(), dt.getSecondOfMinute(),
dt.getMillisecondsOfSecond(), dt.getTimezoneOffsetHours(),
dt.getTimezoneOffsetMinutes()), ctx);
}
throw new UnsupportedOperation("Can not retrieve the time component of a date value",ctx.getCurrentAST());
}
} catch (InvalidDateTimeException e) {
throw RuntimeExceptionFactory.illegalArgument(dt, e.getMessage(), ctx.getCurrentAST(), null);
}
throw new UndeclaredField(name, getTypeFactory().dateTimeType(), ctx.getCurrentAST());
}
@Override
public <U extends IValue, V extends IValue> Result<U> fieldUpdate(
String name, Result<V> repl, TypeStore store) {
Type replType = repl.getStaticType();
IValue replValue = repl.getValue();
IDateTime dt = getValue();
// Individual fields
int year = dt.getYear();
int month = dt.getMonthOfYear();
int day = dt.getDayOfMonth();
int hour = dt.getHourOfDay();
int minute = dt.getMinuteOfHour();
int second = dt.getSecondOfMinute();
int milli = dt.getMillisecondsOfSecond();
int tzOffsetHour = dt.getTimezoneOffsetHours();
int tzOffsetMin = dt.getTimezoneOffsetMinutes();
try {
if (name.equals("year")) {
if (dt.isTime()) {
throw new UnsupportedOperation("Can not update the year on a time value",ctx.getCurrentAST());
}
if (!replType.isInteger()) {
throw new UnexpectedType(getTypeFactory().integerType(), replType, ctx.getCurrentAST());
}
year = ((IInteger) replValue).intValue();
} else if (name.equals("month")) {
if (dt.isTime()) {
throw new UnsupportedOperation("Can not update the month on a time value",ctx.getCurrentAST());
}
if (!replType.isInteger()) {
throw new UnexpectedType(getTypeFactory().integerType(), replType, ctx.getCurrentAST());
}
month = ((IInteger) replValue).intValue();
} else if (name.equals("day")) {
if (dt.isTime()) {
throw new UnsupportedOperation("Can not update the day on a time value",ctx.getCurrentAST());
}
if (!replType.isInteger()) {
throw new UnexpectedType(getTypeFactory().integerType(), replType, ctx.getCurrentAST());
}
day = ((IInteger) replValue).intValue();
} else if (name.equals("hour")) {
if (dt.isDate()) {
throw new UnsupportedOperation("Can not update the hour on a date value",ctx.getCurrentAST());
}
if (!replType.isInteger()) {
throw new UnexpectedType(getTypeFactory().integerType(), replType, ctx.getCurrentAST());
}
hour = ((IInteger) replValue).intValue();
} else if (name.equals("minute")) {
if (dt.isDate()) {
throw new UnsupportedOperation("Can not update the minute on a date value",ctx.getCurrentAST());
}
if (!replType.isInteger()) {
throw new UnexpectedType(getTypeFactory().integerType(), replType, ctx.getCurrentAST());
}
minute = ((IInteger) replValue).intValue();
} else if (name.equals("second")) {
if (dt.isDate()) {
throw new UnsupportedOperation("Can not update the second on a date value",ctx.getCurrentAST());
}
if (!replType.isInteger()) {
throw new UnexpectedType(getTypeFactory().integerType(), replType, ctx.getCurrentAST());
}
second = ((IInteger) replValue).intValue();
} else if (name.equals("millisecond")) {
if (dt.isDate()) {
throw new UnsupportedOperation("Can not update the millisecond on a date value",ctx.getCurrentAST());
}
if (!replType.isInteger()) {
throw new UnexpectedType(getTypeFactory().integerType(), replType, ctx.getCurrentAST());
}
milli = ((IInteger) replValue).intValue();
} else if (name.equals("timezoneOffsetHours")) {
if (dt.isDate()) {
throw new UnsupportedOperation("Can not update the timezone offset hours on a date value",ctx.getCurrentAST());
}
if (!replType.isInteger()) {
throw new UnexpectedType(getTypeFactory().integerType(), replType, ctx.getCurrentAST());
}
tzOffsetHour = ((IInteger) replValue).intValue();
} else if (name.equals("timezoneOffsetMinutes")) {
if (dt.isDate()) {
throw new UnsupportedOperation("Can not update the timezone offset minutes on a date value",ctx.getCurrentAST());
}
if (!replType.isInteger()) {
throw new UnexpectedType(getTypeFactory().integerType(), replType, ctx.getCurrentAST());
}
tzOffsetMin = ((IInteger) replValue).intValue();
} else {
throw new UndeclaredField(name, getTypeFactory().dateTimeType(), ctx.getCurrentAST());
}
IDateTime newdt = null;
if (dt.isDate()) {
newdt = getValueFactory().date(year, month, day);
} else if (dt.isTime()) {
newdt = getValueFactory().time(hour, minute, second, milli, tzOffsetHour, tzOffsetMin);
} else {
newdt = getValueFactory().datetime(year, month, day, hour, minute, second, milli, tzOffsetHour, tzOffsetMin);
}
return makeResult(getStaticType(), newdt, ctx);
}
catch (IllegalArgumentException e) {
throw RuntimeExceptionFactory.illegalArgument(repl.getValue(), "Cannot update field " + name + ", this would generate an invalid datetime value", ctx.getCurrentAST(), null);
}
catch (InvalidDateTimeException e) {
throw RuntimeExceptionFactory.illegalArgument(repl.getValue(), e.getMessage(), ctx.getCurrentAST(), null);
}
}
private static String getName(IDateTime val) {
if (val.isDate()) {
return "date";
}
if (val.isTime()) {
return "time";
}
return "datetime";
}
private UnsupportedOperation reportInvalidComparison(IDateTime thisValue, IDateTime thatValue) {
return new UnsupportedOperation("Cannot compare " + getName(thisValue) + " to " + getName(thatValue), ctx.getCurrentAST());
}
@Override
public <V extends IValue> Result<IBool> greaterThan(Result<V> that) {
return that.greaterThanDateTime(this);
}
@Override
protected Result<IBool> greaterThanDateTime(DateTimeResult that) {
try {
return bool(that.value.compareTo(this.value) > 0, ctx);
}
catch (UnsupportedOperationException e) {
throw reportInvalidComparison(this.value, that.value);
}
}
@Override
public <V extends IValue> Result<IBool> greaterThanOrEqual(Result<V> that) {
return that.greaterThanOrEqualDateTime(this);
}
@Override
protected Result<IBool> greaterThanOrEqualDateTime(DateTimeResult that) {
try {
return bool(that.value.compareTo(this.value) >= 0, ctx);
}
catch (UnsupportedOperationException e) {
throw reportInvalidComparison(this.value, that.value);
}
}
@Override
public <V extends IValue> Result<IBool> lessThan(Result<V> that) {
return that.lessThanDateTime(this);
}
@Override
protected Result<IBool> lessThanDateTime(DateTimeResult that) {
try {
return bool(that.value.compareTo(this.value) < 0, ctx);
}
catch (UnsupportedOperationException e) {
throw reportInvalidComparison(this.value, that.value);
}
}
@Override
public <V extends IValue> LessThanOrEqualResult lessThanOrEqual(Result<V> that) {
return that.lessThanOrEqualDateTime(this);
}
@Override
protected LessThanOrEqualResult lessThanOrEqualDateTime(DateTimeResult that) {
try {
int result = that.value.compareTo(this.value);
return new LessThanOrEqualResult(result < 0, result == 0, ctx);
}
catch (UnsupportedOperationException e) {
throw reportInvalidComparison(this.value, that.value);
}
}
@Override
public <U extends IValue, V extends IValue> Result<U> subtract(Result<V> that) {
return that.subtractDateTime(this);
}
@Override
protected <U extends IValue> Result<U> subtractDateTime(DateTimeResult that) {
IDateTime dStart = this.getValue();
Temporal tStart = DateTimeConversions.dateTimeToJava(dStart);
IDateTime dEnd = that.getValue();
Temporal tEnd = DateTimeConversions.dateTimeToJava(dEnd);
if (dStart.isDate()) {
if (dEnd.isDate()) {
Period result = Period.between((LocalDate)tStart, (LocalDate)tEnd);
return makeResult(Duration,
VF.constructor(DateTimeResult.duration,
VF.integer(result.getYears()),
VF.integer(result.getMonths()),
VF.integer(result.getDays()),
VF.integer(0),
VF.integer(0),
VF.integer(0),
VF.integer(0)),
ctx);
} else if (dEnd.isTime()) {
throw RuntimeExceptionFactory.invalidUseOfTimeException("Cannot determine the duration between a date with no time and a time with no date.", ctx.getCurrentAST(), null);
} else {
throw RuntimeExceptionFactory.invalidUseOfDateTimeException("Cannot determine the duration between a date with no time and a datetime.", ctx.getCurrentAST(), null);
}
} else if (dStart.isTime()) {
if (dEnd.isTime()) {
Duration result = java.time.Duration.between(tStart, tEnd);
return makeResult(Duration,
VF.constructor(DateTimeResult.duration,
VF.integer(0),
VF.integer(0),
VF.integer(0),
VF.integer(result.toHours()),
VF.integer(result.toMinutes() % 60),
VF.integer(result.getSeconds() % 60),
VF.integer(result.toMillis() % 1000)
), ctx);
} else if (dEnd.isDate()) {
throw RuntimeExceptionFactory.invalidUseOfDateException("Cannot determine the duration between a time with no date and a date with no time.", ctx.getCurrentAST(), null);
} else {
throw RuntimeExceptionFactory.invalidUseOfDateTimeException("Cannot determine the duration between a time with no date and a datetime.", ctx.getCurrentAST(), null);
}
} else {
if (dEnd.isDateTime()) {
return makeResult(Duration,
VF.constructor(DateTimeResult.duration,
VF.integer(ChronoUnit.MONTHS.between(tStart, tEnd) % 12),
VF.integer(ChronoUnit.DAYS.between(tStart, tEnd) % 31), // TODO is this right?
VF.integer(ChronoUnit.HOURS.between(tStart, tEnd) % 24),
VF.integer(ChronoUnit.MINUTES.between(tStart, tEnd) % 60),
VF.integer(ChronoUnit.SECONDS.between(tStart, tEnd) % 60),
VF.integer(ChronoUnit.MILLIS.between(tStart, tEnd) % 1000)),
ctx);
} else if (dEnd.isDate()) {
throw RuntimeExceptionFactory.invalidUseOfDateException("Cannot determine the duration between a datetime and a date with no time.", ctx.getCurrentAST(), null);
} else {
throw RuntimeExceptionFactory.invalidUseOfTimeException("Cannot determine the duration between a datetime and a time with no date.", ctx.getCurrentAST(), null);
}
}
}
@Override
protected <U extends IValue> Result<U> addListRelation(ListRelationResult that) {
return that.addDateTime(this);
}
@Override
protected <U extends IValue> Result<U> addRelation(RelationResult that) {
return that.addDateTime(this);
}
}