summaryrefslogtreecommitdiff
path: root/Zend/zend_iterators.c
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2003-10-20 15:33:55 +0000
committerSVN Migration <svn@php.net>2003-10-20 15:33:55 +0000
commitb35a47887225d5eb0c607327cd013e9f56e862d1 (patch)
treeca5cff0d747c59ff8ed7ff8a5c3cf0b51dff8764 /Zend/zend_iterators.c
parentf811341773306eb5c77f63ef13bd677ac4641938 (diff)
downloadphp-git-RELEASE_1_3b3.tar.gz
This commit was manufactured by cvs2svn to create tag 'RELEASE_1_3b3'.RELEASE_1_3b3
Diffstat (limited to 'Zend/zend_iterators.c')
-rwxr-xr-xZend/zend_iterators.c108
1 files changed, 0 insertions, 108 deletions
diff --git a/Zend/zend_iterators.c b/Zend/zend_iterators.c
deleted file mode 100755
index 3da67b26cf..0000000000
--- a/Zend/zend_iterators.c
+++ /dev/null
@@ -1,108 +0,0 @@
-/*
- +----------------------------------------------------------------------+
- | Zend Engine |
- +----------------------------------------------------------------------+
- | Copyright (c) 1998-2003 Zend Technologies Ltd. (http://www.zend.com) |
- +----------------------------------------------------------------------+
- | 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;
-
-static zend_class_entry *iter_handler_get_ce(zval *object TSRMLS_DC)
-{
- return &zend_iterator_class_entry;
-}
-
-static zend_object_handlers iterator_object_handlers = {
- ZEND_OBJECTS_STORE_HANDLERS,
- NULL, /* prop read */
- NULL, /* prop write */
- NULL, /* read dim */
- NULL, /* write dim */
- NULL,
- NULL, /* get */
- NULL, /* set */
- NULL, /* isset */
- NULL, /* unset */
- NULL, /* dim unset */
- NULL, /* props get */
- NULL, /* method get */
- NULL, /* call */
- NULL, /* get ctor */
- iter_handler_get_ce,
- NULL, /* get class name */
- NULL, /* compare */
- NULL /* cast */
-};
-
-ZEND_API void zend_register_iterator_wrapper(TSRMLS_D)
-{
- INIT_CLASS_ENTRY(zend_iterator_class_entry, "__iterator_wrapper", NULL);
-}
-
-static void iter_wrapper_dtor(void *object, zend_object_handle handle TSRMLS_DC)
-{
- zend_object_iterator *iter = (zend_object_iterator*)object;
- iter->funcs->dtor(iter TSRMLS_CC);
-}
-
-ZEND_API zval *zend_iterator_wrap(zend_object_iterator *iter TSRMLS_DC)
-{
- zval *wrapped;
-
- MAKE_STD_ZVAL(wrapped);
- Z_TYPE_P(wrapped) = IS_OBJECT;
- wrapped->value.obj.handle = zend_objects_store_put(iter, iter_wrapper_dtor, NULL TSRMLS_CC);
- wrapped->value.obj.handlers = &iterator_object_handlers;
-
- return wrapped;
-}
-
-ZEND_API enum zend_object_iterator_kind zend_iterator_unwrap(
- zval *array_ptr, zend_object_iterator **iter TSRMLS_DC)
-{
- zend_class_entry *ce;
-
- switch (Z_TYPE_P(array_ptr)) {
- case IS_OBJECT:
- ce = Z_OBJCE_P(array_ptr);
- if (ce == &zend_iterator_class_entry) {
- *iter = (zend_object_iterator *)zend_object_store_get_object(array_ptr TSRMLS_CC);
- return ZEND_ITER_OBJECT;
- }
- /* Until we have a default iterator that respects visibility we do the array trick */
- /*return ZEND_ITER_INVALID*/;
-
- case IS_ARRAY:
- *iter = NULL;
- return HASH_OF(array_ptr) ? ZEND_ITER_PLAIN_ARRAY : ZEND_ITER_INVALID;
-
- default:
- *iter = NULL;
- return ZEND_ITER_INVALID;
- }
-}
-
-/*
- * Local variables:
- * tab-width: 4
- * c-basic-offset: 4
- * indent-tabs-mode: t
- * End:
- */