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

Add a simple cache for ComparableVersions #870

Merged
merged 1 commit into from Dec 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -56,7 +56,7 @@ public int compareTo(ArtifactVersion other) {
return -1;
}

return comparator.compareTo(new ComparableVersion(other.toString()));
return comparator.compareTo(ComparableVersion.of(other.toString()));
}

@Override
Expand Down
Expand Up @@ -26,8 +26,10 @@
import java.util.List;
import java.util.ListIterator;
import java.util.Locale;
import java.util.Map;
import java.util.Properties;
import java.util.Stack;
import java.util.concurrent.ConcurrentHashMap;

/**
* Generic implementation of version comparison.
Expand All @@ -37,6 +39,8 @@
* Note: The implementation of the maven core should be used.
*/
public class ComparableVersion implements Comparable<ComparableVersion> {
private static final Map<String, ComparableVersion> CACHE = new ConcurrentHashMap<>();

private String value;

private String canonical;
Expand Down Expand Up @@ -283,7 +287,17 @@ public String toString() {
}
}

public ComparableVersion(String version) {
/**
* Get a ComparableVersion representing the version in a string.
*/
public static ComparableVersion of(String version) {
return CACHE.computeIfAbsent(version, ComparableVersion::new);
}

/**
* Create a ComparableVersion from a string. Try to avoid using this and instead use the cache by calling {@link #of(String)}
*/
protected ComparableVersion(String version) {
parseVersion(version);
}

Expand Down
Expand Up @@ -39,7 +39,7 @@ public int compare(ArtifactVersion o1, ArtifactVersion o2) {
if (o1 instanceof BoundArtifactVersion) {
return o1.compareTo(o2);
}
return new ComparableVersion(o1.toString()).compareTo(new ComparableVersion(o2.toString()));
return ComparableVersion.of(o1.toString()).compareTo(ComparableVersion.of(o2.toString()));
}

/**
Expand Down
Expand Up @@ -40,7 +40,7 @@ public class MercuryVersionComparator extends AbstractVersionComparator {
* {@inheritDoc}
*/
public int compare(ArtifactVersion o1, ArtifactVersion o2) {
return new ComparableVersion(o1.toString()).compareTo(new ComparableVersion(o2.toString()));
return ComparableVersion.of(o1.toString()).compareTo(ComparableVersion.of(o2.toString()));
}

protected int innerGetSegmentCount(ArtifactVersion v) {
Expand Down