-
Notifications
You must be signed in to change notification settings - Fork 446
Expand file tree
/
Copy pathStaticCollection.php
More file actions
163 lines (139 loc) · 2.98 KB
/
StaticCollection.php
File metadata and controls
163 lines (139 loc) · 2.98 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
<?php
declare(strict_types=1);
namespace BitWasp\Bitcoin\Collection;
use BitWasp\Buffertools\BufferInterface;
abstract class StaticCollection implements CollectionInterface
{
/**
* @var array
*/
protected $set;
/**
* @var int
*/
protected $position = 0;
/**
* @return array
*/
public function all(): array
{
return $this->set;
}
/**
* @param int $start
* @param int $length
* @return self
*/
public function slice(int $start, int $length)
{
$end = count($this->set);
if ($start > $end || $length > $end) {
throw new \RuntimeException('Invalid start or length');
}
$sliced = array_slice($this->set, $start, $length);
return new static(...$sliced);
}
/**
* @return int
*/
public function count(): int
{
return count($this->set);
}
/**
* @return BufferInterface
*/
public function bottom(): BufferInterface
{
if (count($this->set) === 0) {
throw new \RuntimeException('No bottom for empty collection');
}
return $this->offsetGet(count($this) - 1);
}
/**
* @return BufferInterface
*/
public function top(): BufferInterface
{
if (count($this->set) === 0) {
throw new \RuntimeException('No top for empty collection');
}
return $this->offsetGet(0);
}
/**
* @return bool
*/
public function isNull(): bool
{
return count($this->set) === 0;
}
/**
* @return void
*/
public function rewind()
{
$this->position = 0;
}
/**
* @return BufferInterface
*/
public function current(): BufferInterface
{
return $this->set[$this->position];
}
/**
* @return int
*/
public function key(): int
{
return $this->position;
}
/**
* @return void
*/
public function next()
{
++$this->position;
}
/**
* @return bool
*/
public function valid(): bool
{
return isset($this->set[$this->position]);
}
/**
* @param int $offset
* @return bool
*/
public function offsetExists($offset)
{
return array_key_exists($offset, $this->set);
}
/**
* @param int $offset
*/
public function offsetUnset($offset)
{
throw new \RuntimeException('Cannot unset from a Static Collection');
}
/**
* @param int $offset
* @return mixed
*/
public function offsetGet($offset)
{
if (!array_key_exists($offset, $this->set)) {
throw new \OutOfRangeException('Nothing found at this offset');
}
return $this->set[$offset];
}
/**
* @param int $offset
* @param mixed $value
*/
public function offsetSet($offset, $value)
{
throw new \RuntimeException('Cannot add to a Static Collection');
}
}