mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-31 21:12:41 +00:00
56 lines
1.1 KiB
PHP
56 lines
1.1 KiB
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
namespace JKingWeb\Arsse\Db;
|
||
|
|
||
|
abstract class AbstractResult implements Result {
|
||
|
protected $pos = 0;
|
||
|
protected $cur = null;
|
||
|
|
||
|
// actual public methods
|
||
|
|
||
|
public function getValue() {
|
||
|
$this->next();
|
||
|
if ($this->valid()) {
|
||
|
$keys = array_keys($this->cur);
|
||
|
return $this->cur[array_shift($keys)];
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
public function getRow() {
|
||
|
$this->next();
|
||
|
return ($this->valid() ? $this->cur : null);
|
||
|
}
|
||
|
|
||
|
public function getAll(): array {
|
||
|
return iterator_to_array($this, false);
|
||
|
}
|
||
|
|
||
|
abstract public function changes();
|
||
|
|
||
|
abstract public function lastId();
|
||
|
|
||
|
// PHP iterator methods
|
||
|
|
||
|
abstract public function valid();
|
||
|
|
||
|
public function next() {
|
||
|
$this->cur = null;
|
||
|
$this->pos += 1;
|
||
|
}
|
||
|
|
||
|
public function current() {
|
||
|
return $this->cur;
|
||
|
}
|
||
|
|
||
|
public function key() {
|
||
|
return $this->pos;
|
||
|
}
|
||
|
|
||
|
public function rewind() {
|
||
|
if ($this->pos) {
|
||
|
throw new Exception("resultReused");
|
||
|
}
|
||
|
}
|
||
|
}
|