Skip to content

Commit

Permalink
8305072: Win32ShellFolder2.compareTo is inconsistent
Browse files Browse the repository at this point in the history
Reviewed-by: prr, serb
  • Loading branch information
aivanov-jdk committed Apr 9, 2024
1 parent 635cb3c commit 2fcb816
Show file tree
Hide file tree
Showing 2 changed files with 160 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2003, 2023, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2003, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -522,7 +522,7 @@ static int compareShellFolders(Win32ShellFolder2 sf1, Win32ShellFolder2 sf2) {
boolean special1 = sf1.isSpecial();
boolean special2 = sf2.isSpecial();

if (special1 || special2) {
if (special1 && special2) {
if (topFolderList == null) {
ArrayList<Win32ShellFolder2> tmpTopFolderList = new ArrayList<>();
tmpTopFolderList.add(Win32ShellFolderManager2.getPersonal());
Expand Down
158 changes: 158 additions & 0 deletions test/jdk/javax/swing/JFileChooser/FileSystemView/Win32FolderSort.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,158 @@
/*
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/

import java.io.File;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

/*
* @test
* @bug 8305072
* @requires (os.family == "windows")
* @modules java.desktop/sun.awt.shell
* @summary Verifies consistency of Win32ShellFolder2.compareTo
* @run main/othervm --add-opens java.desktop/sun.awt.shell=ALL-UNNAMED Win32FolderSort
*/
public class Win32FolderSort {
public static void main(String[] args) throws Exception {
Class<?> folderManager = Class.forName("sun.awt.shell.Win32ShellFolderManager2");
Class<?> folder = Class.forName("sun.awt.shell.Win32ShellFolder2");

Method getDesktop = folderManager.getDeclaredMethod("getDesktop");
getDesktop.setAccessible(true);
Method getPersonal = folderManager.getDeclaredMethod("getPersonal");
getPersonal.setAccessible(true);

Method createShellFolder = folderManager.getDeclaredMethod("createShellFolder", folder, File.class);
createShellFolder.setAccessible(true);

Method isFileSystem = folder.getMethod("isFileSystem");
isFileSystem.setAccessible(true);
Method isSpecial = folder.getMethod("isSpecial");
isSpecial.setAccessible(true);
Method getChildByPath = folder.getDeclaredMethod("getChildByPath", String.class);
getChildByPath.setAccessible(true);

File desktop = (File) getDesktop.invoke(null);
File personal = (File) getPersonal.invoke(null);
if (!((Boolean) isSpecial.invoke(personal))) {
throw new RuntimeException("personal is not special");
}
File fakePersonal = (File) getChildByPath.invoke(desktop, personal.getPath());
if (fakePersonal == null) {
fakePersonal = (File) createShellFolder.invoke(null, desktop,
new File(personal.getPath()));
}
if ((Boolean) isSpecial.invoke(fakePersonal)) {
throw new RuntimeException("fakePersonal is special");
}
File homeDir = (File) createShellFolder.invoke(null, desktop,
new File(System.getProperty("user.home")));

File[] files = {fakePersonal, personal, homeDir};
for (File f : files) {
if (!((Boolean) isFileSystem.invoke(f))) {
throw new RuntimeException(f + " is not on file system");
}
}

List<String> errors = new ArrayList<>(2);
for (File f1 : files) {
for (File f2 : files) {
for (File f3 : files) {
String result = verifyCompareTo(f1, f2, f3);
if (result != null) {
String error = result + "\nwhere"
+ "\n a = " + formatFile(f1, isSpecial)
+ "\n b = " + formatFile(f2, isSpecial)
+ "\n c = " + formatFile(f3, isSpecial);
errors.add(error);
}
}
}
}


System.out.println("Unsorted:");
for (File f : files) {
System.out.println(formatFile(f, isSpecial));
}
System.out.println();

Arrays.sort(files);
System.out.println("Sorted:");
for (File f : files) {
System.out.println(formatFile(f, isSpecial));
}


if (!errors.isEmpty()) {
System.err.println("Implementation of Win32ShellFolder2.compareTo is inconsistent:");
errors.forEach(System.err::println);
throw new RuntimeException("Inconsistencies found: " + errors.size()
+ " - " + errors.get(0));
}
}

/**
* Verifies consistency of {@code Comparable} implementation.
*
* @param a the first object
* @param b the second object
* @param c the third object
* @return error message if inconsistency is found,
* or {@code null } otherwise
*/
private static String verifyCompareTo(File a, File b, File c) {
// a < b & b < c => a < c
if (a.compareTo(b) < 0 && b.compareTo(c) < 0) {
if (a.compareTo(c) >= 0) {
return "a < b & b < c but a >= c";
}
}

// a > b & b > c => a > c
if (a.compareTo(b) > 0 && b.compareTo(c) > 0) {
if (a.compareTo(c) <= 0) {
return "a > b & b > c but a <= c";
}
}

// a = b & b = c => a = c
if (a.compareTo(b) == 0 && b.compareTo(c) == 0) {
if (a.compareTo(c) != 0) {
return "a = b & b = c but a != c";
}
}

return null;
}

private static String formatFile(File f, Method isSpecial)
throws InvocationTargetException, IllegalAccessException {
return f + "(" + isSpecial.invoke(f) + ")";
}
}

11 comments on commit 2fcb816

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

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

@aivanov-jdk
Copy link
Member Author

Choose a reason for hiding this comment

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

/backport jdk22u

@openjdk
Copy link

@openjdk openjdk bot commented on 2fcb816 Apr 17, 2024

Choose a reason for hiding this comment

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

@aivanov-jdk the backport was successfully created on the branch backport-aivanov-jdk-2fcb8168 in my personal fork of openjdk/jdk22u. To create a pull request with this backport targeting openjdk/jdk22u:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 2fcb8168 from the openjdk/jdk repository.

The commit being backported was authored by Alexey Ivanov on 9 Apr 2024 and was reviewed by Phil Race and Sergey Bylokhov.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk22u:

$ git fetch https://github.com/openjdk-bots/jdk22u.git backport-aivanov-jdk-2fcb8168:backport-aivanov-jdk-2fcb8168
$ git checkout backport-aivanov-jdk-2fcb8168
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk22u.git backport-aivanov-jdk-2fcb8168

@TheRealMDoerr
Copy link
Contributor

Choose a reason for hiding this comment

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

/backport jdk21u-dev

@openjdk
Copy link

@openjdk openjdk bot commented on 2fcb816 May 31, 2024

Choose a reason for hiding this comment

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

@TheRealMDoerr the backport was successfully created on the branch backport-TheRealMDoerr-2fcb8168 in my personal fork of openjdk/jdk21u-dev. To create a pull request with this backport targeting openjdk/jdk21u-dev:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 2fcb8168 from the openjdk/jdk repository.

The commit being backported was authored by Alexey Ivanov on 9 Apr 2024 and was reviewed by Phil Race and Sergey Bylokhov.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk21u-dev:

$ git fetch https://github.com/openjdk-bots/jdk21u-dev.git backport-TheRealMDoerr-2fcb8168:backport-TheRealMDoerr-2fcb8168
$ git checkout backport-TheRealMDoerr-2fcb8168
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk21u-dev.git backport-TheRealMDoerr-2fcb8168

@TheRealMDoerr
Copy link
Contributor

Choose a reason for hiding this comment

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

/backport jdk17u-dev

@openjdk
Copy link

@openjdk openjdk bot commented on 2fcb816 Jun 6, 2024

Choose a reason for hiding this comment

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

@TheRealMDoerr the backport was successfully created on the branch backport-TheRealMDoerr-2fcb8168-master in my personal fork of openjdk/jdk17u-dev. To create a pull request with this backport targeting openjdk/jdk17u-dev:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 2fcb8168 from the openjdk/jdk repository.

The commit being backported was authored by Alexey Ivanov on 9 Apr 2024 and was reviewed by Phil Race and Sergey Bylokhov.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk17u-dev:

$ git fetch https://github.com/openjdk-bots/jdk17u-dev.git backport-TheRealMDoerr-2fcb8168-master:backport-TheRealMDoerr-2fcb8168-master
$ git checkout backport-TheRealMDoerr-2fcb8168-master
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk17u-dev.git backport-TheRealMDoerr-2fcb8168-master

@TheRealMDoerr
Copy link
Contributor

Choose a reason for hiding this comment

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

/backport jdk11u-dev

@openjdk
Copy link

@openjdk openjdk bot commented on 2fcb816 Jun 11, 2024

Choose a reason for hiding this comment

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

@TheRealMDoerr the backport was successfully created on the branch backport-TheRealMDoerr-2fcb8168-master in my personal fork of openjdk/jdk11u-dev. To create a pull request with this backport targeting openjdk/jdk11u-dev:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 2fcb8168 from the openjdk/jdk repository.

The commit being backported was authored by Alexey Ivanov on 9 Apr 2024 and was reviewed by Phil Race and Sergey Bylokhov.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk11u-dev:

$ git fetch https://github.com/openjdk-bots/jdk11u-dev.git backport-TheRealMDoerr-2fcb8168-master:backport-TheRealMDoerr-2fcb8168-master
$ git checkout backport-TheRealMDoerr-2fcb8168-master
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk11u-dev.git backport-TheRealMDoerr-2fcb8168-master

⚠️ @TheRealMDoerr You are not yet a collaborator in my fork openjdk-bots/jdk11u-dev. An invite will be sent out and you need to accept it before you can proceed.

@mrserb
Copy link
Member

@mrserb mrserb commented on 2fcb816 Jun 18, 2024

Choose a reason for hiding this comment

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

/backport jdk8u-dev

@openjdk
Copy link

@openjdk openjdk bot commented on 2fcb816 Jun 18, 2024

Choose a reason for hiding this comment

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

@mrserb Could not automatically backport 2fcb8168 to openjdk/jdk8u-dev due to conflicts in the following files:

  • jdk/src/windows/classes/sun/awt/shell/Win32ShellFolderManager2.java
  • jdk/test/javax/swing/JFileChooser/FileSystemView/Win32FolderSort.java

Please fetch the appropriate branch/commit and manually resolve these conflicts by using the following commands in your personal fork of openjdk/jdk8u-dev. Note: these commands are just some suggestions and you can use other equivalent commands you know.

# Fetch the up-to-date version of the target branch
$ git fetch --no-tags https://git.openjdk.org/jdk8u-dev.git master:master

# Check out the target branch and create your own branch to backport
$ git checkout master
$ git checkout -b backport-mrserb-2fcb8168-master

# Fetch the commit you want to backport
$ git fetch --no-tags https://git.openjdk.org/jdk.git 2fcb816858406f33cefef3164b2c85f9f996c7da

# Backport the commit
$ git cherry-pick --no-commit 2fcb816858406f33cefef3164b2c85f9f996c7da
# Resolve conflicts now

# Commit the files you have modified
$ git add files/with/resolved/conflicts
$ git commit -m 'Backport 2fcb816858406f33cefef3164b2c85f9f996c7da'

Once you have resolved the conflicts as explained above continue with creating a pull request towards the openjdk/jdk8u-dev with the title Backport 2fcb816858406f33cefef3164b2c85f9f996c7da.

Below you can find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 2fcb8168 from the openjdk/jdk repository.

The commit being backported was authored by Alexey Ivanov on 9 Apr 2024 and was reviewed by Phil Race and Sergey Bylokhov.

Thanks!

Please sign in to comment.