1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 04:24:45 +01:00
postgres/lib/PgSqlConnection.php
Aaron Piotrowski fac9041cac
Update and fix code styles
Changed to match code styles used in other Amp packages.
2017-06-20 22:59:42 -05:00

81 lines
2.5 KiB
PHP

<?php
namespace Amp\Postgres;
use Amp\CancellationToken;
use Amp\Deferred;
use Amp\Failure;
use Amp\Loop;
use Amp\NullCancellationToken;
use Amp\Promise;
class PgSqlConnection extends AbstractConnection {
/**
* @param string $connectionString
* @param \Amp\CancellationToken $token
*
* @return \Amp\Promise<\Amp\Postgres\PgSqlConnection>
*/
public static function connect(string $connectionString, CancellationToken $token = null): Promise {
if (!$connection = @\pg_connect($connectionString, \PGSQL_CONNECT_ASYNC | \PGSQL_CONNECT_FORCE_NEW)) {
return new Failure(new FailureException("Failed to create connection resource"));
}
if (\pg_connection_status($connection) === \PGSQL_CONNECTION_BAD) {
return new Failure(new FailureException(\pg_last_error($connection)));
}
if (!$socket = \pg_socket($connection)) {
return new Failure(new FailureException("Failed to access connection socket"));
}
$deferred = new Deferred;
$callback = function ($watcher, $resource) use ($connection, $deferred) {
switch (\pg_connect_poll($connection)) {
case \PGSQL_POLLING_READING:
return; // Connection not ready, poll again.
case \PGSQL_POLLING_WRITING:
return; // Still writing...
case \PGSQL_POLLING_FAILED:
$deferred->fail(new FailureException(\pg_last_error($connection)));
return;
case \PGSQL_POLLING_OK:
$deferred->resolve(new self($connection, $resource));
return;
}
};
$poll = Loop::onReadable($socket, $callback);
$await = Loop::onWritable($socket, $callback);
$promise = $deferred->promise();
$token = $token ?? new NullCancellationToken;
$id = $token->subscribe([$deferred, "fail"]);
$promise->onResolve(function ($exception) use ($connection, $poll, $await, $id, $token) {
if ($exception) {
\pg_close($connection);
}
$token->unsubscribe($id);
Loop::cancel($poll);
Loop::cancel($await);
});
return $promise;
}
/**
* @param resource $handle PostgreSQL connection handle.
* @param resource $socket PostgreSQL connection stream socket.
*/
public function __construct($handle, $socket) {
parent::__construct(new PgSqlExecutor($handle, $socket));
}
}