/* src/toolbox/hashtable.h - functions for internal hashtables Copyright (C) 1996-2005, 2006, 2008 CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO This file is part of CACAO. 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, 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. */ #ifndef _HASHTABLE_H #define _HASHTABLE_H /* forward typedefs ***********************************************************/ typedef struct hashtable hashtable; #include "config.h" #include "vm/types.h" #include "threads/mutex.hpp" #include "vm/global.h" #include "vm/utf8.h" /* data structures for hashtables ******************************************** All utf-symbols, javastrings and classes are stored in global hashtables, so every symbol exists only once. Equal symbols have identical pointers. The functions for adding hashtable elements search the table for the element with the specified name/text and return it on success. Otherwise a new hashtable element is created. The hashtables use external linking for handling collisions. The hashtable structure contains a pointer to the array of hashtable slots. The number of hashtable slots and therefore the size of this array is specified by the element of hashtable structure. contains the number of all hashtable elements stored in the table, including those in the external chains. The hashtable element structures (utf, literalstring, classinfo) contain both a pointer to the next hashtable element as a link for the external hash chain and the key of the element. The key is computed from the text of the string or the classname by using up to 8 characters. If the number of entries in the hashtable exceeds twice the size of the hashtableslot-array it is supposed that the average length of the external chains has reached a value beyond 2. Therefore the functions for adding hashtable elements (utf_new, class_new, literalstring_new) double the hashtableslot-array. In this restructuring process all elements have to be inserted into the new hashtable and new external chains must be built. Example for the layout of a hashtable: hashtable.ptr-->+-------------------+ | | ... | | +-------------------+ +-------------------+ +-------------------+ | hashtable element |-->| hashtable element |-->| hashtable element |-->NULL +-------------------+ +-------------------+ +-------------------+ | hashtable element | +-------------------+ +-------------------+ | hashtable element |-->| hashtable element |-->NULL +-------------------+ +-------------------+ | hashtable element |-->NULL +-------------------+ | | ... | | +-------------------+ */ /* hashtable ******************************************************************/ struct hashtable { #if defined(ENABLE_THREADS) Mutex *mutex; /* required for locking */ #endif u4 size; /* current size of the hashtable */ u4 entries; /* number of entries in the table */ void **ptr; /* pointer to hashtable */ }; /* function prototypes ********************************************************/ #ifdef __cplusplus extern "C" { #endif /* create hashtable */ void hashtable_create(hashtable *hash, u4 size); /* creates and resizes a hashtable */ hashtable *hashtable_resize(hashtable *hash, u4 size); /* frees a hashtable */ void hashtable_free(hashtable *hash); #ifdef __cplusplus } #endif #endif /* _HASHTABLE_H */ /* * These are local overrides for various environment variables in Emacs. * Please do not remove this and leave it at the end of the file, where * Emacs will automagically detect them. * --------------------------------------------------------------------- * Local variables: * mode: c * indent-tabs-mode: t * c-basic-offset: 4 * tab-width: 4 * End: */