|
@@ -1,5 +1,6 @@
|
|
|
package org.cryptomator.common.mountpoint;
|
|
|
|
|
|
+import org.apache.commons.lang3.Validate;
|
|
|
import org.cryptomator.common.vaults.Volume;
|
|
|
|
|
|
import java.nio.file.Path;
|
|
@@ -147,11 +148,31 @@ public interface MountPointChooser extends Comparable<MountPointChooser> {
|
|
|
* <p>{@inheritDoc}
|
|
|
*
|
|
|
* @implNote This default implementation sorts the MPCs in ascending order
|
|
|
- * of their {@link #getPriority() priority.}
|
|
|
+ * of their {@link #getPriority() priority.} It depends on a correct implementation
|
|
|
+ * of {@link #hashCode()} and {@link #equals(Object)} for the compared objects.
|
|
|
+ * For this implementation "the least required correct implementation" maps
|
|
|
+ * the following relationship correctly:<br>
|
|
|
+ * If the objects {@code a} and {@code b} are {@code equal} as determined by
|
|
|
+ * {@code #equals(Object)} then the {@code hashCodes} as determined by {@code #hashCode()}
|
|
|
+ * of {@code a} and {@code b} must be equal. If the objects are {@code not equal}
|
|
|
+ * then the {@code hashCodes} must be different.<br>
|
|
|
+ * The default implementations of those two methods are sufficient.
|
|
|
+ * @see Object#hashCode()
|
|
|
+ * @see Object#equals(Object)
|
|
|
*/
|
|
|
@Override
|
|
|
default int compareTo(MountPointChooser other) {
|
|
|
-
|
|
|
- return Integer.compare(this.getPriority(), other.getPriority());
|
|
|
+ Validate.notNull(other, "Other must not be null!");
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ int compResult = Integer.compare(this.getPriority(), other.getPriority());
|
|
|
+ return compResult != 0 ? compResult : Integer.compare(this.hashCode(), other.hashCode());
|
|
|
}
|
|
|
}
|