X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fhash.h;fp=src%2Flibpspp%2Fhash.h;h=e426483aaf10595f0a534098a36b98ade4ad18e8;hb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;hp=0000000000000000000000000000000000000000;hpb=c514f5f05cc4f060959c392a0eb3e9f046e919d2;p=pspp-builds.git diff --git a/src/libpspp/hash.h b/src/libpspp/hash.h new file mode 100644 index 00000000..e426483a --- /dev/null +++ b/src/libpspp/hash.h @@ -0,0 +1,83 @@ +/* PSPP - computes sample statistics. + Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. + Written by Ben Pfaff . + + 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 the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ + +#if !hash_h +#define hash_h 1 + +#include + +typedef int hsh_compare_func (const void *, const void *, void *aux); +typedef unsigned hsh_hash_func (const void *, void *aux); +typedef void hsh_free_func (void *, void *aux); + +/* Hash table iterator (opaque). */ +struct hsh_iterator + { + size_t next; /* Index of next entry. */ + }; + +/* Hash functions. */ +unsigned hsh_hash_bytes (const void *, size_t); +unsigned hsh_hash_string (const char *); +unsigned hsh_hash_case_string (const char *); +unsigned hsh_hash_int (int); +unsigned hsh_hash_double (double); + +/* Hash tables. */ +struct hsh_table *hsh_create (int m, hsh_compare_func *, + hsh_hash_func *, hsh_free_func *, + void *aux); +void hsh_clear (struct hsh_table *); +void hsh_destroy (struct hsh_table *); +void *const *hsh_sort (struct hsh_table *); +void *const *hsh_data (struct hsh_table *); +void **hsh_sort_copy (struct hsh_table *); +void **hsh_data_copy (struct hsh_table *); + +/* Search and insertion. */ +void **hsh_probe (struct hsh_table *, const void *); +void *hsh_insert (struct hsh_table *, void *); +void *hsh_replace (struct hsh_table *, void *); +void *hsh_find (struct hsh_table *, const void *); +int hsh_delete (struct hsh_table *, const void *); + +/* Iteration. */ +void *hsh_first (struct hsh_table *, struct hsh_iterator *); +void *hsh_next (struct hsh_table *, struct hsh_iterator *); + +/* Search and insertion with assertion. */ +#if GLOBAL_DEBUGGING +void hsh_force_insert (struct hsh_table *, void *); +void *hsh_force_find (struct hsh_table *, const void *); +void hsh_force_delete (struct hsh_table *, const void *); +#else +#define hsh_force_insert(A, B) ((void) (*hsh_probe (A, B) = B)) +#define hsh_force_find(A, B) (hsh_find (A, B)) +#define hsh_force_delete(A, B) ((void) hsh_delete (A, B)) +#endif + +/* Number of entries in hash table H. */ +size_t hsh_count (struct hsh_table *); + +/* Debugging. */ +#if GLOBAL_DEBUGGING +void hsh_dump (struct hsh_table *); +#endif + +#endif /* hash_h */