-
Notifications
You must be signed in to change notification settings - Fork 230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ISO Support for Time Grains #1739
Closed
Closed
Changes from 4 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
1ecbbb4
iso support
89da649
format
7ee3969
timeformat interface
dfa4dd8
update ISO formatting
5529c7b
support ISO
3412eb1
testcases
d2c7d90
update testcase
348fea2
minute test
abeae82
formt
cc3ccc1
Merge branch 'master' into iso-date-format
AvaniMakwana ae3658f
review comment
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,14 +9,13 @@ | |
import com.yahoo.elide.core.utils.coerce.converters.Serde; | ||
|
||
import java.sql.Date; | ||
import java.sql.Timestamp; | ||
import java.text.ParseException; | ||
import java.text.SimpleDateFormat; | ||
|
||
/** | ||
* Time Grain class for Day. | ||
*/ | ||
public class Day extends Date { | ||
public class Day extends Date implements TimeGrainFormatter { | ||
|
||
public static final String FORMAT = "yyyy-MM-dd"; | ||
private static final SimpleDateFormat FORMATTER = new SimpleDateFormat(FORMAT); | ||
|
@@ -34,14 +33,13 @@ public Day deserialize(Object val) { | |
|
||
try { | ||
if (val instanceof String) { | ||
date = new Day(new Timestamp(FORMATTER.parse((String) val).getTime())); | ||
} else { | ||
date = new Day(FORMATTER.parse(FORMATTER.format(val))); | ||
date = new Day(TimeGrainFormatter.formatDateString(FORMATTER, (String) val)); | ||
} | ||
date = new Day(FORMATTER.parse(FORMATTER.format(val))); | ||
moizarafat marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Don't we still need the else case? Otherwise this line stomps on line 36. |
||
} catch (ParseException e) { | ||
throw new IllegalArgumentException("String must be formatted as " + FORMAT); | ||
throw new IllegalArgumentException("String must be formatted as " + FORMAT | ||
+ " or " + TimeGrainFormatter.ISO_FORMAT); | ||
} | ||
|
||
return date; | ||
} | ||
|
||
|
25 changes: 25 additions & 0 deletions
25
...n/src/main/java/com/yahoo/elide/datastores/aggregation/timegrains/TimeGrainFormatter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Copyright 2020, Yahoo Inc. | ||
* Licensed under the Apache License, Version 2.0 | ||
* See LICENSE file in project root for terms. | ||
*/ | ||
package com.yahoo.elide.datastores.aggregation.timegrains; | ||
|
||
import java.sql.Timestamp; | ||
import java.text.ParseException; | ||
import java.text.SimpleDateFormat; | ||
|
||
/** Interface for ISO timegrain Support. */ | ||
public interface TimeGrainFormatter { | ||
|
||
String ISO_FORMAT = "yyyy-MM-dd'T'HH:mm:ss'Z'"; | ||
SimpleDateFormat ISO_FORMATTER = new SimpleDateFormat(ISO_FORMAT); | ||
|
||
static Timestamp formatDateString(SimpleDateFormat formatter, String val) throws ParseException { | ||
try { | ||
return new Timestamp(formatter.parse((String) val).getTime()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You don't need to cast val here as a String. |
||
} catch (ParseException pe) { | ||
return new Timestamp(ISO_FORMATTER.parse((String) val).getTime()); | ||
} | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is a Day an instance of TimeGrainFormatter? Can we remove this association?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TimeGrainFormatter has common logic that will be used by all the Grains for ISO handling. So instead of creating a Util class with that supporting method, we went the implement/interface route.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe DaySerde can implement it instead of Day.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are calling a static method on the interface. Technically nothing needs to implement it. DaySerde would make more sense though if we do.