123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092 |
- /*
- +----------------------------------------------------------------------+
- | PHP Version 7 |
- +----------------------------------------------------------------------+
- | Copyright (c) 1997-2018 The PHP Group |
- +----------------------------------------------------------------------+
- | This source file is subject to version 3.01 of the PHP 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.php.net/license/3_01.txt |
- | If you did not receive a copy of the PHP license and are unable to |
- | obtain it through the world-wide-web, please send a note to |
- | license@php.net so we can mail you a copy immediately. |
- +----------------------------------------------------------------------+
- | Author: Antony Dovgal <tony@daylessday.org> |
- | Etienne Kneuss <colder@php.net> |
- +----------------------------------------------------------------------+
- */
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include "php.h"
- #include "php_ini.h"
- #include "ext/standard/info.h"
- #include "zend_exceptions.h"
- #include "php_spl.h"
- #include "spl_functions.h"
- #include "spl_engine.h"
- #include "spl_fixedarray.h"
- #include "spl_exceptions.h"
- #include "spl_iterators.h"
- zend_object_handlers spl_handler_SplFixedArray;
- PHPAPI zend_class_entry *spl_ce_SplFixedArray;
- #ifdef COMPILE_DL_SPL_FIXEDARRAY
- ZEND_GET_MODULE(spl_fixedarray)
- #endif
- typedef struct _spl_fixedarray { /* {{{ */
- zend_long size;
- zval *elements;
- } spl_fixedarray;
- /* }}} */
- typedef struct _spl_fixedarray_object { /* {{{ */
- spl_fixedarray array;
- zend_function *fptr_offset_get;
- zend_function *fptr_offset_set;
- zend_function *fptr_offset_has;
- zend_function *fptr_offset_del;
- zend_function *fptr_count;
- int current;
- int flags;
- zend_class_entry *ce_get_iterator;
- zend_object std;
- } spl_fixedarray_object;
- /* }}} */
- typedef struct _spl_fixedarray_it { /* {{{ */
- zend_user_iterator intern;
- } spl_fixedarray_it;
- /* }}} */
- #define SPL_FIXEDARRAY_OVERLOADED_REWIND 0x0001
- #define SPL_FIXEDARRAY_OVERLOADED_VALID 0x0002
- #define SPL_FIXEDARRAY_OVERLOADED_KEY 0x0004
- #define SPL_FIXEDARRAY_OVERLOADED_CURRENT 0x0008
- #define SPL_FIXEDARRAY_OVERLOADED_NEXT 0x0010
- static inline spl_fixedarray_object *spl_fixed_array_from_obj(zend_object *obj) /* {{{ */ {
- return (spl_fixedarray_object*)((char*)(obj) - XtOffsetOf(spl_fixedarray_object, std));
- }
- /* }}} */
- #define Z_SPLFIXEDARRAY_P(zv) spl_fixed_array_from_obj(Z_OBJ_P((zv)))
- static void spl_fixedarray_init(spl_fixedarray *array, zend_long size) /* {{{ */
- {
- if (size > 0) {
- array->size = 0; /* reset size in case ecalloc() fails */
- array->elements = ecalloc(size, sizeof(zval));
- array->size = size;
- } else {
- array->elements = NULL;
- array->size = 0;
- }
- }
- /* }}} */
- static void spl_fixedarray_resize(spl_fixedarray *array, zend_long size) /* {{{ */
- {
- if (size == array->size) {
- /* nothing to do */
- return;
- }
- /* first initialization */
- if (array->size == 0) {
- spl_fixedarray_init(array, size);
- return;
- }
- /* clearing the array */
- if (size == 0) {
- zend_long i;
- for (i = 0; i < array->size; i++) {
- zval_ptr_dtor(&(array->elements[i]));
- }
- if (array->elements) {
- efree(array->elements);
- array->elements = NULL;
- }
- } else if (size > array->size) {
- array->elements = safe_erealloc(array->elements, size, sizeof(zval), 0);
- memset(array->elements + array->size, '\0', sizeof(zval) * (size - array->size));
- } else { /* size < array->size */
- zend_long i;
- for (i = size; i < array->size; i++) {
- zval_ptr_dtor(&(array->elements[i]));
- }
- array->elements = erealloc(array->elements, sizeof(zval) * size);
- }
- array->size = size;
- }
- /* }}} */
- static void spl_fixedarray_copy(spl_fixedarray *to, spl_fixedarray *from) /* {{{ */
- {
- int i;
- for (i = 0; i < from->size; i++) {
- ZVAL_COPY(&to->elements[i], &from->elements[i]);
- }
- }
- /* }}} */
- static HashTable* spl_fixedarray_object_get_gc(zval *obj, zval **table, int *n) /* {{{{ */
- {
- spl_fixedarray_object *intern = Z_SPLFIXEDARRAY_P(obj);
- HashTable *ht = zend_std_get_properties(obj);
- *table = intern->array.elements;
- *n = (int)intern->array.size;
- return ht;
- }
- /* }}}} */
- static HashTable* spl_fixedarray_object_get_properties(zval *obj) /* {{{{ */
- {
- spl_fixedarray_object *intern = Z_SPLFIXEDARRAY_P(obj);
- HashTable *ht = zend_std_get_properties(obj);
- zend_long i = 0;
- if (intern->array.size > 0) {
- zend_long j = zend_hash_num_elements(ht);
- for (i = 0; i < intern->array.size; i++) {
- if (!Z_ISUNDEF(intern->array.elements[i])) {
- zend_hash_index_update(ht, i, &intern->array.elements[i]);
- Z_TRY_ADDREF(intern->array.elements[i]);
- } else {
- zend_hash_index_update(ht, i, &EG(uninitialized_zval));
- }
- }
- if (j > intern->array.size) {
- for (i = intern->array.size; i < j; ++i) {
- zend_hash_index_del(ht, i);
- }
- }
- }
- return ht;
- }
- /* }}}} */
- static void spl_fixedarray_object_free_storage(zend_object *object) /* {{{ */
- {
- spl_fixedarray_object *intern = spl_fixed_array_from_obj(object);
- zend_long i;
- if (intern->array.size > 0) {
- for (i = 0; i < intern->array.size; i++) {
- zval_ptr_dtor(&(intern->array.elements[i]));
- }
- if (intern->array.size > 0 && intern->array.elements) {
- efree(intern->array.elements);
- }
- }
- zend_object_std_dtor(&intern->std);
- }
- /* }}} */
- zend_object_iterator *spl_fixedarray_get_iterator(zend_class_entry *ce, zval *object, int by_ref);
- static zend_object *spl_fixedarray_object_new_ex(zend_class_entry *class_type, zval *orig, int clone_orig) /* {{{ */
- {
- spl_fixedarray_object *intern;
- zend_class_entry *parent = class_type;
- int inherited = 0;
- intern = zend_object_alloc(sizeof(spl_fixedarray_object), parent);
- zend_object_std_init(&intern->std, class_type);
- object_properties_init(&intern->std, class_type);
- intern->current = 0;
- intern->flags = 0;
- if (orig && clone_orig) {
- spl_fixedarray_object *other = Z_SPLFIXEDARRAY_P(orig);
- intern->ce_get_iterator = other->ce_get_iterator;
- spl_fixedarray_init(&intern->array, other->array.size);
- spl_fixedarray_copy(&intern->array, &other->array);
- }
- while (parent) {
- if (parent == spl_ce_SplFixedArray) {
- intern->std.handlers = &spl_handler_SplFixedArray;
- class_type->get_iterator = spl_fixedarray_get_iterator;
- break;
- }
- parent = parent->parent;
- inherited = 1;
- }
- if (!parent) { /* this must never happen */
- php_error_docref(NULL, E_COMPILE_ERROR, "Internal compiler error, Class is not child of SplFixedArray");
- }
- if (!class_type->iterator_funcs_ptr->zf_current) {
- class_type->iterator_funcs_ptr->zf_rewind = zend_hash_str_find_ptr(&class_type->function_table, "rewind", sizeof("rewind") - 1);
- class_type->iterator_funcs_ptr->zf_valid = zend_hash_str_find_ptr(&class_type->function_table, "valid", sizeof("valid") - 1);
- class_type->iterator_funcs_ptr->zf_key = zend_hash_str_find_ptr(&class_type->function_table, "key", sizeof("key") - 1);
- class_type->iterator_funcs_ptr->zf_current = zend_hash_str_find_ptr(&class_type->function_table, "current", sizeof("current") - 1);
- class_type->iterator_funcs_ptr->zf_next = zend_hash_str_find_ptr(&class_type->function_table, "next", sizeof("next") - 1);
- }
- if (inherited) {
- if (class_type->iterator_funcs_ptr->zf_rewind->common.scope != parent) {
- intern->flags |= SPL_FIXEDARRAY_OVERLOADED_REWIND;
- }
- if (class_type->iterator_funcs_ptr->zf_valid->common.scope != parent) {
- intern->flags |= SPL_FIXEDARRAY_OVERLOADED_VALID;
- }
- if (class_type->iterator_funcs_ptr->zf_key->common.scope != parent) {
- intern->flags |= SPL_FIXEDARRAY_OVERLOADED_KEY;
- }
- if (class_type->iterator_funcs_ptr->zf_current->common.scope != parent) {
- intern->flags |= SPL_FIXEDARRAY_OVERLOADED_CURRENT;
- }
- if (class_type->iterator_funcs_ptr->zf_next->common.scope != parent) {
- intern->flags |= SPL_FIXEDARRAY_OVERLOADED_NEXT;
- }
- intern->fptr_offset_get = zend_hash_str_find_ptr(&class_type->function_table, "offsetget", sizeof("offsetget") - 1);
- if (intern->fptr_offset_get->common.scope == parent) {
- intern->fptr_offset_get = NULL;
- }
- intern->fptr_offset_set = zend_hash_str_find_ptr(&class_type->function_table, "offsetset", sizeof("offsetset") - 1);
- if (intern->fptr_offset_set->common.scope == parent) {
- intern->fptr_offset_set = NULL;
- }
- intern->fptr_offset_has = zend_hash_str_find_ptr(&class_type->function_table, "offsetexists", sizeof("offsetexists") - 1);
- if (intern->fptr_offset_has->common.scope == parent) {
- intern->fptr_offset_has = NULL;
- }
- intern->fptr_offset_del = zend_hash_str_find_ptr(&class_type->function_table, "offsetunset", sizeof("offsetunset") - 1);
- if (intern->fptr_offset_del->common.scope == parent) {
- intern->fptr_offset_del = NULL;
- }
- intern->fptr_count = zend_hash_str_find_ptr(&class_type->function_table, "count", sizeof("count") - 1);
- if (intern->fptr_count->common.scope == parent) {
- intern->fptr_count = NULL;
- }
- }
- return &intern->std;
- }
- /* }}} */
- static zend_object *spl_fixedarray_new(zend_class_entry *class_type) /* {{{ */
- {
- return spl_fixedarray_object_new_ex(class_type, NULL, 0);
- }
- /* }}} */
- static zend_object *spl_fixedarray_object_clone(zval *zobject) /* {{{ */
- {
- zend_object *old_object;
- zend_object *new_object;
- old_object = Z_OBJ_P(zobject);
- new_object = spl_fixedarray_object_new_ex(old_object->ce, zobject, 1);
- zend_objects_clone_members(new_object, old_object);
- return new_object;
- }
- /* }}} */
- static inline zval *spl_fixedarray_object_read_dimension_helper(spl_fixedarray_object *intern, zval *offset) /* {{{ */
- {
- zend_long index;
- /* we have to return NULL on error here to avoid memleak because of
- * ZE duplicating uninitialized_zval_ptr */
- if (!offset) {
- zend_throw_exception(spl_ce_RuntimeException, "Index invalid or out of range", 0);
- return NULL;
- }
- if (Z_TYPE_P(offset) != IS_LONG) {
- index = spl_offset_convert_to_long(offset);
- } else {
- index = Z_LVAL_P(offset);
- }
- if (index < 0 || index >= intern->array.size) {
- zend_throw_exception(spl_ce_RuntimeException, "Index invalid or out of range", 0);
- return NULL;
- } else if (Z_ISUNDEF(intern->array.elements[index])) {
- return NULL;
- } else {
- return &intern->array.elements[index];
- }
- }
- /* }}} */
- static int spl_fixedarray_object_has_dimension(zval *object, zval *offset, int check_empty);
- static zval *spl_fixedarray_object_read_dimension(zval *object, zval *offset, int type, zval *rv) /* {{{ */
- {
- spl_fixedarray_object *intern;
- intern = Z_SPLFIXEDARRAY_P(object);
- if (type == BP_VAR_IS && !spl_fixedarray_object_has_dimension(object, offset, 0)) {
- return &EG(uninitialized_zval);
- }
- if (intern->fptr_offset_get) {
- zval tmp;
- if (!offset) {
- ZVAL_NULL(&tmp);
- offset = &tmp;
- } else {
- SEPARATE_ARG_IF_REF(offset);
- }
- zend_call_method_with_1_params(object, intern->std.ce, &intern->fptr_offset_get, "offsetGet", rv, offset);
- zval_ptr_dtor(offset);
- if (!Z_ISUNDEF_P(rv)) {
- return rv;
- }
- return &EG(uninitialized_zval);
- }
- return spl_fixedarray_object_read_dimension_helper(intern, offset);
- }
- /* }}} */
- static inline void spl_fixedarray_object_write_dimension_helper(spl_fixedarray_object *intern, zval *offset, zval *value) /* {{{ */
- {
- zend_long index;
- if (!offset) {
- /* '$array[] = value' syntax is not supported */
- zend_throw_exception(spl_ce_RuntimeException, "Index invalid or out of range", 0);
- return;
- }
- if (Z_TYPE_P(offset) != IS_LONG) {
- index = spl_offset_convert_to_long(offset);
- } else {
- index = Z_LVAL_P(offset);
- }
- if (index < 0 || index >= intern->array.size) {
- zend_throw_exception(spl_ce_RuntimeException, "Index invalid or out of range", 0);
- return;
- } else {
- if (!Z_ISUNDEF(intern->array.elements[index])) {
- zval_ptr_dtor(&(intern->array.elements[index]));
- }
- ZVAL_COPY_DEREF(&intern->array.elements[index], value);
- }
- }
- /* }}} */
- static void spl_fixedarray_object_write_dimension(zval *object, zval *offset, zval *value) /* {{{ */
- {
- spl_fixedarray_object *intern;
- zval tmp;
- intern = Z_SPLFIXEDARRAY_P(object);
- if (intern->fptr_offset_set) {
- if (!offset) {
- ZVAL_NULL(&tmp);
- offset = &tmp;
- } else {
- SEPARATE_ARG_IF_REF(offset);
- }
- SEPARATE_ARG_IF_REF(value);
- zend_call_method_with_2_params(object, intern->std.ce, &intern->fptr_offset_set, "offsetSet", NULL, offset, value);
- zval_ptr_dtor(value);
- zval_ptr_dtor(offset);
- return;
- }
- spl_fixedarray_object_write_dimension_helper(intern, offset, value);
- }
- /* }}} */
- static inline void spl_fixedarray_object_unset_dimension_helper(spl_fixedarray_object *intern, zval *offset) /* {{{ */
- {
- zend_long index;
- if (Z_TYPE_P(offset) != IS_LONG) {
- index = spl_offset_convert_to_long(offset);
- } else {
- index = Z_LVAL_P(offset);
- }
- if (index < 0 || index >= intern->array.size) {
- zend_throw_exception(spl_ce_RuntimeException, "Index invalid or out of range", 0);
- return;
- } else {
- zval_ptr_dtor(&(intern->array.elements[index]));
- ZVAL_UNDEF(&intern->array.elements[index]);
- }
- }
- /* }}} */
- static void spl_fixedarray_object_unset_dimension(zval *object, zval *offset) /* {{{ */
- {
- spl_fixedarray_object *intern;
- intern = Z_SPLFIXEDARRAY_P(object);
- if (intern->fptr_offset_del) {
- SEPARATE_ARG_IF_REF(offset);
- zend_call_method_with_1_params(object, intern->std.ce, &intern->fptr_offset_del, "offsetUnset", NULL, offset);
- zval_ptr_dtor(offset);
- return;
- }
- spl_fixedarray_object_unset_dimension_helper(intern, offset);
- }
- /* }}} */
- static inline int spl_fixedarray_object_has_dimension_helper(spl_fixedarray_object *intern, zval *offset, int check_empty) /* {{{ */
- {
- zend_long index;
- int retval;
- if (Z_TYPE_P(offset) != IS_LONG) {
- index = spl_offset_convert_to_long(offset);
- } else {
- index = Z_LVAL_P(offset);
- }
- if (index < 0 || index >= intern->array.size) {
- retval = 0;
- } else {
- if (Z_ISUNDEF(intern->array.elements[index])) {
- retval = 0;
- } else if (check_empty) {
- if (zend_is_true(&intern->array.elements[index])) {
- retval = 1;
- } else {
- retval = 0;
- }
- } else { /* != NULL and !check_empty */
- retval = 1;
- }
- }
- return retval;
- }
- /* }}} */
- static int spl_fixedarray_object_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ */
- {
- spl_fixedarray_object *intern;
- intern = Z_SPLFIXEDARRAY_P(object);
- if (intern->fptr_offset_has) {
- zval rv;
- zend_bool result;
- SEPARATE_ARG_IF_REF(offset);
- zend_call_method_with_1_params(object, intern->std.ce, &intern->fptr_offset_has, "offsetExists", &rv, offset);
- zval_ptr_dtor(offset);
- result = zend_is_true(&rv);
- zval_ptr_dtor(&rv);
- return result;
- }
- return spl_fixedarray_object_has_dimension_helper(intern, offset, check_empty);
- }
- /* }}} */
- static int spl_fixedarray_object_count_elements(zval *object, zend_long *count) /* {{{ */
- {
- spl_fixedarray_object *intern;
- intern = Z_SPLFIXEDARRAY_P(object);
- if (intern->fptr_count) {
- zval rv;
- zend_call_method_with_0_params(object, intern->std.ce, &intern->fptr_count, "count", &rv);
- if (!Z_ISUNDEF(rv)) {
- *count = zval_get_long(&rv);
- zval_ptr_dtor(&rv);
- } else {
- *count = 0;
- }
- } else {
- *count = intern->array.size;
- }
- return SUCCESS;
- }
- /* }}} */
- /* {{{ proto SplFixedArray::__construct([int size])
- */
- SPL_METHOD(SplFixedArray, __construct)
- {
- zval *object = getThis();
- spl_fixedarray_object *intern;
- zend_long size = 0;
- if (zend_parse_parameters_throw(ZEND_NUM_ARGS(), "|l", &size) == FAILURE) {
- return;
- }
- if (size < 0) {
- zend_throw_exception_ex(spl_ce_InvalidArgumentException, 0, "array size cannot be less than zero");
- return;
- }
- intern = Z_SPLFIXEDARRAY_P(object);
- if (intern->array.size > 0) {
- /* called __construct() twice, bail out */
- return;
- }
- spl_fixedarray_init(&intern->array, size);
- }
- /* }}} */
- /* {{{ proto SplFixedArray::__wakeup()
- */
- SPL_METHOD(SplFixedArray, __wakeup)
- {
- spl_fixedarray_object *intern = Z_SPLFIXEDARRAY_P(getThis());
- HashTable *intern_ht = zend_std_get_properties(getThis());
- zval *data;
- if (zend_parse_parameters_none() == FAILURE) {
- return;
- }
- if (intern->array.size == 0) {
- int index = 0;
- int size = zend_hash_num_elements(intern_ht);
- spl_fixedarray_init(&intern->array, size);
- ZEND_HASH_FOREACH_VAL(intern_ht, data) {
- ZVAL_COPY(&intern->array.elements[index], data);
- index++;
- } ZEND_HASH_FOREACH_END();
- /* Remove the unserialised properties, since we now have the elements
- * within the spl_fixedarray_object structure. */
- zend_hash_clean(intern_ht);
- }
- }
- /* }}} */
- /* {{{ proto int SplFixedArray::count(void)
- */
- SPL_METHOD(SplFixedArray, count)
- {
- zval *object = getThis();
- spl_fixedarray_object *intern;
- if (zend_parse_parameters_none() == FAILURE) {
- return;
- }
- intern = Z_SPLFIXEDARRAY_P(object);
- RETURN_LONG(intern->array.size);
- }
- /* }}} */
- /* {{{ proto object SplFixedArray::toArray()
- */
- SPL_METHOD(SplFixedArray, toArray)
- {
- spl_fixedarray_object *intern;
- if (zend_parse_parameters_none() == FAILURE) {
- return;
- }
- intern = Z_SPLFIXEDARRAY_P(getThis());
- if (intern->array.size > 0) {
- int i = 0;
- array_init(return_value);
- for (; i < intern->array.size; i++) {
- if (!Z_ISUNDEF(intern->array.elements[i])) {
- zend_hash_index_update(Z_ARRVAL_P(return_value), i, &intern->array.elements[i]);
- Z_TRY_ADDREF(intern->array.elements[i]);
- } else {
- zend_hash_index_update(Z_ARRVAL_P(return_value), i, &EG(uninitialized_zval));
- }
- }
- } else {
- ZVAL_EMPTY_ARRAY(return_value);
- }
- }
- /* }}} */
- /* {{{ proto object SplFixedArray::fromArray(array data[, bool save_indexes])
- */
- SPL_METHOD(SplFixedArray, fromArray)
- {
- zval *data;
- spl_fixedarray array;
- spl_fixedarray_object *intern;
- int num;
- zend_bool save_indexes = 1;
- if (zend_parse_parameters(ZEND_NUM_ARGS(), "a|b", &data, &save_indexes) == FAILURE) {
- return;
- }
- num = zend_hash_num_elements(Z_ARRVAL_P(data));
- if (num > 0 && save_indexes) {
- zval *element;
- zend_string *str_index;
- zend_ulong num_index, max_index = 0;
- zend_long tmp;
- ZEND_HASH_FOREACH_KEY(Z_ARRVAL_P(data), num_index, str_index) {
- if (str_index != NULL || (zend_long)num_index < 0) {
- zend_throw_exception_ex(spl_ce_InvalidArgumentException, 0, "array must contain only positive integer keys");
- return;
- }
- if (num_index > max_index) {
- max_index = num_index;
- }
- } ZEND_HASH_FOREACH_END();
- tmp = max_index + 1;
- if (tmp <= 0) {
- zend_throw_exception_ex(spl_ce_InvalidArgumentException, 0, "integer overflow detected");
- return;
- }
- spl_fixedarray_init(&array, tmp);
- ZEND_HASH_FOREACH_KEY_VAL(Z_ARRVAL_P(data), num_index, str_index, element) {
- ZVAL_COPY_DEREF(&array.elements[num_index], element);
- } ZEND_HASH_FOREACH_END();
- } else if (num > 0 && !save_indexes) {
- zval *element;
- zend_long i = 0;
- spl_fixedarray_init(&array, num);
- ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(data), element) {
- ZVAL_COPY_DEREF(&array.elements[i], element);
- i++;
- } ZEND_HASH_FOREACH_END();
- } else {
- spl_fixedarray_init(&array, 0);
- }
- object_init_ex(return_value, spl_ce_SplFixedArray);
- intern = Z_SPLFIXEDARRAY_P(return_value);
- intern->array = array;
- }
- /* }}} */
- /* {{{ proto int SplFixedArray::getSize(void)
- */
- SPL_METHOD(SplFixedArray, getSize)
- {
- zval *object = getThis();
- spl_fixedarray_object *intern;
- if (zend_parse_parameters_none() == FAILURE) {
- return;
- }
- intern = Z_SPLFIXEDARRAY_P(object);
- RETURN_LONG(intern->array.size);
- }
- /* }}} */
- /* {{{ proto bool SplFixedArray::setSize(int size)
- */
- SPL_METHOD(SplFixedArray, setSize)
- {
- zval *object = getThis();
- spl_fixedarray_object *intern;
- zend_long size;
- if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &size) == FAILURE) {
- return;
- }
- if (size < 0) {
- zend_throw_exception_ex(spl_ce_InvalidArgumentException, 0, "array size cannot be less than zero");
- return;
- }
- intern = Z_SPLFIXEDARRAY_P(object);
- spl_fixedarray_resize(&intern->array, size);
- RETURN_TRUE;
- }
- /* }}} */
- /* {{{ proto bool SplFixedArray::offsetExists(mixed $index)
- Returns whether the requested $index exists. */
- SPL_METHOD(SplFixedArray, offsetExists)
- {
- zval *zindex;
- spl_fixedarray_object *intern;
- if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &zindex) == FAILURE) {
- return;
- }
- intern = Z_SPLFIXEDARRAY_P(getThis());
- RETURN_BOOL(spl_fixedarray_object_has_dimension_helper(intern, zindex, 0));
- } /* }}} */
- /* {{{ proto mixed SplFixedArray::offsetGet(mixed $index)
- Returns the value at the specified $index. */
- SPL_METHOD(SplFixedArray, offsetGet)
- {
- zval *zindex, *value;
- spl_fixedarray_object *intern;
- if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &zindex) == FAILURE) {
- return;
- }
- intern = Z_SPLFIXEDARRAY_P(getThis());
- value = spl_fixedarray_object_read_dimension_helper(intern, zindex);
- if (value) {
- ZVAL_COPY_DEREF(return_value, value);
- } else {
- RETURN_NULL();
- }
- } /* }}} */
- /* {{{ proto void SplFixedArray::offsetSet(mixed $index, mixed $newval)
- Sets the value at the specified $index to $newval. */
- SPL_METHOD(SplFixedArray, offsetSet)
- {
- zval *zindex, *value;
- spl_fixedarray_object *intern;
- if (zend_parse_parameters(ZEND_NUM_ARGS(), "zz", &zindex, &value) == FAILURE) {
- return;
- }
- intern = Z_SPLFIXEDARRAY_P(getThis());
- spl_fixedarray_object_write_dimension_helper(intern, zindex, value);
- } /* }}} */
- /* {{{ proto void SplFixedArray::offsetUnset(mixed $index)
- Unsets the value at the specified $index. */
- SPL_METHOD(SplFixedArray, offsetUnset)
- {
- zval *zindex;
- spl_fixedarray_object *intern;
- if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &zindex) == FAILURE) {
- return;
- }
- intern = Z_SPLFIXEDARRAY_P(getThis());
- spl_fixedarray_object_unset_dimension_helper(intern, zindex);
- } /* }}} */
- static void spl_fixedarray_it_dtor(zend_object_iterator *iter) /* {{{ */
- {
- spl_fixedarray_it *iterator = (spl_fixedarray_it *)iter;
- zend_user_it_invalidate_current(iter);
- zval_ptr_dtor(&iterator->intern.it.data);
- }
- /* }}} */
- static void spl_fixedarray_it_rewind(zend_object_iterator *iter) /* {{{ */
- {
- spl_fixedarray_object *object = Z_SPLFIXEDARRAY_P(&iter->data);
- if (object->flags & SPL_FIXEDARRAY_OVERLOADED_REWIND) {
- zend_user_it_rewind(iter);
- } else {
- object->current = 0;
- }
- }
- /* }}} */
- static int spl_fixedarray_it_valid(zend_object_iterator *iter) /* {{{ */
- {
- spl_fixedarray_object *object = Z_SPLFIXEDARRAY_P(&iter->data);
- if (object->flags & SPL_FIXEDARRAY_OVERLOADED_VALID) {
- return zend_user_it_valid(iter);
- }
- if (object->current >= 0 && object->current < object->array.size) {
- return SUCCESS;
- }
- return FAILURE;
- }
- /* }}} */
- static zval *spl_fixedarray_it_get_current_data(zend_object_iterator *iter) /* {{{ */
- {
- zval zindex;
- spl_fixedarray_object *object = Z_SPLFIXEDARRAY_P(&iter->data);
- if (object->flags & SPL_FIXEDARRAY_OVERLOADED_CURRENT) {
- return zend_user_it_get_current_data(iter);
- } else {
- zval *data;
- ZVAL_LONG(&zindex, object->current);
- data = spl_fixedarray_object_read_dimension_helper(object, &zindex);
- if (data == NULL) {
- data = &EG(uninitialized_zval);
- }
- return data;
- }
- }
- /* }}} */
- static void spl_fixedarray_it_get_current_key(zend_object_iterator *iter, zval *key) /* {{{ */
- {
- spl_fixedarray_object *object = Z_SPLFIXEDARRAY_P(&iter->data);
- if (object->flags & SPL_FIXEDARRAY_OVERLOADED_KEY) {
- zend_user_it_get_current_key(iter, key);
- } else {
- ZVAL_LONG(key, object->current);
- }
- }
- /* }}} */
- static void spl_fixedarray_it_move_forward(zend_object_iterator *iter) /* {{{ */
- {
- spl_fixedarray_object *object = Z_SPLFIXEDARRAY_P(&iter->data);
- if (object->flags & SPL_FIXEDARRAY_OVERLOADED_NEXT) {
- zend_user_it_move_forward(iter);
- } else {
- zend_user_it_invalidate_current(iter);
- object->current++;
- }
- }
- /* }}} */
- /* {{{ proto int SplFixedArray::key()
- Return current array key */
- SPL_METHOD(SplFixedArray, key)
- {
- spl_fixedarray_object *intern = Z_SPLFIXEDARRAY_P(getThis());
- if (zend_parse_parameters_none() == FAILURE) {
- return;
- }
- RETURN_LONG(intern->current);
- }
- /* }}} */
- /* {{{ proto void SplFixedArray::next()
- Move to next entry */
- SPL_METHOD(SplFixedArray, next)
- {
- spl_fixedarray_object *intern = Z_SPLFIXEDARRAY_P(getThis());
- if (zend_parse_parameters_none() == FAILURE) {
- return;
- }
- intern->current++;
- }
- /* }}} */
- /* {{{ proto bool SplFixedArray::valid()
- Check whether the datastructure contains more entries */
- SPL_METHOD(SplFixedArray, valid)
- {
- spl_fixedarray_object *intern = Z_SPLFIXEDARRAY_P(getThis());
- if (zend_parse_parameters_none() == FAILURE) {
- return;
- }
- RETURN_BOOL(intern->current >= 0 && intern->current < intern->array.size);
- }
- /* }}} */
- /* {{{ proto void SplFixedArray::rewind()
- Rewind the datastructure back to the start */
- SPL_METHOD(SplFixedArray, rewind)
- {
- spl_fixedarray_object *intern = Z_SPLFIXEDARRAY_P(getThis());
- if (zend_parse_parameters_none() == FAILURE) {
- return;
- }
- intern->current = 0;
- }
- /* }}} */
- /* {{{ proto mixed|NULL SplFixedArray::current()
- Return current datastructure entry */
- SPL_METHOD(SplFixedArray, current)
- {
- zval zindex, *value;
- spl_fixedarray_object *intern = Z_SPLFIXEDARRAY_P(getThis());
- if (zend_parse_parameters_none() == FAILURE) {
- return;
- }
- ZVAL_LONG(&zindex, intern->current);
- value = spl_fixedarray_object_read_dimension_helper(intern, &zindex);
- if (value) {
- ZVAL_COPY_DEREF(return_value, value);
- } else {
- RETURN_NULL();
- }
- }
- /* }}} */
- /* iterator handler table */
- static const zend_object_iterator_funcs spl_fixedarray_it_funcs = {
- spl_fixedarray_it_dtor,
- spl_fixedarray_it_valid,
- spl_fixedarray_it_get_current_data,
- spl_fixedarray_it_get_current_key,
- spl_fixedarray_it_move_forward,
- spl_fixedarray_it_rewind,
- NULL
- };
- zend_object_iterator *spl_fixedarray_get_iterator(zend_class_entry *ce, zval *object, int by_ref) /* {{{ */
- {
- spl_fixedarray_it *iterator;
- if (by_ref) {
- zend_throw_exception(spl_ce_RuntimeException, "An iterator cannot be used with foreach by reference", 0);
- return NULL;
- }
- iterator = emalloc(sizeof(spl_fixedarray_it));
- zend_iterator_init((zend_object_iterator*)iterator);
- ZVAL_COPY(&iterator->intern.it.data, object);
- iterator->intern.it.funcs = &spl_fixedarray_it_funcs;
- iterator->intern.ce = ce;
- ZVAL_UNDEF(&iterator->intern.value);
- return &iterator->intern.it;
- }
- /* }}} */
- ZEND_BEGIN_ARG_INFO_EX(arginfo_splfixedarray_construct, 0, 0, 0)
- ZEND_ARG_INFO(0, size)
- ZEND_END_ARG_INFO()
- ZEND_BEGIN_ARG_INFO_EX(arginfo_fixedarray_offsetGet, 0, 0, 1)
- ZEND_ARG_INFO(0, index)
- ZEND_END_ARG_INFO()
- ZEND_BEGIN_ARG_INFO_EX(arginfo_fixedarray_offsetSet, 0, 0, 2)
- ZEND_ARG_INFO(0, index)
- ZEND_ARG_INFO(0, newval)
- ZEND_END_ARG_INFO()
- ZEND_BEGIN_ARG_INFO(arginfo_fixedarray_setSize, 0)
- ZEND_ARG_INFO(0, value)
- ZEND_END_ARG_INFO()
- ZEND_BEGIN_ARG_INFO_EX(arginfo_fixedarray_fromArray, 0, 0, 1)
- ZEND_ARG_INFO(0, data)
- ZEND_ARG_INFO(0, save_indexes)
- ZEND_END_ARG_INFO()
- ZEND_BEGIN_ARG_INFO(arginfo_splfixedarray_void, 0)
- ZEND_END_ARG_INFO()
- static const zend_function_entry spl_funcs_SplFixedArray[] = { /* {{{ */
- SPL_ME(SplFixedArray, __construct, arginfo_splfixedarray_construct,ZEND_ACC_PUBLIC)
- SPL_ME(SplFixedArray, __wakeup, arginfo_splfixedarray_void, ZEND_ACC_PUBLIC)
- SPL_ME(SplFixedArray, count, arginfo_splfixedarray_void, ZEND_ACC_PUBLIC)
- SPL_ME(SplFixedArray, toArray, arginfo_splfixedarray_void, ZEND_ACC_PUBLIC)
- SPL_ME(SplFixedArray, fromArray, arginfo_fixedarray_fromArray, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
- SPL_ME(SplFixedArray, getSize, arginfo_splfixedarray_void, ZEND_ACC_PUBLIC)
- SPL_ME(SplFixedArray, setSize, arginfo_fixedarray_setSize, ZEND_ACC_PUBLIC)
- SPL_ME(SplFixedArray, offsetExists, arginfo_fixedarray_offsetGet, ZEND_ACC_PUBLIC)
- SPL_ME(SplFixedArray, offsetGet, arginfo_fixedarray_offsetGet, ZEND_ACC_PUBLIC)
- SPL_ME(SplFixedArray, offsetSet, arginfo_fixedarray_offsetSet, ZEND_ACC_PUBLIC)
- SPL_ME(SplFixedArray, offsetUnset, arginfo_fixedarray_offsetGet, ZEND_ACC_PUBLIC)
- SPL_ME(SplFixedArray, rewind, arginfo_splfixedarray_void, ZEND_ACC_PUBLIC)
- SPL_ME(SplFixedArray, current, arginfo_splfixedarray_void, ZEND_ACC_PUBLIC)
- SPL_ME(SplFixedArray, key, arginfo_splfixedarray_void, ZEND_ACC_PUBLIC)
- SPL_ME(SplFixedArray, next, arginfo_splfixedarray_void, ZEND_ACC_PUBLIC)
- SPL_ME(SplFixedArray, valid, arginfo_splfixedarray_void, ZEND_ACC_PUBLIC)
- PHP_FE_END
- };
- /* }}} */
- /* {{{ PHP_MINIT_FUNCTION */
- PHP_MINIT_FUNCTION(spl_fixedarray)
- {
- REGISTER_SPL_STD_CLASS_EX(SplFixedArray, spl_fixedarray_new, spl_funcs_SplFixedArray);
- memcpy(&spl_handler_SplFixedArray, &std_object_handlers, sizeof(zend_object_handlers));
- spl_handler_SplFixedArray.offset = XtOffsetOf(spl_fixedarray_object, std);
- spl_handler_SplFixedArray.clone_obj = spl_fixedarray_object_clone;
- spl_handler_SplFixedArray.read_dimension = spl_fixedarray_object_read_dimension;
- spl_handler_SplFixedArray.write_dimension = spl_fixedarray_object_write_dimension;
- spl_handler_SplFixedArray.unset_dimension = spl_fixedarray_object_unset_dimension;
- spl_handler_SplFixedArray.has_dimension = spl_fixedarray_object_has_dimension;
- spl_handler_SplFixedArray.count_elements = spl_fixedarray_object_count_elements;
- spl_handler_SplFixedArray.get_properties = spl_fixedarray_object_get_properties;
- spl_handler_SplFixedArray.get_gc = spl_fixedarray_object_get_gc;
- spl_handler_SplFixedArray.dtor_obj = zend_objects_destroy_object;
- spl_handler_SplFixedArray.free_obj = spl_fixedarray_object_free_storage;
- REGISTER_SPL_IMPLEMENTS(SplFixedArray, Iterator);
- REGISTER_SPL_IMPLEMENTS(SplFixedArray, ArrayAccess);
- REGISTER_SPL_IMPLEMENTS(SplFixedArray, Countable);
- spl_ce_SplFixedArray->get_iterator = spl_fixedarray_get_iterator;
- return SUCCESS;
- }
- /* }}} */
- /*
- * Local variables:
- * tab-width: 4
- * c-basic-offset: 4
- * End:
- * vim600: noet sw=4 ts=4 fdm=marker
- * vim<600: noet sw=4 ts=4
- */
|