Queue.php
1.82 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
<?php
// Copyright (c) Lellys Informática. All rights reserved. See License.txt in the project root for license information.
namespace Easy\Collections;
use RuntimeException;
use SplQueue;
/**
* Represents a first-in, first-out collection of objects.
*/
class Queue extends SplQueue implements QueueInterface
{
/**
* Adds multiples objects to the end of the Queue.
* @param CollectionInterface|array $items The objects to add to the Queue. The value can be null.
*/
public function enqueueMultiple($items)
{
foreach ($items as $item) {
$this->enqueue($item);
}
return $this;
}
/**
* Returns the object at the beginning of the Queue without removing it.
* @return mixed The object at the beginning of the Queue.
* @throws RuntimeException
*/
public function peek()
{
if ($this->isEmpty()) {
throw new RuntimeException(_('Cannot use method Peek on an empty Queue'));
}
return $this->offsetGet(0);
}
public static function fromArray(array $arr)
{
$collection = new Queue();
foreach ($arr as $v) {
if (is_array($v)) {
$collection->enqueue(static::fromArray($v));
} else {
$collection->enqueue($v);
}
}
return $collection;
}
/**
* {@inheritdoc}
*/
public function toArray()
{
$array = array();
foreach ($this as $key => $value) {
if ($value instanceof CollectionInterface) {
$array[$key] = $value->toArray();
} else {
$array[$key] = $value;
}
}
return $array;
}
/**
* {@inheritdoc}
*/
public function __toString()
{
return get_class($this);
}
}