Collection.class.php
5.29 KB
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
<?php
/**
* Created by PhpStorm.
* User: Администратор
* Date: 17.03.14
* Time: 9:39
*/
namespace Cpeople\Classes\Base;
class Collection implements \Countable, \ArrayAccess, \SeekableIterator
{
protected $list;
protected $length = 0;
public function __construct($list = array())
{
$this->setList($list);
}
private function updateCount()
{
$this->length = count($this->list);
}
public function setList($list)
{
$this->list = (array) $list;
$this->updateCount();
}
public function push()
{
foreach (func_get_args() as $item)
{
$this->list[] = $item;
}
$this->updateCount();
}
public function merge()
{
foreach (func_get_args() as $array)
{
$this->list[] = array_merge($this->list, $array);
}
$this->updateCount();
}
public function pop()
{
\array_pop($this->list);
$this->updateCount();
}
public function unshift($item)
{
\array_unshift($this->list);
$this->updateCount();
}
public function shift($item)
{
\array_shift($this->list);
$this->updateCount();
}
public function getBy($key, $value)
{
$retval = array();
foreach ($this as $t)
{
if ($t->__get($key) == $value)
{
$retval[] = $t;
}
}
return empty($retval) ? false : $retval;
}
public function getNotBy($key, $value)
{
$retval = array();
foreach ($this as $t)
{
if ($t->__get($key) != $value)
{
$retval[] = $t;
}
}
return empty($retval) ? false : $retval;
}
public function getById($id)
{
return $this->getFirstBy('id', $id);
}
public function getByCode($code)
{
return $this->getFirstBy('code', $code);
}
public function getCollectionBy($key, $value)
{
return new self($this->getBy($key, $value));
}
public function getFirstBy($key, $value)
{
$retval = @reset($this->getBy($key, $value));
return empty($retval) ? false : $retval;
}
public function getLastBy($key, $value)
{
$retval = end($this->getBy($key, $value));
return empty($retval) ? false : $retval;
}
public function getByOffset($offset)
{
return empty($this->list[$offset]) ? false : $this->list[$offset];
}
public function getByValueInList($key, $values)
{
$retval = array();
for ($i = 0; $i < $this->length; $i++)
{
if (in_array($this->list[$i]->__get($key), $values))
{
$retval[] = $this->list[$i];
}
}
return empty($retval) ? false : $retval;
}
public function getColumn($key)
{
$retval = array();
foreach ($this->list as $item)
{
$retval[] = $item->{$key};
}
return $retval;
}
public function eq($offset)
{
return $this->getByOffset($offset);
}
/**
* TODO
*/
public function sort()
{
}
public function removeBy($key, $value)
{
$this->updateCount();
}
/**
* interfaces function implementation
*/
public function offsetSet($offset, $value)
{
$this->container[$offset] = $value;
}
public function offsetExists($offset)
{
return isset($this->list[$offset]);
}
public function offsetUnset($offset)
{
unset($this->list[$offset]);
$this->updateCount();
}
public function offsetGet($offset)
{
return isset($this->list[$offset]) ? $this->list[$offset] : null;
}
public function seek($position)
{
$this->position = $position;
if (!$this->valid())
{
throw new \OutOfBoundsException("invalid seek position ($position)");
}
}
public function rewind()
{
$this->position = 0;
}
public function current()
{
return $this->list[$this->position];
}
public function key()
{
return $this->position;
}
public function next()
{
++$this->position;
}
public function valid()
{
return isset($this->list[$this->position]);
}
public function count()
{
return $this->length;
}
public function getNext($element, $cycle = true)
{
$key = array_search($element, $this->list);
if ($key === false) return false;
$key++;
if ($key >= $this->length)
{
$key = 0;
}
return $this->list[$key];
}
public function getPrev($element, $cycle = true)
{
$key = array_search($element, $this->list);
if ($key === false) return false;
$key--;
if ($key < 0)
{
$key = $this->length - 1;
}
return $this->list[$key];
}
}