![JAR search and dependency download from the Maven repository](/logo.png)
org.integratedmodelling.Version Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (C) 2007, 2015:
*
* - Ferdinando Villa
* - integratedmodelling.org
* - any other authors listed in @author annotations
*
* All rights reserved. This file is part of the k.LAB software suite,
* meant to enable modular, collaborative, integrated
* development of interoperable data and model components. For
* details, see http://integratedmodelling.org.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the Affero General Public License
* Version 3 or any later version.
*
* This program 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
* Affero General Public License for more details.
*
* You should have received a copy of the Affero General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* The license is also available at: https://www.gnu.org/licenses/agpl.html
*******************************************************************************/
package org.integratedmodelling;
import java.util.StringTokenizer;
/**
* The version class for the whole system. Holds the current official release version.
*
* @author Ferd
*
*/
public class Version implements Comparable {
/**
* Main version number for the whole k.LAB software stack, which is expected to have
* synchronized release numbers. Change this whenever a new version is released.
* *******************************************************************************
* NOTE: the version number in all plugin manifests needs to be changed manually for
* the Eclipse side of things to work properly.
* *******************************************************************************
*/
public static final String CURRENT = "0.9.10";
/**
* Modifier for release (e.g. alpha, beta, RC1 etc). Should be synchronized by CI
* system or maven goal.
*/
public static final String MODIFIER = "";
/*
* next fields should be added by a script before build and not committed.
* ***************************************************************************** DO
* NOT CHANGE THE CONSTANT VALUES - the script relies on them to substitute proper
* values.
* *****************************************************************************
*/
/**
*
*/
public static final String VERSION_BRANCH = "VERSION_BRANCH";
/**
*
*/
public static final String VERSION_COMMIT = "VERSION_COMMIT";
/**
*
*/
public static final String VERSION_BUILD = "VERSION_BUILD";
/**
*
*/
public static final String VERSION_DATE = "VERSION_DATE";
@SuppressWarnings("unused")
private static final long serialVersionUID = -3054349171116917643L;
/**
* Version identifier parts separator.
*/
public static final char SEPARATOR = '.';
private static Version currentVersion;
/**
* Parses given string as version identifier. All missing parts will be initialized to
* 0 or empty string. Parsing starts from left side of the string.
* @param str version identifier as string
* @return version identifier object
*/
public static Version parse(final String str) {
Version result = new Version();
result.parseString(str);
return result;
}
private transient int major;
private transient int minor;
private transient int build;
private transient String name;
private transient String asString;
/**
* The default version parses the current version string, so it can be used for
* comparison with others.
*
*/
public Version() {
parseString(CURRENT);
}
/**
* Initialize from a version string.
*
* @param version
*/
public Version(String version) {
parseString(version);
}
private void parseString(final String str) {
major = 0;
minor = 0;
build = 0;
name = ""; //$NON-NLS-1$
StringTokenizer st = new StringTokenizer(str, "" + SEPARATOR, false); //$NON-NLS-1$
// major segment
if (!st.hasMoreTokens()) {
return;
}
String token = st.nextToken();
try {
major = Integer.parseInt(token, 10);
} catch (NumberFormatException nfe) {
name = token;
while (st.hasMoreTokens()) {
name += st.nextToken();
}
return;
}
// minor segment
if (!st.hasMoreTokens()) {
return;
}
token = st.nextToken();
try {
minor = Integer.parseInt(token, 10);
} catch (NumberFormatException nfe) {
name = token;
while (st.hasMoreTokens()) {
name += st.nextToken();
}
return;
}
// build segment
if (!st.hasMoreTokens()) {
return;
}
token = st.nextToken();
try {
build = Integer.parseInt(token, 10);
} catch (NumberFormatException nfe) {
name = token;
while (st.hasMoreTokens()) {
name += st.nextToken();
}
return;
}
// name segment
if (st.hasMoreTokens()) {
name = st.nextToken();
while (st.hasMoreTokens()) {
name += st.nextToken();
}
}
}
/**
* Creates version identifier object from given parts. No validation performed during
* object instantiation, all values become parts of version identifier as they are.
* @param aMajor major version number
* @param aMinor minor version number
* @param aBuild build number
* @param aName build name, null
value becomes empty string
*/
public Version(final int aMajor, final int aMinor, final int aBuild, final String aName) {
major = aMajor;
minor = aMinor;
build = aBuild;
name = (aName == null) ? "" : aName; //$NON-NLS-1$
}
/**
* @return build number
*/
public int getBuild() {
return build;
}
/**
* @return major version number
*/
public int getMajor() {
return major;
}
/**
* @return minor version number
*/
public int getMinor() {
return minor;
}
/**
* @return build name
*/
public String getName() {
return name;
}
/**
* Compares two version identifiers to see if this one is greater than or equal to the
* argument. A version identifier is considered to be greater than or equal if its
* major component is greater than the argument major component, or the major
* components are equal and its minor component is greater than the argument minor
* component, or the major and minor components are equal and its build component is
* greater than the argument build component, or all components are equal.
*
* @param other the other version identifier
* @return true
if this version identifier is compatible with the given
* version identifier, and false
otherwise
*/
public boolean isGreaterOrEqualTo(final Version other) {
if (other == null) {
return false;
}
if (major > other.major) {
return true;
}
if ((major == other.major) && (minor > other.minor)) {
return true;
}
if ((major == other.major) && (minor == other.minor) && (build > other.build)) {
return true;
}
if ((major == other.major) && (minor == other.minor) && (build == other.build)
&& name.equalsIgnoreCase(other.name)) {
return true;
}
return false;
}
/**
* Compares two version identifiers for compatibility. A version identifier is
* considered to be compatible if its major component equals to the argument major
* component, and its minor component is greater than or equal to the argument minor
* component. If the minor components are equal, than the build component of the
* version identifier must be greater than or equal to the build component of the
* argument identifier.
*
* @param other the other version identifier
* @return true
if this version identifier is compatible with the given
* version identifier, and false
otherwise
*/
public boolean isCompatibleWith(final Version other) {
if (other == null) {
return false;
}
if (major != other.major) {
return false;
}
if (minor > other.minor) {
return true;
}
if (minor < other.minor) {
return false;
}
if (build >= other.build) {
return true;
}
return false;
}
/**
* Compares two version identifiers for equivalence. Two version identifiers are
* considered to be equivalent if their major and minor components equal and are at
* least at the same build level as the argument.
*
* @param other the other version identifier
* @return true
if this version identifier is equivalent to the given
* version identifier, and false
otherwise
*/
public boolean isEquivalentTo(final Version other) {
if (other == null) {
return false;
}
if (major != other.major) {
return false;
}
if (minor != other.minor) {
return false;
}
if (build >= other.build) {
return true;
}
return false;
}
/**
* Compares two version identifiers for order using multi-decimal comparison.
*
* @param other the other version identifier
* @return true
if this version identifier is greater than the given
* version identifier, and false
otherwise
*/
public boolean isGreaterThan(final Version other) {
if (other == null) {
return false;
}
if (major > other.major) {
return true;
}
if (major < other.major) {
return false;
}
if (minor > other.minor) {
return true;
}
if (minor < other.minor) {
return false;
}
if (build > other.build) {
return true;
}
return false;
}
/**
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode() {
return toString().hashCode();
}
/**
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Version)) {
return false;
}
Version other = (Version) obj;
if ((major != other.major) || (minor != other.minor) || (build != other.build)
|| !name.equalsIgnoreCase(other.name)) {
return false;
}
return true;
}
/**
* Returns the string representation of this version identifier. The result satisfies
* version.equals(new Version(version.toString()))
.
* @return the string representation of this version identifier
*/
@Override
public String toString() {
if (asString == null) {
asString = "" + major + SEPARATOR + minor + SEPARATOR + build //$NON-NLS-1$
+ (name.length() == 0 ? "" : SEPARATOR + name); //$NON-NLS-1$
if (!MODIFIER.isEmpty()) {
asString += "-" + MODIFIER;
}
}
return asString;
}
/**
* @param obj version to compare this instance with
* @return comparison result
* @see java.lang.Comparable#compareTo(java.lang.Object)
*/
@Override
public int compareTo(final Version obj) {
if (equals(obj)) {
return 0;
}
if (major != obj.major) {
return major - obj.major;
}
if (minor != obj.minor) {
return minor - obj.minor;
}
if (build != obj.build) {
return build - obj.build;
}
return name.toLowerCase().compareTo(obj.name.toLowerCase());
}
/**
* Get the versioned jar file name for a particular base name.
*
* @param file base name without version
* @return versioned jar file name
*/
public static String getJarFilename(String file) {
String fname = file + "-" + Version.CURRENT;
if (!Version.MODIFIER.isEmpty()) {
fname += "-" + Version.MODIFIER;
}
fname += ".jar";
return fname;
}
public static Version getCurrent() {
if (currentVersion == null) {
currentVersion = parse(CURRENT);
}
return currentVersion;
}
}