blob: 72eb258136b647d90ba7566f7b0378cc40882670 (
plain)
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
|
<?php
/** @file appenditerator.inc
* @ingroup SPL
* @brief class AppendIterator
* @author Marcus Boerger
* @date 2003 - 2009
*
* SPL - Standard PHP Library
*/
/** @ingroup SPL
* @brief Iterator that iterates over several iterators one after the other
* @author Marcus Boerger
* @version 1.0
* @since PHP 5.1
*/
class AppendIterator implements OuterIterator
{
/** @internal array of inner iterators */
private $iterators;
/** Construct an empty AppendIterator
*/
function __construct()
{
$this->iterators = new ArrayIterator();
}
/** Append an Iterator
* @param $it Iterator to append
*
* If the current state is invalid but the appended iterator is valid
* the AppendIterator itself becomes valid. However there will be no
* call to $it->rewind(). Also if the current state is invalid the inner
* ArrayIterator will be rewound und forwarded to the appended element.
*/
function append(Iterator $it)
{
$this->iterators->append($it);
}
/** @return the current inner Iterator
*/
function getInnerIterator()
{
return $this->iterators->current();
}
/** Rewind to the first element of the first inner Iterator.
* @return void
*/
function rewind()
{
$this->iterators->rewind();
if ($this->iterators->valid())
{
$this->getInnerIterator()->rewind();
}
}
/** @return whether the current element is valid
*/
function valid()
{
return $this->iterators->valid() && $this->getInnerIterator()->valid();
}
/** @return the current value if it is valid or \c NULL
*/
function current()
{
/* Using $this->valid() would be exactly the same; it would omit
* the access to a non valid element in the inner iterator. Since
* the user didn't respect the valid() return value false this
* must be intended hence we go on. */
return $this->iterators->valid() ? $this->getInnerIterator()->current() : NULL;
}
/** @return the current key if it is valid or \c NULL
*/
function key()
{
return $this->iterators->valid() ? $this->getInnerIterator()->key() : NULL;
}
/** Move to the next element. If this means to another Iterator that
* rewind that Iterator.
* @return void
*/
function next()
{
if (!$this->iterators->valid())
{
return; /* done all */
}
$this->getInnerIterator()->next();
if ($this->getInnerIterator()->valid())
{
return; /* found valid element in current inner iterator */
}
$this->iterators->next();
while ($this->iterators->valid())
{
$this->getInnerIterator()->rewind();
if ($this->getInnerIterator()->valid())
{
return; /* found element as first elemet in another iterator */
}
$this->iterators->next();
}
}
/** Aggregates the inner iterator
*/
function __call($func, $params)
{
return call_user_func_array(array($this->getInnerIterator(), $func), $params);
}
}
?>
|