2de3adbae440e32e54e856984056718c5ec0cccb
[pspp-builds.git] / src / data / value.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #include <config.h>
21 #include "value.h"
22
23 #include <libpspp/hash.h>
24 #include <libpspp/str.h>
25
26 #include "xalloc.h"
27
28 /* Duplicate a value.
29    The caller is responsible for freeing the returned value. */
30 union value *
31 value_dup (const union value *val, int width)
32 {
33   return xmemdup (val, MAX (width, sizeof *val));
34 }
35
36 /* Compares A and B, which both have the given WIDTH, and returns
37    a strcmp()-type result.
38    Only the short string portion of longer strings are
39    compared. */
40 int
41 compare_values (const union value *a, const union value *b, int width) 
42 {
43   return (width == 0
44           ? (a->f < b->f ? -1 : a->f > b->f)
45           : memcmp (a->s, b->s, MIN (MAX_SHORT_STRING, width)));
46 }
47
48 /* Create a hash of V, which has the given WIDTH.
49    Only the short string portion of a longer string is hashed. */
50 unsigned 
51 hash_value (const union value *v, int width)
52 {
53   return (width == 0
54           ? hsh_hash_double (v->f)
55           : hsh_hash_bytes (v->s, MIN (MAX_SHORT_STRING, width)));
56 }