Skip to content
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

Merged
merged 1 commit into from
Jul 19, 2024

Conversation

altro3
Copy link
Contributor

@altro3 altro3 commented May 24, 2024

No description provided.

@sdelamo sdelamo added the type: improvement A minor improvement to an existing feature label May 24, 2024
@altro3 altro3 force-pushed the code-cleanup-url branch from 985165c to 6ab869a Compare May 24, 2024 11:59
@@ -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}]*]";
Copy link
Contributor

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?

Copy link
Contributor Author

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

@altro3 altro3 force-pushed the code-cleanup-url branch 2 times, most recently from d7c9556 to 9ab6c80 Compare May 31, 2024 12:30
@altro3
Copy link
Contributor Author

altro3 commented May 31, 2024

Also added minor optimization for decoding parameters from URI: QueryStringDecoder.decodeParams - without creating QueryStringDecoder instance

@@ -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;
Copy link
Contributor Author

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(':');
Copy link
Contributor Author

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());
Copy link
Contributor Author

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);
Copy link
Contributor Author

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("^([^#?]*)(\\?([^#]*))?(#(.*))?$");
Copy link
Contributor Author

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

@altro3
Copy link
Contributor Author

altro3 commented May 31, 2024

Added some clarification to my changes

@altro3 altro3 requested a review from graemerocher June 9, 2024 06:33
@altro3 altro3 force-pushed the code-cleanup-url branch from 9ab6c80 to fcb6d35 Compare July 1, 2024 08:58
@altro3 altro3 changed the base branch from 4.5.x to 4.6.x July 1, 2024 08:59
@altro3 altro3 force-pushed the code-cleanup-url branch from fcb6d35 to e498e7e Compare July 1, 2024 09:01
@graemerocher graemerocher requested a review from dstepanov July 1, 2024 09:32
@altro3
Copy link
Contributor Author

altro3 commented Jul 19, 2024

@graemerocher ping

@graemerocher graemerocher merged commit 7da94fc into micronaut-projects:4.6.x Jul 19, 2024
12 checks passed
@graemerocher
Copy link
Contributor

Thanks for the contribution!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: improvement A minor improvement to an existing feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants