Commit 23c84bf0 authored by Christian Schudt's avatar Christian Schudt

Various improvements in Version class

- Make it final and immutable.
- Use pattern-based parsing, which allows to also parse the ReleaseStatus and the statusVersion.
- Implement toString() method.
- Implement equals() and hashCode(), which is a strong recommendation when implementing Comparable: From the JavaDoc: "It is strongly recommended that (x.compareTo(y)==0) == (x.equals(y))", which was not the case.
- Allow CharSequence
- Simplify getVersionString() method (less duplicate code).
- Improve compareTo() method by properly comparing more than 2 digits and also comparing ReleaseStatus and statusVersion
parent 1c992ebd
......@@ -19,39 +19,43 @@
package org.jivesoftware.util;
import java.util.StringTokenizer;
import java.util.Objects;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Holds version information for Openfire.
*
* @author Iain Shigeoka
*/
public class Version implements Comparable<Version> {
public final class Version implements Comparable<Version> {
private static final Pattern PATTERN = Pattern.compile("(\\d+)\\.(\\d+)\\.(\\d+)(?:\\s+(\\w+))?(?:\\s+(\\d+))?");
/**
* The major number (ie 1.x.x).
*/
private int major;
private final int major;
/**
* The minor version number (ie x.1.x).
*/
private int minor;
private final int minor;
/**
* The micro version number (ie x.x.1).
*/
private int micro;
private final int micro;
/**
* A status release number or -1 to indicate none.
*/
private int statusVersion;
private final int statusVersion;
/**
* The release state of the product (Release, Release Candidate).
*/
private ReleaseStatus status;
private final ReleaseStatus status;
/**
* Cached version string information
......@@ -70,7 +74,7 @@ public class Version implements Comparable<Version> {
this.major = major;
this.minor = minor;
this.micro = micro;
this.status = status;
this.status = status == null ? ReleaseStatus.Release : status;
this.statusVersion = statusVersion;
}
......@@ -79,22 +83,46 @@ public class Version implements Comparable<Version> {
*
* @param source the version string
*/
public Version(String source) {
// initialize the defaults
major = minor = micro = 0;
status = ReleaseStatus.Release;
statusVersion = -1;
public Version(CharSequence source) {
if (source != null) {
StringTokenizer parser = new StringTokenizer(source, ".");
try {
major = parser.hasMoreTokens() ? Integer.parseInt(parser.nextToken()) : 0;
minor = parser.hasMoreTokens() ? Integer.parseInt(parser.nextToken()) : 0;
micro = parser.hasMoreTokens() ? Integer.parseInt(parser.nextToken()) : 0;
Matcher matcher = PATTERN.matcher(source);
if (matcher.matches()) {
major = Integer.parseInt(matcher.group(1));
minor = Integer.parseInt(matcher.group(2));
micro = Integer.parseInt(matcher.group(3));
String status = matcher.group(4);
if (status != null) {
switch (status.toLowerCase()) {
case "rc":
this.status = ReleaseStatus.Release_Candidate;
break;
case "beta":
this.status = ReleaseStatus.Beta;
break;
case "alpha":
this.status = ReleaseStatus.Alpha;
break;
default:
this.status = ReleaseStatus.Release;
}
catch (NumberFormatException nfe) {
// ignore bad version
} else {
this.status = ReleaseStatus.Release;
}
String statusVersion = matcher.group(5);
if (statusVersion != null) {
this.statusVersion = Integer.parseInt(statusVersion);
} else {
this.statusVersion = -1;
}
} else {
this.major = this.minor = this.micro = 0;
this.statusVersion = -1;
this.status = ReleaseStatus.Release;
}
} else {
this.major = this.minor = this.micro = 0;
this.statusVersion = -1;
this.status = ReleaseStatus.Release;
}
}
......@@ -106,24 +134,15 @@ public class Version implements Comparable<Version> {
*/
public String getVersionString() {
if (versionString == null) {
if (status != null) {
if (status == ReleaseStatus.Release) {
versionString = major + "." + minor + "." + micro;
}
else {
StringBuilder sb = new StringBuilder();
sb.append(major).append('.').append(minor).append('.').append(micro);
if (status != ReleaseStatus.Release) {
sb.append(' ').append(status);
if (statusVersion >= 0) {
versionString = major + "." + minor + "." + micro + " " + status.toString() +
" " + statusVersion;
}
else {
versionString = major + "." + minor + "." + micro + " " + status.toString();
sb.append(' ').append(statusVersion);
}
}
}
else {
versionString = major + "." + minor + "." + micro;
}
versionString = sb.toString();
}
return versionString;
}
......@@ -184,7 +203,7 @@ public class Version implements Comparable<Version> {
private String status;
private ReleaseStatus(String status) {
ReleaseStatus(String status) {
this.status = status;
}
......@@ -208,10 +227,46 @@ public class Version implements Comparable<Version> {
if (that == null) {
return 1;
}
int result = Integer.compare(getMajor(), that.getMajor());
if (result == 0) {
result = Integer.compare(getMinor(), that.getMinor());
if (result == 0) {
result = Integer.compare(getMicro(), that.getMicro());
if (result == 0) {
result = that.getStatus().compareTo(getStatus());
if (result == 0) {
result = Integer.compare(getStatusVersion(), that.getStatusVersion());
}
}
}
}
return result;
}
long thisVersion = (this.getMicro()*10) + (this.getMinor()*1000) + (this.getMajor()*100000);
long thatVersion = (that.getMicro()*10) + (that.getMinor()*1000) + (that.getMajor()*100000);
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (!(o instanceof Version)) {
return false;
}
Version other = (Version) o;
return thisVersion == thatVersion ? 0 : thisVersion > thatVersion ? 1 : -1;
return Objects.equals(major, other.major)
&& Objects.equals(minor, other.minor)
&& Objects.equals(micro, other.micro)
&& Objects.equals(statusVersion, other.statusVersion)
&& Objects.equals(status, other.status);
}
@Override
public int hashCode() {
return Objects.hash(major, minor, micro, statusVersion, status);
}
@Override
public String toString() {
return getVersionString();
}
}
......@@ -25,16 +25,16 @@ public class VersionTest {
@Test
public void testVersionWithRegularStringConstructor() {
Version test = new Version("1.2.3");
Version test = new Version("1.2.3 Beta 3");
assertEquals(1, test.getMajor());
assertEquals(2, test.getMinor());
assertEquals(3, test.getMicro());
assertEquals(ReleaseStatus.Release, test.getStatus());
assertEquals(-1, test.getStatusVersion());
assertEquals(ReleaseStatus.Beta, test.getStatus());
assertEquals(3, test.getStatusVersion());
assertEquals("1.2.3", test.getVersionString());
assertEquals("1.2.3 Beta 3", test.getVersionString());
}
@Test
......@@ -60,8 +60,11 @@ public class VersionTest {
Version test333 = new Version("3.3.3");
Version test300 = new Version("3.0.0");
Version test3100 = new Version("3.10.0");
Version test29999 = new Version("2.99.99");
Version test29999 = new Version("2.999.999");
Version test3100Alpha = new Version("3.10.0 Alpha");
Version test3100Beta = new Version("3.10.0 Beta");
Version test3100Beta1 = new Version("3.10.0 Beta 1");
Version test3100Beta2 = new Version("3.10.0 Beta 2");
assertEquals(-1, test123.compareTo(test321));
assertEquals(0, test123.compareTo(test123));
assertEquals(1, test321.compareTo(test123));
......@@ -72,7 +75,15 @@ public class VersionTest {
assertTrue(test3100.isNewerThan(test333));
assertTrue(test3100.isNewerThan(test29999));
assertTrue(test300.isNewerThan(test29999));
assertTrue(test3100Beta.isNewerThan(test3100Alpha));
assertTrue(test3100Beta2.isNewerThan(test3100Beta1));
}
@Test
public void testVersionEquals() {
Version version1 = new Version(3, 11, 0, Version.ReleaseStatus.Alpha, -1);
Version version2 = new Version(3, 11, 0, Version.ReleaseStatus.Alpha, -1);
assertEquals(version1, version2);
assertTrue((version1.compareTo(version2) == 0) == version1.equals(version2));
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment