/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
+ * Copyright (C) 1996-2009 Michael R. Elkins <me@mutt.org>
*
* 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
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
+#include <ctype.h>
#include "mutt.h"
#define SOMEPRIME 149711
-unsigned int hash_string (const unsigned char *s, unsigned int n)
+static unsigned int hash_string (const unsigned char *s, unsigned int n)
{
unsigned int h = 0;
return h;
}
-HASH *hash_create (int nelem)
+static unsigned int hash_case_string (const unsigned char *s, unsigned int n)
+{
+ unsigned int h = 0;
+
+ while (*s)
+ h += (h << 7) + tolower (*s++);
+ h = (h * SOMEPRIME) % n;
+
+ return h;
+}
+
+HASH *hash_create (int nelem, int lower)
{
HASH *table = safe_malloc (sizeof (HASH));
if (nelem == 0)
nelem = 2;
table->nelem = nelem;
table->table = safe_calloc (nelem, sizeof (struct hash_elem *));
+ if (lower)
+ {
+ table->hash_string = hash_case_string;
+ table->cmp_string = mutt_strcasecmp;
+ }
+ else
+ {
+ table->hash_string = hash_string;
+ table->cmp_string = mutt_strcmp;
+ }
return table;
}
int hash_insert (HASH * table, const char *key, void *data, int allow_dup)
{
struct hash_elem *ptr;
- int h;
+ unsigned int h;
ptr = (struct hash_elem *) safe_malloc (sizeof (struct hash_elem));
- h = hash_string ((unsigned char *) key, table->nelem);
+ h = table->hash_string ((unsigned char *) key, table->nelem);
ptr->key = key;
ptr->data = data;
for (tmp = table->table[h], last = NULL; tmp; last = tmp, tmp = tmp->next)
{
- r = mutt_strcmp (tmp->key, key);
+ r = table->cmp_string (tmp->key, key);
if (r == 0)
{
FREE (&ptr);
struct hash_elem *ptr = table->table[hash];
for (; ptr; ptr = ptr->next)
{
- if (mutt_strcmp (key, ptr->key) == 0)
+ if (table->cmp_string (key, ptr->key) == 0)
return (ptr->data);
}
return NULL;
while (ptr)
{
if ((data == ptr->data || !data)
- && mutt_strcmp (ptr->key, key) == 0)
+ && table->cmp_string (ptr->key, key) == 0)
{
*last = ptr->next;
if (destroy)
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
+ * Copyright (C) 1996-2009 Michael R. Elkins <me@mutt.org>
*
* 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
{
int nelem;
struct hash_elem **table;
+ unsigned int (*hash_string)(const unsigned char *, unsigned int);
+ int (*cmp_string)(const char *, const char *);
}
HASH;
-#define hash_find(table, key) hash_find_hash(table, hash_string ((unsigned char *)key, table->nelem), key)
+#define hash_find(table, key) hash_find_hash(table, table->hash_string ((unsigned char *)key, table->nelem), key)
-#define hash_delete(table,key,data,destroy) hash_delete_hash(table, hash_string ((unsigned char *)key, table->nelem), key, data, destroy)
+#define hash_delete(table,key,data,destroy) hash_delete_hash(table, table->hash_string ((unsigned char *)key, table->nelem), key, data, destroy)
-HASH *hash_create (int nelem);
-unsigned int hash_string (const unsigned char *s, unsigned int n);
+HASH *hash_create (int nelem, int lower);
int hash_insert (HASH * table, const char *key, void *data, int allow_dup);
void *hash_find_hash (const HASH * table, int hash, const char *key);
void hash_delete_hash (HASH * table, int hash, const char *key, const void *data,
err.data = error;
err.dsize = sizeof (error);
- Groups = hash_create (1031);
- ReverseAlias = hash_create (1031);
+ Groups = hash_create (1031, 0);
+ ReverseAlias = hash_create (1031, 1);
mutt_menu_init ();
* of each message we scanned. This is used in the loop over the
* existing messages below to do some correlation.
*/
- fnames = hash_create (1031);
+ fnames = hash_create (1031, 0);
for (p = md; p; p = p->next)
{
mhs_free_sequences (&mhs);
/* check for modifications and adjust flags */
- fnames = hash_create (1031);
+ fnames = hash_create (1031, 0);
for (p = md; p; p = p->next)
hash_insert (fnames, p->h->path, p, 0);
{
struct hash_elem *ptr;
THREAD *tmp, *last = NULL;
- int hash;
+ unsigned int hash;
LIST *subjects = NULL, *oldlist;
time_t date = 0;
while (subjects)
{
- hash = hash_string ((unsigned char *) subjects->data,
- ctx->subj_hash->nelem);
+ hash = ctx->subj_hash->hash_string ((unsigned char *) subjects->data,
+ ctx->subj_hash->nelem);
for (ptr = ctx->subj_hash->table[hash]; ptr; ptr = ptr->next)
{
tmp = ((HEADER *) ptr->data)->thread;
init = 1;
if (init)
- ctx->thread_hash = hash_create (ctx->msgcount * 2);
+ ctx->thread_hash = hash_create (ctx->msgcount * 2, 0);
/* we want a quick way to see if things are actually attached to the top of the
* thread tree or if they're just dangling, so we attach everything to a top
HEADER *hdr;
HASH *hash;
- hash = hash_create (ctx->msgcount * 2);
+ hash = hash_create (ctx->msgcount * 2, 0);
for (i = 0; i < ctx->msgcount; i++)
{
HEADER *hdr;
HASH *hash;
- hash = hash_create (ctx->msgcount * 2);
+ hash = hash_create (ctx->msgcount * 2, 0);
for (i = 0; i < ctx->msgcount; i++)
{