1
0
mirror of https://github.com/danog/postgres.git synced 2025-01-08 05:58:21 +01:00
postgres/lib/PqUnbufferedResult.php

37 lines
1.0 KiB
PHP
Raw Normal View History

2016-12-30 06:21:17 +01:00
<?php
2016-09-14 16:27:39 +02:00
namespace Amp\Postgres;
2017-05-16 06:14:02 +02:00
use Amp\Producer;
2016-09-14 16:27:39 +02:00
use pq;
class PqUnbufferedResult extends TupleResult implements Operation {
2017-05-16 06:14:02 +02:00
use Internal\Operation;
2017-05-16 06:28:37 +02:00
2016-09-14 16:27:39 +02:00
/** @var int */
private $numCols;
2017-05-16 06:28:37 +02:00
2016-09-14 16:27:39 +02:00
/**
* @param callable(): \Amp\Promise $fetch Function to fetch next result row.
2016-09-14 16:27:39 +02:00
* @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) {
2016-09-14 16:27:39 +02:00
try {
do {
2017-02-07 04:32:17 +01:00
$next = $fetch(); // Request next result before current is consumed.
2016-09-14 16:27:39 +02:00
yield $emit($result->fetchRow(pq\Result::FETCH_ASSOC));
$result = yield $next;
} while ($result instanceof pq\Result);
} finally {
$this->complete();
}
}));
}
2017-02-16 23:23:50 +01:00
2016-09-14 16:27:39 +02:00
public function numFields(): int {
return $this->numCols;
}
2017-05-16 06:28:37 +02:00
}