-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Extensible and fast date parsing #20952
Merged
Merged
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
49143c5
Refactor date parsing to be fast and extensible
omus eac850f
Deprecate parse(::AbstractString, ::DateFormat)
omus c5bd3c3
fixup
omus ad19d23
Switch to datatype_name
omus d833ec4
Move towards consistent terminology
omus f85877e
Rename parse(::Vector, ...) to parse_components
omus 529affe
Internal parse funcs now take and return position
omus c16d629
Documentation for internal functions
omus 2b787f2
Corrections to documentation
omus b0f6c75
Corrections from review
omus 17d8ecc
More details about raise
omus 510dd02
Remove outdated comment
omus 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 |
---|---|---|
|
@@ -17,15 +17,16 @@ end | |
genvar(t::DataType) = Symbol(lowercase(string(Base.datatype_name(t)))) | ||
|
||
""" | ||
tryparsenext_core(str::AbstractString, pos::Int, len::Int, df::DateFormat) | ||
tryparsenext_core(str::AbstractString, pos::Int, len::Int, df::DateFormat, raise=false) | ||
|
||
Parses the string according to the directives within the DateFormat. Parsing will start at | ||
character index `pos` and will stop when all directives are used or we have parsed up to the | ||
end of the string (`len`). | ||
character index `pos` and will stop when all directives are used or we have parsed up to, | ||
the end of the string, `len`. If the provided string cannot be parsed an exception will be | ||
thrown only if `raise` is true. | ||
|
||
Returns a 3-element tuple `(values, pos, num_parsed)`: | ||
* `values::Nullable{Tuple}`: A tuple which contains a values for each `DatePart` within the | ||
`DateFormat` in the order in which the occur. If the string ends before we finish parsing | ||
* `values::Nullable{Tuple}`: A tuple which contains a value for each `DatePart` within the | ||
`DateFormat` in the order in which they occur. If the string ends before we finish parsing | ||
all the directives the missing values will be filled in with default values. | ||
* `pos::Int`: The character index at which parsing stopped. | ||
* `num_parsed::Int`: The number of values which were parsed and stored within `values`. | ||
|
@@ -110,14 +111,14 @@ Returns a 3-element tuple `(values, pos, num_parsed)`: | |
end | ||
|
||
""" | ||
tryparsenext_internal(::Type{<:TimeType}, str::AbstractString, pos::Int, len::Int, df::DateFormat) | ||
tryparsenext_internal(::Type{<:TimeType}, str, pos, len, df::DateFormat, raise=false) | ||
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. should raise also be described here? |
||
|
||
Parses the string according to the directives within the DateFormat. The specified TimeType | ||
type determines the type of and order of tokens returned. If the given DateFormat or string | ||
does not provide a required token a default value will be used. | ||
|
||
Returns a 2-element tuple `(values, pos)`: | ||
* `values::Nullable{Tuple}`: A tuple which contains a values for each token as specified by | ||
* `values::Nullable{Tuple}`: A tuple which contains a value for each token as specified by | ||
the passed in type. | ||
* `pos::Int`: The character index at which parsing stopped. | ||
""" | ||
|
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.
there shouldn't be a comma at the end of the line here