1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 17:12:41 +00:00
Arsse/lib/Db/AbstractResult.php

66 lines
1.3 KiB
PHP
Raw Normal View History

<?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
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() {
if ($this->valid()) {
$out = array_shift($this->cur);
$this->next();
return $out;
} else {
return null;
}
}
public function getRow(): ?array {
if ($this->valid()) {
$out = $this->cur;
$this->next();
return $out;
} else {
return null;
}
}
public function getAll(): array {
return iterator_to_array($this, false);
}
2018-11-02 16:01:03 +00:00
abstract public function changes(): int;
2018-11-02 16:01:03 +00:00
abstract public function lastId(): int;
// 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");
}
}
}