2018-01-13 17:36:01 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Amp\Internal;
|
|
|
|
|
|
|
|
use Amp\Iterator;
|
|
|
|
use Amp\Promise;
|
|
|
|
|
|
|
|
/**
|
2020-09-27 06:14:17 +02:00
|
|
|
* Wraps a Producer instance that has public methods to emit, complete, and fail into an object that only allows
|
2018-01-13 17:36:01 +01:00
|
|
|
* access to the public API methods.
|
2020-03-28 12:23:46 +01:00
|
|
|
*
|
|
|
|
* @template-covariant TValue
|
|
|
|
* @template-implements Iterator<TValue>
|
2018-01-13 17:36:01 +01:00
|
|
|
*/
|
2020-03-28 12:23:46 +01:00
|
|
|
final class PrivateIterator implements Iterator
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-27 06:14:17 +02:00
|
|
|
/** @var Producer<TValue> */
|
|
|
|
private Producer $producer;
|
2018-01-13 17:36:01 +01:00
|
|
|
|
2020-03-28 12:23:46 +01:00
|
|
|
/**
|
2020-09-27 06:14:17 +02:00
|
|
|
* @param Producer $producer
|
2020-03-28 12:23:46 +01:00
|
|
|
*
|
|
|
|
* @psalm-param Iterator<TValue> $iterator
|
|
|
|
*/
|
2020-09-27 06:14:17 +02:00
|
|
|
public function __construct(Producer $producer)
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-27 06:14:17 +02:00
|
|
|
$this->producer = $producer;
|
2018-01-13 17:36:01 +01:00
|
|
|
}
|
|
|
|
|
2020-03-28 12:23:46 +01:00
|
|
|
/**
|
|
|
|
* @return Promise<bool>
|
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public function advance(): Promise
|
|
|
|
{
|
2020-09-27 06:14:17 +02:00
|
|
|
return $this->producer->advance();
|
2018-01-13 17:36:01 +01:00
|
|
|
}
|
|
|
|
|
2020-03-28 12:23:46 +01:00
|
|
|
/**
|
|
|
|
* @psalm-return TValue
|
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public function getCurrent()
|
|
|
|
{
|
2020-09-27 06:14:17 +02:00
|
|
|
return $this->producer->getCurrent();
|
2018-01-13 17:36:01 +01:00
|
|
|
}
|
|
|
|
}
|