123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?php
- declare(strict_types=1);
- class CircularBuffer {
-
- private int $cap = 0;
-
- private SplFixedArray $data;
-
- private int $base = 0;
-
- private int $length = 0;
- public function __construct(int $length) {
- $this->cap = $length;
- $this->data = new SplFixedArray($length);
- }
- public function clear(): void {
- $this->data = new SplFixedArray($this->cap);
- $this->base = 0;
- $this->length = 0;
- }
-
- public function read() {
- if ($this->length === 0) {
- throw new BufferEmptyError();
- }
- $res = $this->data[$this->base];
- $this->base = ($this->base + 1) % $this->cap;
- $this->length--;
- return $res;
- }
-
- public function write($item): void {
- if ($this->length == $this->cap) {
- throw new BufferFullError();
- }
- $this->data[($this->base+$this->length)%$this->cap] = $item;
- $this->length++;
- }
- public function forceWrite($item): void {
- $this->data[($this->base+$this->length)%$this->cap] = $item;
- if ($this->length === $this->cap) {
- $this->base = ($this->base+1)%$this->cap;
- }
- $this->length = min($this->cap, $this->length+1);
- }
- }
- class BufferFullError extends Exception {
- }
- class BufferEmptyError extends Exception {
- }
|