forked from phalcon/cphalcon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCollection.zep
346 lines (292 loc) · 7.82 KB
/
Collection.zep
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
/**
* This file is part of the Phalcon Framework.
*
* (c) Phalcon Team <[email protected]>
*
* For the full copyright and license information, please view the LICENSE.txt
* file that was distributed with this source code.
*/
namespace Phalcon;
use ArrayAccess;
use ArrayIterator;
use Countable;
use IteratorAggregate;
use JsonSerializable;
use Phalcon\Helper\Json;
use Serializable;
use Traversable;
/**
* `Phalcon\Collection` is a supercharged object oriented array. It implements:
* - [ArrayAccess](https://www.php.net/manual/en/class.arrayaccess.php)
* - [Countable](https://www.php.net/manual/en/class.countable.php)
* - [IteratorAggregate](https://www.php.net/manual/en/class.iteratoraggregate.php)
* - [JsonSerializable](https://www.php.net/manual/en/class.jsonserializable.php)
* - [Serializable](https://www.php.net/manual/en/class.serializable.php)
*
* It can be used in any part of the application that needs collection of data
* Such implementations are for instance accessing globals `$_GET`, `$_POST`
* etc.
*/
class Collection implements
ArrayAccess,
Countable,
IteratorAggregate,
JsonSerializable,
Serializable
{
/**
* @var array
*/
protected data = [];
/**
* @var bool
*/
protected insensitive = true;
/**
* @var array
*/
protected lowerKeys = [];
/**
* Collection constructor.
*/
public function __construct(array data = [], bool insensitive = true)
{
let this->insensitive = insensitive;
this->init(data);
}
/**
* Magic getter to get an element from the collection
*/
public function __get(string element) -> var
{
return this->get(element);
}
/**
* Magic isset to check whether an element exists or not
*/
public function __isset(string element) -> bool
{
return this->has(element);
}
/**
* Magic setter to assign values to an element
*/
public function __set(string element, value) -> void
{
this->set(element, value);
}
/**
* Magic unset to remove an element from the collection
*/
public function __unset(string element) -> void
{
this->remove(element);
}
/**
* Clears the internal collection
*/
public function clear() -> void
{
let this->data = [],
this->lowerKeys = [];
}
/**
* Count elements of an object.
* See [count](https://php.net/manual/en/countable.count.php)
*/
public function count() -> int
{
return count(this->data);
}
/**
* Get the element from the collection
*/
public function get(
string element,
var defaultValue = null,
string! cast = null
) -> var {
var key, value;
if likely this->insensitive {
let element = element->lower();
}
if unlikely !fetch key, this->lowerKeys[element] {
return defaultValue;
}
let value = this->data[key];
if unlikely cast {
settype(value, cast);
}
return value;
}
/**
* Returns the iterator of the class
*/
public function getIterator() -> <Traversable>
{
return new ArrayIterator(this->data);
}
public function getKeys(bool insensitive = true) -> array
{
if insensitive {
return array_keys(this->lowerKeys);
} else {
return array_keys(this->data);
}
}
public function getValues() -> array
{
return array_values(this->data);
}
/**
* Get the element from the collection
*/
public function has(string element) -> bool
{
if likely this->insensitive {
let element = element->lower();
}
return isset this->lowerKeys[element];
}
/**
* Initialize internal array
*/
public function init(array data = []) -> void
{
var key, value;
for key, value in data {
this->setData(key, value);
}
}
/**
* Specify data which should be serialized to JSON
* See [jsonSerialize](https://php.net/manual/en/jsonserializable.jsonserialize.php)
*/
public function jsonSerialize() -> array
{
var key, value;
array records;
let records = [];
for key, value in this->data {
if typeof value == "object" && method_exists(value, "jsonSerialize") {
let records[key] = value->{"jsonSerialize"}();
} else {
let records[key] = value;
}
}
return records;
}
/**
* Whether a offset exists
* See [offsetExists](https://php.net/manual/en/arrayaccess.offsetexists.php)
*/
public function offsetExists(var element) -> bool
{
let element = (string) element;
return this->has(element);
}
/**
* Offset to retrieve
* See [offsetGet](https://php.net/manual/en/arrayaccess.offsetget.php)
*/
public function offsetGet(var element)
{
let element = (string) element;
return this->get(element);
}
/**
* Offset to set
* See [offsetSet](https://php.net/manual/en/arrayaccess.offsetset.php)
*/
public function offsetSet(var element, var value) -> void
{
let element = (string) element;
this->set(element, value);
}
/**
* Offset to unset
* See [offsetUnset](https://php.net/manual/en/arrayaccess.offsetunset.php)
*/
public function offsetUnset(var element) -> void
{
let element = (string) element;
this->remove(element);
}
/**
* Delete the element from the collection
*/
public function remove(string element) -> void
{
var key;
array lowerKeys, data;
if likely this->has(element) {
if likely this->insensitive {
let element = element->lower();
}
let data = this->data,
lowerKeys = this->lowerKeys,
key = lowerKeys[element];
unset lowerKeys[element];
unset data[key];
let this->data = data,
this->lowerKeys = lowerKeys;
}
}
/**
* Set an element in the collection
*/
public function set(string element, var value) -> void
{
this->setData(element, value);
}
/**
* String representation of object
* See [serialize](https://php.net/manual/en/serializable.serialize.php)
*/
public function serialize() -> string
{
return serialize(this->toArray());
}
/**
* Returns the object in an array format
*/
public function toArray() -> array
{
return this->data;
}
/**
* Returns the object in a JSON format
*
* The default string uses the following options for json_encode
*
* `JSON_HEX_TAG`, `JSON_HEX_APOS`, `JSON_HEX_AMP`, `JSON_HEX_QUOT`,
* `JSON_UNESCAPED_SLASHES`
*
* See [rfc4627](https://www.ietf.org/rfc/rfc4627.txt)
*/
public function toJson(int options = 79) -> string
{
return Json::encode(this->toArray(), options);
}
/**
* Constructs the object
* See [unserialize](https://php.net/manual/en/serializable.unserialize.php)
*/
public function unserialize(var serialized) -> void
{
var data;
let serialized = (string) serialized,
data = unserialize(serialized);
this->init(data);
}
/**
* Internal method to set data
*/
protected function setData(string element, var value) -> void
{
var key;
let key = (true === this->insensitive) ? element->lower() : element;
let this->data[element] = value,
this->lowerKeys[key] = element;
}
}