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
|
/*
* Copyright 2000-2013 Vaadin Ltd.
*
* 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 com.vaadin.client;
import java.util.Date;
import com.google.gwt.i18n.client.DateTimeFormat;
import com.google.gwt.i18n.client.LocaleInfo;
import com.vaadin.shared.ui.datefield.Resolution;
/**
* This class provides date/time parsing services to all components on the
* client side.
*
* @author Vaadin Ltd.
*
*/
@SuppressWarnings("deprecation")
public class DateTimeService {
private String currentLocale;
private static int[] maxDaysInMonth = { 31, 28, 31, 30, 31, 30, 31, 31, 30,
31, 30, 31 };
/**
* Creates a new date time service with the application default locale.
*/
public DateTimeService() {
currentLocale = LocaleService.getDefaultLocale();
}
/**
* Creates a new date time service with a given locale.
*
* @param locale
* e.g. fi, en etc.
* @throws LocaleNotLoadedException
*/
public DateTimeService(String locale) throws LocaleNotLoadedException {
setLocale(locale);
}
public void setLocale(String locale) throws LocaleNotLoadedException {
if (LocaleService.getAvailableLocales().contains(locale)) {
currentLocale = locale;
} else {
throw new LocaleNotLoadedException(locale);
}
}
public String getLocale() {
return currentLocale;
}
public String getMonth(int month) {
try {
return LocaleService.getMonthNames(currentLocale)[month];
} catch (final LocaleNotLoadedException e) {
VConsole.error(e);
return null;
}
}
public String getShortMonth(int month) {
try {
return LocaleService.getShortMonthNames(currentLocale)[month];
} catch (final LocaleNotLoadedException e) {
VConsole.error(e);
return null;
}
}
public String getDay(int day) {
try {
return LocaleService.getDayNames(currentLocale)[day];
} catch (final LocaleNotLoadedException e) {
VConsole.error(e);
return null;
}
}
public String getShortDay(int day) {
try {
return LocaleService.getShortDayNames(currentLocale)[day];
} catch (final LocaleNotLoadedException e) {
VConsole.error(e);
return null;
}
}
public int getFirstDayOfWeek() {
try {
return LocaleService.getFirstDayOfWeek(currentLocale);
} catch (final LocaleNotLoadedException e) {
VConsole.error(e);
return 0;
}
}
public boolean isTwelveHourClock() {
try {
return LocaleService.isTwelveHourClock(currentLocale);
} catch (final LocaleNotLoadedException e) {
VConsole.error(e);
return false;
}
}
public String getClockDelimeter() {
try {
return LocaleService.getClockDelimiter(currentLocale);
} catch (final LocaleNotLoadedException e) {
VConsole.error(e);
return ":";
}
}
private static final String[] DEFAULT_AMPM_STRINGS = { "AM", "PM" };
public String[] getAmPmStrings() {
try {
return LocaleService.getAmPmStrings(currentLocale);
} catch (final LocaleNotLoadedException e) {
// TODO can this practically even happen? Should die instead?
VConsole.error("Locale not loaded, using fallback : AM/PM");
VConsole.error(e);
return DEFAULT_AMPM_STRINGS;
}
}
public int getStartWeekDay(Date date) {
final Date dateForFirstOfThisMonth = new Date(date.getYear(),
date.getMonth(), 1);
int firstDay;
try {
firstDay = LocaleService.getFirstDayOfWeek(currentLocale);
} catch (final LocaleNotLoadedException e) {
VConsole.error("Locale not loaded, using fallback 0");
VConsole.error(e);
firstDay = 0;
}
int start = dateForFirstOfThisMonth.getDay() - firstDay;
if (start < 0) {
start = 6;
}
return start;
}
public static void setMilliseconds(Date date, int ms) {
date.setTime(date.getTime() / 1000 * 1000 + ms);
}
public static int getMilliseconds(Date date) {
if (date == null) {
return 0;
}
return (int) (date.getTime() - date.getTime() / 1000 * 1000);
}
public static int getNumberOfDaysInMonth(Date date) {
final int month = date.getMonth();
if (month == 1 && true == isLeapYear(date)) {
return 29;
}
return maxDaysInMonth[month];
}
public static boolean isLeapYear(Date date) {
// Instantiate the date for 1st March of that year
final Date firstMarch = new Date(date.getYear(), 2, 1);
// Go back 1 day
final long firstMarchTime = firstMarch.getTime();
final long lastDayTimeFeb = firstMarchTime - (24 * 60 * 60 * 1000); // NUM_MILLISECS_A_DAY
// Instantiate new Date with this time
final Date febLastDay = new Date(lastDayTimeFeb);
// Check for date in this new instance
return (29 == febLastDay.getDate()) ? true : false;
}
public static boolean isSameDay(Date d1, Date d2) {
return (getDayInt(d1) == getDayInt(d2));
}
public static boolean isInRange(Date date, Date rangeStart, Date rangeEnd,
Resolution resolution) {
Date s;
Date e;
if (rangeStart.after(rangeEnd)) {
s = rangeEnd;
e = rangeStart;
} else {
e = rangeEnd;
s = rangeStart;
}
long start = s.getYear() * 10000000000l;
long end = e.getYear() * 10000000000l;
long target = date.getYear() * 10000000000l;
if (resolution == Resolution.YEAR) {
return (start <= target && end >= target);
}
start += s.getMonth() * 100000000l;
end += e.getMonth() * 100000000l;
target += date.getMonth() * 100000000l;
if (resolution == Resolution.MONTH) {
return (start <= target && end >= target);
}
start += s.getDate() * 1000000l;
end += e.getDate() * 1000000l;
target += date.getDate() * 1000000l;
if (resolution == Resolution.DAY) {
return (start <= target && end >= target);
}
start += s.getHours() * 10000l;
end += e.getHours() * 10000l;
target += date.getHours() * 10000l;
if (resolution == Resolution.HOUR) {
return (start <= target && end >= target);
}
start += s.getMinutes() * 100l;
end += e.getMinutes() * 100l;
target += date.getMinutes() * 100l;
if (resolution == Resolution.MINUTE) {
return (start <= target && end >= target);
}
start += s.getSeconds();
end += e.getSeconds();
target += date.getSeconds();
return (start <= target && end >= target);
}
private static int getDayInt(Date date) {
final int y = date.getYear();
final int m = date.getMonth();
final int d = date.getDate();
return ((y + 1900) * 10000 + m * 100 + d) * 1000000000;
}
/**
* Returns the ISO-8601 week number of the given date.
*
* @param date
* The date for which the week number should be resolved
* @return The ISO-8601 week number for {@literal date}
*/
public static int getISOWeekNumber(Date date) {
final long MILLISECONDS_PER_DAY = 24 * 3600 * 1000;
int dayOfWeek = date.getDay(); // 0 == sunday
// ISO 8601 use weeks that start on monday so we use
// mon=1,tue=2,...sun=7;
if (dayOfWeek == 0) {
dayOfWeek = 7;
}
// Find nearest thursday (defines the week in ISO 8601). The week number
// for the nearest thursday is the same as for the target date.
int nearestThursdayDiff = 4 - dayOfWeek; // 4 is thursday
Date nearestThursday = new Date(date.getTime() + nearestThursdayDiff
* MILLISECONDS_PER_DAY);
Date firstOfJanuary = new Date(nearestThursday.getYear(), 0, 1);
long timeDiff = nearestThursday.getTime() - firstOfJanuary.getTime();
int daysSinceFirstOfJanuary = (int) (timeDiff / MILLISECONDS_PER_DAY);
int weekNumber = (daysSinceFirstOfJanuary) / 7 + 1;
return weekNumber;
}
/**
* Check if format contains the month name. If it does we manually convert
* it to the month name since DateTimeFormat.format always uses the current
* locale and will replace the month name wrong if current locale is
* different from the locale set for the DateField.
*
* MMMM is converted into long month name, MMM is converted into short month
* name. '' are added around the name to avoid that DateTimeFormat parses
* the month name as a pattern.
*
* @param date
* The date to convert
* @param formatStr
* The format string that might contain MMM or MMMM
* @param dateTimeService
* Reference to the Vaadin DateTimeService
* @return
*/
public String formatDate(Date date, String formatStr) {
/*
* Format month and day names separately when locale for the
* DateTimeService is not the same as the browser locale
*/
formatStr = formatMonthNames(date, formatStr);
formatStr = formatDayNames(date, formatStr);
// Format uses the browser locale
DateTimeFormat format = DateTimeFormat.getFormat(formatStr);
String result = format.format(date);
return result;
}
private String formatDayNames(Date date, String formatStr) {
if (formatStr.contains("EEEE")) {
String dayName = getDay(date.getDay());
if (dayName != null) {
/*
* Replace 4 or more E:s with the quoted day name. Also
* concatenate generated string with any other string prepending
* or following the EEEE pattern, i.e. 'EEEE'ta ' becomes 'DAYta
* ' and not 'DAY''ta ', 'ab'EEEE becomes 'abDAY', 'x'EEEE'y'
* becomes 'xDAYy'.
*/
formatStr = formatStr.replaceAll("'([E]{4,})'", dayName);
formatStr = formatStr.replaceAll("([E]{4,})'", "'" + dayName);
formatStr = formatStr.replaceAll("'([E]{4,})", dayName + "'");
formatStr = formatStr
.replaceAll("[E]{4,}", "'" + dayName + "'");
}
}
if (formatStr.contains("EEE")) {
String dayName = getShortDay(date.getMonth());
if (dayName != null) {
/*
* Replace 3 or more E:s with the quoted month name. Also
* concatenate generated string with any other string prepending
* or following the EEE pattern, i.e. 'EEE'ta ' becomes 'DAYta '
* and not 'DAY''ta ', 'ab'EEE becomes 'abDAY', 'x'EEE'y'
* becomes 'xDAYy'.
*/
formatStr = formatStr.replaceAll("'([E]{3,})'", dayName);
formatStr = formatStr.replaceAll("([E]{3,})'", "'" + dayName);
formatStr = formatStr.replaceAll("'([E]{3,})", dayName + "'");
formatStr = formatStr
.replaceAll("[E]{3,}", "'" + dayName + "'");
}
}
return formatStr;
}
private String formatMonthNames(Date date, String formatStr) {
if (formatStr.contains("MMMM")) {
String monthName = getMonth(date.getMonth());
if (monthName != null) {
/*
* Replace 4 or more M:s with the quoted month name. Also
* concatenate generated string with any other string prepending
* or following the MMMM pattern, i.e. 'MMMM'ta ' becomes
* 'MONTHta ' and not 'MONTH''ta ', 'ab'MMMM becomes 'abMONTH',
* 'x'MMMM'y' becomes 'xMONTHy'.
*/
formatStr = formatStr.replaceAll("'([M]{4,})'", monthName);
formatStr = formatStr.replaceAll("([M]{4,})'", "'" + monthName);
formatStr = formatStr.replaceAll("'([M]{4,})", monthName + "'");
formatStr = formatStr.replaceAll("[M]{4,}", "'" + monthName
+ "'");
}
}
if (formatStr.contains("MMM")) {
String monthName = getShortMonth(date.getMonth());
if (monthName != null) {
/*
* Replace 3 or more M:s with the quoted month name. Also
* concatenate generated string with any other string prepending
* or following the MMM pattern, i.e. 'MMM'ta ' becomes 'MONTHta
* ' and not 'MONTH''ta ', 'ab'MMM becomes 'abMONTH', 'x'MMM'y'
* becomes 'xMONTHy'.
*/
formatStr = formatStr.replaceAll("'([M]{3,})'", monthName);
formatStr = formatStr.replaceAll("([M]{3,})'", "'" + monthName);
formatStr = formatStr.replaceAll("'([M]{3,})", monthName + "'");
formatStr = formatStr.replaceAll("[M]{3,}", "'" + monthName
+ "'");
}
}
return formatStr;
}
/**
* Replaces month names in the entered date with the name in the current
* browser locale.
*
* @param enteredDate
* Date string e.g. "5 May 2010"
* @param formatString
* Format string e.g. "d M yyyy"
* @return The date string where the month names have been replaced by the
* browser locale version
*/
private String parseMonthName(String enteredDate, String formatString) {
LocaleInfo browserLocale = LocaleInfo.getCurrentLocale();
if (browserLocale.getLocaleName().equals(getLocale())) {
// No conversion needs to be done when locales match
return enteredDate;
}
String[] browserMonthNames = browserLocale.getDateTimeConstants()
.months();
String[] browserShortMonthNames = browserLocale.getDateTimeConstants()
.shortMonths();
if (formatString.contains("MMMM")) {
// Full month name
for (int i = 0; i < 12; i++) {
enteredDate = enteredDate.replaceAll(getMonth(i),
browserMonthNames[i]);
}
}
if (formatString.contains("MMM")) {
// Short month name
for (int i = 0; i < 12; i++) {
enteredDate = enteredDate.replaceAll(getShortMonth(i),
browserShortMonthNames[i]);
}
}
return enteredDate;
}
/**
* Parses the given date string using the given format string and the locale
* set in this DateTimeService instance.
*
* @param dateString
* Date string e.g. "1 February 2010"
* @param formatString
* Format string e.g. "d MMMM yyyy"
* @param lenient
* true to use lenient parsing, false to use strict parsing
* @return A Date object representing the dateString. Never returns null.
* @throws IllegalArgumentException
* if the parsing fails
*
*/
public Date parseDate(String dateString, String formatString,
boolean lenient) throws IllegalArgumentException {
/* DateTimeFormat uses the browser's locale */
DateTimeFormat format = DateTimeFormat.getFormat(formatString);
/*
* Parse month names separately when locale for the DateTimeService is
* not the same as the browser locale
*/
dateString = parseMonthName(dateString, formatString);
Date date;
if (lenient) {
date = format.parse(dateString);
} else {
date = format.parseStrict(dateString);
}
// Some version of Firefox sets the timestamp to 0 if parsing fails.
if (date != null && date.getTime() == 0) {
throw new IllegalArgumentException("Parsing of '" + dateString
+ "' failed");
}
return date;
}
}
|