2014-03-24 10:40:08 -03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace DesignPatterns\Behavioral\Iterator;
|
|
|
|
|
2015-09-08 23:55:13 +02:00
|
|
|
class BookListReverseIterator implements \Iterator
|
2014-03-24 10:40:08 -03:00
|
|
|
{
|
|
|
|
|
2015-09-08 23:55:13 +02:00
|
|
|
/**
|
|
|
|
* @var BookList
|
|
|
|
*/
|
|
|
|
private $bookList;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
protected $currentBook = 0;
|
|
|
|
|
2014-03-24 10:40:08 -03:00
|
|
|
public function __construct(BookList $bookList)
|
|
|
|
{
|
|
|
|
$this->bookList = $bookList;
|
|
|
|
$this->currentBook = $this->bookList->count() - 1;
|
|
|
|
}
|
|
|
|
|
2015-09-08 23:55:13 +02:00
|
|
|
/**
|
|
|
|
* Return the current book
|
|
|
|
* @link http://php.net/manual/en/iterator.current.php
|
|
|
|
* @return Book Can return any type.
|
|
|
|
*/
|
|
|
|
public function current()
|
|
|
|
{
|
|
|
|
return $this->bookList->getBook($this->currentBook);
|
|
|
|
}
|
|
|
|
|
2015-09-07 02:17:17 +02:00
|
|
|
/**
|
|
|
|
* (PHP 5 >= 5.0.0)<br/>
|
|
|
|
* Move forward to next element
|
|
|
|
* @link http://php.net/manual/en/iterator.next.php
|
|
|
|
* @return void Any returned value is ignored.
|
|
|
|
*/
|
2014-03-24 10:40:08 -03:00
|
|
|
public function next()
|
|
|
|
{
|
|
|
|
$this->currentBook--;
|
|
|
|
}
|
2015-09-08 23:55:13 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* (PHP 5 >= 5.0.0)<br/>
|
|
|
|
* Return the key of the current element
|
|
|
|
* @link http://php.net/manual/en/iterator.key.php
|
|
|
|
* @return mixed scalar on success, or null on failure.
|
|
|
|
*/
|
|
|
|
public function key()
|
|
|
|
{
|
|
|
|
return $this->currentBook;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* (PHP 5 >= 5.0.0)<br/>
|
|
|
|
* Checks if current position is valid
|
|
|
|
* @link http://php.net/manual/en/iterator.valid.php
|
|
|
|
* @return boolean The return value will be casted to boolean and then evaluated.
|
|
|
|
* Returns true on success or false on failure.
|
|
|
|
*/
|
|
|
|
public function valid()
|
|
|
|
{
|
|
|
|
return null !== $this->bookList->getBook($this->currentBook);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* (PHP 5 >= 5.0.0)<br/>
|
|
|
|
* Rewind the Iterator to the first element
|
|
|
|
* @link http://php.net/manual/en/iterator.rewind.php
|
|
|
|
* @return void Any returned value is ignored.
|
|
|
|
*/
|
|
|
|
public function rewind()
|
|
|
|
{
|
|
|
|
$this->currentBook = $this->bookList->count() - 1;
|
|
|
|
}
|
2014-04-16 17:59:03 -03:00
|
|
|
}
|