2016-11-06 19:45:00 -05:00
|
|
|
/* This is a public domain general purpose hash table package
|
|
|
|
originally written by Peter Moore @ UCB.
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2020-03-11 03:43:12 -04:00
|
|
|
The hash table data structures were redesigned and the package was
|
2016-11-06 19:45:00 -05:00
|
|
|
rewritten by Vladimir Makarov <vmakarov@redhat.com>. */
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2007-06-09 23:06:15 -04:00
|
|
|
#ifndef RUBY_ST_H
|
|
|
|
#define RUBY_ST_H 1
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2007-06-09 23:06:15 -04:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#if 0
|
|
|
|
} /* satisfy cc-mode */
|
|
|
|
#endif
|
|
|
|
#endif
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2008-12-23 00:19:27 -05:00
|
|
|
#include "ruby/defines.h"
|
2008-12-10 21:11:09 -05:00
|
|
|
|
2013-04-05 06:29:38 -04:00
|
|
|
RUBY_SYMBOL_EXPORT_BEGIN
|
2010-07-21 17:38:25 -04:00
|
|
|
|
2006-07-09 21:08:15 -04:00
|
|
|
#if SIZEOF_LONG == SIZEOF_VOIDP
|
2003-07-27 13:20:29 -04:00
|
|
|
typedef unsigned long st_data_t;
|
2006-07-09 21:08:15 -04:00
|
|
|
#elif SIZEOF_LONG_LONG == SIZEOF_VOIDP
|
|
|
|
typedef unsigned LONG_LONG st_data_t;
|
|
|
|
#else
|
2011-12-28 11:56:16 -05:00
|
|
|
# error ---->> st.c requires sizeof(void*) == sizeof(long) or sizeof(LONG_LONG) to be compiled. <<----
|
2006-07-09 21:08:15 -04:00
|
|
|
#endif
|
2003-05-20 02:48:04 -04:00
|
|
|
#define ST_DATA_T_DEFINED
|
* 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
|
|
|
|
2007-08-31 22:14:40 -04:00
|
|
|
#ifndef CHAR_BIT
|
|
|
|
# ifdef HAVE_LIMITS_H
|
|
|
|
# include <limits.h>
|
|
|
|
# else
|
|
|
|
# define CHAR_BIT 8
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifndef _
|
|
|
|
# define _(args) args
|
|
|
|
#endif
|
|
|
|
#ifndef ANYARGS
|
|
|
|
# ifdef __cplusplus
|
|
|
|
# define ANYARGS ...
|
|
|
|
# else
|
|
|
|
# define ANYARGS
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
typedef struct st_table st_table;
|
|
|
|
|
2009-09-08 09:10:04 -04:00
|
|
|
typedef st_data_t st_index_t;
|
2016-11-06 19:45:00 -05:00
|
|
|
|
|
|
|
/* Maximal value of unsigned integer type st_index_t. */
|
|
|
|
#define MAX_ST_INDEX_VAL (~(st_index_t) 0)
|
|
|
|
|
2007-08-31 22:14:40 -04:00
|
|
|
typedef int st_compare_func(st_data_t, st_data_t);
|
2009-09-08 09:10:04 -04:00
|
|
|
typedef st_index_t st_hash_func(st_data_t);
|
2007-08-31 22:14:40 -04:00
|
|
|
|
2009-11-04 02:06:13 -05:00
|
|
|
typedef char st_check_for_sizeof_st_index_t[SIZEOF_VOIDP == (int)sizeof(st_index_t) ? 1 : -1];
|
|
|
|
#define SIZEOF_ST_INDEX_T SIZEOF_VOIDP
|
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
struct st_hash_type {
|
2019-08-26 23:21:36 -04:00
|
|
|
int (*compare)(st_data_t, st_data_t); /* st_compare_func* */
|
|
|
|
st_index_t (*hash)(st_data_t); /* st_hash_func* */
|
1998-01-16 07:13:05 -05:00
|
|
|
};
|
|
|
|
|
2016-12-21 01:22:16 -05:00
|
|
|
#define ST_INDEX_BITS (SIZEOF_ST_INDEX_T * CHAR_BIT)
|
|
|
|
|
2013-11-27 11:07:10 -05:00
|
|
|
#if defined(HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR) && defined(HAVE_BUILTIN___BUILTIN_TYPES_COMPATIBLE_P)
|
|
|
|
# define ST_DATA_COMPATIBLE_P(type) \
|
|
|
|
__builtin_choose_expr(__builtin_types_compatible_p(type, st_data_t), 1, 0)
|
|
|
|
#else
|
|
|
|
# define ST_DATA_COMPATIBLE_P(type) 0
|
|
|
|
#endif
|
|
|
|
|
2016-11-06 19:45:00 -05:00
|
|
|
typedef struct st_table_entry st_table_entry;
|
|
|
|
|
|
|
|
struct st_table_entry; /* defined in st.c */
|
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
struct st_table {
|
2016-11-06 19:45:00 -05:00
|
|
|
/* Cached features of the table -- see st.c for more details. */
|
|
|
|
unsigned char entry_power, bin_power, size_ind;
|
|
|
|
/* How many times the table was rebuilt. */
|
|
|
|
unsigned int rebuilds_num;
|
2007-07-04 21:06:49 -04:00
|
|
|
const struct st_hash_type *type;
|
2016-11-06 19:45:00 -05:00
|
|
|
/* Number of entries currently in the table. */
|
|
|
|
st_index_t num_entries;
|
|
|
|
/* Array of bins used for access by keys. */
|
|
|
|
st_index_t *bins;
|
|
|
|
/* Start and bound index of entries in array entries.
|
|
|
|
entries_starts and entries_bound are in interval
|
|
|
|
[0,allocated_entries]. */
|
|
|
|
st_index_t entries_start, entries_bound;
|
|
|
|
/* Array of size 2^entry_power. */
|
|
|
|
st_table_entry *entries;
|
1998-01-16 07:13:05 -05:00
|
|
|
};
|
|
|
|
|
2011-04-12 07:54:28 -04:00
|
|
|
#define st_is_member(table,key) st_lookup((table),(key),(st_data_t *)0)
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2019-04-19 21:19:47 -04:00
|
|
|
enum st_retval {ST_CONTINUE, ST_STOP, ST_DELETE, ST_CHECK, ST_REPLACE};
|
2004-09-22 00:48:52 -04:00
|
|
|
|
2019-09-22 09:12:18 -04:00
|
|
|
st_table *rb_st_init_table(const struct st_hash_type *);
|
|
|
|
#define st_init_table rb_st_init_table
|
|
|
|
st_table *rb_st_init_table_with_size(const struct st_hash_type *, st_index_t);
|
|
|
|
#define st_init_table_with_size rb_st_init_table_with_size
|
|
|
|
st_table *rb_st_init_numtable(void);
|
|
|
|
#define st_init_numtable rb_st_init_numtable
|
|
|
|
st_table *rb_st_init_numtable_with_size(st_index_t);
|
|
|
|
#define st_init_numtable_with_size rb_st_init_numtable_with_size
|
|
|
|
st_table *rb_st_init_strtable(void);
|
|
|
|
#define st_init_strtable rb_st_init_strtable
|
|
|
|
st_table *rb_st_init_strtable_with_size(st_index_t);
|
|
|
|
#define st_init_strtable_with_size rb_st_init_strtable_with_size
|
|
|
|
st_table *rb_st_init_strcasetable(void);
|
|
|
|
#define st_init_strcasetable rb_st_init_strcasetable
|
|
|
|
st_table *rb_st_init_strcasetable_with_size(st_index_t);
|
|
|
|
#define st_init_strcasetable_with_size rb_st_init_strcasetable_with_size
|
|
|
|
int rb_st_delete(st_table *, st_data_t *, st_data_t *); /* returns 0:notfound 1:deleted */
|
|
|
|
#define st_delete rb_st_delete
|
|
|
|
int rb_st_delete_safe(st_table *, st_data_t *, st_data_t *, st_data_t);
|
|
|
|
#define st_delete_safe rb_st_delete_safe
|
|
|
|
int rb_st_shift(st_table *, st_data_t *, st_data_t *); /* returns 0:notfound 1:deleted */
|
|
|
|
#define st_shift rb_st_shift
|
|
|
|
int rb_st_insert(st_table *, st_data_t, st_data_t);
|
|
|
|
#define st_insert rb_st_insert
|
|
|
|
int rb_st_insert2(st_table *, st_data_t, st_data_t, st_data_t (*)(st_data_t));
|
|
|
|
#define st_insert2 rb_st_insert2
|
|
|
|
int rb_st_lookup(st_table *, st_data_t, st_data_t *);
|
|
|
|
#define st_lookup rb_st_lookup
|
|
|
|
int rb_st_get_key(st_table *, st_data_t, st_data_t *);
|
|
|
|
#define st_get_key rb_st_get_key
|
2012-03-29 10:50:20 -04:00
|
|
|
typedef int st_update_callback_func(st_data_t *key, st_data_t *value, st_data_t arg, int existing);
|
2014-07-06 11:11:53 -04:00
|
|
|
/* *key may be altered, but must equal to the old key, i.e., the
|
|
|
|
* results of hash() are same and compare() returns 0, otherwise the
|
|
|
|
* behavior is undefined */
|
2019-09-22 09:12:18 -04:00
|
|
|
int rb_st_update(st_table *table, st_data_t key, st_update_callback_func *func, st_data_t arg);
|
|
|
|
#define st_update rb_st_update
|
2019-08-26 03:06:40 -04:00
|
|
|
typedef int st_foreach_callback_func(st_data_t, st_data_t, st_data_t);
|
|
|
|
typedef int st_foreach_check_callback_func(st_data_t, st_data_t, st_data_t, int);
|
2019-09-22 09:12:18 -04:00
|
|
|
int rb_st_foreach_with_replace(st_table *tab, st_foreach_check_callback_func *func, st_update_callback_func *replace, st_data_t arg);
|
|
|
|
#define st_foreach_with_replace rb_st_foreach_with_replace
|
|
|
|
int rb_st_foreach(st_table *, st_foreach_callback_func *, st_data_t);
|
|
|
|
#define st_foreach rb_st_foreach
|
|
|
|
int rb_st_foreach_check(st_table *, st_foreach_check_callback_func *, st_data_t, st_data_t);
|
|
|
|
#define st_foreach_check rb_st_foreach_check
|
|
|
|
st_index_t rb_st_keys(st_table *table, st_data_t *keys, st_index_t size);
|
|
|
|
#define st_keys rb_st_keys
|
|
|
|
st_index_t rb_st_keys_check(st_table *table, st_data_t *keys, st_index_t size, st_data_t never);
|
|
|
|
#define st_keys_check rb_st_keys_check
|
|
|
|
st_index_t rb_st_values(st_table *table, st_data_t *values, st_index_t size);
|
|
|
|
#define st_values rb_st_values
|
|
|
|
st_index_t rb_st_values_check(st_table *table, st_data_t *values, st_index_t size, st_data_t never);
|
|
|
|
#define st_values_check rb_st_values_check
|
|
|
|
void rb_st_add_direct(st_table *, st_data_t, st_data_t);
|
|
|
|
#define st_add_direct rb_st_add_direct
|
|
|
|
void rb_st_free_table(st_table *);
|
|
|
|
#define st_free_table rb_st_free_table
|
|
|
|
void rb_st_cleanup_safe(st_table *, st_data_t);
|
|
|
|
#define st_cleanup_safe rb_st_cleanup_safe
|
|
|
|
void rb_st_clear(st_table *);
|
|
|
|
#define st_clear rb_st_clear
|
|
|
|
st_table *rb_st_copy(st_table *);
|
|
|
|
#define st_copy rb_st_copy
|
|
|
|
CONSTFUNC(int rb_st_numcmp(st_data_t, st_data_t));
|
|
|
|
#define st_numcmp rb_st_numcmp
|
|
|
|
CONSTFUNC(st_index_t rb_st_numhash(st_data_t));
|
|
|
|
#define st_numhash rb_st_numhash
|
|
|
|
PUREFUNC(int rb_st_locale_insensitive_strcasecmp(const char *s1, const char *s2));
|
|
|
|
#define st_locale_insensitive_strcasecmp rb_st_locale_insensitive_strcasecmp
|
|
|
|
PUREFUNC(int rb_st_locale_insensitive_strncasecmp(const char *s1, const char *s2, size_t n));
|
|
|
|
#define st_locale_insensitive_strncasecmp rb_st_locale_insensitive_strncasecmp
|
|
|
|
#define st_strcasecmp rb_st_locale_insensitive_strcasecmp
|
|
|
|
#define st_strncasecmp rb_st_locale_insensitive_strncasecmp
|
|
|
|
PUREFUNC(size_t rb_st_memsize(const st_table *));
|
|
|
|
#define st_memsize rb_st_memsize
|
|
|
|
PUREFUNC(st_index_t rb_st_hash(const void *ptr, size_t len, st_index_t h));
|
|
|
|
#define st_hash rb_st_hash
|
|
|
|
CONSTFUNC(st_index_t rb_st_hash_uint32(st_index_t h, uint32_t i));
|
|
|
|
#define st_hash_uint32 rb_st_hash_uint32
|
|
|
|
CONSTFUNC(st_index_t rb_st_hash_uint(st_index_t h, st_index_t i));
|
|
|
|
#define st_hash_uint rb_st_hash_uint
|
|
|
|
CONSTFUNC(st_index_t rb_st_hash_end(st_index_t h));
|
|
|
|
#define st_hash_end rb_st_hash_end
|
|
|
|
CONSTFUNC(st_index_t rb_st_hash_start(st_index_t h));
|
2009-09-26 10:29:13 -04:00
|
|
|
#define st_hash_start(h) ((st_index_t)(h))
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2018-10-30 18:11:51 -04:00
|
|
|
void rb_hash_bulk_insert_into_st_table(long, const VALUE *, VALUE);
|
2018-05-22 03:31:36 -04:00
|
|
|
|
2013-04-05 06:29:38 -04:00
|
|
|
RUBY_SYMBOL_EXPORT_END
|
2010-07-21 17:38:25 -04:00
|
|
|
|
2007-06-09 23:06:15 -04:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
#if 0
|
|
|
|
{ /* satisfy cc-mode */
|
|
|
|
#endif
|
|
|
|
} /* extern "C" { */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* RUBY_ST_H */
|