-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Code cleanup for io.micronaut.http.uri #10857
Code cleanup for io.micronaut.http.uri #10857
Conversation
@@ -44,7 +43,7 @@ class DefaultUriBuilder implements UriBuilder { | |||
private static final String STRING_PATTERN_SCHEME = "([^:/?#]+):"; | |||
private static final String STRING_PATTERN_USER_INFO = "([^@\\[/?#]*)"; | |||
private static final String STRING_PATTERN_HOST_IPV4 = "[^\\[{/?#:]*"; | |||
private static final String STRING_PATTERN_HOST_IPV6 = "\\[[\\p{XDigit}\\:\\.]*[%\\p{Alnum}]*\\]"; | |||
private static final String STRING_PATTERN_HOST_IPV6 = "\\[[\\p{XDigit}:.]*[%\\p{Alnum}]*]"; |
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.
can you explain the changes to these patterns?
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.
Just redundant characters escape. This is just a simplification of the expression, removed unnecessary escapes
d7c9556
to
9ab6c80
Compare
Also added minor optimization for decoding parameters from URI: |
@@ -123,7 +123,7 @@ final class QueryStringDecoder { | |||
QueryStringDecoder(String uri, Charset charset, boolean hasPath, int maxParams) { | |||
this.uri = Objects.requireNonNull(uri, "uri"); | |||
this.charset = Objects.requireNonNull(charset, "charset"); | |||
this.maxParams = Objects.requireNonNull(maxParams, "maxParams"); | |||
this.maxParams = maxParams; |
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.
don't need to check primitive type to non null value
String scheme = this.scheme; | ||
String host = this.host; | ||
if (StringUtils.isNotEmpty(scheme)) { | ||
if (isTemplate(scheme, values)) { | ||
scheme = UriTemplate.of(scheme).expand(values); | ||
} | ||
builder.append(scheme) | ||
.append(":"); | ||
.append(':'); |
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.
Use chars better than Strings
@@ -148,7 +147,7 @@ class DefaultUriBuilder implements UriBuilder { | |||
|
|||
this.path = new StringBuilder(path); | |||
if (query != null) { | |||
final Map parameters = new QueryStringDecoder(uri.toString()).parameters(); | |||
final Map parameters = QueryStringDecoder.decodeParams(uri.toString()); |
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.
Added new method to decode params without creating QueryStringDecoder instance
@@ -120,7 +119,7 @@ class DefaultUriBuilder implements UriBuilder { | |||
this.host = host; | |||
} | |||
if (port != null) { | |||
this.port = Integer.valueOf(port); | |||
this.port = Integer.parseInt(port); |
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.
don't need to boxing/ unboxing
private static final String STRING_PATTERN_PATH = "([^#?]*)"; | ||
private static final String STRING_PATTERN_QUERY = "([^#]*)"; | ||
private static final String STRING_PATTERN_REMAINING = "(.*)"; | ||
|
||
// Regex patterns that matches URIs. See RFC 3986, appendix B | ||
private static final Pattern PATTERN_SCHEME = Pattern.compile("^" + STRING_PATTERN_SCHEME + "//.*"); | ||
private static final Pattern PATTERN_FULL_PATH = Pattern.compile("^([^#\\?]*)(\\?([^#]*))?(\\#(.*))?$"); | ||
private static final Pattern PATTERN_FULL_PATH = Pattern.compile("^([^#?]*)(\\?([^#]*))?(#(.*))?$"); |
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.
Just remove redundant escpape characters
Added some clarification to my changes |
@graemerocher ping |
Thanks for the contribution! |
No description provided.