[ccan] [PATCH v2] Add a set of simple version comparison helpers

Peter Hutterer peter.hutterer at who-t.net
Thu Mar 28 10:38:48 EST 2013


These version helpers help to compare major.minor style version numbers,
without the need for open-coded and error-prone bitshifting, multiplication,
and similar.

Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>
---
Changes to v1:
- Rusty's diff folded in (pass-by-value, no version_cmp_numeric,
  version_new() → version(), etc)
- typedef removed, using struct version now
- renamed to ccan/version from ccan/versioncmp

 ccan/version/LICENSE             |  1 +
 ccan/version/_info               | 37 ++++++++++++++++++
 ccan/version/test/compile_fail.c | 11 ++++++
 ccan/version/test/run.c          | 69 ++++++++++++++++++++++++++++++++++
 ccan/version/version.h           | 81 ++++++++++++++++++++++++++++++++++++++++
 5 files changed, 199 insertions(+)
 create mode 120000 ccan/version/LICENSE
 create mode 100644 ccan/version/_info
 create mode 100644 ccan/version/test/compile_fail.c
 create mode 100644 ccan/version/test/run.c
 create mode 100644 ccan/version/version.h

diff --git a/ccan/version/LICENSE b/ccan/version/LICENSE
new file mode 120000
index 0000000..2354d12
--- /dev/null
+++ b/ccan/version/LICENSE
@@ -0,0 +1 @@
+../../licenses/BSD-MIT
\ No newline at end of file
diff --git a/ccan/version/_info b/ccan/version/_info
new file mode 100644
index 0000000..00c638a
--- /dev/null
+++ b/ccan/version/_info
@@ -0,0 +1,37 @@
+#include <string.h>
+#include "config.h"
+
+/**
+ * version - helper functions for major.minor-style version numbers
+ *
+ * This code provides some helper functions to deal with version numbers in
+ * the form major.minor.
+ *
+ * Author: Peter Hutterer <peter.hutterer at who-t.net>
+ * Maintainer: Peter Hutterer <peter.hutterer at who-t.net>
+ * License: BSD-MIT
+ *
+ * Example:
+ *	struct version a = version(1, 0);
+ *	struct version b = version(2, 2);
+ *
+ *	if (version_cmp(a, b) < 0)
+ *		printf("Feature supported in version 2.2 but we have %d.%d\n",
+ *			version_major(a), version_minor(a));
+ *
+ *	if (version_cmp(a, version(3, 4)) < 0)
+ *		printf("Feature only supported in version 3.4\n");
+ * 	
+ */
+int main(int argc, char *argv[])
+{
+	/* Expect exactly one argument */
+	if (argc != 2)
+		return 1;
+
+	if (strcmp(argv[1], "depends") == 0) {
+		return 0;
+	}
+
+	return 1;
+}
diff --git a/ccan/version/test/compile_fail.c b/ccan/version/test/compile_fail.c
new file mode 100644
index 0000000..8cf64b1
--- /dev/null
+++ b/ccan/version/test/compile_fail.c
@@ -0,0 +1,11 @@
+#include <ccan/version/version.h>
+#include <ccan/tap/tap.h>
+
+int main(void)
+{
+#ifdef FAIL
+	struct version a;
+	a = 0; /* no direct assignment */
+#endif
+	return 0;
+}
diff --git a/ccan/version/test/run.c b/ccan/version/test/run.c
new file mode 100644
index 0000000..f7b0782
--- /dev/null
+++ b/ccan/version/test/run.c
@@ -0,0 +1,69 @@
+#include <ccan/version/version.h>
+#include <ccan/tap/tap.h>
+
+int main(void)
+{
+	struct version a, b;
+
+	plan_tests(26);
+
+	/* cmp with normal versions */
+	a = version(1, 0);
+	b = version(2, 0);
+	ok1(version_cmp(a, b) < 0);
+
+	a = version(1, 1);
+	ok1(version_cmp(a, b) < 0);
+
+	a = version(2, 0);
+	ok1(version_cmp(a, b) == 0);
+
+	a = version(2, 1);
+	ok1(version_cmp(a, b) > 0);
+
+	b = version(2, 1);
+	ok1(version_cmp(a, b) == 0);
+
+	a = version(3, 0);
+	ok1(version_cmp(a, b) > 0);
+
+	a = version(3, 1);
+	ok1(version_cmp(a, b) > 0);
+
+	/* inline cmp */
+	ok1(version_cmp(a, version(1, 0)) > 0);
+	ok1(version_cmp(a, version(1, 1)) > 0);
+	ok1(version_cmp(a, version(3, 0)) > 0);
+	ok1(version_cmp(a, version(3, 1)) == 0);
+	ok1(version_cmp(a, version(3, 2)) < 0);
+	ok1(version_cmp(a, version(4, 0)) < 0);
+	ok1(version_cmp(a, version(4, 1)) < 0);
+
+	/* limits */
+	a = version(0xFFFF, 0xFFFF);
+	b = version(0xFFFE, 0xFFFF);
+	ok1(version_cmp(a, b) > 0);
+	ok1(version_cmp(b, a) < 0);
+
+	b = version(0xFFFF, 0xFFFE);
+	ok1(version_cmp(a, b) > 0);
+	ok1(version_cmp(b, a) < 0);
+
+	b = version(0xFFFF, 0xFFFF);
+	ok1(version_cmp(a, b) == 0);
+	ok1(version_cmp(b, a) == 0);
+
+	b = version(0, 1);
+	ok1(version_cmp(a, b) > 0);
+	ok1(version_cmp(b, a) < 0);
+
+	b = version(1, 0);
+	ok1(version_cmp(a, b) > 0);
+	ok1(version_cmp(b, a) < 0);
+
+	b = version(0, 0);
+	ok1(version_cmp(a, b) > 0);
+	ok1(version_cmp(b, a) < 0);
+
+	return exit_status();
+}
diff --git a/ccan/version/version.h b/ccan/version/version.h
new file mode 100644
index 0000000..3bc83f6
--- /dev/null
+++ b/ccan/version/version.h
@@ -0,0 +1,81 @@
+/*****************************************************************************
+ *
+ * version - simple version handling functions for major.minor version
+ * types
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ *
+ ****************************************************************************/
+
+#ifndef CCAN_VERSION_H
+#define CCAN_VERSION_H
+
+#include <stdint.h>
+
+struct version {
+	uint32_t _v; /* major << 16  | minor */
+};
+
+/**
+ * version_major - return the major version of the given struct
+ * @v: the version number to obtain the major number from
+ */
+static inline uint16_t version_major(struct version v) {
+	return (v._v & 0xFFFF0000) >> 16;
+}
+
+/**
+ * version_minor - return the minor version of the given struct
+ * @v: the version number to obtain the minor number from
+ */
+static inline uint16_t version_minor(const struct version v) {
+	return v._v & 0xFFFF;
+}
+
+/**
+ * version - create a new version number
+ * @major: major version number
+ * @minor: minor version number
+ */
+static inline struct version version(uint16_t major, uint16_t minor)
+{
+	struct version v = { ._v = major << 16 | minor };
+	return v;
+}
+
+/**
+ * version_cmp - compare two versions
+ * @a: the first version number
+ * @b: the second version number
+ * @return a number greater, equal, or less than 0 if a is greater, equal or
+ * less than b, respectively
+ *
+ * Example:
+ *	struct version a = version(1, 0);
+ *	struct version b = version(1, 3);
+ *	if (version_cmp(a, b) < 0)
+ *		printf("b is smaller than b\n");
+ */
+static inline int version_cmp(struct version a, struct version b)
+{
+	return  (a._v == b._v) ? 0 : (a._v > b._v) ? 1 : - 1;
+}
+
+#endif /* CCAN_VERSION_H */
+
-- 
1.8.1.4



More information about the ccan mailing list