3
3
+------------------------------------------------------------------------+
4
4
| Zephir Language |
5
5
+------------------------------------------------------------------------+
6
- | Copyright (c) 2011-2016 Zephir Team (http://www.zephir-lang.com) |
6
+ | Copyright (c) 2011-2017 Zephir Team (http://www.zephir-lang.com) |
7
7
+------------------------------------------------------------------------+
8
8
| This source file is subject to the New BSD License that is bundled |
9
9
| with this package in the file docs/LICENSE.txt. |
32
32
#include "kernel/debug.h"
33
33
#include "kernel/array.h"
34
34
#include "kernel/operators.h"
35
- #include "kernel/hash.h"
36
35
#include "kernel/backtrace.h"
37
36
37
+ static zval zephir_get_current_key_w (const HashTable * hash_table , HashPosition * hash_position )
38
+ {
39
+ Bucket * p ;
40
+ zval result ;
41
+
42
+ INIT_ZVAL (result );
43
+ p = hash_position ? (* hash_position ) : hash_table -> pInternalPointer ;
44
+
45
+ if (p ) {
46
+ if (p -> nKeyLength ) {
47
+ ZVAL_STRINGL (& result , (char * ) p -> arKey , p -> nKeyLength - 1 , 0 );
48
+ } else {
49
+ ZVAL_LONG (& result , p -> h );
50
+ }
51
+ }
52
+
53
+ return result ;
54
+ }
55
+
38
56
/**
39
57
* @brief Fetches @a index if it exists from the array @a arr
40
58
* @param[out] fetched <code>&$arr[$index]</code>; @a fetched is modified only when the function returns 1
@@ -64,7 +82,7 @@ int zephir_array_isset_fetch(zval **fetched, const zval *arr, zval *index, int r
64
82
h = Z_ARRVAL_P (arr );
65
83
switch (Z_TYPE_P (index )) {
66
84
case IS_NULL :
67
- result = zephir_hash_find (h , SS ("" ), (void * * )& val );
85
+ result = zend_hash_find (h , SS ("" ), (void * * )& val );
68
86
break ;
69
87
70
88
case IS_DOUBLE :
@@ -109,8 +127,8 @@ int zephir_array_isset_quick_string_fetch(zval **fetched, zval *arr, char *index
109
127
110
128
zval * * zv ;
111
129
112
- if (likely (Z_TYPE_P (arr ) == IS_ARRAY )) {
113
- if (zephir_hash_quick_find (Z_ARRVAL_P (arr ), index , index_length , key , (void * * ) & zv ) == SUCCESS ) {
130
+ if (EXPECTED (Z_TYPE_P (arr ) == IS_ARRAY )) {
131
+ if (zend_hash_quick_find (Z_ARRVAL_P (arr ), index , index_length , key , (void * * ) & zv ) == SUCCESS ) {
114
132
* fetched = * zv ;
115
133
if (!readonly ) {
116
134
Z_ADDREF_P (* fetched );
@@ -135,7 +153,7 @@ int zephir_array_isset_long_fetch(zval **fetched, zval *arr, unsigned long index
135
153
136
154
zval * * zv ;
137
155
138
- if (likely (Z_TYPE_P (arr ) == IS_ARRAY )) {
156
+ if (EXPECTED (Z_TYPE_P (arr ) == IS_ARRAY )) {
139
157
if (zend_hash_index_find (Z_ARRVAL_P (arr ), index , (void * * )& zv ) == SUCCESS ) {
140
158
* fetched = * zv ;
141
159
if (!readonly ) {
@@ -173,7 +191,7 @@ int ZEPHIR_FASTCALL zephir_array_isset(const zval *arr, zval *index) {
173
191
h = Z_ARRVAL_P (arr );
174
192
switch (Z_TYPE_P (index )) {
175
193
case IS_NULL :
176
- return zephir_hash_exists (h , SS ("" ));
194
+ return zend_hash_exists (h , SS ("" ));
177
195
178
196
case IS_DOUBLE :
179
197
return zend_hash_index_exists (h , (ulong )Z_DVAL_P (index ));
@@ -220,7 +238,7 @@ int ZEPHIR_FASTCALL zephir_array_isset_string(const zval *arr, const char *index
220
238
*/
221
239
int ZEPHIR_FASTCALL zephir_array_isset_quick_string (const zval * arr , const char * index , uint index_length , unsigned long key ) {
222
240
223
- if (likely (Z_TYPE_P (arr ) == IS_ARRAY )) {
241
+ if (EXPECTED (Z_TYPE_P (arr ) == IS_ARRAY )) {
224
242
return zend_hash_quick_exists (Z_ARRVAL_P (arr ), index , index_length , key );
225
243
}
226
244
@@ -237,7 +255,7 @@ int ZEPHIR_FASTCALL zephir_array_isset_quick_string(const zval *arr, const char
237
255
*/
238
256
int ZEPHIR_FASTCALL zephir_array_isset_long (const zval * arr , unsigned long index ) {
239
257
240
- if (likely (Z_TYPE_P (arr ) == IS_ARRAY )) {
258
+ if (EXPECTED (Z_TYPE_P (arr ) == IS_ARRAY )) {
241
259
return zend_hash_index_exists (Z_ARRVAL_P (arr ), index );
242
260
}
243
261
@@ -807,7 +825,7 @@ int zephir_array_fetch(zval **return_value, zval *arr, zval *index, int flags ZE
807
825
ht = Z_ARRVAL_P (arr );
808
826
switch (Z_TYPE_P (index )) {
809
827
case IS_NULL :
810
- result = zephir_hash_find (ht , SS ("" ), (void * * ) & zv );
828
+ result = zend_hash_find (ht , SS ("" ), (void * * ) & zv );
811
829
sidx = "" ;
812
830
break ;
813
831
@@ -879,8 +897,8 @@ int zephir_array_fetch_quick_string(zval **return_value, zval *arr, const char *
879
897
880
898
zval * * zv ;
881
899
882
- if (likely (Z_TYPE_P (arr ) == IS_ARRAY )) {
883
- if (zephir_hash_quick_find (Z_ARRVAL_P (arr ), index , index_length , key , (void * * ) & zv ) == SUCCESS ) {
900
+ if (EXPECTED (Z_TYPE_P (arr ) == IS_ARRAY )) {
901
+ if (zend_hash_quick_find (Z_ARRVAL_P (arr ), index , index_length , key , (void * * ) & zv ) == SUCCESS ) {
884
902
* return_value = * zv ;
885
903
if ((flags & PH_READONLY ) != PH_READONLY ) {
886
904
Z_ADDREF_PP (return_value );
@@ -942,7 +960,7 @@ int zephir_array_fetch_long(zval **return_value, zval *arr, unsigned long index,
942
960
943
961
zval * * zv ;
944
962
945
- if (likely (Z_TYPE_P (arr ) == IS_ARRAY )) {
963
+ if (EXPECTED (Z_TYPE_P (arr ) == IS_ARRAY )) {
946
964
if (zend_hash_index_find (Z_ARRVAL_P (arr ), index , (void * * )& zv ) == SUCCESS ) {
947
965
* return_value = * zv ;
948
966
if ((flags & PH_READONLY ) != PH_READONLY ) {
@@ -1135,7 +1153,7 @@ void zephir_array_merge_recursive_n(zval **a1, zval *a2 TSRMLS_DC)
1135
1153
*/
1136
1154
void zephir_array_unshift (zval * arr , zval * arg TSRMLS_DC )
1137
1155
{
1138
- if (likely (Z_TYPE_P (arr ) == IS_ARRAY )) {
1156
+ if (EXPECTED (Z_TYPE_P (arr ) == IS_ARRAY )) {
1139
1157
1140
1158
zval * * args [1 ] = { & arg };
1141
1159
@@ -1167,7 +1185,7 @@ void zephir_array_keys(zval *return_value, zval *input TSRMLS_DC)
1167
1185
ulong num_key ;
1168
1186
HashPosition pos ;
1169
1187
1170
- if (likely (Z_TYPE_P (input ) == IS_ARRAY )) {
1188
+ if (EXPECTED (Z_TYPE_P (input ) == IS_ARRAY )) {
1171
1189
1172
1190
array_init_size (return_value , zend_hash_num_elements (Z_ARRVAL_P (input )));
1173
1191
@@ -1197,7 +1215,7 @@ void zephir_array_keys(zval *return_value, zval *input TSRMLS_DC)
1197
1215
1198
1216
void zephir_array_values (zval * return_value , zval * arr )
1199
1217
{
1200
- if (likely (Z_TYPE_P (arr ) == IS_ARRAY )) {
1218
+ if (EXPECTED (Z_TYPE_P (arr ) == IS_ARRAY )) {
1201
1219
zval * * entry ;
1202
1220
HashPosition pos ;
1203
1221
@@ -1238,7 +1256,7 @@ int zephir_array_key_exists(zval *arr, zval *key TSRMLS_DC)
1238
1256
1239
1257
int zephir_array_is_associative (zval * arr ) {
1240
1258
1241
- if (likely (Z_TYPE_P (arr ) == IS_ARRAY )) {
1259
+ if (EXPECTED (Z_TYPE_P (arr ) == IS_ARRAY )) {
1242
1260
HashPosition pos ;
1243
1261
zval * * entry ;
1244
1262
char * skey ;
@@ -1481,7 +1499,7 @@ void ZEPHIR_FASTCALL zephir_create_array(zval *return_value, uint size, int init
1481
1499
if (size > 0 ) {
1482
1500
1483
1501
hashTable = (HashTable * ) emalloc (sizeof (HashTable ));
1484
- zephir_hash_init (hashTable , size , NULL , ZVAL_PTR_DTOR , 0 );
1502
+ zend_hash_init (hashTable , size , NULL , ZVAL_PTR_DTOR , 0 );
1485
1503
1486
1504
if (initialize ) {
1487
1505
0 commit comments