1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 04:24:45 +01:00
postgres/lib/PgSqlExecutor.php
Aaron Piotrowski 0c3b70633c
Reuse statement handles
Allows the same query to be prepared multiple times on a single connection without error or performance penalty.
2017-07-27 23:20:46 -05:00

323 lines
9.1 KiB
PHP

<?php
namespace Amp\Postgres;
use Amp\CallableMaker;
use Amp\Deferred;
use Amp\Emitter;
use Amp\Loop;
use Amp\Promise;
use Amp\Success;
use function Amp\call;
class PgSqlExecutor implements Executor {
use CallableMaker;
/** @var resource PostgreSQL connection handle. */
private $handle;
/** @var \Amp\Deferred|null */
private $deferred;
/** @var string */
private $poll;
/** @var string */
private $await;
/** @var callable */
private $executeCallback;
/** @var callable */
private $deallocateCallback;
/** @var \Amp\Emitter[] */
private $listeners = [];
/** @var callable */
private $unlisten;
/** @var \Amp\Postgres\Internal\StatementStorage[] */
private $statements = [];
/**
* Connection constructor.
*
* @param resource $handle PostgreSQL connection handle.
* @param resource $socket PostgreSQL connection stream socket.
*/
public function __construct($handle, $socket) {
$this->handle = $handle;
$deferred = &$this->deferred;
$listeners = &$this->listeners;
$this->poll = Loop::onReadable($socket, static function ($watcher) use (&$deferred, &$listeners, $handle) {
if (!\pg_consume_input($handle)) {
if ($deferred !== null) {
$deferred->fail(new FailureException(\pg_last_error($handle)));
}
return;
}
while ($result = \pg_get_notify($handle, \PGSQL_ASSOC)) {
$channel = $result["message"];
if (!isset($listeners[$channel])) {
return;
}
$notification = new Notification;
$notification->channel = $channel;
$notification->pid = $result["pid"];
$notification->payload = $result["payload"];
$listeners[$channel]->emit($notification);
}
if ($deferred === null) {
return; // No active query, only notification listeners.
}
if (\pg_connection_busy($handle)) {
return;
}
$deferred->resolve(\pg_get_result($handle));
if (!$deferred && empty($listeners)) {
Loop::disable($watcher);
}
});
$this->await = Loop::onWritable($socket, static function ($watcher) use (&$deferred, $handle) {
$flush = \pg_flush($handle);
if ($flush === 0) {
return; // Not finished sending data, listen again.
}
Loop::disable($watcher);
if ($flush === false) {
$deferred->fail(new FailureException(\pg_last_error($handle)));
}
});
Loop::disable($this->poll);
Loop::disable($this->await);
$this->executeCallback = $this->callableFromInstanceMethod("sendExecute");
$this->deallocateCallback = $this->callableFromInstanceMethod("sendDeallocate");
$this->unlisten = $this->callableFromInstanceMethod("unlisten");
}
/**
* Frees Io watchers from loop.
*/
public function __destruct() {
if (\is_resource($this->handle)) {
\pg_close($this->handle);
}
Loop::cancel($this->poll);
Loop::cancel($this->await);
}
/**
* @coroutine
*
* @param callable $function Function name to execute.
* @param mixed ...$args Arguments to pass to function.
*
* @return \Generator
*
* @resolve resource
*
* @throws \Amp\Postgres\FailureException
* @throws \Amp\Postgres\PendingOperationError
*/
private function send(callable $function, ...$args): \Generator {
while ($this->deferred) {
try {
yield $this->deferred->promise();
} catch (\Throwable $exception) {
// Ignore failure from another operation.
}
}
$result = $function($this->handle, ...$args);
if ($result === false) {
throw new FailureException(\pg_last_error($this->handle));
}
$this->deferred = new Deferred;
Loop::enable($this->poll);
if (0 === $result) {
Loop::enable($this->await);
}
try {
$result = yield $this->deferred->promise();
} finally {
$this->deferred = null;
}
return $result;
}
/**
* @param resource $result PostgreSQL result resource.
*
* @return \Amp\Postgres\CommandResult|\Amp\Postgres\TupleResult
*
* @throws \Amp\Postgres\FailureException
* @throws \Amp\Postgres\QueryError
*/
private function createResult($result) {
switch (\pg_result_status($result, \PGSQL_STATUS_LONG)) {
case \PGSQL_EMPTY_QUERY:
throw new QueryError("Empty query string");
case \PGSQL_COMMAND_OK:
return new PgSqlCommandResult($result);
case \PGSQL_TUPLES_OK:
return new PgSqlTupleResult($result);
case \PGSQL_NONFATAL_ERROR:
case \PGSQL_FATAL_ERROR:
throw new QueryError(\pg_result_error($result));
case \PGSQL_BAD_RESPONSE:
throw new FailureException(\pg_result_error($result));
default:
throw new FailureException("Unknown result status");
}
}
private function sendExecute(string $name, array $params): Promise {
return call(function () use ($name, $params) {
return $this->createResult(yield from $this->send("pg_send_execute", $name, $params));
});
}
private function sendDeallocate(string $name) {
\assert(isset($this->statements[$name]), "Named statement not found when deallocating");
$storage = $this->statements[$name];
if (--$storage->count) {
return;
}
unset($this->statements[$name]);
Promise\rethrow($this->query(\sprintf("DEALLOCATE %s", $name)));
}
/**
* {@inheritdoc}
*/
public function query(string $sql): Promise {
return call(function () use ($sql) {
return $this->createResult(yield from $this->send("pg_send_query", $sql));
});
}
/**
* {@inheritdoc}
*/
public function execute(string $sql, ...$params): Promise {
return call(function () use ($sql, $params) {
return $this->createResult(yield from $this->send("pg_send_query_params", $sql, $params));
});
}
/**
* {@inheritdoc}
*/
public function prepare(string $sql): Promise {
$name = self::STATEMENT_NAME_PREFIX . \sha1($sql);
if (isset($this->statements[$name])) {
$storage = $this->statements[$name];
++$storage->count;
if ($storage->promise) {
return $storage->promise;
}
return new Success(new PgSqlStatement($name, $sql, $this->executeCallback, $this->deallocateCallback));
}
$this->statements[$name] = $storage = new Internal\StatementStorage;
$storage->promise = call(function () use ($name, $sql) {
yield from $this->send("pg_send_prepare", $name, $sql);
return new PgSqlStatement($name, $sql, $this->executeCallback, $this->deallocateCallback);
});
$storage->promise->onResolve(function () use ($storage) {
$storage->promise = null;
});
return $storage->promise;
}
/**
* {@inheritdoc}
*/
public function notify(string $channel, string $payload = ""): Promise {
if ($payload === "") {
return $this->query(\sprintf("NOTIFY %s", $channel));
}
return $this->query(\sprintf("NOTIFY %s, '%s'", $channel, $payload));
}
/**
* {@inheritdoc}
*/
public function listen(string $channel): Promise {
return call(function () use ($channel) {
if (isset($this->listeners[$channel])) {
throw new QueryError(\sprintf("Already listening on channel '%s'", $channel));
}
$this->listeners[$channel] = $emitter = new Emitter;
try {
yield $this->query(\sprintf("LISTEN %s", $channel));
} catch (\Throwable $exception) {
unset($this->listeners[$channel]);
throw $exception;
}
Loop::enable($this->poll);
return new Listener($emitter->iterate(), $channel, $this->unlisten);
});
}
/**
* @param string $channel
*
* @return \Amp\Promise
*
* @throws \Error
*/
private function unlisten(string $channel): Promise {
\assert(isset($this->listeners[$channel]), "Not listening on that channel");
$emitter = $this->listeners[$channel];
unset($this->listeners[$channel]);
if (empty($this->listeners) && $this->deferred === null) {
Loop::disable($this->poll);
}
$promise = $this->query(\sprintf("UNLISTEN %s", $channel));
$promise->onResolve([$emitter, "complete"]);
return $promise;
}
}