From 959d6d83ec26152343d538287c02eeebf0dcf238 Mon Sep 17 00:00:00 2001
From: Sven Gothel
+ * For the latter case, you can query whether a component has been defined explicitly by the given
+ * The state whether a component is defined explicitly is not considered
+ * in the {@link #hashCode()}, {@link #equals(Object)} or {@link #compareTo(Object)} methods,
+ * since the version number itself is treated regardless.
+ * versionString
,
+ * via {@link #hasMajor()}, {@link #hasMinor()} and {@link #hasSub()}.
+ *
+ * A whitespace within the version number will end the parser. + *
+ *+ * Capture groups represent the major (1), optional minor (2) and optional sub version number (3) component in this order. + *
+ *+ * Each capture group ignores any leading non-digit and uses only contiguous digits, i.e. ignores pending non-digits. + *
+ * @param delim the delimiter, e.g. "." + */ + public static java.util.regex.Pattern getVersionNumberPattern(String delim) { + return java.util.regex.Pattern.compile("\\D*(\\d+)[^\\"+delim+"\\s]*(?:\\"+delim+"\\D*(\\d+)[^\\"+delim+"\\s]*(?:\\"+delim+"\\D*(\\d+))?)?"); + } + + /** + * Returns the default {@link java.util.regex.Pattern pattern} using {@link #getVersionNumberPattern(String)} + * with delimiter ".". + *+ * Instance is cached. + *
+ */ + public static java.util.regex.Pattern getDefaultVersionNumberPattern() { + if( null == defPattern ) { // volatile dbl-checked-locking OK + synchronized( VersionNumber.class ) { + if( null == defPattern ) { + defPattern = getVersionNumberPattern("."); + } + } + } + return defPattern; + } + private static volatile java.util.regex.Pattern defPattern = null; + + protected final int major, minor, sub, strEnd; - protected final int major, minor, sub; + protected final short state; + protected final static short HAS_MAJOR = 1 << 0 ; + protected final static short HAS_MINOR = 1 << 1 ; + protected final static short HAS_SUB = 1 << 2 ; - /** Explicit version number instantiation. */ - public VersionNumber(int majorRev, int minorRev, int subMinorRev) { + protected VersionNumber(int majorRev, int minorRev, int subMinorRev, int _strEnd, short _state) { major = majorRev; minor = minorRev; sub = subMinorRev; + strEnd = _strEnd; + state = _state; + } + + /** + * Explicit version number instantiation, with all components defined explicitly. + * @see #hasMajor() + * @see #hasMinor() + * @see #hasSub() + */ + public VersionNumber(int majorRev, int minorRev, int subMinorRev) { + this(majorRev, minorRev, subMinorRev, -1, (short)(HAS_MAJOR | HAS_MINOR | HAS_SUB)); } /** * String derived version number instantiation. *- * Parser first tokenizes the input versionString w/ given delimiter. - *
+ * Utilizing the default {@link java.util.regex.Pattern pattern} parser with delimiter ".", see {@link #getDefaultVersionNumberPattern()}. + * *
- * Tokens represent the major, minor and sub version number component in this order.
+ * You can query whether a component has been defined explicitly by the given versionString
,
+ * via {@link #hasMajor()}, {@link #hasMinor()} and {@link #hasSub()}.
*
+ * Utilizing {@link java.util.regex.Pattern pattern} parser created via {@link #getVersionNumberPattern(String)}. + *
*
- * For each token it ignores any leading non-digit and uses only contiguous digits, i.e. ignores pending non-digits.
+ * You can query whether a component has been defined explicitly by the given versionString
,
+ * via {@link #hasMajor()}, {@link #hasMinor()} and {@link #hasSub()}.
*
+ * You can query whether a component has been defined explicitly by the given versionString
,
+ * via {@link #hasMajor()}, {@link #hasMinor()} and {@link #hasSub()}.
+ *
true
, if all version components are zero, otherwise false
. */
public final boolean isZero() {
return major == 0 && minor == 0 && sub == 0;
}
+ /** Returns true
, if the major component is defined explicitly, otherwise false
. Undefined components has the value 0
. */
+ public final boolean hasMajor() { return 0 != ( HAS_MAJOR & state ); }
+ /** Returns true
, if the optional minor component is defined explicitly, otherwise false
. Undefined components has the value 0
. */
+ public final boolean hasMinor() { return 0 != ( HAS_MINOR & state ); }
+ /** Returns true
, if the optional sub component is defined explicitly, otherwise false
. Undefined components has the value 0
. */
+ public final boolean hasSub() { return 0 != ( HAS_SUB & state ); }
+
+ /**
+ * If constructed with version-string
, returns the string offset after the last matching character,
+ * or 0
if none matched, or -1
if not constructed with a string.
+ */
+ public final int endOfStringMatch() { return strEnd; }
+
@Override
public final int hashCode() {
// 31 * x == (x << 5) - x
--
cgit v1.2.3