/*============================================================================= Library: CTK Copyright (c) 2010 German Cancer Research Center, Division of Medical and Biological Informatics Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =============================================================================*/ #ifndef CTKVERSION_H #define CTKVERSION_H #include #include #include "CTKPluginFrameworkExport.h" /** * Version identifier for plug-ins and packages. * *

* Version identifiers have four components. *

    *
  1. Major version. A non-negative integer.
  2. *
  3. Minor version. A non-negative integer.
  4. *
  5. Micro version. A non-negative integer.
  6. *
  7. Qualifier. A text string. See ctkVersion(const QString&) for the * format of the qualifier string.
  8. *
* *

* ctkVersion objects are immutable. * * @Immutable */ class CTK_PLUGINFW_EXPORT ctkVersion { private: friend class ctkPluginPrivate; friend class ctkVersionRange; unsigned int majorVersion; unsigned int minorVersion; unsigned int microVersion; QString qualifier; static const QString SEPARATOR; // = "." static const QRegExp RegExp; /** * Called by the ctkVersion constructors to validate the version components. * * @return true if the validation was successfull, false otherwise. */ void validate(); ctkVersion& operator=(const ctkVersion& v); ctkVersion(); public: /** * The empty version "0.0.0". */ static const ctkVersion& emptyVersion(); /** * Creates a version identifier from the specified numerical components. * *

* The qualifier is set to the empty string. * * @param majorVersion Major component of the version identifier. * @param minorVersion Minor component of the version identifier. * @param microVersion Micro component of the version identifier. * */ ctkVersion(unsigned int majorVersion, unsigned int minorVersion, unsigned int microVersion); /** * Creates a version identifier from the specified components. * * @param majorVersion Major component of the version identifier. * @param minorVersion Minor component of the version identifier. * @param microVersion Micro component of the version identifier. * @param qualifier Qualifier component of the version identifier. */ ctkVersion(unsigned int majorVersion, unsigned int minorVersion, unsigned int microVersion, const QString& qualifier); /** * Created a version identifier from the specified string. * *

* Here is the grammar for version strings. * *

     * version ::= majorVersion('.'minorVersion('.'microVersion('.'qualifier)?)?)?
     * majorVersion ::= digit+
     * minorVersion ::= digit+
     * microVersion ::= digit+
     * qualifier ::= (alpha|digit|'_'|'-')+
     * digit ::= [0..9]
     * alpha ::= [a..zA..Z]
     * 
* * There must be no whitespace in version. * * @param version string representation of the version identifier. */ ctkVersion(const QString& version); /** * Create a version identifier from another. * * @param version Another version identifier */ ctkVersion(const ctkVersion& version); /** * Parses a version identifier from the specified string. * *

* See ctkVersion(const QString&) for the format of the version string. * * @param version string representation of the version identifier. Leading * and trailing whitespace will be ignored. * @return A ctkVersion object representing the version * identifier. If version is the empty string * then emptyVersion will be * returned. */ static ctkVersion parseVersion(const QString& version); /** * Returns the majorVersion component of this version identifier. * * @return The majorVersion component. */ unsigned int getMajor() const; /** * Returns the minorVersion component of this version identifier. * * @return The minorVersion component. */ unsigned int getMinor() const; /** * Returns the microVersion component of this version identifier. * * @return The microVersion component. */ unsigned int getMicro() const; /** * Returns the qualifier component of this version identifier. * * @return The qualifier component. */ QString getQualifier() const; /** * Returns the string representation of this version identifier. * *

* The format of the version string will be majorVersion.minorVersion.microVersion * if qualifier is the empty string or * majorVersion.minorVersion.microVersion.qualifier otherwise. * * @return The string representation of this version identifier. */ QString toString() const; /** * Compares this ctkVersion object to another object. * *

* A version is considered to be equal to another version if the * majorVersion, minorVersion and microVersion components are equal and the qualifier component * is equal. * * @param object The ctkVersion object to be compared. * @return true if object is a * ctkVersion and is equal to this object; * false otherwise. */ bool operator==(const ctkVersion& object) const; /** * Compares this ctkVersion object to another object. * *

* A version is considered to be less than another version if its * majorVersion component is less than the other version's majorVersion component, or the * majorVersion components are equal and its minorVersion component is less than the other * version's minorVersion component, or the majorVersion and minorVersion components are equal * and its microVersion component is less than the other version's microVersion component, * or the majorVersion, minorVersion and microVersion components are equal and it's qualifier * component is less than the other version's qualifier component (using * std::string::compare). * *

* A version is considered to be equal to another version if the * majorVersion, minorVersion and microVersion components are equal and the qualifier component * is equal. * * @param object The ctkVersion object to be compared. * @return A negative integer, zero, or a positive integer if this object is * less than, equal to, or greater than the specified * ctkVersion object. */ int compare(const ctkVersion& object) const; }; CTK_PLUGINFW_EXPORT QDebug operator<<(QDebug dbg, const ctkVersion& v); #endif // CTKVERSION_H