X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Ffreq.c;h=535b39c440c44c26b4e0484562c09bd088ff9dc9;hb=e5f444ae6a67fdd38c5b08d5ba3592a7fb0f793a;hp=1a0ecd498636561b9fb225f96baa8d9bdc82e409;hpb=3bbb4370239deb29ebbf813d258aef6249e2a431;p=pspp diff --git a/src/language/stats/freq.c b/src/language/stats/freq.c index 1a0ecd4986..535b39c440 100644 --- a/src/language/stats/freq.c +++ b/src/language/stats/freq.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2006, 2009 Free Software Foundation, Inc. + Copyright (C) 2006, 2009, 2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -15,44 +15,129 @@ along with this program. If not, see . */ #include -#include -#include -#include + +#include "language/stats/freq.h" #include -#include "freq.h" +#include "data/variable.h" +#include "data/value.h" +#include "libpspp/array.h" +#include "libpspp/compiler.h" -int -compare_freq ( const void *_f1, const void *_f2, const void *_var) +struct freq * +freq_clone (const struct freq *in, int values, int *widths) { - const struct freq *f1 = _f1; - const struct freq *f2 = _f2; - const struct variable *var = _var; + int i; + struct freq *f = xmalloc (sizeof (struct freq) + + (sizeof (union value) * (values - 1))); - return value_compare_3way (&f1->value, &f2->value, var_get_width (var)); + f->node = in->node; + f->count = in->count; + for (i = 0; i < values; ++i) + { + value_init (&f->values[i], widths[i]); + value_copy (&f->values[i], &in->values[i], widths[i]); + } + + return f; } -unsigned int -hash_freq (const void *_f, const void *var) +void +freq_destroy (struct freq *f, int values, int *widths) { - const struct freq *f = _f; + int i; + for (i = 0; i < values; ++i) + { + value_destroy (&f->values[i], widths[i]); + } - return value_hash (&f->value, var_get_width (var), 0); + free (f); } -/* Free function to be used on FR whose value parameter has been copied */ + + void -free_freq_mutable_hash (void *fr, const void *var_) +freq_hmap_destroy (struct hmap *hmap, int width) { - const struct variable *var = var_; - struct freq_mutable *freq = fr; - value_destroy (&freq->value, var_get_width (var)); - free (freq); + struct freq *f, *next; + + HMAP_FOR_EACH_SAFE (f, next, struct freq, node, hmap) + { + value_destroy (&f->values[0], width); + hmap_delete (hmap, &f->node); + free (f); + } + hmap_destroy (hmap); } -void -free_freq_hash (void *fr, const void *var UNUSED) +struct freq * +freq_hmap_search (struct hmap *hmap, + const union value *value, int width, size_t hash) +{ + struct freq *f; + + HMAP_FOR_EACH_WITH_HASH (f, struct freq, node, hash, hmap) + if (value_equal (value, &f->values[0], width)) + return f; + + return NULL; +} + +struct freq * +freq_hmap_insert (struct hmap *hmap, + const union value *value, int width, size_t hash) +{ + struct freq *f = xmalloc (sizeof *f); + value_clone (&f->values[0], value, width); + f->count = 0; + hmap_insert (hmap, &f->node, hash); + return f; +} + +int +compare_freq_ptr_3way (const void *a_, const void *b_, const void *width_) { - free (fr); + const struct freq *const *ap = a_; + const struct freq *const *bp = b_; + const int *widthp = width_; + + return value_compare_3way (&(*ap)->values[0], &(*bp)->values[0], *widthp); } + +struct freq ** +freq_hmap_sort (struct hmap *hmap, int width) +{ + size_t n_entries = hmap_count (hmap); + struct freq **entries; + struct freq *f; + size_t i; + + entries = xnmalloc (n_entries, sizeof *entries); + i = 0; + HMAP_FOR_EACH (f, struct freq, node, hmap) + entries[i++] = f; + assert (i == n_entries); + + sort (entries, n_entries, sizeof *entries, compare_freq_ptr_3way, &width); + + return entries; +} + +struct freq * +freq_hmap_extract (struct hmap *hmap) +{ + struct freq *freqs, *f; + size_t n_freqs; + size_t i; + + n_freqs = hmap_count (hmap); + freqs = xnmalloc (n_freqs, sizeof *freqs); + i = 0; + HMAP_FOR_EACH (f, struct freq, node, hmap) + freqs[i++] = *f; + assert (i == n_freqs); + + return freqs; +} +