2000-01-04 23:41:21 -05:00
|
|
|
/* This is a public domain general purpose hash table package written by Peter Moore @ UCB. */
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2002-05-29 01:20:39 -04:00
|
|
|
/* static char sccsid[] = "@(#) st.c 5.1 89/12/14 Crucible"; */
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdio.h>
|
2002-03-22 02:26:42 -05:00
|
|
|
#include <stdlib.h>
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
#include <string.h>
|
1998-01-16 07:13:05 -05:00
|
|
|
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-14 22:18:08 -05:00
|
|
|
#ifdef _WIN32
|
1999-08-13 01:45:20 -04:00
|
|
|
#include <malloc.h>
|
|
|
|
#endif
|
|
|
|
|
* ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, st.c, st.h, utf8.c: imported Oni Guruma 3.5.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-28 10:21:48 -05:00
|
|
|
#ifdef NOT_RUBY
|
|
|
|
#include "regint.h"
|
|
|
|
#else
|
|
|
|
#ifdef RUBY_PLATFORM
|
|
|
|
#define xmalloc ruby_xmalloc
|
|
|
|
#define xcalloc ruby_xcalloc
|
|
|
|
#define xrealloc ruby_xrealloc
|
|
|
|
#define xfree ruby_xfree
|
|
|
|
|
|
|
|
void *xmalloc(long);
|
|
|
|
void *xcalloc(long, long);
|
|
|
|
void *xrealloc(void *, long);
|
|
|
|
void xfree(void *);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "st.h"
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
typedef struct st_table_entry st_table_entry;
|
|
|
|
|
|
|
|
struct st_table_entry {
|
|
|
|
unsigned int hash;
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
st_data_t key;
|
|
|
|
st_data_t record;
|
1999-01-19 23:59:39 -05:00
|
|
|
st_table_entry *next;
|
|
|
|
};
|
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
#define ST_DEFAULT_MAX_DENSITY 5
|
|
|
|
#define ST_DEFAULT_INIT_TABLE_SIZE 11
|
|
|
|
|
|
|
|
/*
|
|
|
|
* DEFAULT_MAX_DENSITY is the default for the largest we allow the
|
|
|
|
* average number of items per bin before increasing the number of
|
|
|
|
* bins
|
|
|
|
*
|
|
|
|
* DEFAULT_INIT_TABLE_SIZE is the default for the number of bins
|
|
|
|
* allocated initially
|
|
|
|
*
|
|
|
|
*/
|
* ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, st.c, st.h, utf8.c: imported Oni Guruma 3.5.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-28 10:21:48 -05:00
|
|
|
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
static int numcmp(long, long);
|
|
|
|
static int numhash(long);
|
1998-01-16 07:13:05 -05:00
|
|
|
static struct st_hash_type type_numhash = {
|
|
|
|
numcmp,
|
|
|
|
numhash,
|
* ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, st.c, st.h, utf8.c: imported Oni Guruma 3.5.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-28 10:21:48 -05:00
|
|
|
st_nothing_key_free,
|
|
|
|
st_nothing_key_clone
|
1998-01-16 07:13:05 -05:00
|
|
|
};
|
|
|
|
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
/* extern int strcmp(const char *, const char *); */
|
|
|
|
static int strhash(const char *);
|
1998-01-16 07:13:05 -05:00
|
|
|
static struct st_hash_type type_strhash = {
|
2003-01-08 23:28:28 -05:00
|
|
|
strcmp,
|
|
|
|
strhash,
|
* ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, st.c, st.h, utf8.c: imported Oni Guruma 3.5.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-28 10:21:48 -05:00
|
|
|
st_nothing_key_free,
|
|
|
|
st_nothing_key_clone
|
1998-01-16 07:13:05 -05:00
|
|
|
};
|
|
|
|
|
* ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, st.c, st.h, utf8.c: imported Oni Guruma 3.5.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-28 10:21:48 -05:00
|
|
|
static int strend_cmp(st_strend_key*, st_strend_key*);
|
|
|
|
static int strend_hash(st_strend_key*);
|
|
|
|
static int strend_key_free(st_data_t key);
|
|
|
|
static st_data_t strend_key_clone(st_data_t x);
|
2000-05-15 22:46:57 -04:00
|
|
|
|
* ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, st.c, st.h, utf8.c: imported Oni Guruma 3.5.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-28 10:21:48 -05:00
|
|
|
static struct st_hash_type type_strend_hash = {
|
|
|
|
strend_cmp,
|
|
|
|
strend_hash,
|
|
|
|
strend_key_free,
|
|
|
|
strend_key_clone
|
|
|
|
};
|
2000-05-15 22:46:57 -04:00
|
|
|
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
static void rehash(st_table *);
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
#define alloc(type) (type*)xmalloc((unsigned)sizeof(type))
|
|
|
|
#define Calloc(n,s) (char*)xcalloc((n),(s))
|
|
|
|
|
2000-12-12 02:42:35 -05:00
|
|
|
#define EQUAL(table,x,y) ((x)==(y) || (*table->type->compare)((x),(y)) == 0)
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2000-12-12 02:42:35 -05:00
|
|
|
#define do_hash(key,table) (unsigned int)(*(table)->type->hash)((key))
|
2001-06-22 05:12:24 -04:00
|
|
|
#define do_hash_bin(key,table) (do_hash(key, table)%(table)->num_bins)
|
1999-01-19 23:59:39 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* MINSIZE is the minimum size of a dictionary.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define MINSIZE 8
|
|
|
|
|
|
|
|
/*
|
|
|
|
Table of prime numbers 2^n+a, 2<=n<=30.
|
|
|
|
*/
|
|
|
|
static long primes[] = {
|
|
|
|
8 + 3,
|
|
|
|
16 + 3,
|
|
|
|
32 + 5,
|
|
|
|
64 + 3,
|
|
|
|
128 + 3,
|
1999-10-13 02:44:42 -04:00
|
|
|
256 + 27,
|
|
|
|
512 + 9,
|
1999-01-19 23:59:39 -05:00
|
|
|
1024 + 9,
|
|
|
|
2048 + 5,
|
2002-01-16 04:25:59 -05:00
|
|
|
4096 + 3,
|
1999-01-19 23:59:39 -05:00
|
|
|
8192 + 27,
|
|
|
|
16384 + 43,
|
|
|
|
32768 + 3,
|
|
|
|
65536 + 45,
|
2002-01-16 04:25:59 -05:00
|
|
|
131072 + 29,
|
|
|
|
262144 + 3,
|
|
|
|
524288 + 21,
|
|
|
|
1048576 + 7,
|
|
|
|
2097152 + 17,
|
|
|
|
4194304 + 15,
|
|
|
|
8388608 + 9,
|
|
|
|
16777216 + 43,
|
|
|
|
33554432 + 35,
|
|
|
|
67108864 + 15,
|
|
|
|
134217728 + 29,
|
|
|
|
268435456 + 3,
|
|
|
|
536870912 + 11,
|
|
|
|
1073741824 + 85,
|
1999-01-19 23:59:39 -05:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
new_size(size)
|
|
|
|
int size;
|
|
|
|
{
|
2001-05-16 05:05:54 -04:00
|
|
|
int i;
|
1999-01-19 23:59:39 -05:00
|
|
|
|
2001-06-22 05:12:24 -04:00
|
|
|
#if 0
|
2000-02-24 22:51:23 -05:00
|
|
|
for (i=3; i<31; i++) {
|
|
|
|
if ((1<<i) > size) return 1<<i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
#else
|
2001-06-22 05:12:24 -04:00
|
|
|
int newsize;
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
for (i = 0, newsize = MINSIZE;
|
* ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, st.c, st.h, utf8.c: imported Oni Guruma 3.5.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-28 10:21:48 -05:00
|
|
|
i < (int )(sizeof(primes)/sizeof(primes[0]));
|
1999-01-19 23:59:39 -05:00
|
|
|
i++, newsize <<= 1)
|
|
|
|
{
|
|
|
|
if (newsize > size) return primes[i];
|
|
|
|
}
|
|
|
|
/* Ran out of polynomials */
|
|
|
|
return -1; /* should raise exception */
|
2000-02-23 00:23:12 -05:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-02-24 22:51:23 -05:00
|
|
|
#ifdef HASH_LOG
|
2000-02-23 00:23:12 -05:00
|
|
|
static int collision = 0;
|
|
|
|
static int init_st = 0;
|
|
|
|
|
|
|
|
static void
|
|
|
|
stat_col()
|
|
|
|
{
|
|
|
|
FILE *f = fopen("/tmp/col", "w");
|
|
|
|
fprintf(f, "collision: %d\n", collision);
|
|
|
|
fclose(f);
|
1999-01-19 23:59:39 -05:00
|
|
|
}
|
2000-02-24 22:51:23 -05:00
|
|
|
#endif
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
st_table*
|
|
|
|
st_init_table_with_size(type, size)
|
|
|
|
struct st_hash_type *type;
|
|
|
|
int size;
|
|
|
|
{
|
|
|
|
st_table *tbl;
|
|
|
|
|
2000-02-24 22:51:23 -05:00
|
|
|
#ifdef HASH_LOG
|
2000-02-23 00:23:12 -05:00
|
|
|
if (init_st == 0) {
|
|
|
|
init_st = 1;
|
|
|
|
atexit(stat_col);
|
|
|
|
}
|
2000-02-23 00:43:57 -05:00
|
|
|
#endif
|
2000-02-23 00:23:12 -05:00
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
size = new_size(size); /* round up to prime number */
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
tbl = alloc(st_table);
|
|
|
|
tbl->type = type;
|
|
|
|
tbl->num_entries = 0;
|
2002-02-28 01:53:33 -05:00
|
|
|
tbl->num_bins = size;
|
1998-01-16 07:13:05 -05:00
|
|
|
tbl->bins = (st_table_entry **)Calloc(size, sizeof(st_table_entry*));
|
1999-01-19 23:59:39 -05:00
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
return tbl;
|
|
|
|
}
|
|
|
|
|
|
|
|
st_table*
|
|
|
|
st_init_table(type)
|
|
|
|
struct st_hash_type *type;
|
|
|
|
{
|
|
|
|
return st_init_table_with_size(type, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
st_table*
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
st_init_numtable(void)
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
return st_init_table(&type_numhash);
|
|
|
|
}
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
st_table*
|
|
|
|
st_init_numtable_with_size(size)
|
|
|
|
int size;
|
|
|
|
{
|
|
|
|
return st_init_table_with_size(&type_numhash, size);
|
|
|
|
}
|
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
st_table*
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
st_init_strtable(void)
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
return st_init_table(&type_strhash);
|
|
|
|
}
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
st_table*
|
|
|
|
st_init_strtable_with_size(size)
|
|
|
|
int size;
|
|
|
|
{
|
|
|
|
return st_init_table_with_size(&type_strhash, size);
|
|
|
|
}
|
|
|
|
|
* ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, st.c, st.h, utf8.c: imported Oni Guruma 3.5.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-28 10:21:48 -05:00
|
|
|
st_table*
|
|
|
|
st_init_strend_table_with_size(size)
|
|
|
|
int size;
|
|
|
|
{
|
|
|
|
return st_init_table_with_size(&type_strend_hash, size);
|
|
|
|
}
|
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
void
|
|
|
|
st_free_table(table)
|
|
|
|
st_table *table;
|
|
|
|
{
|
|
|
|
register st_table_entry *ptr, *next;
|
|
|
|
int i;
|
|
|
|
|
2002-02-28 01:53:33 -05:00
|
|
|
for(i = 0; i < table->num_bins; i++) {
|
1998-01-16 07:13:05 -05:00
|
|
|
ptr = table->bins[i];
|
1999-01-19 23:59:39 -05:00
|
|
|
while (ptr != 0) {
|
1998-01-16 07:13:05 -05:00
|
|
|
next = ptr->next;
|
1999-01-19 23:59:39 -05:00
|
|
|
free(ptr);
|
1998-01-16 07:13:05 -05:00
|
|
|
ptr = next;
|
|
|
|
}
|
|
|
|
}
|
1999-01-19 23:59:39 -05:00
|
|
|
free(table->bins);
|
|
|
|
free(table);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
#define PTR_NOT_EQUAL(table, ptr, hash_val, key) \
|
1999-08-13 01:45:20 -04:00
|
|
|
((ptr) != 0 && (ptr->hash != (hash_val) || !EQUAL((table), (key), (ptr)->key)))
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2000-02-24 22:51:23 -05:00
|
|
|
#ifdef HASH_LOG
|
|
|
|
#define COLLISION collision++
|
|
|
|
#else
|
|
|
|
#define COLLISION
|
|
|
|
#endif
|
|
|
|
|
2002-04-25 09:57:01 -04:00
|
|
|
#define FIND_ENTRY(table, ptr, hash_val, bin_pos) do {\
|
|
|
|
bin_pos = hash_val%(table)->num_bins;\
|
|
|
|
ptr = (table)->bins[bin_pos];\
|
|
|
|
if (PTR_NOT_EQUAL(table, ptr, hash_val, key)) {\
|
|
|
|
COLLISION;\
|
|
|
|
while (PTR_NOT_EQUAL(table, ptr->next, hash_val, key)) {\
|
|
|
|
ptr = ptr->next;\
|
|
|
|
}\
|
1998-01-16 07:13:05 -05:00
|
|
|
ptr = ptr->next;\
|
|
|
|
}\
|
2002-04-25 09:57:01 -04:00
|
|
|
} while (0)
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
int
|
|
|
|
st_lookup(table, key, value)
|
|
|
|
st_table *table;
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
register st_data_t key;
|
|
|
|
st_data_t *value;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
1999-01-19 23:59:39 -05:00
|
|
|
unsigned int hash_val, bin_pos;
|
1998-01-16 07:13:05 -05:00
|
|
|
register st_table_entry *ptr;
|
|
|
|
|
|
|
|
hash_val = do_hash(key, table);
|
1999-01-19 23:59:39 -05:00
|
|
|
FIND_ENTRY(table, ptr, hash_val, bin_pos);
|
1998-01-16 07:13:05 -05:00
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
if (ptr == 0) {
|
1998-01-16 07:13:05 -05:00
|
|
|
return 0;
|
2001-05-02 00:22:21 -04:00
|
|
|
}
|
|
|
|
else {
|
1999-01-19 23:59:39 -05:00
|
|
|
if (value != 0) *value = ptr->record;
|
1998-01-16 07:13:05 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
* ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, st.c, st.h, utf8.c: imported Oni Guruma 3.5.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-28 10:21:48 -05:00
|
|
|
int
|
|
|
|
st_lookup_strend(table, str_key, end_key, value)
|
|
|
|
st_table *table;
|
|
|
|
unsigned char* str_key;
|
|
|
|
unsigned char* end_key;
|
|
|
|
st_data_t *value;
|
|
|
|
{
|
|
|
|
st_strend_key key;
|
|
|
|
|
|
|
|
key.s = (unsigned char* )str_key;
|
|
|
|
key.end = (unsigned char* )end_key;
|
|
|
|
|
|
|
|
return st_lookup(table, (st_data_t )(&key), value);
|
|
|
|
}
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
#define ADD_DIRECT(table, key, value, hash_val, bin_pos)\
|
2002-04-25 09:57:01 -04:00
|
|
|
do {\
|
1999-08-13 01:45:20 -04:00
|
|
|
st_table_entry *entry;\
|
2002-02-28 01:53:33 -05:00
|
|
|
if (table->num_entries/(table->num_bins) > ST_DEFAULT_MAX_DENSITY) {\
|
1998-01-16 07:13:05 -05:00
|
|
|
rehash(table);\
|
2001-06-22 05:12:24 -04:00
|
|
|
bin_pos = hash_val % table->num_bins;\
|
1998-01-16 07:13:05 -05:00
|
|
|
}\
|
|
|
|
\
|
1999-08-13 01:45:20 -04:00
|
|
|
entry = alloc(st_table_entry);\
|
1998-01-16 07:13:05 -05:00
|
|
|
\
|
1999-08-13 01:45:20 -04:00
|
|
|
entry->hash = hash_val;\
|
|
|
|
entry->key = key;\
|
|
|
|
entry->record = value;\
|
|
|
|
entry->next = table->bins[bin_pos];\
|
|
|
|
table->bins[bin_pos] = entry;\
|
1998-01-16 07:13:05 -05:00
|
|
|
table->num_entries++;\
|
2002-04-25 09:57:01 -04:00
|
|
|
} while (0)
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
int
|
|
|
|
st_insert(table, key, value)
|
|
|
|
register st_table *table;
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
register st_data_t key;
|
|
|
|
st_data_t value;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
1999-01-19 23:59:39 -05:00
|
|
|
unsigned int hash_val, bin_pos;
|
1998-01-16 07:13:05 -05:00
|
|
|
register st_table_entry *ptr;
|
|
|
|
|
|
|
|
hash_val = do_hash(key, table);
|
1999-01-19 23:59:39 -05:00
|
|
|
FIND_ENTRY(table, ptr, hash_val, bin_pos);
|
1998-01-16 07:13:05 -05:00
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
if (ptr == 0) {
|
|
|
|
ADD_DIRECT(table, key, value, hash_val, bin_pos);
|
1998-01-16 07:13:05 -05:00
|
|
|
return 0;
|
2001-05-02 00:22:21 -04:00
|
|
|
}
|
|
|
|
else {
|
1998-01-16 07:13:05 -05:00
|
|
|
ptr->record = value;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
* ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, st.c, st.h, utf8.c: imported Oni Guruma 3.5.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-28 10:21:48 -05:00
|
|
|
int
|
|
|
|
st_insert_strend(table, str_key, end_key, value)
|
|
|
|
st_table *table;
|
|
|
|
unsigned char* str_key;
|
|
|
|
unsigned char* end_key;
|
|
|
|
st_data_t value;
|
|
|
|
{
|
|
|
|
st_strend_key* key;
|
|
|
|
|
|
|
|
key = alloc(st_strend_key);
|
|
|
|
key->s = (unsigned char* )str_key;
|
|
|
|
key->end = (unsigned char* )end_key;
|
|
|
|
|
|
|
|
return st_insert(table, (st_data_t )key, value);
|
|
|
|
}
|
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
void
|
|
|
|
st_add_direct(table, key, value)
|
|
|
|
st_table *table;
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
st_data_t key;
|
|
|
|
st_data_t value;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
1999-01-19 23:59:39 -05:00
|
|
|
unsigned int hash_val, bin_pos;
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
hash_val = do_hash(key, table);
|
2001-06-22 05:12:24 -04:00
|
|
|
bin_pos = hash_val % table->num_bins;
|
1999-01-19 23:59:39 -05:00
|
|
|
ADD_DIRECT(table, key, value, hash_val, bin_pos);
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
* ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, st.c, st.h, utf8.c: imported Oni Guruma 3.5.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-28 10:21:48 -05:00
|
|
|
void
|
|
|
|
st_add_direct_strend(table, str_key, end_key, value)
|
|
|
|
st_table *table;
|
|
|
|
unsigned char* str_key;
|
|
|
|
unsigned char* end_key;
|
|
|
|
st_data_t value;
|
|
|
|
{
|
|
|
|
st_strend_key* key;
|
|
|
|
|
|
|
|
key = alloc(st_strend_key);
|
|
|
|
key->s = (unsigned char* )str_key;
|
|
|
|
key->end = (unsigned char* )end_key;
|
|
|
|
st_add_direct(table, (st_data_t )key, value);
|
|
|
|
}
|
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
static void
|
|
|
|
rehash(table)
|
|
|
|
register st_table *table;
|
|
|
|
{
|
1999-01-19 23:59:39 -05:00
|
|
|
register st_table_entry *ptr, *next, **new_bins;
|
|
|
|
int i, old_num_bins = table->num_bins, new_num_bins;
|
|
|
|
unsigned int hash_val;
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2000-02-24 22:51:23 -05:00
|
|
|
new_num_bins = new_size(old_num_bins+1);
|
1999-01-19 23:59:39 -05:00
|
|
|
new_bins = (st_table_entry**)Calloc(new_num_bins, sizeof(st_table_entry*));
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2002-02-28 01:53:33 -05:00
|
|
|
for(i = 0; i < old_num_bins; i++) {
|
1999-01-19 23:59:39 -05:00
|
|
|
ptr = table->bins[i];
|
|
|
|
while (ptr != 0) {
|
1998-01-16 07:13:05 -05:00
|
|
|
next = ptr->next;
|
2001-06-22 05:12:24 -04:00
|
|
|
hash_val = ptr->hash % new_num_bins;
|
1999-01-19 23:59:39 -05:00
|
|
|
ptr->next = new_bins[hash_val];
|
|
|
|
new_bins[hash_val] = ptr;
|
1998-01-16 07:13:05 -05:00
|
|
|
ptr = next;
|
|
|
|
}
|
|
|
|
}
|
1999-01-19 23:59:39 -05:00
|
|
|
free(table->bins);
|
|
|
|
table->num_bins = new_num_bins;
|
|
|
|
table->bins = new_bins;
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
st_table*
|
|
|
|
st_copy(old_table)
|
|
|
|
st_table *old_table;
|
|
|
|
{
|
|
|
|
st_table *new_table;
|
1999-08-13 01:45:20 -04:00
|
|
|
st_table_entry *ptr, *entry;
|
2002-02-28 01:53:33 -05:00
|
|
|
int i, num_bins = old_table->num_bins;
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
new_table = alloc(st_table);
|
1999-01-19 23:59:39 -05:00
|
|
|
if (new_table == 0) {
|
|
|
|
return 0;
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
*new_table = *old_table;
|
|
|
|
new_table->bins = (st_table_entry**)
|
|
|
|
Calloc((unsigned)num_bins, sizeof(st_table_entry*));
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
if (new_table->bins == 0) {
|
|
|
|
free(new_table);
|
|
|
|
return 0;
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
1999-08-13 01:45:20 -04:00
|
|
|
for(i = 0; i < num_bins; i++) {
|
1999-01-19 23:59:39 -05:00
|
|
|
new_table->bins[i] = 0;
|
1998-01-16 07:13:05 -05:00
|
|
|
ptr = old_table->bins[i];
|
1999-01-19 23:59:39 -05:00
|
|
|
while (ptr != 0) {
|
1999-08-13 01:45:20 -04:00
|
|
|
entry = alloc(st_table_entry);
|
|
|
|
if (entry == 0) {
|
1999-01-19 23:59:39 -05:00
|
|
|
free(new_table->bins);
|
|
|
|
free(new_table);
|
|
|
|
return 0;
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
1999-08-13 01:45:20 -04:00
|
|
|
*entry = *ptr;
|
* ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, st.c, st.h, utf8.c: imported Oni Guruma 3.5.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-28 10:21:48 -05:00
|
|
|
entry->key = old_table->type->key_clone(ptr->key);
|
1999-08-13 01:45:20 -04:00
|
|
|
entry->next = new_table->bins[i];
|
|
|
|
new_table->bins[i] = entry;
|
1998-01-16 07:13:05 -05:00
|
|
|
ptr = ptr->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return new_table;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
st_delete(table, key, value)
|
|
|
|
register st_table *table;
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
register st_data_t *key;
|
|
|
|
st_data_t *value;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
1999-01-19 23:59:39 -05:00
|
|
|
unsigned int hash_val;
|
1998-01-16 07:13:05 -05:00
|
|
|
st_table_entry *tmp;
|
|
|
|
register st_table_entry *ptr;
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
hash_val = do_hash_bin(*key, table);
|
1998-01-16 07:13:05 -05:00
|
|
|
ptr = table->bins[hash_val];
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
if (ptr == 0) {
|
|
|
|
if (value != 0) *value = 0;
|
1998-01-16 07:13:05 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (EQUAL(table, *key, ptr->key)) {
|
|
|
|
table->bins[hash_val] = ptr->next;
|
|
|
|
table->num_entries--;
|
1999-01-19 23:59:39 -05:00
|
|
|
if (value != 0) *value = ptr->record;
|
1998-01-16 07:13:05 -05:00
|
|
|
*key = ptr->key;
|
1999-01-19 23:59:39 -05:00
|
|
|
free(ptr);
|
1998-01-16 07:13:05 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
for(; ptr->next != 0; ptr = ptr->next) {
|
1998-01-16 07:13:05 -05:00
|
|
|
if (EQUAL(table, ptr->next->key, *key)) {
|
|
|
|
tmp = ptr->next;
|
|
|
|
ptr->next = ptr->next->next;
|
|
|
|
table->num_entries--;
|
1999-01-19 23:59:39 -05:00
|
|
|
if (value != 0) *value = tmp->record;
|
1998-01-16 07:13:05 -05:00
|
|
|
*key = tmp->key;
|
1999-01-19 23:59:39 -05:00
|
|
|
free(tmp);
|
1998-01-16 07:13:05 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
st_delete_safe(table, key, value, never)
|
|
|
|
register st_table *table;
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
register st_data_t *key;
|
|
|
|
st_data_t *value;
|
|
|
|
st_data_t never;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
1999-01-19 23:59:39 -05:00
|
|
|
unsigned int hash_val;
|
1998-01-16 07:13:05 -05:00
|
|
|
register st_table_entry *ptr;
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
hash_val = do_hash_bin(*key, table);
|
1998-01-16 07:13:05 -05:00
|
|
|
ptr = table->bins[hash_val];
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
if (ptr == 0) {
|
|
|
|
if (value != 0) *value = 0;
|
1998-01-16 07:13:05 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-08-13 01:45:20 -04:00
|
|
|
for(; ptr != 0; ptr = ptr->next) {
|
2000-03-23 03:37:35 -05:00
|
|
|
if ((ptr->key != never) && EQUAL(table, ptr->key, *key)) {
|
1998-01-16 07:13:05 -05:00
|
|
|
table->num_entries--;
|
|
|
|
*key = ptr->key;
|
1999-01-19 23:59:39 -05:00
|
|
|
if (value != 0) *value = ptr->record;
|
1998-01-16 07:13:05 -05:00
|
|
|
ptr->key = ptr->record = never;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-08-13 01:45:20 -04:00
|
|
|
static int
|
|
|
|
delete_never(key, value, never)
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
st_data_t key, value, never;
|
1999-08-13 01:45:20 -04:00
|
|
|
{
|
|
|
|
if (value == never) return ST_DELETE;
|
|
|
|
return ST_CONTINUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
st_cleanup_safe(table, never)
|
|
|
|
st_table *table;
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
st_data_t never;
|
1999-08-13 01:45:20 -04:00
|
|
|
{
|
|
|
|
int num_entries = table->num_entries;
|
|
|
|
|
|
|
|
st_foreach(table, delete_never, never);
|
|
|
|
table->num_entries = num_entries;
|
|
|
|
}
|
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
void
|
|
|
|
st_foreach(table, func, arg)
|
|
|
|
st_table *table;
|
2003-01-08 23:28:28 -05:00
|
|
|
int (*func)();
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
st_data_t arg;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
st_table_entry *ptr, *last, *tmp;
|
|
|
|
enum st_retval retval;
|
|
|
|
int i;
|
|
|
|
|
2002-02-28 01:53:33 -05:00
|
|
|
for(i = 0; i < table->num_bins; i++) {
|
1999-01-19 23:59:39 -05:00
|
|
|
last = 0;
|
|
|
|
for(ptr = table->bins[i]; ptr != 0;) {
|
2004-09-22 00:48:52 -04:00
|
|
|
retval = (*func)(ptr->key, ptr->record, arg, 0);
|
1998-01-16 07:13:05 -05:00
|
|
|
switch (retval) {
|
2004-09-22 00:48:52 -04:00
|
|
|
case ST_CHECK: /* check if hash is modified during iteration */
|
|
|
|
tmp = 0;
|
|
|
|
if (i < table->num_bins) {
|
|
|
|
for (tmp = table->bins[i]; tmp; tmp=tmp->next) {
|
|
|
|
if (tmp == ptr) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!tmp) {
|
|
|
|
/* call func with error notice */
|
|
|
|
retval = (*func)(0, 0, arg, 1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* fall through */
|
1998-01-16 07:13:05 -05:00
|
|
|
case ST_CONTINUE:
|
|
|
|
last = ptr;
|
|
|
|
ptr = ptr->next;
|
|
|
|
break;
|
|
|
|
case ST_STOP:
|
|
|
|
return;
|
|
|
|
case ST_DELETE:
|
|
|
|
tmp = ptr;
|
1999-01-19 23:59:39 -05:00
|
|
|
if (last == 0) {
|
1998-01-16 07:13:05 -05:00
|
|
|
table->bins[i] = ptr->next;
|
2001-05-02 00:22:21 -04:00
|
|
|
}
|
|
|
|
else {
|
1998-01-16 07:13:05 -05:00
|
|
|
last->next = ptr->next;
|
|
|
|
}
|
|
|
|
ptr = ptr->next;
|
* ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, st.c, st.h, utf8.c: imported Oni Guruma 3.5.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-28 10:21:48 -05:00
|
|
|
table->type->key_free(tmp->key);
|
1999-01-19 23:59:39 -05:00
|
|
|
free(tmp);
|
1998-01-16 07:13:05 -05:00
|
|
|
table->num_entries--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1999-01-19 23:59:39 -05:00
|
|
|
strhash(string)
|
* st.h, st.c: Introduce new conventional typedef's, st_data_t,
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
implicit declarations. On such platforms as IA64, int argument
values are NOT automatically promoted to long (64bit) values, so
explicit declarations are mandatory for those functions that
take long values or pointers. This fixes miniruby's coredump on
FreeBSD/IA64.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-01-06 10:55:43 -05:00
|
|
|
register const char *string;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
register int c;
|
|
|
|
|
2000-02-24 22:51:23 -05:00
|
|
|
#ifdef HASH_ELFHASH
|
|
|
|
register unsigned int h = 0, g;
|
|
|
|
|
|
|
|
while ((c = *string++) != '\0') {
|
|
|
|
h = ( h << 4 ) + c;
|
|
|
|
if ( g = h & 0xF0000000 )
|
|
|
|
h ^= g >> 24;
|
|
|
|
h &= ~g;
|
|
|
|
}
|
|
|
|
return h;
|
|
|
|
#elif HASH_PERL
|
|
|
|
register int val = 0;
|
|
|
|
|
|
|
|
while ((c = *string++) != '\0') {
|
2003-11-01 11:16:31 -05:00
|
|
|
val += c;
|
|
|
|
val += (val << 10);
|
|
|
|
val ^= (val >> 6);
|
2000-02-24 22:51:23 -05:00
|
|
|
}
|
2003-11-01 11:16:31 -05:00
|
|
|
val += (val << 3);
|
|
|
|
val ^= (val >> 11);
|
2000-02-24 22:51:23 -05:00
|
|
|
|
2003-11-01 11:16:31 -05:00
|
|
|
return val + (val << 15);
|
2000-02-24 22:51:23 -05:00
|
|
|
#else
|
|
|
|
register int val = 0;
|
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
while ((c = *string++) != '\0') {
|
|
|
|
val = val*997 + c;
|
|
|
|
}
|
|
|
|
|
2000-02-24 22:51:23 -05:00
|
|
|
return val + (val>>5);
|
|
|
|
#endif
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
numcmp(x, y)
|
2000-07-15 09:37:03 -04:00
|
|
|
long x, y;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
return x != y;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1999-01-19 23:59:39 -05:00
|
|
|
numhash(n)
|
2000-07-15 09:37:03 -04:00
|
|
|
long n;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
2001-06-22 05:12:24 -04:00
|
|
|
return n;
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
* ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, st.c, st.h, utf8.c: imported Oni Guruma 3.5.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-28 10:21:48 -05:00
|
|
|
|
|
|
|
extern int
|
|
|
|
st_nothing_key_free(st_data_t key) { return 0; }
|
|
|
|
|
|
|
|
extern st_data_t
|
|
|
|
st_nothing_key_clone(st_data_t x) { return x; }
|
|
|
|
|
|
|
|
static int strend_cmp(st_strend_key* x, st_strend_key* y)
|
|
|
|
{
|
|
|
|
unsigned char *p, *q;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
if ((x->end - x->s) != (y->end - y->s))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
p = x->s;
|
|
|
|
q = y->s;
|
|
|
|
while (p < x->end) {
|
|
|
|
c = (int )*p - (int )*q;
|
|
|
|
if (c != 0) return c;
|
|
|
|
|
|
|
|
p++; q++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int strend_hash(st_strend_key* x)
|
|
|
|
{
|
|
|
|
int val;
|
|
|
|
unsigned char *p;
|
|
|
|
|
|
|
|
val = 0;
|
|
|
|
p = x->s;
|
|
|
|
while (p < x->end) {
|
|
|
|
val = val * 997 + (int )*p++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return val + (val >> 5);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int strend_key_free(st_data_t x)
|
|
|
|
{
|
|
|
|
xfree((void* )x);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static st_data_t strend_key_clone(st_data_t x)
|
|
|
|
{
|
|
|
|
st_strend_key* new_key;
|
|
|
|
st_strend_key* key = (st_strend_key* )x;
|
|
|
|
|
|
|
|
new_key = alloc(st_strend_key);
|
|
|
|
*new_key = *key;
|
|
|
|
return (st_data_t )new_key;
|
|
|
|
}
|