From d5d194f1db7ac8a02430b84ca04f2909650b9ed8 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Fri, 26 Aug 2016 10:54:37 -0500 Subject: [PATCH] pkg: clean up dependency comparison code --- libpkgconf/libpkgconf.h | 14 +++++----- libpkgconf/pkg.c | 58 +++++++++++++++-------------------------- 2 files changed, 27 insertions(+), 45 deletions(-) diff --git a/libpkgconf/libpkgconf.h b/libpkgconf/libpkgconf.h index d279d09..a762f2b 100644 --- a/libpkgconf/libpkgconf.h +++ b/libpkgconf/libpkgconf.h @@ -24,15 +24,13 @@ #define PKGCONF_BUFSIZE (65535) typedef enum { - PKGCONF_CMP_ANY = 0, - PKGCONF_CMP_LESS_THAN, - PKGCONF_CMP_GREATER_THAN, - PKGCONF_CMP_LESS_THAN_EQUAL, - PKGCONF_CMP_GREATER_THAN_EQUAL, - PKGCONF_CMP_EQUAL, PKGCONF_CMP_NOT_EQUAL, - PKGCONF_CMP_ALWAYS_MATCH, - PKGCONF_CMP_SIZE + PKGCONF_CMP_ANY, + PKGCONF_CMP_LESS_THAN, + PKGCONF_CMP_LESS_THAN_EQUAL, + PKGCONF_CMP_EQUAL, + PKGCONF_CMP_GREATER_THAN, + PKGCONF_CMP_GREATER_THAN_EQUAL } pkgconf_pkg_comparator_t; typedef struct pkgconf_pkg_ pkgconf_pkg_t; diff --git a/libpkgconf/pkg.c b/libpkgconf/pkg.c index e6b58e7..c7eade3 100644 --- a/libpkgconf/pkg.c +++ b/libpkgconf/pkg.c @@ -764,19 +764,24 @@ typedef bool (*pkgconf_vercmp_res_func_t)(pkgconf_pkg_t *pkg, pkgconf_dependency typedef struct { const char *name; pkgconf_pkg_comparator_t compare; -} pkgconf_pkg_comparator_name_t; +} pkgconf_pkg_comparator_pair_t; -static const pkgconf_pkg_comparator_name_t pkgconf_pkg_comparator_names[PKGCONF_CMP_SIZE + 1] = { - {"<", PKGCONF_CMP_LESS_THAN}, - {">", PKGCONF_CMP_GREATER_THAN}, - {"<=", PKGCONF_CMP_LESS_THAN_EQUAL}, - {">=", PKGCONF_CMP_GREATER_THAN_EQUAL}, - {"=", PKGCONF_CMP_EQUAL}, +static const pkgconf_pkg_comparator_pair_t pkgconf_pkg_comparator_names[] = { {"!=", PKGCONF_CMP_NOT_EQUAL}, {"(any)", PKGCONF_CMP_ANY}, - {"???", PKGCONF_CMP_SIZE}, + {"<", PKGCONF_CMP_LESS_THAN}, + {"<=", PKGCONF_CMP_LESS_THAN_EQUAL}, + {"=", PKGCONF_CMP_EQUAL}, + {">", PKGCONF_CMP_GREATER_THAN}, + {">=", PKGCONF_CMP_GREATER_THAN_EQUAL}, }; +static int pkgconf_pkg_comparator_pair_namecmp(const void *key, const void *ptr) +{ + const pkgconf_pkg_comparator_pair_t *pair = ptr; + return strcmp(key, pair->name); +} + static bool pkgconf_pkg_comparator_lt(pkgconf_pkg_t *pkg, pkgconf_dependency_t *pkgdep) { return (pkgconf_compare_version(pkg->version, pkgdep->version) < 0); @@ -815,15 +820,7 @@ static bool pkgconf_pkg_comparator_any(pkgconf_pkg_t *pkg, pkgconf_dependency_t return true; } -static bool pkgconf_pkg_comparator_unimplemented(pkgconf_pkg_t *pkg, pkgconf_dependency_t *pkgdep) -{ - (void) pkg; - (void) pkgdep; - - return false; -} - -static const pkgconf_vercmp_res_func_t pkgconf_pkg_comparator_impls[PKGCONF_CMP_SIZE + 1] = { +static const pkgconf_vercmp_res_func_t pkgconf_pkg_comparator_impls[] = { [PKGCONF_CMP_ANY] = pkgconf_pkg_comparator_any, [PKGCONF_CMP_LESS_THAN] = pkgconf_pkg_comparator_lt, [PKGCONF_CMP_GREATER_THAN] = pkgconf_pkg_comparator_gt, @@ -831,7 +828,6 @@ static const pkgconf_vercmp_res_func_t pkgconf_pkg_comparator_impls[PKGCONF_CMP_ [PKGCONF_CMP_GREATER_THAN_EQUAL] = pkgconf_pkg_comparator_gte, [PKGCONF_CMP_EQUAL] = pkgconf_pkg_comparator_eq, [PKGCONF_CMP_NOT_EQUAL] = pkgconf_pkg_comparator_ne, - [PKGCONF_CMP_SIZE] = pkgconf_pkg_comparator_unimplemented, }; /* @@ -842,15 +838,10 @@ static const pkgconf_vercmp_res_func_t pkgconf_pkg_comparator_impls[PKGCONF_CMP_ const char * pkgconf_pkg_get_comparator(const pkgconf_dependency_t *pkgdep) { - const pkgconf_pkg_comparator_name_t *i; + if (pkgdep->compare > PKGCONF_ARRAY_SIZE(pkgconf_pkg_comparator_names)) + return "???"; - for (i = pkgconf_pkg_comparator_names; i->compare != PKGCONF_CMP_SIZE; i++) - { - if (i->compare == pkgdep->compare) - return i->name; - } - - return "???"; + return pkgconf_pkg_comparator_names[pkgdep->compare].name; } /* @@ -858,22 +849,15 @@ pkgconf_pkg_get_comparator(const pkgconf_dependency_t *pkgdep) * * look up the appropriate comparator bytecode in the comparator set (defined * above, see pkgconf_pkg_comparator_names and pkgconf_pkg_comparator_impls). - * - * XXX: on error return PKGCONF_CMP_ANY or maybe we should return PKGCONF_CMP_SIZE which - * is poisoned? */ pkgconf_pkg_comparator_t pkgconf_pkg_comparator_lookup_by_name(const char *name) { - const pkgconf_pkg_comparator_name_t *i; + const pkgconf_pkg_comparator_pair_t *p = bsearch(name, pkgconf_pkg_comparator_names, + PKGCONF_ARRAY_SIZE(pkgconf_pkg_comparator_names), sizeof(pkgconf_pkg_comparator_pair_t), + pkgconf_pkg_comparator_pair_namecmp); - for (i = pkgconf_pkg_comparator_names; i->compare != PKGCONF_CMP_SIZE; i++) - { - if (!strcmp(i->name, name)) - return i->compare; - } - - return PKGCONF_CMP_ANY; + return (p != NULL) ? p->compare : PKGCONF_CMP_ANY; } /*