1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 04:24:45 +01:00
postgres/lib/PqUnbufferedResult.php
2017-05-15 23:28:37 -05:00

37 lines
1.0 KiB
PHP

<?php
namespace Amp\Postgres;
use Amp\Producer;
use pq;
class PqUnbufferedResult extends TupleResult implements Operation {
use Internal\Operation;
/** @var int */
private $numCols;
/**
* @param callable(): \Amp\Promise $fetch Function to fetch next result row.
* @param \pq\Result $result PostgreSQL result object.
*/
public function __construct(callable $fetch, pq\Result $result) {
$this->numCols = $result->numCols;
parent::__construct(new Producer(function (callable $emit) use ($result, $fetch) {
try {
do {
$next = $fetch(); // Request next result before current is consumed.
yield $emit($result->fetchRow(pq\Result::FETCH_ASSOC));
$result = yield $next;
} while ($result instanceof pq\Result);
} finally {
$this->complete();
}
}));
}
public function numFields(): int {
return $this->numCols;
}
}