Patch set 4: Move files to includes/db Patch set 5: Update autoloader, pull in DB Change-Id: I2b961e043dd1af9c843995bac7fc77bd671caa5e
104 lines
1.5 KiB
PHP
104 lines
1.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Result of a ORMTable::select, which returns ORMRow objects.
|
|
*
|
|
* @since 1.20
|
|
*
|
|
* @file ORMResult.php
|
|
*
|
|
* @licence GNU GPL v2 or later
|
|
* @author Jeroen De Dauw < jeroendedauw@gmail.com >
|
|
*/
|
|
class ORMResult implements Iterator {
|
|
|
|
/**
|
|
* @var ResultWrapper
|
|
*/
|
|
protected $res;
|
|
|
|
/**
|
|
* @var integer
|
|
*/
|
|
protected $key;
|
|
|
|
/**
|
|
* @var ORMRow
|
|
*/
|
|
protected $current;
|
|
|
|
/**
|
|
* @var ORMTable
|
|
*/
|
|
protected $table;
|
|
|
|
/**
|
|
* @param ORMTable $table
|
|
* @param ResultWrapper $res
|
|
*/
|
|
public function __construct( ORMTable $table, ResultWrapper $res ) {
|
|
$this->table = $table;
|
|
$this->res = $res;
|
|
$this->key = 0;
|
|
$this->setCurrent( $this->res->current() );
|
|
}
|
|
|
|
/**
|
|
* @param $row
|
|
*/
|
|
protected function setCurrent( $row ) {
|
|
if ( $row === false ) {
|
|
$this->current = false;
|
|
} else {
|
|
$this->current = $this->table->newFromDBResult( $row );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return integer
|
|
*/
|
|
public function count() {
|
|
return $this->res->numRows();
|
|
}
|
|
|
|
/**
|
|
* @return boolean
|
|
*/
|
|
public function isEmpty() {
|
|
return $this->res->numRows() === 0;
|
|
}
|
|
|
|
/**
|
|
* @return ORMRow
|
|
*/
|
|
public function current() {
|
|
return $this->current;
|
|
}
|
|
|
|
/**
|
|
* @return integer
|
|
*/
|
|
public function key() {
|
|
return $this->key;
|
|
}
|
|
|
|
public function next() {
|
|
$row = $this->res->next();
|
|
$this->setCurrent( $row );
|
|
$this->key++;
|
|
}
|
|
|
|
public function rewind() {
|
|
$this->res->rewind();
|
|
$this->key = 0;
|
|
$this->setCurrent( $this->res->current() );
|
|
}
|
|
|
|
/**
|
|
* @return boolean
|
|
*/
|
|
public function valid() {
|
|
return $this->current !== false;
|
|
}
|
|
|
|
}
|