-
Notifications
You must be signed in to change notification settings - Fork 1
/
ProxySourceCollection.php
113 lines (91 loc) · 2.29 KB
/
ProxySourceCollection.php
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
<?php
/*
* This file is a part of Sculpin.
*
* (c) Dragonfly Development Inc.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sculpin\Contrib\ProxySourceCollection;
use Sculpin\Contrib\ProxySourceCollection\Sorter\DefaultSorter;
use Sculpin\Contrib\ProxySourceCollection\Sorter\SorterInterface;
class ProxySourceCollection implements \ArrayAccess, \Iterator, \Countable
{
protected $items;
protected $sorter;
public function __construct(array $items = array(), SorterInterface $sorter = null)
{
$this->items = $items;
$this->sorter = $sorter ?: new DefaultSorter;
}
public function offsetSet($offset, $value)
{
if (is_null($offset)) {
$this->items[] = $value;
} else {
$this->items[$offset] = $value;
}
}
public function offsetExists($offset)
{
return isset($this->items[$offset]);
}
public function offsetUnset($offset)
{
unset($this->items[$offset]);
}
public function offsetGet($offset)
{
return isset($this->items[$offset]) ? $this->items[$offset] : null;
}
public function rewind()
{
reset($this->items);
}
public function current()
{
return current($this->items);
}
public function key()
{
return key($this->items);
}
public function next()
{
return next($this->items);
}
public function valid()
{
return $this->current() !== false;
}
public function count()
{
return count($this->items);
}
public function init()
{
$this->sort();
$previousItem = null;
$item = null;
foreach (array_reverse($this->items) as $item) {
if ($previousItem) {
$previousItem->setNextItem($item);
}
$item->setPreviousItem($previousItem);
$previousItem = $item;
}
if ($item) {
$item->setNextItem(null);
}
}
public function first()
{
$keys = array_keys($this->items);
return $this->items[$keys[0]];
}
public function sort()
{
uasort($this->items, array($this->sorter, 'sort'));
}
}