[BUGFIX] Solved issue with versions with RC

This commit is contained in:
JKetelaar
2016-05-24 15:53:45 +02:00
parent 0fb3848466
commit f7fab30939
@@ -1,47 +1,72 @@
package org.parabot.environment.api.utils;
import org.parabot.core.ui.utils.UILog;
public class Version implements Comparable<Version> {
private String version;
public final String get() {
return this.version;
}
private static boolean notified;
public Version(String version) {
if(version == null) {
if (version == null) {
throw new IllegalArgumentException("Version can not be null");
}
if(!version.matches("[0-9]+(\\.[0-9]+)*")) {
if (!version.matches("[0-9]+(\\.[0-9]+)*") && !version.contains("RC")) {
throw new IllegalArgumentException("Invalid version format");
}
this.version = version;
}
@Override public int compareTo(Version that) {
if(that == null) {
public final String get() {
return this.version;
}
@Override
public int compareTo(Version that) {
if (that == null) {
return 1;
}
if (version.contains("RC")) {
notifyRC();
return 1;
}
String[] thisParts = this.get().split("\\.");
String[] thatParts = that.get().split("\\.");
int length = Math.max(thisParts.length, thatParts.length);
for(int i = 0; i < length; i++) {
for (int i = 0; i < length; i++) {
int thisPart = i < thisParts.length ?
Integer.parseInt(thisParts[i]) : 0;
Integer.parseInt(thisParts[i]) : 0;
int thatPart = i < thatParts.length ?
Integer.parseInt(thatParts[i]) : 0;
if(thisPart < thatPart) {
Integer.parseInt(thatParts[i]) : 0;
if (thisPart < thatPart) {
return -1;
}
if(thisPart > thatPart) {
if (thisPart > thatPart) {
return 1;
}
}
return 0;
}
@Override public boolean equals(Object that) {
@Override
public boolean equals(Object that) {
return this == that || that != null && this.getClass() == that.getClass() && this.compareTo((Version) that) == 0;
}
private static void notifyRC() {
if (!notified) {
UILog.log(
"Version warning",
"This is an RC version of Parabot\n" +
"This could be an unstable version of Parabot, and might crash at anytime\n\n" +
"If you find an error within the client, please report any at:\n" +
"https://github.com/Parabot/Parabot/issues"
);
notified = true;
}
}
}