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

8277868: Use Comparable.compare() instead of surrogate code #6575

Closed
wants to merge 8 commits into from

Conversation

stsypanov
Copy link
Contributor

@stsypanov stsypanov commented Nov 26, 2021

Instead of something like

long x;
long y;
return (x < y) ? -1 : ((x == y) ? 0 : 1);

we can use return Long.compare(x, y);

All replacements are done with IDE.


Progress

  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue
  • Change must be properly reviewed

Issue

  • JDK-8277868: Use Comparable.compare() instead of surrogate code

Reviewers

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/6575/head:pull/6575
$ git checkout pull/6575

Update a local copy of the PR:
$ git checkout pull/6575
$ git pull https://git.openjdk.java.net/jdk pull/6575/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 6575

View PR using the GUI difftool:
$ git pr show -t 6575

Using diff file

Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/6575.diff

Sorry, something went wrong.

Verified

This commit was signed with the committer’s verified signature.
@bridgekeeper
Copy link

bridgekeeper bot commented Nov 26, 2021

👋 Welcome back stsypanov! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk openjdk bot added the rfr Pull request is ready for review label Nov 26, 2021
@openjdk
Copy link

openjdk bot commented Nov 26, 2021

@stsypanov The following labels will be automatically applied to this pull request:

  • client
  • core-libs
  • i18n
  • net

When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing lists. If you would like to change these labels, use the /label pull request command.

@openjdk openjdk bot added client client-libs-dev@openjdk.org core-libs core-libs-dev@openjdk.org net net-dev@openjdk.org i18n i18n-dev@openjdk.org labels Nov 26, 2021
@mlbridge
Copy link

mlbridge bot commented Nov 26, 2021

Webrevs

Copy link
Member

@dfuch dfuch left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes to java.net look good. Please obtain approval from reviewers in the other areas before integrating.

@@ -251,7 +246,7 @@ private void moveWithinTableRange(JTable table, int dx, int dy) {
}

private static int sign(int num) {
return (num < 0) ? -1 : ((num == 0) ? 0 : 1);
return Integer.compare(num, 0);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

=> Integer.signum(num)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

Copy link
Contributor

@RogerRiggs RogerRiggs left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The core-libs file changes look fine.
A 'client' reviewer should take a look too.

@openjdk
Copy link

openjdk bot commented Nov 30, 2021

⚠️ @stsypanov the full name on your profile does not match the author name in this pull requests' HEAD commit. If this pull request gets integrated then the author name from this pull requests' HEAD commit will be used for the resulting commit. If you wish to push a new commit with a different author name, then please run the following commands in a local repository of your personal fork:

$ git checkout 8277868
$ git commit -c user.name='Preferred Full Name' --allow-empty -m 'Update full name'
$ git push

@openjdk
Copy link

openjdk bot commented Nov 30, 2021

@stsypanov This change now passes all automated pre-integration checks.

ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details.

After integration, the commit message for the final commit will be:

8277868: Use Comparable.compare() instead of surrogate code

Reviewed-by: rriggs, aivanov

You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed.

At the time when this comment was updated there had been 295 new commits pushed to the master branch:

As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details.

As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@dfuch, @RogerRiggs, @aivanov-jdk) but any other Committer may sponsor as well.

➡️ To flag this PR as ready for integration with the above commit message, type /integrate in a new comment. (Afterwards, your sponsor types /sponsor in a new comment to perform the integration).

@openjdk openjdk bot added the ready Pull request is ready to be integrated label Nov 30, 2021
@@ -112,15 +112,15 @@ public Float(Point2D p1, Point2D p2) {
* @since 1.2
*/
public double getX1() {
return (double) x1;
return x1;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What do these changes have to do with the subject of the PR ?

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 a tiny clean-up in on of affected files. Do you want this to be reverted?

Copy link
Member

@aivanov-jdk aivanov-jdk Dec 7, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe it makes sense to preserve the cast: the fields are of type float and explicit cast hints there's a type conversion.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reverted


return result;
return Float.compare(mStart, otherStart);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't need the variable any more, do we ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

inlined

@@ -3417,7 +3417,7 @@ private void updateTime() {

private int compareTo(long t) {
long thisTime = getMillisOf(this);
return (thisTime > t) ? 1 : (thisTime == t) ? 0 : -1;
return Long.compare(thisTime, t);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably, in this case thisTime variable can also be dropped.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inlined

public int compareTo(Date anotherDate) {
long thisTime = getMillisOf(this);
long anotherTime = getMillisOf(anotherDate);
return (thisTime<anotherTime ? -1 : (thisTime==anotherTime ? 0 : 1));
return Long.compare(thisTime, anotherTime);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like local variables can also be dropped here as each value is used once.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inlined

(this.leastSigBits < val.leastSigBits ? -1 :
(this.leastSigBits > val.leastSigBits ? 1 :
0))));
Long.compare(this.leastSigBits, val.leastSigBits)));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this case Javadoc specifies only -1, 0 or 1 can be returned. Long.compare does not specify this but returns these values. Couldn't it cause any problems in the future if implementation of Long.compare is changed?

Does it make sense to use Long.compare for mostSigBits too?

int mostSigBits = Long.compare(this.mostSigBits, val.mostSigBits);
return mostSigBits != 0 ? mostSigBits : Long.compare(this.leastSigBits, val.leastSigBits);

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This behavior is specified in Comparator itself, so is hardly to be ever changed, I think

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This behavior is specified in Comparator itself, so is hardly to be ever changed, I think

Not quite. Comparator.compare returns: “a negative integer, zero, or a positive integer as the first argument is less than, equal to, or greater than the second.” Comparable.compareTo does the same. Yet Javadoc for UUID specifically requires -1, 0 or 1, which is stricter. However, the implementation of Long.compare complies with this requirement even though it's not specified.

Probably, it makes sense to update the Javadoc for UUID and relax the requirement to “a negative integer, zero, or a positive integer.”

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess I didn't make myself clear. It wasn't a showstopper but it's still an issue.

This kind of change to Javadoc requires a CSR therefore it's better to separate it from this changeset which touches other files.

I see two options: 1) leave this unchanged and update implementation together with Javadoc; or 2) integrate the update to the implementation which you already have and update the Javadoc in a follow-up bug.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The suggestion to compare mostSigBits using Long.compare if it looks reasonable still applies.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, let me revert JavaDoc and apply the suggestion

@@ -112,15 +112,15 @@ public Float(Point2D p1, Point2D p2) {
* @since 1.2
*/
public double getX1() {
return (double) x1;
return x1;
Copy link
Member

@aivanov-jdk aivanov-jdk Dec 7, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe it makes sense to preserve the cast: the fields are of type float and explicit cast hints there's a type conversion.

@stsypanov
Copy link
Contributor Author

/integrate

@openjdk openjdk bot added the sponsor Pull request is ready to be sponsored label Dec 16, 2021
@openjdk
Copy link

openjdk bot commented Dec 16, 2021

@stsypanov
Your change (at version d15e03a) is now ready to be sponsored by a Committer.

@RogerRiggs
Copy link
Contributor

/sponsor

@openjdk
Copy link

openjdk bot commented Dec 16, 2021

Going to push as commit 20db780.
Since your change was applied there have been 299 commits pushed to the master branch:

Your commit was automatically rebased without conflicts.

@openjdk openjdk bot added the integrated Pull request has been integrated label Dec 16, 2021
@openjdk openjdk bot closed this Dec 16, 2021
@openjdk openjdk bot removed ready Pull request is ready to be integrated rfr Pull request is ready for review sponsor Pull request is ready to be sponsored labels Dec 16, 2021
@openjdk
Copy link

openjdk bot commented Dec 16, 2021

@RogerRiggs @stsypanov Pushed as commit 20db780.

💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored.

@stsypanov stsypanov deleted the 8277868 branch December 17, 2021 09:00
@RogerRiggs
Copy link
Contributor

As it turns out replacing the code was not 100% equivalent and a test failure resulted.
See https://bugs.openjdk.java.net/browse/JDK-8278937

Double.compare and the original code handle the non-numeric forms of Double differently.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
client client-libs-dev@openjdk.org core-libs core-libs-dev@openjdk.org i18n i18n-dev@openjdk.org integrated Pull request has been integrated net net-dev@openjdk.org
Development

Successfully merging this pull request may close these issues.

None yet

6 participants