1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Paginator
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id$
*/
/**
* @category Zend
* @package Zend_Paginator
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Paginator_SerializableLimitIterator extends LimitIterator implements Serializable, ArrayAccess
{
/**
* Offset to first element
*
* @var int
*/
private $_offset;
/**
* Maximum number of elements to show or -1 for all
*
* @var int
*/
private $_count;
/**
* Construct a Zend_Paginator_SerializableLimitIterator
*
* @param Iterator $it Iterator to limit (must be serializable by un-/serialize)
* @param int $offset Offset to first element
* @param int $count Maximum number of elements to show or -1 for all
* @see LimitIterator::__construct
*/
public function __construct (Iterator $it, $offset=0, $count=-1)
{
parent::__construct($it, $offset, $count);
$this->_offset = $offset;
$this->_count = $count;
}
/**
* @return string representation of the instance
*/
public function serialize()
{
return serialize(array(
'it' => $this->getInnerIterator(),
'offset' => $this->_offset,
'count' => $this->_count,
'pos' => $this->getPosition(),
));
}
/**
* @param string $data representation of the instance
*/
public function unserialize($data)
{
$dataArr = unserialize($data);
$this->__construct($dataArr['it'], $dataArr['offset'], $dataArr['count']);
$this->seek($dataArr['pos']+$dataArr['offset']);
}
/**
* Returns value of the Iterator
*
* @param int $offset
* @return mixed
*/
public function offsetGet($offset)
{
$currentOffset = $this->key();
$this->seek($offset);
$current = $this->current();
$this->seek($currentOffset);
return $current;
}
/**
* Does nothing
* Required by the ArrayAccess implementation
*
* @param int $offset
* @param mixed $value
*/
public function offsetSet($offset, $value)
{
}
/**
* Determine if a value of Iterator is set and is not NULL
*
* @param int $offset
*/
public function offsetExists($offset)
{
if ($offset > 0 && $offset < $this->_count) {
try {
$currentOffset = $this->key();
$this->seek($offset);
$current = $this->current();
$this->seek($currentOffset);
return null !== $current;
} catch (OutOfBoundsException $e) {
// reset position in case of exception is assigned null
$this->rewind();
$this->seek($currentOffset);
return false;
}
}
return false;
}
/**
* Does nothing
* Required by the ArrayAccess implementation
*
* @param int $offset
*/
public function offsetUnset($offset)
{
}
}
|