1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2007-12-31 15:17:19 +08:00
|
|
|
| Copyright (c) 1998-2008 Zend Technologies Ltd. (http://www.zend.com) |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:16:21 +08:00
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
1999-07-16 22:58:16 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2001-12-11 23:16:21 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
1999-07-16 22:58:16 +08:00
|
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@zend.com so we can mail you a copy immediately. |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2003-02-01 09:49:15 +08:00
|
|
|
/* $Id$ */
|
|
|
|
|
2000-07-03 08:55:36 +08:00
|
|
|
#ifndef ZEND_HASH_H
|
|
|
|
#define ZEND_HASH_H
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
2002-06-08 21:01:05 +08:00
|
|
|
#include "zend.h"
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
#define HASH_KEY_IS_STRING 1
|
|
|
|
#define HASH_KEY_IS_LONG 2
|
|
|
|
#define HASH_KEY_NON_EXISTANT 3
|
|
|
|
|
|
|
|
#define HASH_UPDATE (1<<0)
|
|
|
|
#define HASH_ADD (1<<1)
|
|
|
|
#define HASH_NEXT_INSERT (1<<2)
|
|
|
|
|
|
|
|
#define HASH_DEL_KEY 0
|
|
|
|
#define HASH_DEL_INDEX 1
|
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
typedef ulong (*hash_func_t)(const char *arKey, uint nKeyLength);
|
2001-09-19 18:25:04 +08:00
|
|
|
typedef int (*compare_func_t)(const void *, const void * TSRMLS_DC);
|
|
|
|
typedef void (*sort_func_t)(void *, size_t, register size_t, compare_func_t TSRMLS_DC);
|
2000-01-18 01:33:37 +08:00
|
|
|
typedef void (*dtor_func_t)(void *pDest);
|
2000-02-05 23:11:24 +08:00
|
|
|
typedef void (*copy_ctor_func_t)(void *pElement);
|
2002-12-07 01:09:44 +08:00
|
|
|
typedef void (*copy_ctor_param_func_t)(void *pElement, void *pParam);
|
2000-01-18 01:33:37 +08:00
|
|
|
|
2000-05-24 17:52:57 +08:00
|
|
|
struct _hashtable;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
typedef struct bucket {
|
|
|
|
ulong h; /* Used for numeric indexing */
|
|
|
|
uint nKeyLength;
|
|
|
|
void *pData;
|
|
|
|
void *pDataPtr;
|
|
|
|
struct bucket *pListNext;
|
|
|
|
struct bucket *pListLast;
|
|
|
|
struct bucket *pNext;
|
2000-01-20 03:44:32 +08:00
|
|
|
struct bucket *pLast;
|
1999-04-08 02:10:10 +08:00
|
|
|
char arKey[1]; /* Must be last element */
|
|
|
|
} Bucket;
|
|
|
|
|
2000-05-24 17:52:57 +08:00
|
|
|
typedef struct _hashtable {
|
1999-04-08 02:10:10 +08:00
|
|
|
uint nTableSize;
|
2001-07-11 04:31:42 +08:00
|
|
|
uint nTableMask;
|
1999-04-08 02:10:10 +08:00
|
|
|
uint nNumOfElements;
|
|
|
|
ulong nNextFreeElement;
|
|
|
|
Bucket *pInternalPointer; /* Used for element traversal */
|
|
|
|
Bucket *pListHead;
|
|
|
|
Bucket *pListTail;
|
|
|
|
Bucket **arBuckets;
|
2000-01-18 01:33:37 +08:00
|
|
|
dtor_func_t pDestructor;
|
2000-06-17 22:11:57 +08:00
|
|
|
zend_bool persistent;
|
|
|
|
unsigned char nApplyCount;
|
2000-07-11 22:27:31 +08:00
|
|
|
zend_bool bApplyProtection;
|
2000-01-15 21:40:17 +08:00
|
|
|
#if ZEND_DEBUG
|
|
|
|
int inconsistent;
|
|
|
|
#endif
|
1999-04-08 02:10:10 +08:00
|
|
|
} HashTable;
|
|
|
|
|
2003-02-04 20:12:34 +08:00
|
|
|
|
|
|
|
typedef struct _zend_hash_key {
|
|
|
|
char *arKey;
|
|
|
|
uint nKeyLength;
|
|
|
|
ulong h;
|
|
|
|
} zend_hash_key;
|
|
|
|
|
|
|
|
|
2003-02-06 08:14:49 +08:00
|
|
|
typedef zend_bool (*merge_checker_func_t)(HashTable *target_ht, void *source_data, zend_hash_key *hash_key, void *pParam);
|
2003-02-04 20:12:34 +08:00
|
|
|
|
2000-03-13 23:25:18 +08:00
|
|
|
typedef Bucket* HashPosition;
|
|
|
|
|
1999-06-08 06:49:33 +08:00
|
|
|
BEGIN_EXTERN_C()
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
/* startup/shutdown */
|
2002-09-17 22:04:37 +08:00
|
|
|
ZEND_API int _zend_hash_init(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent ZEND_FILE_LINE_DC);
|
|
|
|
ZEND_API int _zend_hash_init_ex(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent, zend_bool bApplyProtection ZEND_FILE_LINE_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API void zend_hash_destroy(HashTable *ht);
|
|
|
|
ZEND_API void zend_hash_clean(HashTable *ht);
|
2002-09-17 22:04:37 +08:00
|
|
|
#define zend_hash_init(ht, nSize, pHashFunction, pDestructor, persistent) _zend_hash_init((ht), (nSize), (pHashFunction), (pDestructor), (persistent) ZEND_FILE_LINE_CC)
|
|
|
|
#define zend_hash_init_ex(ht, nSize, pHashFunction, pDestructor, persistent, bApplyProtection) _zend_hash_init_ex((ht), (nSize), (pHashFunction), (pDestructor), (persistent), (bApplyProtection) ZEND_FILE_LINE_CC)
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
/* additions/updates/changes */
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API int _zend_hash_add_or_update(HashTable *ht, const char *arKey, uint nKeyLength, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC);
|
2001-08-11 23:56:40 +08:00
|
|
|
#define zend_hash_update(ht, arKey, nKeyLength, pData, nDataSize, pDest) \
|
2003-08-19 05:17:26 +08:00
|
|
|
_zend_hash_add_or_update(ht, arKey, nKeyLength, pData, nDataSize, pDest, HASH_UPDATE ZEND_FILE_LINE_CC)
|
2001-08-11 23:56:40 +08:00
|
|
|
#define zend_hash_add(ht, arKey, nKeyLength, pData, nDataSize, pDest) \
|
2003-08-19 05:17:26 +08:00
|
|
|
_zend_hash_add_or_update(ht, arKey, nKeyLength, pData, nDataSize, pDest, HASH_ADD ZEND_FILE_LINE_CC)
|
2001-08-11 23:56:40 +08:00
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API int _zend_hash_quick_add_or_update(HashTable *ht, const char *arKey, uint nKeyLength, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC);
|
2001-08-11 23:56:40 +08:00
|
|
|
#define zend_hash_quick_update(ht, arKey, nKeyLength, h, pData, nDataSize, pDest) \
|
2003-08-19 05:17:26 +08:00
|
|
|
_zend_hash_quick_add_or_update(ht, arKey, nKeyLength, h, pData, nDataSize, pDest, HASH_UPDATE ZEND_FILE_LINE_CC)
|
2001-08-11 23:56:40 +08:00
|
|
|
#define zend_hash_quick_add(ht, arKey, nKeyLength, h, pData, nDataSize, pDest) \
|
2003-08-19 05:17:26 +08:00
|
|
|
_zend_hash_quick_add_or_update(ht, arKey, nKeyLength, h, pData, nDataSize, pDest, HASH_ADD ZEND_FILE_LINE_CC)
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2003-08-19 05:17:26 +08:00
|
|
|
ZEND_API int _zend_hash_index_update_or_next_insert(HashTable *ht, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC);
|
2001-08-11 23:56:40 +08:00
|
|
|
#define zend_hash_index_update(ht, h, pData, nDataSize, pDest) \
|
2003-08-19 05:17:26 +08:00
|
|
|
_zend_hash_index_update_or_next_insert(ht, h, pData, nDataSize, pDest, HASH_UPDATE ZEND_FILE_LINE_CC)
|
2001-08-11 23:56:40 +08:00
|
|
|
#define zend_hash_next_index_insert(ht, pData, nDataSize, pDest) \
|
2003-08-19 05:17:26 +08:00
|
|
|
_zend_hash_index_update_or_next_insert(ht, 0, pData, nDataSize, pDest, HASH_NEXT_INSERT ZEND_FILE_LINE_CC)
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API int zend_hash_add_empty_element(HashTable *ht, const char *arKey, uint nKeyLength);
|
2001-05-17 01:22:01 +08:00
|
|
|
|
2001-08-02 15:00:43 +08:00
|
|
|
|
|
|
|
#define ZEND_HASH_APPLY_KEEP 0
|
|
|
|
#define ZEND_HASH_APPLY_REMOVE 1<<0
|
|
|
|
#define ZEND_HASH_APPLY_STOP 1<<1
|
|
|
|
|
1999-08-26 03:02:13 +08:00
|
|
|
|
2001-08-02 14:16:20 +08:00
|
|
|
typedef int (*apply_func_t)(void *pDest TSRMLS_DC);
|
|
|
|
typedef int (*apply_func_arg_t)(void *pDest, void *argument TSRMLS_DC);
|
2000-06-10 04:18:16 +08:00
|
|
|
typedef int (*apply_func_args_t)(void *pDest, int num_args, va_list args, zend_hash_key *hash_key);
|
|
|
|
|
2000-01-17 04:59:03 +08:00
|
|
|
ZEND_API void zend_hash_graceful_destroy(HashTable *ht);
|
2002-04-20 00:53:36 +08:00
|
|
|
ZEND_API void zend_hash_graceful_reverse_destroy(HashTable *ht);
|
2001-07-31 12:53:54 +08:00
|
|
|
ZEND_API void zend_hash_apply(HashTable *ht, apply_func_t apply_func TSRMLS_DC);
|
|
|
|
ZEND_API void zend_hash_apply_with_argument(HashTable *ht, apply_func_arg_t apply_func, void * TSRMLS_DC);
|
2001-07-16 06:48:04 +08:00
|
|
|
ZEND_API void zend_hash_apply_with_arguments(HashTable *ht, apply_func_args_t apply_func, int, ...);
|
1999-08-26 03:02:13 +08:00
|
|
|
|
2001-08-02 15:00:43 +08:00
|
|
|
/* This function should be used with special care (in other words,
|
|
|
|
* it should usually not be used). When used with the ZEND_HASH_APPLY_STOP
|
|
|
|
* return value, it assumes things about the order of the elements in the hash.
|
|
|
|
* Also, it does not provide the same kind of reentrancy protection that
|
|
|
|
* the standard apply functions do.
|
|
|
|
*/
|
|
|
|
ZEND_API void zend_hash_reverse_apply(HashTable *ht, apply_func_t apply_func TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* Deletes */
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API int zend_hash_del_key_or_index(HashTable *ht, const char *arKey, uint nKeyLength, ulong h, int flag);
|
2001-08-11 23:56:40 +08:00
|
|
|
#define zend_hash_del(ht, arKey, nKeyLength) \
|
|
|
|
zend_hash_del_key_or_index(ht, arKey, nKeyLength, 0, HASH_DEL_KEY)
|
|
|
|
#define zend_hash_index_del(ht, h) \
|
|
|
|
zend_hash_del_key_or_index(ht, NULL, 0, h, HASH_DEL_INDEX)
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API ulong zend_get_hash_value(const char *arKey, uint nKeyLength);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
/* Data retreival */
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API int zend_hash_find(HashTable *ht, const char *arKey, uint nKeyLength, void **pData);
|
|
|
|
ZEND_API int zend_hash_quick_find(HashTable *ht, const char *arKey, uint nKeyLength, ulong h, void **pData);
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API int zend_hash_index_find(HashTable *ht, ulong h, void **pData);
|
|
|
|
|
|
|
|
/* Misc */
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API int zend_hash_exists(HashTable *ht, const char *arKey, uint nKeyLength);
|
|
|
|
ZEND_API int zend_hash_quick_exists(HashTable *ht, const char *arKey, uint nKeyLength, ulong h);
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API int zend_hash_index_exists(HashTable *ht, ulong h);
|
|
|
|
ZEND_API ulong zend_hash_next_free_element(HashTable *ht);
|
|
|
|
|
2003-07-23 00:06:07 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
/* traversing */
|
2003-07-20 20:23:46 +08:00
|
|
|
#define zend_hash_has_more_elements_ex(ht, pos) \
|
|
|
|
(zend_hash_get_current_key_type_ex(ht, pos) == HASH_KEY_NON_EXISTANT ? FAILURE : SUCCESS)
|
2000-03-16 00:25:59 +08:00
|
|
|
ZEND_API int zend_hash_move_forward_ex(HashTable *ht, HashPosition *pos);
|
|
|
|
ZEND_API int zend_hash_move_backwards_ex(HashTable *ht, HashPosition *pos);
|
2001-08-20 22:58:52 +08:00
|
|
|
ZEND_API int zend_hash_get_current_key_ex(HashTable *ht, char **str_index, uint *str_length, ulong *num_index, zend_bool duplicate, HashPosition *pos);
|
2000-03-13 23:25:18 +08:00
|
|
|
ZEND_API int zend_hash_get_current_key_type_ex(HashTable *ht, HashPosition *pos);
|
|
|
|
ZEND_API int zend_hash_get_current_data_ex(HashTable *ht, void **pData, HashPosition *pos);
|
|
|
|
ZEND_API void zend_hash_internal_pointer_reset_ex(HashTable *ht, HashPosition *pos);
|
|
|
|
ZEND_API void zend_hash_internal_pointer_end_ex(HashTable *ht, HashPosition *pos);
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API int zend_hash_update_current_key_ex(HashTable *ht, int key_type, const char *str_index, uint str_length, ulong num_index, HashPosition *pos);
|
2000-03-13 23:25:18 +08:00
|
|
|
|
2007-01-10 23:58:08 +08:00
|
|
|
typedef struct _HashPointer {
|
|
|
|
HashPosition pos;
|
|
|
|
ulong h;
|
|
|
|
} HashPointer;
|
|
|
|
|
|
|
|
ZEND_API int zend_hash_get_pointer(HashTable *ht, HashPointer *ptr);
|
|
|
|
ZEND_API int zend_hash_set_pointer(HashTable *ht, const HashPointer *ptr);
|
|
|
|
|
2003-07-19 22:19:04 +08:00
|
|
|
#define zend_hash_has_more_elements(ht) \
|
|
|
|
zend_hash_has_more_elements_ex(ht, NULL)
|
2000-03-13 23:25:18 +08:00
|
|
|
#define zend_hash_move_forward(ht) \
|
|
|
|
zend_hash_move_forward_ex(ht, NULL)
|
|
|
|
#define zend_hash_move_backwards(ht) \
|
|
|
|
zend_hash_move_backwards_ex(ht, NULL)
|
2000-12-22 20:49:51 +08:00
|
|
|
#define zend_hash_get_current_key(ht, str_index, num_index, duplicate) \
|
|
|
|
zend_hash_get_current_key_ex(ht, str_index, NULL, num_index, duplicate, NULL)
|
2000-03-13 23:25:18 +08:00
|
|
|
#define zend_hash_get_current_key_type(ht) \
|
|
|
|
zend_hash_get_current_key_type_ex(ht, NULL)
|
|
|
|
#define zend_hash_get_current_data(ht, pData) \
|
|
|
|
zend_hash_get_current_data_ex(ht, pData, NULL)
|
|
|
|
#define zend_hash_internal_pointer_reset(ht) \
|
|
|
|
zend_hash_internal_pointer_reset_ex(ht, NULL)
|
|
|
|
#define zend_hash_internal_pointer_end(ht) \
|
|
|
|
zend_hash_internal_pointer_end_ex(ht, NULL)
|
2005-07-07 23:16:57 +08:00
|
|
|
#define zend_hash_update_current_key(ht, key_type, str_index, str_length, num_index) \
|
|
|
|
zend_hash_update_current_key_ex(ht, key_type, str_index, str_length, num_index, NULL)
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
/* Copying, merging and sorting */
|
2000-02-05 23:11:24 +08:00
|
|
|
ZEND_API void zend_hash_copy(HashTable *target, HashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size);
|
2003-08-19 05:17:26 +08:00
|
|
|
ZEND_API void _zend_hash_merge(HashTable *target, HashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size, int overwrite ZEND_FILE_LINE_DC);
|
2003-02-04 20:12:34 +08:00
|
|
|
ZEND_API void zend_hash_merge_ex(HashTable *target, HashTable *source, copy_ctor_func_t pCopyConstructor, uint size, merge_checker_func_t pMergeSource, void *pParam);
|
2001-09-19 18:25:04 +08:00
|
|
|
ZEND_API int zend_hash_sort(HashTable *ht, sort_func_t sort_func, compare_func_t compare_func, int renumber TSRMLS_DC);
|
2001-07-30 12:54:16 +08:00
|
|
|
ZEND_API int zend_hash_compare(HashTable *ht1, HashTable *ht2, compare_func_t compar, zend_bool ordered TSRMLS_DC);
|
2001-09-19 18:25:04 +08:00
|
|
|
ZEND_API int zend_hash_minmax(HashTable *ht, compare_func_t compar, int flag, void **pData TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2003-08-19 05:17:26 +08:00
|
|
|
#define zend_hash_merge(target, source, pCopyConstructor, tmp, size, overwrite) \
|
|
|
|
_zend_hash_merge(target, source, pCopyConstructor, tmp, size, overwrite ZEND_FILE_LINE_CC)
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API int zend_hash_num_elements(HashTable *ht);
|
|
|
|
|
1999-11-05 05:02:35 +08:00
|
|
|
ZEND_API int zend_hash_rehash(HashTable *ht);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-06-08 20:44:39 +08:00
|
|
|
/*
|
|
|
|
* DJBX33A (Daniel J. Bernstein, Times 33 with Addition)
|
|
|
|
*
|
|
|
|
* This is Daniel J. Bernstein's popular `times 33' hash function as
|
|
|
|
* posted by him years ago on comp.lang.c. It basically uses a function
|
|
|
|
* like ``hash(i) = hash(i-1) * 33 + str[i]''. This is one of the best
|
|
|
|
* known hash functions for strings. Because it is both computed very
|
|
|
|
* fast and distributes very well.
|
|
|
|
*
|
|
|
|
* The magic of number 33, i.e. why it works better than many other
|
|
|
|
* constants, prime or not, has never been adequately explained by
|
|
|
|
* anyone. So I try an explanation: if one experimentally tests all
|
|
|
|
* multipliers between 1 and 256 (as RSE did now) one detects that even
|
|
|
|
* numbers are not useable at all. The remaining 128 odd numbers
|
|
|
|
* (except for the number 1) work more or less all equally well. They
|
|
|
|
* all distribute in an acceptable way and this way fill a hash table
|
|
|
|
* with an average percent of approx. 86%.
|
|
|
|
*
|
|
|
|
* If one compares the Chi^2 values of the variants, the number 33 not
|
|
|
|
* even has the best value. But the number 33 and a few other equally
|
|
|
|
* good numbers like 17, 31, 63, 127 and 129 have nevertheless a great
|
|
|
|
* advantage to the remaining numbers in the large set of possible
|
|
|
|
* multipliers: their multiply operation can be replaced by a faster
|
|
|
|
* operation based on just one shift plus either a single addition
|
|
|
|
* or subtraction operation. And because a hash function has to both
|
|
|
|
* distribute good _and_ has to be very fast to compute, those few
|
|
|
|
* numbers should be preferred and seems to be the reason why Daniel J.
|
|
|
|
* Bernstein also preferred it.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* -- Ralf S. Engelschall <rse@engelschall.com>
|
|
|
|
*/
|
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
static inline ulong zend_inline_hash_func(const char *arKey, uint nKeyLength)
|
2001-07-12 00:16:08 +08:00
|
|
|
{
|
2002-06-08 20:44:39 +08:00
|
|
|
register ulong hash = 5381;
|
|
|
|
|
|
|
|
/* variant with the hash unrolled eight times */
|
|
|
|
for (; nKeyLength >= 8; nKeyLength -= 8) {
|
|
|
|
hash = ((hash << 5) + hash) + *arKey++;
|
|
|
|
hash = ((hash << 5) + hash) + *arKey++;
|
|
|
|
hash = ((hash << 5) + hash) + *arKey++;
|
|
|
|
hash = ((hash << 5) + hash) + *arKey++;
|
|
|
|
hash = ((hash << 5) + hash) + *arKey++;
|
|
|
|
hash = ((hash << 5) + hash) + *arKey++;
|
|
|
|
hash = ((hash << 5) + hash) + *arKey++;
|
|
|
|
hash = ((hash << 5) + hash) + *arKey++;
|
|
|
|
}
|
|
|
|
switch (nKeyLength) {
|
|
|
|
case 7: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */
|
|
|
|
case 6: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */
|
|
|
|
case 5: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */
|
|
|
|
case 4: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */
|
|
|
|
case 3: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */
|
|
|
|
case 2: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */
|
|
|
|
case 1: hash = ((hash << 5) + hash) + *arKey++; break;
|
2002-06-08 21:01:05 +08:00
|
|
|
case 0: break;
|
|
|
|
EMPTY_SWITCH_DEFAULT_CASE()
|
2001-07-12 00:16:08 +08:00
|
|
|
}
|
2002-06-08 20:44:39 +08:00
|
|
|
return hash;
|
2001-07-12 00:16:08 +08:00
|
|
|
}
|
|
|
|
|
2002-06-08 20:44:39 +08:00
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API ulong zend_hash_func(const char *arKey, uint nKeyLength);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-12-02 06:55:20 +08:00
|
|
|
#if ZEND_DEBUG
|
1999-04-08 02:10:10 +08:00
|
|
|
/* debug */
|
|
|
|
void zend_hash_display_pListTail(HashTable *ht);
|
|
|
|
void zend_hash_display(HashTable *ht);
|
|
|
|
#endif
|
|
|
|
|
1999-06-08 06:49:33 +08:00
|
|
|
END_EXTERN_C()
|
|
|
|
|
2000-04-25 18:10:44 +08:00
|
|
|
#define ZEND_INIT_SYMTABLE(ht) \
|
|
|
|
ZEND_INIT_SYMTABLE_EX(ht, 2, 0)
|
|
|
|
|
|
|
|
#define ZEND_INIT_SYMTABLE_EX(ht, n, persistent) \
|
|
|
|
zend_hash_init(ht, n, NULL, ZVAL_PTR_DTOR, persistent)
|
|
|
|
|
|
|
|
|
2003-07-23 16:56:34 +08:00
|
|
|
#define HANDLE_NUMERIC(key, length, func) { \
|
2007-09-28 02:00:48 +08:00
|
|
|
register const char *tmp=key; \
|
2003-07-23 16:56:34 +08:00
|
|
|
\
|
2003-08-12 04:14:25 +08:00
|
|
|
if (*tmp=='-') { \
|
|
|
|
tmp++; \
|
|
|
|
} \
|
2003-07-23 16:56:34 +08:00
|
|
|
if ((*tmp>='0' && *tmp<='9')) do { /* possibly a numeric index */ \
|
2007-09-28 02:00:48 +08:00
|
|
|
const char *end=key+length-1; \
|
2003-09-25 23:38:35 +08:00
|
|
|
long idx; \
|
2003-07-23 16:56:34 +08:00
|
|
|
\
|
|
|
|
if (*tmp++=='0' && length>2) { /* don't accept numbers with leading zeros */ \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
while (tmp<end) { \
|
|
|
|
if (!(*tmp>='0' && *tmp<='9')) { \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
tmp++; \
|
|
|
|
} \
|
|
|
|
if (tmp==end && *tmp=='\0') { /* a numeric index */ \
|
2003-08-12 04:14:25 +08:00
|
|
|
if (*key=='-') { \
|
|
|
|
idx = strtol(key, NULL, 10); \
|
|
|
|
if (idx!=LONG_MIN) { \
|
|
|
|
return func; \
|
|
|
|
} \
|
|
|
|
} else { \
|
|
|
|
idx = strtol(key, NULL, 10); \
|
|
|
|
if (idx!=LONG_MAX) { \
|
|
|
|
return func; \
|
|
|
|
} \
|
2003-07-23 16:56:34 +08:00
|
|
|
} \
|
|
|
|
} \
|
|
|
|
} while (0); \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
static inline int zend_symtable_update(HashTable *ht, const char *arKey, uint nKeyLength, void *pData, uint nDataSize, void **pDest) \
|
2003-07-23 00:06:07 +08:00
|
|
|
{
|
2003-07-23 16:56:34 +08:00
|
|
|
HANDLE_NUMERIC(arKey, nKeyLength, zend_hash_index_update(ht, idx, pData, nDataSize, pDest));
|
|
|
|
return zend_hash_update(ht, arKey, nKeyLength, pData, nDataSize, pDest);
|
2003-07-23 00:06:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
static inline int zend_symtable_del(HashTable *ht, const char *arKey, uint nKeyLength)
|
2003-07-23 00:06:07 +08:00
|
|
|
{
|
2003-07-23 16:56:34 +08:00
|
|
|
HANDLE_NUMERIC(arKey, nKeyLength, zend_hash_index_del(ht, idx))
|
|
|
|
return zend_hash_del(ht, arKey, nKeyLength);
|
2003-07-23 00:06:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
static inline int zend_symtable_find(HashTable *ht, const char *arKey, uint nKeyLength, void **pData)
|
2003-07-23 00:06:07 +08:00
|
|
|
{
|
2003-07-23 16:56:34 +08:00
|
|
|
HANDLE_NUMERIC(arKey, nKeyLength, zend_hash_index_find(ht, idx, pData));
|
|
|
|
return zend_hash_find(ht, arKey, nKeyLength, pData);
|
2003-07-23 00:06:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
static inline int zend_symtable_exists(HashTable *ht, const char *arKey, uint nKeyLength)
|
2003-07-23 00:06:07 +08:00
|
|
|
{
|
2003-07-23 16:56:34 +08:00
|
|
|
HANDLE_NUMERIC(arKey, nKeyLength, zend_hash_index_exists(ht, idx));
|
|
|
|
return zend_hash_exists(ht, arKey, nKeyLength);
|
2003-07-23 00:06:07 +08:00
|
|
|
}
|
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
static inline int zend_symtable_update_current_key(HashTable *ht, const char *arKey, uint nKeyLength)
|
2005-12-05 16:56:09 +08:00
|
|
|
{
|
|
|
|
HANDLE_NUMERIC(arKey, nKeyLength, zend_hash_update_current_key(ht, HASH_KEY_IS_LONG, NULL, 0, idx));
|
|
|
|
return zend_hash_update_current_key(ht, HASH_KEY_IS_STRING, arKey, nKeyLength, 0);
|
|
|
|
}
|
|
|
|
|
2000-07-03 08:55:36 +08:00
|
|
|
#endif /* ZEND_HASH_H */
|
2003-02-01 09:49:15 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* indent-tabs-mode: t
|
|
|
|
* End:
|
|
|
|
*/
|