php-src/Zend/zend_list.c

349 lines
8.6 KiB
C
Raw Normal View History

1999-04-07 18:10:10 +00:00
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
2017-01-02 15:30:12 +00:00
| Copyright (c) 1998-2017 Zend Technologies Ltd. (http://www.zend.com) |
1999-04-07 18:10:10 +00:00
+----------------------------------------------------------------------+
2001-12-11 15:16:21 +00:00
| This source file is subject to version 2.00 of the Zend license, |
2015-01-03 09:22:58 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
2001-12-11 15:16:21 +00:00
| http://www.zend.com/license/2_00.txt. |
1999-07-16 14:58:16 +00: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-07 18:10:10 +00:00
+----------------------------------------------------------------------+
| Authors: Andi Gutmans <andi@zend.com> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
/* $Id$ */
1999-07-16 14:58:16 +00:00
1999-09-03 19:12:07 +00:00
/* resource lists */
1999-04-07 18:10:10 +00:00
#include "zend.h"
#include "zend_list.h"
#include "zend_API.h"
#include "zend_globals.h"
ZEND_API int le_index_ptr;
1999-04-07 18:10:10 +00:00
/* true global */
static HashTable list_destructors;
2014-12-13 22:06:14 +00:00
ZEND_API zval *zend_list_insert(void *ptr, int type)
1999-04-07 18:10:10 +00:00
{
int index;
zval zv;
2001-03-28 15:32:52 +00:00
index = zend_hash_next_free_element(&EG(regular_list));
if (index == 0) {
index = 1;
}
ZVAL_NEW_RES(&zv, index, ptr, type);
2014-05-26 20:38:58 +00:00
return zend_hash_index_add_new(&EG(regular_list), index, &zv);
1999-04-07 18:10:10 +00:00
}
2014-12-31 13:47:14 +00:00
ZEND_API int zend_list_delete(zend_resource *res)
1999-04-07 18:10:10 +00:00
{
2014-05-07 22:48:31 +00:00
if (--GC_REFCOUNT(res) <= 0) {
return zend_hash_index_del(&EG(regular_list), res->handle);
1999-04-07 18:10:10 +00:00
} else {
return SUCCESS;
}
}
2014-12-31 13:47:14 +00:00
ZEND_API int zend_list_free(zend_resource *res)
2014-05-07 22:48:31 +00:00
{
if (GC_REFCOUNT(res) <= 0) {
return zend_hash_index_del(&EG(regular_list), res->handle);
} else {
return SUCCESS;
}
}
2014-12-13 22:06:14 +00:00
static void zend_resource_dtor(zend_resource *res)
{
zend_rsrc_list_dtors_entry *ld;
zend_resource r = *res;
2015-01-03 09:22:58 +00:00
res->type = -1;
res->ptr = NULL;
ld = zend_hash_index_find_ptr(&list_destructors, r.type);
if (ld) {
if (ld->list_dtor_ex) {
ld->list_dtor_ex(&r);
}
} else {
zend_error(E_WARNING, "Unknown list entry type (%d)", r.type);
}
}
2014-12-31 13:47:14 +00:00
ZEND_API int zend_list_close(zend_resource *res)
2014-02-27 08:28:55 +00:00
{
if (GC_REFCOUNT(res) <= 0) {
return zend_list_free(res);
2014-02-27 08:28:55 +00:00
} else if (res->type >= 0) {
2014-12-13 22:06:14 +00:00
zend_resource_dtor(res);
2014-02-27 08:28:55 +00:00
}
return SUCCESS;
}
2015-02-02 05:23:16 +00:00
ZEND_API zend_resource* zend_register_resource(void *rsrc_pointer, int rsrc_type)
2000-01-15 22:52:24 +00:00
{
zval *zv;
1999-10-12 14:51:17 +00:00
2014-12-13 22:06:14 +00:00
zv = zend_list_insert(rsrc_pointer, rsrc_type);
2015-01-03 09:22:58 +00:00
2015-02-02 05:23:16 +00:00
return Z_RES_P(zv);
1999-09-03 19:12:07 +00:00
}
2015-02-02 06:45:19 +00:00
ZEND_API void *zend_fetch_resource2(zend_resource *res, const char *resource_type_name, int resource_type1, int resource_type2)
1999-09-03 19:12:07 +00:00
{
2015-07-14 02:44:51 +00:00
if (res) {
if (resource_type1 == res->type) {
return res->ptr;
}
2015-02-02 05:23:16 +00:00
2015-07-14 02:44:51 +00:00
if (resource_type2 == res->type) {
return res->ptr;
}
2015-02-02 05:23:16 +00:00
}
if (resource_type_name) {
const char *space;
const char *class_name = get_active_class_name(&space);
zend_error(E_WARNING, "%s%s%s(): supplied resource is not a valid %s resource", class_name, space, get_active_function_name(), resource_type_name);
}
return NULL;
}
ZEND_API void *zend_fetch_resource(zend_resource *res, const char *resource_type_name, int resource_type)
{
if (resource_type == res->type) {
return res->ptr;
1999-09-03 19:12:07 +00:00
}
2000-06-15 19:09:51 +00:00
if (resource_type_name) {
2015-02-02 05:23:16 +00:00
const char *space;
const char *class_name = get_active_class_name(&space);
2014-12-13 22:06:14 +00:00
zend_error(E_WARNING, "%s%s%s(): supplied resource is not a valid %s resource", class_name, space, get_active_function_name(), resource_type_name);
2000-06-15 19:09:51 +00:00
}
1999-09-03 19:12:07 +00:00
return NULL;
}
2015-02-02 05:23:16 +00:00
ZEND_API void *zend_fetch_resource_ex(zval *res, const char *resource_type_name, int resource_type)
{
const char *space, *class_name;
if (res == NULL) {
if (resource_type_name) {
class_name = get_active_class_name(&space);
zend_error(E_WARNING, "%s%s%s(): no %s resource supplied", class_name, space, get_active_function_name(), resource_type_name);
}
return NULL;
}
if (Z_TYPE_P(res) != IS_RESOURCE) {
if (resource_type_name) {
class_name = get_active_class_name(&space);
zend_error(E_WARNING, "%s%s%s(): supplied argument is not a valid %s resource", class_name, space, get_active_function_name(), resource_type_name);
}
return NULL;
}
return zend_fetch_resource(Z_RES_P(res), resource_type_name, resource_type);
}
2015-02-02 06:45:19 +00:00
ZEND_API void *zend_fetch_resource2_ex(zval *res, const char *resource_type_name, int resource_type1, int resource_type2)
2015-02-02 05:23:16 +00:00
{
const char *space, *class_name;
if (res == NULL) {
if (resource_type_name) {
class_name = get_active_class_name(&space);
zend_error(E_WARNING, "%s%s%s(): no %s resource supplied", class_name, space, get_active_function_name(), resource_type_name);
}
return NULL;
}
if (Z_TYPE_P(res) != IS_RESOURCE) {
if (resource_type_name) {
class_name = get_active_class_name(&space);
zend_error(E_WARNING, "%s%s%s(): supplied argument is not a valid %s resource", class_name, space, get_active_function_name(), resource_type_name);
}
return NULL;
}
2015-02-02 06:45:19 +00:00
return zend_fetch_resource2(Z_RES_P(res), resource_type_name, resource_type1, resource_type2);
2015-02-02 05:23:16 +00:00
}
void list_entry_destructor(zval *zv)
1999-04-07 18:10:10 +00:00
{
zend_resource *res = Z_RES_P(zv);
2014-02-27 08:28:55 +00:00
ZVAL_UNDEF(zv);
2014-02-27 08:28:55 +00:00
if (res->type >= 0) {
2014-12-13 22:06:14 +00:00
zend_resource_dtor(res);
1999-04-07 18:10:10 +00:00
}
efree_size(res, sizeof(zend_resource));
1999-04-07 18:10:10 +00:00
}
void plist_entry_destructor(zval *zv)
1999-04-07 18:10:10 +00:00
{
zend_resource *res = Z_RES_P(zv);
1999-04-07 18:10:10 +00:00
if (res->type >= 0) {
2014-04-11 10:47:38 +00:00
zend_rsrc_list_dtors_entry *ld;
2015-01-03 09:22:58 +00:00
2014-04-11 10:47:38 +00:00
ld = zend_hash_index_find_ptr(&list_destructors, res->type);
if (ld) {
if (ld->plist_dtor_ex) {
2014-12-13 22:06:14 +00:00
ld->plist_dtor_ex(res);
2014-04-11 10:47:38 +00:00
}
} else {
zend_error(E_WARNING,"Unknown list entry type (%d)", res->type);
}
1999-04-07 18:10:10 +00:00
}
free(res);
1999-04-07 18:10:10 +00:00
}
2014-12-13 22:06:14 +00:00
int zend_init_rsrc_list(void)
1999-04-07 18:10:10 +00:00
{
zend_hash_init(&EG(regular_list), 8, NULL, list_entry_destructor, 0);
return SUCCESS;
1999-04-07 18:10:10 +00:00
}
2014-12-13 22:06:14 +00:00
int zend_init_rsrc_plist(void)
1999-04-07 18:10:10 +00:00
{
zend_hash_init_ex(&EG(persistent_list), 8, NULL, plist_entry_destructor, 1, 0);
return SUCCESS;
1999-04-07 18:10:10 +00:00
}
2014-12-13 22:06:14 +00:00
static int zend_close_rsrc(zval *zv)
{
zend_resource *res = Z_PTR_P(zv);
if (res->type >= 0) {
2014-12-13 22:06:14 +00:00
zend_resource_dtor(res);
}
return ZEND_HASH_APPLY_KEEP;
}
2014-12-13 22:06:14 +00:00
void zend_close_rsrc_list(HashTable *ht)
{
2014-12-13 22:06:14 +00:00
zend_hash_reverse_apply(ht, zend_close_rsrc);
}
2014-12-13 22:06:14 +00:00
void zend_destroy_rsrc_list(HashTable *ht)
1999-04-07 18:10:10 +00:00
{
zend_hash_graceful_reverse_destroy(ht);
1999-04-07 18:10:10 +00:00
}
2014-12-13 22:06:14 +00:00
static int clean_module_resource(zval *zv, void *arg)
1999-04-07 18:10:10 +00:00
{
2014-05-26 03:05:04 +00:00
int resource_id = *(int *)arg;
if (Z_RES_TYPE_P(zv) == resource_id) {
1999-04-07 18:10:10 +00:00
return 1;
} else {
return 0;
}
}
2014-12-13 22:06:14 +00:00
static int zend_clean_module_rsrc_dtors_cb(zval *zv, void *arg)
1999-04-07 18:10:10 +00:00
{
2015-01-03 09:22:58 +00:00
zend_rsrc_list_dtors_entry *ld = (zend_rsrc_list_dtors_entry *)Z_PTR_P(zv);
2014-05-26 03:05:04 +00:00
int module_number = *(int *)arg;
if (ld->module_number == module_number) {
2014-12-13 22:06:14 +00:00
zend_hash_apply_with_argument(&EG(persistent_list), clean_module_resource, (void *) &(ld->resource_id));
1999-04-07 18:10:10 +00:00
return 1;
} else {
return 0;
}
}
2014-12-13 22:06:14 +00:00
void zend_clean_module_rsrc_dtors(int module_number)
{
2014-12-13 22:06:14 +00:00
zend_hash_apply_with_argument(&list_destructors, zend_clean_module_rsrc_dtors_cb, (void *) &module_number);
}
ZEND_API int zend_register_list_destructors_ex(rsrc_dtor_func_t ld, rsrc_dtor_func_t pld, const char *type_name, int module_number)
{
zend_rsrc_list_dtors_entry *lde;
zval zv;
2015-01-03 09:22:58 +00:00
lde = malloc(sizeof(zend_rsrc_list_dtors_entry));
lde->list_dtor_ex = ld;
lde->plist_dtor_ex = pld;
lde->module_number = module_number;
lde->resource_id = list_destructors.nNextFreeElement;
lde->type_name = type_name;
ZVAL_PTR(&zv, lde);
2015-01-03 09:22:58 +00:00
if (zend_hash_next_index_insert(&list_destructors, &zv) == NULL) {
return FAILURE;
}
return list_destructors.nNextFreeElement-1;
}
ZEND_API int zend_fetch_list_dtor_id(const char *type_name)
{
zend_rsrc_list_dtors_entry *lde;
ZEND_HASH_FOREACH_PTR(&list_destructors, lde) {
if (lde->type_name && (strcmp(type_name, lde->type_name) == 0)) {
return lde->resource_id;
}
} ZEND_HASH_FOREACH_END();
return 0;
}
static void list_destructors_dtor(zval *zv)
{
free(Z_PTR_P(zv));
}
2001-01-23 17:55:17 +00:00
int zend_init_rsrc_list_dtors(void)
{
zend_hash_init(&list_destructors, 64, NULL, list_destructors_dtor, 1);
2001-05-20 16:04:22 +00:00
list_destructors.nNextFreeElement=1; /* we don't want resource type 0 */
return SUCCESS;
}
2001-01-23 17:55:17 +00:00
void zend_destroy_rsrc_list_dtors(void)
{
zend_hash_destroy(&list_destructors);
}
2014-12-13 22:06:14 +00:00
const char *zend_rsrc_list_get_rsrc_type(zend_resource *res)
{
zend_rsrc_list_dtors_entry *lde;
lde = zend_hash_index_find_ptr(&list_destructors, res->type);
if (lde) {
return lde->type_name;
} else {
return NULL;
}
}
1999-04-07 18:10:10 +00:00
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* indent-tabs-mode: t
1999-04-07 18:10:10 +00:00
* End:
2017-07-04 16:12:45 +00:00
* vim600: sw=4 ts=4 fdm=marker
* vim<600: sw=4 ts=4
1999-04-07 18:10:10 +00:00
*/