ACC SHELL
<?php
/**
* This file is part of the Nette Framework (http://nette.org)
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
* @package Nette\Iterators
*/
/**
* Smarter caching iterator.
*
* @author David Grudl
*
* @property-read bool $first
* @property-read bool $last
* @property-read bool $empty
* @property-read bool $odd
* @property-read bool $even
* @property-read int $counter
* @property-read mixed $nextKey
* @property-read mixed $nextValue
* @property-read $innerIterator
* @property $flags
* @property-read $cache
* @package Nette\Iterators
*/
class NSmartCachingIterator extends CachingIterator implements Countable
{
/** @var int */
private $counter = 0;
public function __construct($iterator)
{
if (is_array($iterator) || $iterator instanceof stdClass) {
$iterator = new ArrayIterator($iterator);
} elseif ($iterator instanceof Traversable) {
if ($iterator instanceof IteratorAggregate) {
$iterator = $iterator->getIterator();
} elseif (!$iterator instanceof Iterator) {
$iterator = new IteratorIterator($iterator);
}
} else {
throw new InvalidArgumentException("Invalid argument passed to foreach resp. " . __CLASS__ . "; array or Traversable expected, " . (is_object($iterator) ? get_class($iterator) : gettype($iterator)) ." given.");
}
parent::__construct($iterator, 0);
}
/**
* Is the current element the first one?
* @param int grid width
* @return bool
*/
public function isFirst($width = NULL)
{
return $this->counter === 1 || ($width && $this->counter !== 0 && (($this->counter - 1) % $width) === 0);
}
/**
* Is the current element the last one?
* @param int grid width
* @return bool
*/
public function isLast($width = NULL)
{
return !$this->hasNext() || ($width && ($this->counter % $width) === 0);
}
/**
* Is the iterator empty?
* @return bool
*/
public function isEmpty()
{
return $this->counter === 0;
}
/**
* Is the counter odd?
* @return bool
*/
public function isOdd()
{
return $this->counter % 2 === 1;
}
/**
* Is the counter even?
* @return bool
*/
public function isEven()
{
return $this->counter % 2 === 0;
}
/**
* Returns the counter.
* @return int
*/
public function getCounter()
{
return $this->counter;
}
/**
* Returns the count of elements.
* @return int
*/
public function count()
{
$inner = $this->getInnerIterator();
if ($inner instanceof Countable) {
return $inner->count();
} else {
throw new NotSupportedException('Iterator is not countable.');
}
}
/**
* Forwards to the next element.
* @return void
*/
public function next()
{
parent::next();
if (parent::valid()) {
$this->counter++;
}
}
/**
* Rewinds the Iterator.
* @return void
*/
public function rewind()
{
parent::rewind();
$this->counter = parent::valid() ? 1 : 0;
}
/**
* Returns the next key.
* @return mixed
*/
public function getNextKey()
{
return $this->getInnerIterator()->key();
}
/**
* Returns the next element.
* @return mixed
*/
public function getNextValue()
{
return $this->getInnerIterator()->current();
}
/********************* NObject behaviour ****************d*g**/
/**
* Call to undefined method.
* @param string method name
* @param array arguments
* @return mixed
* @throws MemberAccessException
*/
public function __call($name, $args)
{
return NObjectMixin::call($this, $name, $args);
}
/**
* Returns property value. Do not call directly.
* @param string property name
* @return mixed property value
* @throws MemberAccessException if the property is not defined.
*/
public function &__get($name)
{
return NObjectMixin::get($this, $name);
}
/**
* Sets value of a property. Do not call directly.
* @param string property name
* @param mixed property value
* @return void
* @throws MemberAccessException if the property is not defined or is read-only
*/
public function __set($name, $value)
{
NObjectMixin::set($this, $name, $value);
}
/**
* Is property defined?
* @param string property name
* @return bool
*/
public function __isset($name)
{
return NObjectMixin::has($this, $name);
}
/**
* Access to undeclared property.
* @param string property name
* @return void
* @throws MemberAccessException
*/
public function __unset($name)
{
NObjectMixin::remove($this, $name);
}
}
ACC SHELL 2018