X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fvalue.c;h=baaaed48d4c396a94312917a1becc7b7bee9f7c2;hb=16af7ed2b7da4aa1c38a15c5663298d6e251e458;hp=34e3fe58bb37bf40d80943d38fc4d5ecafdc76d2;hpb=a9acce47d67e0ab35ce1690e4f1b1ac0121c2d78;p=pspp-builds.git diff --git a/src/data/value.c b/src/data/value.c index 34e3fe58..baaaed48 100644 --- a/src/data/value.c +++ b/src/data/value.c @@ -20,6 +20,7 @@ #include #include #include +#include "variable.h" #include "xalloc.h" @@ -46,23 +47,30 @@ value_create (int width) Only the short string portion of longer strings are compared. */ int -compare_values (const union value *a, const union value *b, int width) +compare_values_short (const void *a_, const void *b_, const void *var_) { - return (width == 0 - ? (a->f < b->f ? -1 : a->f > b->f) - : memcmp (a->s, b->s, MIN (MAX_SHORT_STRING, width))); + const union value *a = a_; + const union value *b = b_; + const struct variable *var = var_; + int width = var_get_width (var); + return value_compare_3way (a, b, MIN (width, MAX_SHORT_STRING)); } + /* Create a hash of V, which has the given WIDTH. Only the short string portion of a longer string is hashed. */ unsigned -hash_value (const union value *v, int width) +hash_value_short (const void *v_, const void *var_) { + const union value *v = v_; + const struct variable *var = var_; + int width = var_get_width (var); return (width == 0 ? hsh_hash_double (v->f) - : hsh_hash_bytes (v->s, MIN (MAX_SHORT_STRING, width))); + : hsh_hash_bytes (v->s, width)); } + /* Copies SRC to DST, given that they both contain data of the given WIDTH. */ void @@ -113,3 +121,13 @@ value_resize (union value *value, int old_width, int new_width) if (new_width > old_width) memset (&value->s[old_width], ' ', new_width - old_width); } + +/* Compares A and B, which both have the given WIDTH, and returns + a strcmp()-type result. */ +int +value_compare_3way (const union value *a, const union value *b, int width) +{ + return (width == 0 + ? (a->f < b->f ? -1 : a->f > b->f) + : memcmp (a->s, b->s, width)); +}