mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
117 lines
3.0 KiB
PHP
117 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\Db\ResultSet;
|
|
|
|
use ArrayObject;
|
|
use Zend\Stdlib\Hydrator\ArraySerializable;
|
|
use Zend\Stdlib\Hydrator\HydratorInterface;
|
|
|
|
class HydratingResultSet extends AbstractResultSet
|
|
{
|
|
/**
|
|
* @var HydratorInterface
|
|
*/
|
|
protected $hydrator = null;
|
|
|
|
/**
|
|
* @var null
|
|
*/
|
|
protected $objectPrototype = null;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param null|HydratorInterface $hydrator
|
|
* @param null|object $objectPrototype
|
|
*/
|
|
public function __construct(HydratorInterface $hydrator = null, $objectPrototype = null)
|
|
{
|
|
$this->setHydrator(($hydrator) ?: new ArraySerializable);
|
|
$this->setObjectPrototype(($objectPrototype) ?: new ArrayObject);
|
|
}
|
|
|
|
/**
|
|
* Set the row object prototype
|
|
*
|
|
* @param object $objectPrototype
|
|
* @throws Exception\InvalidArgumentException
|
|
* @return ResultSet
|
|
*/
|
|
public function setObjectPrototype($objectPrototype)
|
|
{
|
|
if (!is_object($objectPrototype)) {
|
|
throw new Exception\InvalidArgumentException(
|
|
'An object must be set as the object prototype, a ' . gettype($objectPrototype) . ' was provided.'
|
|
);
|
|
}
|
|
$this->objectPrototype = $objectPrototype;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Set the hydrator to use for each row object
|
|
*
|
|
* @param HydratorInterface $hydrator
|
|
* @return HydratingResultSet
|
|
*/
|
|
public function setHydrator(HydratorInterface $hydrator)
|
|
{
|
|
$this->hydrator = $hydrator;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get the hydrator to use for each row object
|
|
*
|
|
* @return HydratorInterface
|
|
*/
|
|
public function getHydrator()
|
|
{
|
|
return $this->hydrator;
|
|
}
|
|
|
|
/**
|
|
* Iterator: get current item
|
|
*
|
|
* @return object
|
|
*/
|
|
public function current()
|
|
{
|
|
if ($this->buffer === null) {
|
|
$this->buffer = -2; // implicitly disable buffering from here on
|
|
} elseif (is_array($this->buffer) && isset($this->buffer[$this->position])) {
|
|
return $this->buffer[$this->position];
|
|
}
|
|
$data = $this->dataSource->current();
|
|
$object = is_array($data) ? $this->hydrator->hydrate($data, clone $this->objectPrototype) : false;
|
|
|
|
if (is_array($this->buffer)) {
|
|
$this->buffer[$this->position] = $object;
|
|
}
|
|
|
|
return $object;
|
|
}
|
|
|
|
/**
|
|
* Cast result set to array of arrays
|
|
*
|
|
* @return array
|
|
* @throws Exception\RuntimeException if any row is not castable to an array
|
|
*/
|
|
public function toArray()
|
|
{
|
|
$return = array();
|
|
foreach ($this as $row) {
|
|
$return[] = $this->getHydrator()->extract($row);
|
|
}
|
|
return $return;
|
|
}
|
|
}
|