1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2014-01-03 11:08:10 +08:00
|
|
|
| Copyright (c) 1998-2014 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
|
|
|
|
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
|
2014-08-26 01:24:55 +08:00
|
|
|
#define HASH_KEY_IS_LONG 2
|
2013-07-09 05:09:06 +08:00
|
|
|
#define HASH_KEY_NON_EXISTENT 3
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-03-26 22:07:31 +08:00
|
|
|
#define HASH_UPDATE (1<<0)
|
|
|
|
#define HASH_ADD (1<<1)
|
2014-09-16 20:28:30 +08:00
|
|
|
#define HASH_UPDATE_INDIRECT (1<<2)
|
|
|
|
#define HASH_ADD_NEW (1<<3)
|
2014-10-16 23:19:10 +08:00
|
|
|
#define HASH_ADD_NEXT (1<<4)
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-09-16 05:01:52 +08:00
|
|
|
#define INVALID_IDX ((uint32_t) -1)
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define HASH_FLAG_PERSISTENT (1<<0)
|
|
|
|
#define HASH_FLAG_APPLY_PROTECTION (1<<1)
|
|
|
|
#define HASH_FLAG_PACKED (1<<2)
|
|
|
|
|
|
|
|
#define HASH_MASK_CONSISTENCY 0x60
|
|
|
|
|
2003-02-04 20:12:34 +08:00
|
|
|
typedef struct _zend_hash_key {
|
2014-09-16 05:01:52 +08:00
|
|
|
zend_ulong h;
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_string *key;
|
2003-02-04 20:12:34 +08:00
|
|
|
} zend_hash_key;
|
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
typedef zend_bool (*merge_checker_func_t)(HashTable *target_ht, zval *source_data, zend_hash_key *hash_key, void *pParam);
|
2003-02-04 20:12:34 +08:00
|
|
|
|
2014-09-16 05:01:52 +08:00
|
|
|
typedef uint32_t HashPosition;
|
2000-03-13 23:25:18 +08:00
|
|
|
|
1999-06-08 06:49:33 +08:00
|
|
|
BEGIN_EXTERN_C()
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
/* startup/shutdown */
|
2014-09-16 05:01:52 +08:00
|
|
|
ZEND_API void _zend_hash_init(HashTable *ht, uint32_t nSize, dtor_func_t pDestructor, zend_bool persistent ZEND_FILE_LINE_DC);
|
|
|
|
ZEND_API void _zend_hash_init_ex(HashTable *ht, uint32_t nSize, 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);
|
2013-11-28 22:40:46 +08:00
|
|
|
#define zend_hash_init(ht, nSize, pHashFunction, pDestructor, persistent) _zend_hash_init((ht), (nSize), (pDestructor), (persistent) ZEND_FILE_LINE_CC)
|
|
|
|
#define zend_hash_init_ex(ht, nSize, pHashFunction, pDestructor, persistent, bApplyProtection) _zend_hash_init_ex((ht), (nSize), (pDestructor), (persistent), (bApplyProtection) ZEND_FILE_LINE_CC)
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-09-16 05:01:52 +08:00
|
|
|
ZEND_API void zend_hash_real_init(HashTable *ht, zend_bool packed);
|
2014-03-17 21:23:27 +08:00
|
|
|
ZEND_API void zend_hash_packed_to_hash(HashTable *ht);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API void zend_hash_to_packed(HashTable *ht);
|
2001-05-17 01:22:01 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
/* additions/updates/changes */
|
2014-09-16 05:01:52 +08:00
|
|
|
ZEND_API zval *_zend_hash_add_or_update(HashTable *ht, zend_string *key, zval *pData, uint32_t flag ZEND_FILE_LINE_DC);
|
2014-05-26 21:16:16 +08:00
|
|
|
ZEND_API zval *_zend_hash_update(HashTable *ht, zend_string *key,zval *pData ZEND_FILE_LINE_DC);
|
|
|
|
ZEND_API zval *_zend_hash_update_ind(HashTable *ht, zend_string *key,zval *pData ZEND_FILE_LINE_DC);
|
|
|
|
ZEND_API zval *_zend_hash_add(HashTable *ht, zend_string *key,zval *pData ZEND_FILE_LINE_DC);
|
|
|
|
ZEND_API zval *_zend_hash_add_new(HashTable *ht, zend_string *key,zval *pData ZEND_FILE_LINE_DC);
|
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define zend_hash_update(ht, key, pData) \
|
2014-05-26 21:16:16 +08:00
|
|
|
_zend_hash_update(ht, key, pData ZEND_FILE_LINE_CC)
|
2014-03-26 22:07:31 +08:00
|
|
|
#define zend_hash_update_ind(ht, key, pData) \
|
2014-05-26 21:16:16 +08:00
|
|
|
_zend_hash_update_ind(ht, key, pData ZEND_FILE_LINE_CC)
|
2014-02-10 14:04:30 +08:00
|
|
|
#define zend_hash_add(ht, key, pData) \
|
2014-05-26 21:16:16 +08:00
|
|
|
_zend_hash_add(ht, key, pData ZEND_FILE_LINE_CC)
|
|
|
|
#define zend_hash_add_new(ht, key, pData) \
|
|
|
|
_zend_hash_add_new(ht, key, pData ZEND_FILE_LINE_CC)
|
2014-02-10 14:04:30 +08:00
|
|
|
|
2014-09-16 05:01:52 +08:00
|
|
|
ZEND_API zval *_zend_hash_str_add_or_update(HashTable *ht, const char *key, size_t len, zval *pData, uint32_t flag ZEND_FILE_LINE_DC);
|
|
|
|
ZEND_API zval *_zend_hash_str_update(HashTable *ht, const char *key, size_t len, zval *pData ZEND_FILE_LINE_DC);
|
|
|
|
ZEND_API zval *_zend_hash_str_update_ind(HashTable *ht, const char *key, size_t len, zval *pData ZEND_FILE_LINE_DC);
|
|
|
|
ZEND_API zval *_zend_hash_str_add(HashTable *ht, const char *key, size_t len, zval *pData ZEND_FILE_LINE_DC);
|
|
|
|
ZEND_API zval *_zend_hash_str_add_new(HashTable *ht, const char *key, size_t len, zval *pData ZEND_FILE_LINE_DC);
|
2014-05-26 21:16:16 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define zend_hash_str_update(ht, key, len, pData) \
|
2014-05-26 21:16:16 +08:00
|
|
|
_zend_hash_str_update(ht, key, len, pData ZEND_FILE_LINE_CC)
|
2014-03-26 22:07:31 +08:00
|
|
|
#define zend_hash_str_update_ind(ht, key, len, pData) \
|
2014-05-26 21:16:16 +08:00
|
|
|
_zend_hash_str_update_ind(ht, key, len, pData ZEND_FILE_LINE_CC)
|
2014-02-10 14:04:30 +08:00
|
|
|
#define zend_hash_str_add(ht, key, len, pData) \
|
2014-05-26 21:16:16 +08:00
|
|
|
_zend_hash_str_add(ht, key, len, pData ZEND_FILE_LINE_CC)
|
|
|
|
#define zend_hash_str_add_new(ht, key, len, pData) \
|
|
|
|
_zend_hash_str_add_new(ht, key, len, pData ZEND_FILE_LINE_CC)
|
2014-02-10 14:04:30 +08:00
|
|
|
|
2014-09-16 20:28:30 +08:00
|
|
|
ZEND_API zval *_zend_hash_index_add_or_update(HashTable *ht, zend_ulong h, zval *pData, uint32_t flag ZEND_FILE_LINE_DC);
|
2014-08-26 01:24:55 +08:00
|
|
|
ZEND_API zval *_zend_hash_index_add(HashTable *ht, zend_ulong h, zval *pData ZEND_FILE_LINE_DC);
|
|
|
|
ZEND_API zval *_zend_hash_index_add_new(HashTable *ht, zend_ulong h, zval *pData ZEND_FILE_LINE_DC);
|
|
|
|
ZEND_API zval *_zend_hash_index_update(HashTable *ht, zend_ulong h, zval *pData ZEND_FILE_LINE_DC);
|
2014-05-26 21:16:16 +08:00
|
|
|
ZEND_API zval *_zend_hash_next_index_insert(HashTable *ht, zval *pData ZEND_FILE_LINE_DC);
|
|
|
|
ZEND_API zval *_zend_hash_next_index_insert_new(HashTable *ht, zval *pData ZEND_FILE_LINE_DC);
|
|
|
|
|
2014-04-07 20:50:41 +08:00
|
|
|
#define zend_hash_index_add(ht, h, pData) \
|
2014-05-26 21:16:16 +08:00
|
|
|
_zend_hash_index_add(ht, h, pData ZEND_FILE_LINE_CC)
|
|
|
|
#define zend_hash_index_add_new(ht, h, pData) \
|
|
|
|
_zend_hash_index_add_new(ht, h, pData ZEND_FILE_LINE_CC)
|
2014-02-10 14:04:30 +08:00
|
|
|
#define zend_hash_index_update(ht, h, pData) \
|
2014-05-26 21:16:16 +08:00
|
|
|
_zend_hash_index_update(ht, h, pData ZEND_FILE_LINE_CC)
|
2014-02-10 14:04:30 +08:00
|
|
|
#define zend_hash_next_index_insert(ht, pData) \
|
2014-05-26 21:16:16 +08:00
|
|
|
_zend_hash_next_index_insert(ht, pData ZEND_FILE_LINE_CC)
|
|
|
|
#define zend_hash_next_index_insert_new(ht, pData) \
|
|
|
|
_zend_hash_next_index_insert_new(ht, pData ZEND_FILE_LINE_CC)
|
2014-02-10 14:04:30 +08:00
|
|
|
|
2014-08-26 01:24:55 +08:00
|
|
|
ZEND_API zval *zend_hash_index_add_empty_element(HashTable *ht, zend_ulong h);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API zval *zend_hash_add_empty_element(HashTable *ht, zend_string *key);
|
2014-09-16 05:01:52 +08:00
|
|
|
ZEND_API zval *zend_hash_str_add_empty_element(HashTable *ht, const char *key, size_t len);
|
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
|
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
typedef int (*apply_func_t)(zval *pDest TSRMLS_DC);
|
|
|
|
typedef int (*apply_func_arg_t)(zval *pDest, void *argument TSRMLS_DC);
|
|
|
|
typedef int (*apply_func_args_t)(zval *pDest TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key);
|
2000-06-10 04:18:16 +08:00
|
|
|
|
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);
|
2008-07-25 03:52:24 +08:00
|
|
|
ZEND_API void zend_hash_apply_with_arguments(HashTable *ht TSRMLS_DC, 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 */
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int zend_hash_del(HashTable *ht, zend_string *key);
|
2014-03-26 22:07:31 +08:00
|
|
|
ZEND_API int zend_hash_del_ind(HashTable *ht, zend_string *key);
|
2014-09-16 05:01:52 +08:00
|
|
|
ZEND_API int zend_hash_str_del(HashTable *ht, const char *key, size_t len);
|
|
|
|
ZEND_API int zend_hash_str_del_ind(HashTable *ht, const char *key, size_t len);
|
2014-08-26 01:24:55 +08:00
|
|
|
ZEND_API int zend_hash_index_del(HashTable *ht, zend_ulong h);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
/* Data retreival */
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API zval *zend_hash_find(const HashTable *ht, zend_string *key);
|
2014-09-16 05:01:52 +08:00
|
|
|
ZEND_API zval *zend_hash_str_find(const HashTable *ht, const char *key, size_t len);
|
2014-08-26 01:24:55 +08:00
|
|
|
ZEND_API zval *zend_hash_index_find(const HashTable *ht, zend_ulong h);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
/* Misc */
|
2014-09-16 05:01:52 +08:00
|
|
|
ZEND_API zend_bool zend_hash_exists(const HashTable *ht, zend_string *key);
|
|
|
|
ZEND_API zend_bool zend_hash_str_exists(const HashTable *ht, const char *str, size_t len);
|
|
|
|
ZEND_API zend_bool zend_hash_index_exists(const HashTable *ht, zend_ulong h);
|
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) \
|
2013-07-09 05:09:06 +08:00
|
|
|
(zend_hash_get_current_key_type_ex(ht, pos) == HASH_KEY_NON_EXISTENT ? 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);
|
2014-08-26 01:24:55 +08:00
|
|
|
ZEND_API int zend_hash_get_current_key_ex(const HashTable *ht, zend_string **str_index, zend_ulong *num_index, zend_bool duplicate, HashPosition *pos);
|
2013-02-17 02:13:36 +08:00
|
|
|
ZEND_API void zend_hash_get_current_key_zval_ex(const HashTable *ht, zval *key, HashPosition *pos);
|
2000-03-13 23:25:18 +08:00
|
|
|
ZEND_API int zend_hash_get_current_key_type_ex(HashTable *ht, HashPosition *pos);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API zval *zend_hash_get_current_data_ex(HashTable *ht, HashPosition *pos);
|
2000-03-13 23:25:18 +08:00
|
|
|
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-01-10 23:58:08 +08:00
|
|
|
typedef struct _HashPointer {
|
2014-10-15 21:02:54 +08:00
|
|
|
HashPosition pos;
|
|
|
|
HashTable *ht;
|
|
|
|
zend_ulong h;
|
|
|
|
zend_string *key;
|
2007-01-10 23:58:08 +08:00
|
|
|
} HashPointer;
|
|
|
|
|
2003-07-19 22:19:04 +08:00
|
|
|
#define zend_hash_has_more_elements(ht) \
|
2014-04-08 03:14:17 +08:00
|
|
|
zend_hash_has_more_elements_ex(ht, &(ht)->nInternalPointer)
|
2000-03-13 23:25:18 +08:00
|
|
|
#define zend_hash_move_forward(ht) \
|
2014-04-08 03:14:17 +08:00
|
|
|
zend_hash_move_forward_ex(ht, &(ht)->nInternalPointer)
|
2000-03-13 23:25:18 +08:00
|
|
|
#define zend_hash_move_backwards(ht) \
|
2014-04-08 03:14:17 +08:00
|
|
|
zend_hash_move_backwards_ex(ht, &(ht)->nInternalPointer)
|
2000-12-22 20:49:51 +08:00
|
|
|
#define zend_hash_get_current_key(ht, str_index, num_index, duplicate) \
|
2014-04-08 03:14:17 +08:00
|
|
|
zend_hash_get_current_key_ex(ht, str_index, num_index, duplicate, &(ht)->nInternalPointer)
|
2013-02-17 02:13:36 +08:00
|
|
|
#define zend_hash_get_current_key_zval(ht, key) \
|
2014-04-08 03:14:17 +08:00
|
|
|
zend_hash_get_current_key_zval_ex(ht, key, &(ht)->nInternalPointer)
|
2000-03-13 23:25:18 +08:00
|
|
|
#define zend_hash_get_current_key_type(ht) \
|
2014-04-08 03:14:17 +08:00
|
|
|
zend_hash_get_current_key_type_ex(ht, &(ht)->nInternalPointer)
|
2014-02-10 14:04:30 +08:00
|
|
|
#define zend_hash_get_current_data(ht) \
|
2014-04-08 03:14:17 +08:00
|
|
|
zend_hash_get_current_data_ex(ht, &(ht)->nInternalPointer)
|
2000-03-13 23:25:18 +08:00
|
|
|
#define zend_hash_internal_pointer_reset(ht) \
|
2014-04-08 03:14:17 +08:00
|
|
|
zend_hash_internal_pointer_reset_ex(ht, &(ht)->nInternalPointer)
|
2000-03-13 23:25:18 +08:00
|
|
|
#define zend_hash_internal_pointer_end(ht) \
|
2014-04-08 03:14:17 +08:00
|
|
|
zend_hash_internal_pointer_end_ex(ht, &(ht)->nInternalPointer)
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
/* Copying, merging and sorting */
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API void zend_hash_copy(HashTable *target, HashTable *source, copy_ctor_func_t pCopyConstructor);
|
2014-09-16 05:01:52 +08:00
|
|
|
ZEND_API void _zend_hash_merge(HashTable *target, HashTable *source, copy_ctor_func_t pCopyConstructor, zend_bool overwrite ZEND_FILE_LINE_DC);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API void zend_hash_merge_ex(HashTable *target, HashTable *source, copy_ctor_func_t pCopyConstructor, merge_checker_func_t pMergeSource, void *pParam);
|
2014-09-16 05:01:52 +08:00
|
|
|
ZEND_API int zend_hash_sort(HashTable *ht, sort_func_t sort_func, compare_func_t compare_func, zend_bool 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);
|
2014-09-16 05:01:52 +08:00
|
|
|
ZEND_API zval *zend_hash_minmax(const HashTable *ht, compare_func_t compar, uint32_t flag TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define zend_hash_merge(target, source, pCopyConstructor, overwrite) \
|
|
|
|
_zend_hash_merge(target, source, pCopyConstructor, overwrite ZEND_FILE_LINE_CC)
|
2003-08-19 05:17:26 +08:00
|
|
|
|
2014-05-24 00:37:53 +08:00
|
|
|
#define zend_hash_num_elements(ht) \
|
|
|
|
(ht)->nNumOfElements
|
|
|
|
|
|
|
|
#define zend_hash_next_free_element(ht) \
|
|
|
|
(ht)->nNextFreeElement
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-11-05 05:02:35 +08:00
|
|
|
ZEND_API int zend_hash_rehash(HashTable *ht);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-05-24 00:37:53 +08:00
|
|
|
ZEND_API void zend_array_dup(HashTable *target, HashTable *source);
|
2014-11-25 17:58:29 +08:00
|
|
|
ZEND_API void zend_array_destroy(HashTable *ht TSRMLS_DC);
|
2014-11-25 19:17:21 +08:00
|
|
|
ZEND_API void zend_symtable_clean(HashTable *ht TSRMLS_DC);
|
2014-05-24 00:37:53 +08:00
|
|
|
|
1999-12-02 06:55:20 +08:00
|
|
|
#if ZEND_DEBUG
|
1999-04-08 02:10:10 +08:00
|
|
|
/* debug */
|
2008-08-13 01:20:25 +08:00
|
|
|
void zend_hash_display_pListTail(const HashTable *ht);
|
|
|
|
void zend_hash_display(const HashTable *ht);
|
1999-04-08 02:10:10 +08:00
|
|
|
#endif
|
|
|
|
|
2014-10-03 18:35:47 +08:00
|
|
|
ZEND_API int _zend_handle_numeric_str_ex(const char *key, size_t length, zend_ulong *idx);
|
|
|
|
|
1999-06-08 06:49:33 +08:00
|
|
|
END_EXTERN_C()
|
|
|
|
|
2000-04-25 18:10:44 +08:00
|
|
|
#define ZEND_INIT_SYMTABLE(ht) \
|
2014-04-21 22:25:34 +08:00
|
|
|
ZEND_INIT_SYMTABLE_EX(ht, 8, 0)
|
2000-04-25 18:10:44 +08:00
|
|
|
|
|
|
|
#define ZEND_INIT_SYMTABLE_EX(ht, n, persistent) \
|
|
|
|
zend_hash_init(ht, n, NULL, ZVAL_PTR_DTOR, persistent)
|
|
|
|
|
2014-09-18 22:50:05 +08:00
|
|
|
static zend_always_inline int _zend_handle_numeric_str(const char *key, size_t length, zend_ulong *idx)
|
2014-06-03 17:10:42 +08:00
|
|
|
{
|
|
|
|
register const char *tmp = key;
|
|
|
|
|
|
|
|
if (*tmp > '9') {
|
|
|
|
return 0;
|
|
|
|
} else if (*tmp < '0') {
|
|
|
|
if (*tmp != '-') {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
tmp++;
|
|
|
|
if (*tmp > '9' || *tmp < '0') {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2014-09-18 22:50:05 +08:00
|
|
|
return _zend_handle_numeric_str_ex(key, length, idx);
|
2014-06-03 17:10:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#define ZEND_HANDLE_NUMERIC_STR(key, length, idx) \
|
|
|
|
_zend_handle_numeric_str(key, length, &idx)
|
|
|
|
|
|
|
|
#define ZEND_HANDLE_NUMERIC(key, idx) \
|
2014-09-18 22:50:05 +08:00
|
|
|
ZEND_HANDLE_NUMERIC_STR((key)->val, (key)->len, idx)
|
2010-04-20 18:57:45 +08:00
|
|
|
|
2014-03-26 22:07:31 +08:00
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline zval *zend_hash_find_ind(const HashTable *ht, zend_string *key)
|
2014-03-26 22:07:31 +08:00
|
|
|
{
|
|
|
|
zval *zv;
|
|
|
|
|
|
|
|
zv = zend_hash_find(ht, key);
|
|
|
|
return (zv && Z_TYPE_P(zv) == IS_INDIRECT) ? Z_INDIRECT_P(zv) : zv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline int zend_hash_exists_ind(const HashTable *ht, zend_string *key)
|
2014-03-27 02:52:28 +08:00
|
|
|
{
|
|
|
|
zval *zv;
|
|
|
|
|
|
|
|
zv = zend_hash_find(ht, key);
|
|
|
|
return zv && (Z_TYPE_P(zv) != IS_INDIRECT ||
|
|
|
|
Z_TYPE_P(Z_INDIRECT_P(zv)) != IS_UNDEF);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-09 16:53:28 +08:00
|
|
|
static zend_always_inline zval *zend_hash_str_find_ind(const HashTable *ht, const char *str, size_t len)
|
2014-03-26 22:07:31 +08:00
|
|
|
{
|
|
|
|
zval *zv;
|
|
|
|
|
|
|
|
zv = zend_hash_str_find(ht, str, len);
|
|
|
|
return (zv && Z_TYPE_P(zv) == IS_INDIRECT) ? Z_INDIRECT_P(zv) : zv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline zval *zend_symtable_update(HashTable *ht, zend_string *key, zval *pData)
|
2003-07-23 00:06:07 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong idx;
|
2014-06-03 17:10:42 +08:00
|
|
|
|
|
|
|
if (ZEND_HANDLE_NUMERIC(key, idx)) {
|
|
|
|
return zend_hash_index_update(ht, idx, pData);
|
|
|
|
} else {
|
|
|
|
return zend_hash_update(ht, key, pData);
|
|
|
|
}
|
2003-07-23 00:06:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline zval *zend_symtable_update_ind(HashTable *ht, zend_string *key, zval *pData)
|
2014-03-26 22:07:31 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong idx;
|
2014-06-03 17:10:42 +08:00
|
|
|
|
|
|
|
if (ZEND_HANDLE_NUMERIC(key, idx)) {
|
|
|
|
return zend_hash_index_update(ht, idx, pData);
|
|
|
|
} else {
|
|
|
|
return zend_hash_update_ind(ht, key, pData);
|
|
|
|
}
|
2014-03-26 22:07:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline int zend_symtable_del(HashTable *ht, zend_string *key)
|
2003-07-23 00:06:07 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong idx;
|
2014-06-03 17:10:42 +08:00
|
|
|
|
|
|
|
if (ZEND_HANDLE_NUMERIC(key, idx)) {
|
|
|
|
return zend_hash_index_del(ht, idx);
|
|
|
|
} else {
|
|
|
|
return zend_hash_del(ht, key);
|
|
|
|
}
|
2003-07-23 00:06:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline int zend_symtable_del_ind(HashTable *ht, zend_string *key)
|
2014-03-26 22:07:31 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong idx;
|
2014-06-03 17:10:42 +08:00
|
|
|
|
|
|
|
if (ZEND_HANDLE_NUMERIC(key, idx)) {
|
|
|
|
return zend_hash_index_del(ht, idx);
|
|
|
|
} else {
|
|
|
|
return zend_hash_del_ind(ht, key);
|
|
|
|
}
|
2014-03-26 22:07:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline zval *zend_symtable_find(const HashTable *ht, zend_string *key)
|
2003-07-23 00:06:07 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong idx;
|
2014-06-03 17:10:42 +08:00
|
|
|
|
|
|
|
if (ZEND_HANDLE_NUMERIC(key, idx)) {
|
|
|
|
return zend_hash_index_find(ht, idx);
|
|
|
|
} else {
|
|
|
|
return zend_hash_find(ht, key);
|
|
|
|
}
|
2003-07-23 00:06:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline zval *zend_symtable_find_ind(const HashTable *ht, zend_string *key)
|
2014-03-26 22:07:31 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong idx;
|
2014-06-03 17:10:42 +08:00
|
|
|
|
|
|
|
if (ZEND_HANDLE_NUMERIC(key, idx)) {
|
|
|
|
return zend_hash_index_find(ht, idx);
|
|
|
|
} else {
|
|
|
|
return zend_hash_find_ind(ht, key);
|
|
|
|
}
|
2014-03-26 22:07:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline int zend_symtable_exists(HashTable *ht, zend_string *key)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong idx;
|
2014-06-03 17:10:42 +08:00
|
|
|
|
|
|
|
if (ZEND_HANDLE_NUMERIC(key, idx)) {
|
|
|
|
return zend_hash_index_exists(ht, idx);
|
|
|
|
} else {
|
|
|
|
return zend_hash_exists(ht, key);
|
|
|
|
}
|
2014-02-10 14:04:30 +08:00
|
|
|
}
|
|
|
|
|
2014-03-26 22:07:31 +08:00
|
|
|
|
2014-10-09 16:53:28 +08:00
|
|
|
static zend_always_inline zval *zend_symtable_str_update(HashTable *ht, const char *str, size_t len, zval *pData)
|
2003-07-23 00:06:07 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong idx;
|
2014-06-03 17:10:42 +08:00
|
|
|
|
|
|
|
if (ZEND_HANDLE_NUMERIC_STR(str, len, idx)) {
|
|
|
|
return zend_hash_index_update(ht, idx, pData);
|
|
|
|
} else {
|
|
|
|
return zend_hash_str_update(ht, str, len, pData);
|
|
|
|
}
|
2003-07-23 00:06:07 +08:00
|
|
|
}
|
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
|
2014-10-09 16:53:28 +08:00
|
|
|
static zend_always_inline zval *zend_symtable_str_update_ind(HashTable *ht, const char *str, size_t len, zval *pData)
|
2014-03-26 22:07:31 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong idx;
|
2014-06-03 17:10:42 +08:00
|
|
|
|
|
|
|
if (ZEND_HANDLE_NUMERIC_STR(str, len, idx)) {
|
|
|
|
return zend_hash_index_update(ht, idx, pData);
|
|
|
|
} else {
|
|
|
|
return zend_hash_str_update_ind(ht, str, len, pData);
|
|
|
|
}
|
2014-03-26 22:07:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-09 16:53:28 +08:00
|
|
|
static zend_always_inline int zend_symtable_str_del(HashTable *ht, const char *str, size_t len)
|
2005-12-05 16:56:09 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong idx;
|
2014-06-03 17:10:42 +08:00
|
|
|
|
|
|
|
if (ZEND_HANDLE_NUMERIC_STR(str, len, idx)) {
|
|
|
|
return zend_hash_index_del(ht, idx);
|
|
|
|
} else {
|
|
|
|
return zend_hash_str_del(ht, str, len);
|
|
|
|
}
|
2014-02-10 14:04:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-09 16:53:28 +08:00
|
|
|
static zend_always_inline int zend_symtable_str_del_ind(HashTable *ht, const char *str, size_t len)
|
2014-03-26 22:07:31 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong idx;
|
2014-06-03 17:10:42 +08:00
|
|
|
|
|
|
|
if (ZEND_HANDLE_NUMERIC_STR(str, len, idx)) {
|
|
|
|
return zend_hash_index_del(ht, idx);
|
|
|
|
} else {
|
|
|
|
return zend_hash_str_del_ind(ht, str, len);
|
|
|
|
}
|
2014-03-26 22:07:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-09 16:53:28 +08:00
|
|
|
static zend_always_inline zval *zend_symtable_str_find(HashTable *ht, const char *str, size_t len)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong idx;
|
2014-06-03 17:10:42 +08:00
|
|
|
|
|
|
|
if (ZEND_HANDLE_NUMERIC_STR(str, len, idx)) {
|
|
|
|
return zend_hash_index_find(ht, idx);
|
|
|
|
} else {
|
|
|
|
return zend_hash_str_find(ht, str, len);
|
|
|
|
}
|
2014-02-10 14:04:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-09 16:53:28 +08:00
|
|
|
static zend_always_inline int zend_symtable_str_exists(HashTable *ht, const char *str, size_t len)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong idx;
|
2014-06-03 17:10:42 +08:00
|
|
|
|
|
|
|
if (ZEND_HANDLE_NUMERIC_STR(str, len, idx)) {
|
|
|
|
return zend_hash_index_exists(ht, idx);
|
|
|
|
} else {
|
|
|
|
return zend_hash_str_exists(ht, str, len);
|
|
|
|
}
|
2014-02-10 14:04:30 +08:00
|
|
|
}
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline void *zend_hash_add_ptr(HashTable *ht, zend_string *key, void *pData)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
|
|
|
zval tmp, *zv;
|
|
|
|
|
|
|
|
ZVAL_PTR(&tmp, pData);
|
|
|
|
zv = zend_hash_add(ht, key, &tmp);
|
|
|
|
return zv ? Z_PTR_P(zv) : NULL;
|
|
|
|
}
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline void *zend_hash_add_new_ptr(HashTable *ht, zend_string *key, void *pData)
|
2014-05-27 01:29:35 +08:00
|
|
|
{
|
|
|
|
zval tmp, *zv;
|
|
|
|
|
|
|
|
ZVAL_PTR(&tmp, pData);
|
|
|
|
zv = zend_hash_add_new(ht, key, &tmp);
|
|
|
|
return zv ? Z_PTR_P(zv) : NULL;
|
|
|
|
}
|
|
|
|
|
2014-10-09 16:53:28 +08:00
|
|
|
static zend_always_inline void *zend_hash_str_add_ptr(HashTable *ht, const char *str, size_t len, void *pData)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
|
|
|
zval tmp, *zv;
|
|
|
|
|
|
|
|
ZVAL_PTR(&tmp, pData);
|
|
|
|
zv = zend_hash_str_add(ht, str, len, &tmp);
|
|
|
|
return zv ? Z_PTR_P(zv) : NULL;
|
|
|
|
}
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline void *zend_hash_update_ptr(HashTable *ht, zend_string *key, void *pData)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
|
|
|
zval tmp, *zv;
|
|
|
|
|
|
|
|
ZVAL_PTR(&tmp, pData);
|
|
|
|
zv = zend_hash_update(ht, key, &tmp);
|
|
|
|
return zv ? Z_PTR_P(zv) : NULL;
|
|
|
|
}
|
|
|
|
|
2014-10-09 16:53:28 +08:00
|
|
|
static zend_always_inline void *zend_hash_str_update_ptr(HashTable *ht, const char *str, size_t len, void *pData)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
|
|
|
zval tmp, *zv;
|
|
|
|
|
|
|
|
ZVAL_PTR(&tmp, pData);
|
|
|
|
zv = zend_hash_str_update(ht, str, len, &tmp);
|
|
|
|
return zv ? Z_PTR_P(zv) : NULL;
|
|
|
|
}
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline void *zend_hash_add_mem(HashTable *ht, zend_string *key, void *pData, size_t size)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
2014-04-25 15:29:18 +08:00
|
|
|
zval tmp, *zv;
|
2014-02-10 14:04:30 +08:00
|
|
|
|
2014-04-25 15:29:18 +08:00
|
|
|
ZVAL_PTR(&tmp, NULL);
|
|
|
|
if ((zv = zend_hash_add(ht, key, &tmp))) {
|
|
|
|
Z_PTR_P(zv) = pemalloc(size, ht->u.flags & HASH_FLAG_PERSISTENT);
|
|
|
|
memcpy(Z_PTR_P(zv), pData, size);
|
|
|
|
return Z_PTR_P(zv);
|
2014-03-15 19:33:36 +08:00
|
|
|
}
|
|
|
|
return NULL;
|
2014-02-10 14:04:30 +08:00
|
|
|
}
|
|
|
|
|
2014-10-09 16:53:28 +08:00
|
|
|
static zend_always_inline void *zend_hash_str_add_mem(HashTable *ht, const char *str, size_t len, void *pData, size_t size)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
2014-04-25 15:29:18 +08:00
|
|
|
zval tmp, *zv;
|
2014-02-10 14:04:30 +08:00
|
|
|
|
2014-04-25 15:29:18 +08:00
|
|
|
ZVAL_PTR(&tmp, NULL);
|
|
|
|
if ((zv = zend_hash_str_add(ht, str, len, &tmp))) {
|
|
|
|
Z_PTR_P(zv) = pemalloc(size, ht->u.flags & HASH_FLAG_PERSISTENT);
|
|
|
|
memcpy(Z_PTR_P(zv), pData, size);
|
|
|
|
return Z_PTR_P(zv);
|
2014-03-15 19:33:36 +08:00
|
|
|
}
|
|
|
|
return NULL;
|
2014-02-10 14:04:30 +08:00
|
|
|
}
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline void *zend_hash_update_mem(HashTable *ht, zend_string *key, void *pData, size_t size)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
|
|
|
void *p;
|
|
|
|
|
2014-04-21 22:25:34 +08:00
|
|
|
p = pemalloc(size, ht->u.flags & HASH_FLAG_PERSISTENT);
|
2014-02-10 14:04:30 +08:00
|
|
|
memcpy(p, pData, size);
|
|
|
|
return zend_hash_update_ptr(ht, key, p);
|
|
|
|
}
|
|
|
|
|
2014-10-09 16:53:28 +08:00
|
|
|
static zend_always_inline void *zend_hash_str_update_mem(HashTable *ht, const char *str, size_t len, void *pData, size_t size)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
|
|
|
void *p;
|
|
|
|
|
2014-04-21 22:25:34 +08:00
|
|
|
p = pemalloc(size, ht->u.flags & HASH_FLAG_PERSISTENT);
|
2014-02-10 14:04:30 +08:00
|
|
|
memcpy(p, pData, size);
|
|
|
|
return zend_hash_str_update_ptr(ht, str, len, p);
|
|
|
|
}
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline void *zend_hash_index_update_ptr(HashTable *ht, zend_ulong h, void *pData)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
|
|
|
zval tmp, *zv;
|
|
|
|
|
|
|
|
ZVAL_PTR(&tmp, pData);
|
|
|
|
zv = zend_hash_index_update(ht, h, &tmp);
|
|
|
|
return zv ? Z_PTR_P(zv) : NULL;
|
|
|
|
}
|
|
|
|
|
2014-10-29 06:07:36 +08:00
|
|
|
static zend_always_inline void *zend_hash_index_add_mem(HashTable *ht, zend_ulong h, void *pData, size_t size)
|
|
|
|
{
|
|
|
|
zval tmp, *zv;
|
|
|
|
|
|
|
|
ZVAL_PTR(&tmp, NULL);
|
|
|
|
if ((zv = zend_hash_index_add(ht, h, &tmp))) {
|
|
|
|
Z_PTR_P(zv) = pemalloc(size, ht->u.flags & HASH_FLAG_PERSISTENT);
|
|
|
|
memcpy(Z_PTR_P(zv), pData, size);
|
|
|
|
return Z_PTR_P(zv);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline void *zend_hash_next_index_insert_ptr(HashTable *ht, void *pData)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
|
|
|
zval tmp, *zv;
|
|
|
|
|
|
|
|
ZVAL_PTR(&tmp, pData);
|
|
|
|
zv = zend_hash_next_index_insert(ht, &tmp);
|
|
|
|
return zv ? Z_PTR_P(zv) : NULL;
|
|
|
|
}
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline void *zend_hash_index_update_mem(HashTable *ht, zend_ulong h, void *pData, size_t size)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
|
|
|
void *p;
|
|
|
|
|
2014-04-21 22:25:34 +08:00
|
|
|
p = pemalloc(size, ht->u.flags & HASH_FLAG_PERSISTENT);
|
2014-02-10 14:04:30 +08:00
|
|
|
memcpy(p, pData, size);
|
|
|
|
return zend_hash_index_update_ptr(ht, h, p);
|
|
|
|
}
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline void *zend_hash_next_index_insert_mem(HashTable *ht, void *pData, size_t size)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
2014-04-25 15:29:18 +08:00
|
|
|
zval tmp, *zv;
|
2014-02-10 14:04:30 +08:00
|
|
|
|
2014-04-25 15:29:18 +08:00
|
|
|
ZVAL_PTR(&tmp, NULL);
|
|
|
|
if ((zv = zend_hash_next_index_insert(ht, &tmp))) {
|
|
|
|
Z_PTR_P(zv) = pemalloc(size, ht->u.flags & HASH_FLAG_PERSISTENT);
|
|
|
|
memcpy(Z_PTR_P(zv), pData, size);
|
|
|
|
return Z_PTR_P(zv);
|
2014-03-15 19:33:36 +08:00
|
|
|
}
|
|
|
|
return NULL;
|
2014-02-10 14:04:30 +08:00
|
|
|
}
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline void *zend_hash_find_ptr(const HashTable *ht, zend_string *key)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
|
|
|
zval *zv;
|
|
|
|
|
|
|
|
zv = zend_hash_find(ht, key);
|
|
|
|
return zv ? Z_PTR_P(zv) : NULL;
|
|
|
|
}
|
|
|
|
|
2014-10-09 16:53:28 +08:00
|
|
|
static zend_always_inline void *zend_hash_str_find_ptr(const HashTable *ht, const char *str, size_t len)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
|
|
|
zval *zv;
|
|
|
|
|
|
|
|
zv = zend_hash_str_find(ht, str, len);
|
|
|
|
return zv ? Z_PTR_P(zv) : NULL;
|
|
|
|
}
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline void *zend_hash_index_find_ptr(const HashTable *ht, zend_ulong h)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
|
|
|
zval *zv;
|
|
|
|
|
|
|
|
zv = zend_hash_index_find(ht, h);
|
|
|
|
return zv ? Z_PTR_P(zv) : NULL;
|
|
|
|
}
|
|
|
|
|
2014-10-09 16:53:28 +08:00
|
|
|
static zend_always_inline void *zend_symtable_str_find_ptr(HashTable *ht, const char *str, size_t len)
|
2014-07-29 14:15:01 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong idx;
|
2014-07-29 14:15:01 +08:00
|
|
|
|
|
|
|
if (ZEND_HANDLE_NUMERIC_STR(str, len, idx)) {
|
|
|
|
return zend_hash_index_find_ptr(ht, idx);
|
|
|
|
} else {
|
|
|
|
return zend_hash_str_find_ptr(ht, str, len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-18 08:59:01 +08:00
|
|
|
static zend_always_inline void *zend_hash_get_current_data_ptr_ex(HashTable *ht, HashPosition *pos)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
|
|
|
zval *zv;
|
|
|
|
|
2014-02-11 19:30:42 +08:00
|
|
|
zv = zend_hash_get_current_data_ex(ht, pos);
|
2014-02-10 14:04:30 +08:00
|
|
|
return zv ? Z_PTR_P(zv) : NULL;
|
2005-12-05 16:56:09 +08:00
|
|
|
}
|
2009-05-25 09:18:00 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define zend_hash_get_current_data_ptr(ht) \
|
2014-04-08 03:14:17 +08:00
|
|
|
zend_hash_get_current_data_ptr_ex(ht, &(ht)->nInternalPointer)
|
2005-12-05 16:56:09 +08:00
|
|
|
|
2014-04-19 04:08:14 +08:00
|
|
|
#define ZEND_HASH_FOREACH(_ht, indirect) do { \
|
2014-04-18 23:18:11 +08:00
|
|
|
uint _idx; \
|
|
|
|
for (_idx = 0; _idx < (_ht)->nNumUsed; _idx++) { \
|
2014-04-19 04:08:14 +08:00
|
|
|
Bucket *_p = (_ht)->arData + _idx; \
|
|
|
|
zval *_z = &_p->val; \
|
|
|
|
if (indirect && Z_TYPE_P(_z) == IS_INDIRECT) { \
|
2014-04-18 23:18:11 +08:00
|
|
|
_z = Z_INDIRECT_P(_z); \
|
|
|
|
} \
|
2014-04-19 04:08:14 +08:00
|
|
|
if (Z_TYPE_P(_z) == IS_UNDEF) continue;
|
2014-04-18 23:18:11 +08:00
|
|
|
|
2014-04-19 04:08:14 +08:00
|
|
|
#define ZEND_HASH_REVERSE_FOREACH(_ht, indirect) do { \
|
2014-04-18 23:18:11 +08:00
|
|
|
uint _idx; \
|
2014-04-19 04:08:14 +08:00
|
|
|
for (_idx = (_ht)->nNumUsed; _idx > 0; _idx--) { \
|
|
|
|
Bucket *_p = (_ht)->arData + _idx - 1; \
|
|
|
|
zval *_z = &_p->val; \
|
|
|
|
if (indirect && Z_TYPE_P(_z) == IS_INDIRECT) { \
|
2014-04-18 23:18:11 +08:00
|
|
|
_z = Z_INDIRECT_P(_z); \
|
|
|
|
} \
|
2014-04-19 04:08:14 +08:00
|
|
|
if (Z_TYPE_P(_z) == IS_UNDEF) continue;
|
2014-04-18 23:18:11 +08:00
|
|
|
|
|
|
|
#define ZEND_HASH_FOREACH_END() \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2014-05-19 04:50:00 +08:00
|
|
|
#define ZEND_HASH_FOREACH_BUCKET(ht, _bucket) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 0); \
|
|
|
|
_bucket = _p;
|
|
|
|
|
2014-04-19 04:08:14 +08:00
|
|
|
#define ZEND_HASH_FOREACH_VAL(ht, _val) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 0); \
|
|
|
|
_val = _z;
|
|
|
|
|
|
|
|
#define ZEND_HASH_FOREACH_VAL_IND(ht, _val) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 1); \
|
|
|
|
_val = _z;
|
|
|
|
|
|
|
|
#define ZEND_HASH_FOREACH_PTR(ht, _ptr) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 0); \
|
|
|
|
_ptr = Z_PTR_P(_z);
|
|
|
|
|
2014-04-24 23:14:29 +08:00
|
|
|
#define ZEND_HASH_FOREACH_NUM_KEY(ht, _h) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 0); \
|
|
|
|
_h = _p->h;
|
|
|
|
|
2014-04-22 21:46:34 +08:00
|
|
|
#define ZEND_HASH_FOREACH_STR_KEY(ht, _key) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 0); \
|
|
|
|
_key = _p->key;
|
|
|
|
|
2014-04-19 04:08:14 +08:00
|
|
|
#define ZEND_HASH_FOREACH_KEY(ht, _h, _key) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 0); \
|
|
|
|
_h = _p->h; \
|
|
|
|
_key = _p->key;
|
2014-08-26 05:05:05 +08:00
|
|
|
|
|
|
|
#define ZEND_HASH_FOREACH_NUM_KEY_VAL(ht, _h, _val) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 0); \
|
|
|
|
_h = _p->h; \
|
|
|
|
_val = _z;
|
2014-04-19 04:08:14 +08:00
|
|
|
|
2014-04-22 21:46:34 +08:00
|
|
|
#define ZEND_HASH_FOREACH_STR_KEY_VAL(ht, _key, _val) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 0); \
|
|
|
|
_key = _p->key; \
|
|
|
|
_val = _z;
|
|
|
|
|
2014-04-19 04:08:14 +08:00
|
|
|
#define ZEND_HASH_FOREACH_KEY_VAL(ht, _h, _key, _val) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 0); \
|
|
|
|
_h = _p->h; \
|
|
|
|
_key = _p->key; \
|
|
|
|
_val = _z;
|
|
|
|
|
2014-04-22 21:46:34 +08:00
|
|
|
#define ZEND_HASH_FOREACH_STR_KEY_VAL_IND(ht, _key, _val) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 1); \
|
|
|
|
_key = _p->key; \
|
|
|
|
_val = _z;
|
|
|
|
|
2014-04-19 04:08:14 +08:00
|
|
|
#define ZEND_HASH_FOREACH_KEY_VAL_IND(ht, _h, _key, _val) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 1); \
|
|
|
|
_h = _p->h; \
|
|
|
|
_key = _p->key; \
|
|
|
|
_val = _z;
|
|
|
|
|
2014-10-29 06:07:36 +08:00
|
|
|
#define ZEND_HASH_FOREACH_NUM_KEY_PTR(ht, _h, _ptr) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 0); \
|
|
|
|
_h = _p->h; \
|
|
|
|
_ptr = Z_PTR_P(_z);
|
|
|
|
|
2014-04-22 21:46:34 +08:00
|
|
|
#define ZEND_HASH_FOREACH_STR_KEY_PTR(ht, _key, _ptr) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 0); \
|
|
|
|
_key = _p->key; \
|
|
|
|
_ptr = Z_PTR_P(_z);
|
|
|
|
|
2014-04-19 04:08:14 +08:00
|
|
|
#define ZEND_HASH_FOREACH_KEY_PTR(ht, _h, _key, _ptr) \
|
|
|
|
ZEND_HASH_FOREACH(ht, 0); \
|
|
|
|
_h = _p->h; \
|
|
|
|
_key = _p->key; \
|
|
|
|
_ptr = Z_PTR_P(_z);
|
|
|
|
|
|
|
|
#define ZEND_HASH_REVERSE_FOREACH_VAL(ht, _val) \
|
|
|
|
ZEND_HASH_REVERSE_FOREACH(ht, 0); \
|
|
|
|
_val = _z;
|
|
|
|
|
2014-04-21 17:55:25 +08:00
|
|
|
#define ZEND_HASH_REVERSE_FOREACH_PTR(ht, _ptr) \
|
|
|
|
ZEND_HASH_REVERSE_FOREACH(ht, 0); \
|
|
|
|
_ptr = Z_PTR_P(_z);
|
|
|
|
|
2014-04-19 04:08:14 +08:00
|
|
|
#define ZEND_HASH_REVERSE_FOREACH_VAL_IND(ht, _val) \
|
|
|
|
ZEND_HASH_REVERSE_FOREACH(ht, 1); \
|
|
|
|
_val = _z;
|
|
|
|
|
|
|
|
#define ZEND_HASH_REVERSE_FOREACH_KEY_VAL(ht, _h, _key, _val) \
|
|
|
|
ZEND_HASH_REVERSE_FOREACH(ht, 0); \
|
|
|
|
_h = _p->h; \
|
|
|
|
_key = _p->key; \
|
|
|
|
_val = _z;
|
|
|
|
|
|
|
|
#define ZEND_HASH_REVERSE_FOREACH_KEY_VAL_IND(ht, _h, _key, _val) \
|
|
|
|
ZEND_HASH_REVERSE_FOREACH(ht, 1); \
|
|
|
|
_h = _p->h; \
|
|
|
|
_key = _p->key; \
|
|
|
|
_val = _z;
|
2014-04-18 23:18:11 +08:00
|
|
|
|
2014-05-29 22:21:56 +08:00
|
|
|
#define ZEND_HASH_APPLY_PROTECTION(ht) \
|
|
|
|
((ht)->u.flags & HASH_FLAG_APPLY_PROTECTION)
|
|
|
|
|
2014-04-24 03:44:26 +08:00
|
|
|
#define ZEND_HASH_APPLY_SHIFT 8
|
2014-05-29 22:21:56 +08:00
|
|
|
#define ZEND_HASH_GET_APPLY_COUNT(ht) ((ht)->u.flags >> ZEND_HASH_APPLY_SHIFT)
|
|
|
|
#define ZEND_HASH_INC_APPLY_COUNT(ht) ((ht)->u.flags += (1 << ZEND_HASH_APPLY_SHIFT))
|
|
|
|
#define ZEND_HASH_DEC_APPLY_COUNT(ht) ((ht)->u.flags -= (1 << ZEND_HASH_APPLY_SHIFT))
|
2014-04-24 03:44:26 +08:00
|
|
|
|
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:
|
|
|
|
*/
|