/****************************************************************************** * * Project: MapServer * Purpose: Implement hashTableObj class. * Author: Sean Gillies, sgillies@frii.com * ****************************************************************************** * Copyright (c) 1996-2005 Regents of the University of Minnesota. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies of this Software or works derived from this Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. ****************************************************************************** * * $Log: maphash.c,v $ * Revision 1.16 2005/06/14 16:03:33 dan * Updated copyright date to 2005 * * Revision 1.15 2004/11/21 00:16:22 sean * prevent array lookup of NULL hash table items, simplify msFreeHashTable (bug 1077). * * Revision 1.14 2004/10/21 04:30:54 frank * Added standardized headers. Added MS_CVSID(). * */ #include #include "map.h" #include "maphash.h" MS_CVSID("$Id: maphash.c,v 1.16 2005/06/14 16:03:33 dan Exp $") static unsigned hash(const char *key) { unsigned hashval; for(hashval=0; *key!='\0'; key++) hashval = tolower(*key) + 31 * hashval; return(hashval % MS_HASHSIZE); } hashTableObj *msCreateHashTable() { int i; hashTableObj *table; table = (hashTableObj *) malloc(sizeof(hashTableObj)); table->items = (struct hashObj **) malloc(sizeof(struct hashObj *)*MS_HASHSIZE); for (i=0; iitems[i] = NULL; table->numitems = 0; return table; } int initHashTable( hashTableObj *table ) { int i; table->items = (struct hashObj **) malloc(sizeof(struct hashObj *)*MS_HASHSIZE); if (!table->items) { msSetError(MS_MEMERR, "Failed to allocate memory for items", "initHashTable"); return MS_FAILURE; } for (i=0; iitems[i] = NULL; table->numitems = 0; return MS_SUCCESS; } void msFreeHashTable( hashTableObj *table ) { msFreeHashItems(table); free(table); table = NULL; } void msFreeHashItems( hashTableObj *table ) { int i; struct hashObj *tp=NULL; struct hashObj *prev_tp=NULL; if (table) { if (table->items) { for (i=0; iitems[i] != NULL) { for (tp=table->items[i]; tp!=NULL; prev_tp=tp,tp=tp->next,free(prev_tp)) { free(tp->key); free(tp->data); } } if (tp) free(tp); } free(table->items); table->items = NULL; } else { msSetError(MS_HASHERR, "Table has no items", "msFreeHashItems()"); } } else { msSetError(MS_HASHERR, "Can't free NULL table", "msFreeHashItems()"); } } struct hashObj *msInsertHashTable(hashTableObj *table, const char *key, const char *value) { struct hashObj *tp; unsigned hashval; if (!table || !key || !value) { msSetError(MS_HASHERR, "Invalid hash table or key", "msInsertHashTable"); return NULL; } for (tp=table->items[hash(key)]; tp!=NULL; tp=tp->next) if(strcasecmp(key, tp->key) == 0) break; if (tp == NULL) { /* not found */ tp = (struct hashObj *) malloc(sizeof(*tp)); if ((tp == NULL) || (tp->key = strdup(key)) == NULL) { msSetError(MS_HASHERR, "No such hash entry", "msInsertHashTable"); return NULL; } hashval = hash(key); tp->next = table->items[hashval]; table->items[hashval] = tp; table->numitems++; } else { free(tp->data); } if ((tp->data = strdup(value)) == NULL) return NULL; return tp; } char *msLookupHashTable(hashTableObj *table, const char *key) { struct hashObj *tp; if (!table || !key) { return(NULL); } for (tp=table->items[hash(key)]; tp!=NULL; tp=tp->next) if (strcasecmp(key, tp->key) == 0) return(tp->data); return NULL; } int msRemoveHashTable(hashTableObj *table, const char *key) { struct hashObj *tp; struct hashObj *prev_tp=NULL; int success = 0; if (!table || !key) { msSetError(MS_HASHERR, "No hash table", "msRemoveHashTable"); return MS_FAILURE; } tp=table->items[hash(key)]; if (!tp) { msSetError(MS_HASHERR, "No such hash entry", "msRemoveHashTable"); return MS_FAILURE; } prev_tp = NULL; while (tp != NULL) { if (strcasecmp(key, tp->key) == 0) { if (prev_tp) { prev_tp->next = tp->next; free(tp); break; } else { table->items[hash(key)] = NULL; free(tp); break; } success =1; } prev_tp = tp; tp = tp->next; } if (success) { table->numitems--; return MS_SUCCESS; } return MS_FAILURE; } const char *msFirstKeyFromHashTable( hashTableObj *table ) { int hash_index; if (!table) { msSetError(MS_HASHERR, "No hash table", "msFirstKeyFromHashTable"); return NULL; } for (hash_index = 0; hash_index < MS_HASHSIZE; hash_index++ ) { if (table->items[hash_index] != NULL ) return table->items[hash_index]->key; } return NULL; } const char *msNextKeyFromHashTable( hashTableObj *table, const char *lastKey ) { int hash_index; struct hashObj *link; if (!table) { msSetError(MS_HASHERR, "No hash table", "msNextKeyFromHashTable"); return NULL; } if ( lastKey == NULL ) return msFirstKeyFromHashTable( table ); hash_index = hash(lastKey); for ( link = table->items[hash_index]; link != NULL && strcasecmp(lastKey,link->key) != 0; link = link->next ) {} if ( link != NULL && link->next != NULL ) return link->next->key; while ( ++hash_index < MS_HASHSIZE ) { if ( table->items[hash_index] != NULL ) return table->items[hash_index]->key; } return NULL; }