2003-10-18 01:19:44 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2014-01-03 11:08:10 +08:00
|
|
|
| Copyright (c) 1998-2014 Zend Technologies Ltd. (http://www.zend.com) |
|
2003-10-18 01:19:44 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
|
|
|
| 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. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: Wez Furlong <wez@thebrainroom.com> |
|
|
|
|
| Marcus Boerger <helly@php.net> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#include "zend.h"
|
|
|
|
#include "zend_API.h"
|
|
|
|
|
|
|
|
static zend_class_entry zend_iterator_class_entry;
|
|
|
|
|
2014-02-12 22:08:11 +08:00
|
|
|
static void iter_wrapper_dtor(zend_object *object TSRMLS_DC);
|
|
|
|
|
2003-10-18 01:19:44 +08:00
|
|
|
static zend_object_handlers iterator_object_handlers = {
|
2014-04-09 05:50:15 +08:00
|
|
|
0,
|
2014-02-12 22:08:11 +08:00
|
|
|
iter_wrapper_dtor,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2003-10-18 01:19:44 +08:00
|
|
|
NULL, /* prop read */
|
|
|
|
NULL, /* prop write */
|
|
|
|
NULL, /* read dim */
|
|
|
|
NULL, /* write dim */
|
|
|
|
NULL,
|
|
|
|
NULL, /* get */
|
|
|
|
NULL, /* set */
|
2003-11-11 02:05:02 +08:00
|
|
|
NULL, /* has prop */
|
|
|
|
NULL, /* unset prop */
|
|
|
|
NULL, /* has dim */
|
|
|
|
NULL, /* unset dim */
|
2003-10-18 01:19:44 +08:00
|
|
|
NULL, /* props get */
|
|
|
|
NULL, /* method get */
|
|
|
|
NULL, /* call */
|
|
|
|
NULL, /* get ctor */
|
2003-11-11 06:06:26 +08:00
|
|
|
NULL, /* get_ce */
|
2003-10-18 01:19:44 +08:00
|
|
|
NULL, /* get class name */
|
|
|
|
NULL, /* compare */
|
2004-05-04 23:03:28 +08:00
|
|
|
NULL, /* cast */
|
|
|
|
NULL /* count */
|
2003-10-18 01:19:44 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
ZEND_API void zend_register_iterator_wrapper(TSRMLS_D)
|
|
|
|
{
|
|
|
|
INIT_CLASS_ENTRY(zend_iterator_class_entry, "__iterator_wrapper", NULL);
|
2014-02-10 14:04:30 +08:00
|
|
|
//??? STR_RELEASE(zend_iterator_class_entry.name);
|
|
|
|
//??? zend_iterator_class_entry.name = STR_INIT("__iterator_wrapper", sizeof("__iterator_wrapper")-1, 0);
|
2003-10-18 01:19:44 +08:00
|
|
|
}
|
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
static void iter_wrapper_dtor(zend_object *object TSRMLS_DC)
|
2003-10-18 01:19:44 +08:00
|
|
|
{
|
|
|
|
zend_object_iterator *iter = (zend_object_iterator*)object;
|
|
|
|
iter->funcs->dtor(iter TSRMLS_CC);
|
|
|
|
}
|
|
|
|
|
2014-02-26 19:01:08 +08:00
|
|
|
ZEND_API void zend_iterator_init(zend_object_iterator *iter TSRMLS_DC)
|
2003-10-18 01:19:44 +08:00
|
|
|
{
|
2014-02-26 19:01:08 +08:00
|
|
|
zend_object_std_init(&iter->std, &zend_iterator_class_entry);
|
|
|
|
iter->std.handlers = &iterator_object_handlers;
|
2003-10-18 01:19:44 +08:00
|
|
|
}
|
|
|
|
|
2014-02-28 15:03:43 +08:00
|
|
|
ZEND_API void zend_iterator_dtor(zend_object_iterator *iter TSRMLS_DC)
|
|
|
|
{
|
2014-04-02 18:34:44 +08:00
|
|
|
if (--GC_REFCOUNT(iter) > 0) {
|
2014-02-28 15:03:43 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
zend_objects_store_del(&iter->std TSRMLS_CC);
|
|
|
|
}
|
|
|
|
|
2003-10-18 01:19:44 +08:00
|
|
|
ZEND_API enum zend_object_iterator_kind zend_iterator_unwrap(
|
|
|
|
zval *array_ptr, zend_object_iterator **iter TSRMLS_DC)
|
|
|
|
{
|
|
|
|
switch (Z_TYPE_P(array_ptr)) {
|
|
|
|
case IS_OBJECT:
|
2003-11-11 06:06:26 +08:00
|
|
|
if (Z_OBJ_HT_P(array_ptr) == &iterator_object_handlers) {
|
2014-02-10 14:04:30 +08:00
|
|
|
*iter = (zend_object_iterator *)Z_OBJ_P(array_ptr);
|
2003-10-18 01:19:44 +08:00
|
|
|
return ZEND_ITER_OBJECT;
|
|
|
|
}
|
2010-04-20 19:16:39 +08:00
|
|
|
if (Z_OBJPROP_P(array_ptr)) {
|
2004-01-25 21:32:02 +08:00
|
|
|
return ZEND_ITER_PLAIN_OBJECT;
|
|
|
|
}
|
|
|
|
return ZEND_ITER_INVALID;
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2003-10-18 01:19:44 +08:00
|
|
|
case IS_ARRAY:
|
2010-04-20 19:16:39 +08:00
|
|
|
if (Z_ARRVAL_P(array_ptr)) {
|
2004-01-25 21:32:02 +08:00
|
|
|
return ZEND_ITER_PLAIN_ARRAY;
|
|
|
|
}
|
|
|
|
return ZEND_ITER_INVALID;
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2003-10-18 01:19:44 +08:00
|
|
|
default:
|
|
|
|
return ZEND_ITER_INVALID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* indent-tabs-mode: t
|
|
|
|
* End:
|
|
|
|
*/
|