1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-13 18:07:31 +01:00
postgres/lib/PqConnection.php

69 lines
2.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-17 18:14:12 +02:00
use Amp\{ Deferred, Failure, Loop, Promise };
2016-09-14 16:27:39 +02:00
use pq;
class PqConnection extends AbstractConnection {
/**
* @param string $connectionString
* @param int $timeout
2016-09-14 16:27:39 +02:00
*
* @return \Amp\Promise<\Amp\Postgres\PgSqlConnection>
2016-09-14 16:27:39 +02:00
*/
public static function connect(string $connectionString, int $timeout = 0): Promise {
2016-09-14 16:27:39 +02:00
try {
$connection = new pq\Connection($connectionString, pq\Connection::ASYNC);
} catch (pq\Exception $exception) {
return new Failure(new FailureException("Could not connect to PostgresSQL server", 0, $exception));
2016-09-14 16:27:39 +02:00
}
$connection->resetAsync();
$connection->nonblocking = true;
$connection->unbuffered = true;
2017-05-16 06:28:37 +02:00
2016-09-14 16:27:39 +02:00
$deferred = new Deferred;
2017-05-16 06:28:37 +02:00
$callback = function () use ($connection, $deferred) {
switch ($connection->poll()) {
case pq\Connection::POLLING_READING:
return; // Connection not ready, poll again.
case pq\Connection::POLLING_WRITING:
return; // Still writing...
case pq\Connection::POLLING_FAILED:
$deferred->fail(new FailureException("Could not connect to PostgreSQL server"));
return;
case pq\Connection::POLLING_OK:
$deferred->resolve(new self($connection));
return;
2016-09-14 16:27:39 +02:00
}
};
2017-05-16 06:28:37 +02:00
2016-09-14 16:27:39 +02:00
$poll = Loop::onReadable($connection->socket, $callback);
$await = Loop::onWritable($connection->socket, $callback);
$promise = $deferred->promise();
if ($timeout !== 0) {
$promise = Promise\timeout($promise, $timeout);
2016-09-14 16:27:39 +02:00
}
2017-03-22 01:16:25 +01:00
$promise->onResolve(function () use ($poll, $await) {
Loop::cancel($poll);
Loop::cancel($await);
});
return $promise;
2016-09-14 16:27:39 +02:00
}
2017-05-16 06:28:37 +02:00
2016-09-14 16:27:39 +02:00
/**
* @param \pq\Connection $handle
*/
public function __construct(pq\Connection $handle) {
parent::__construct(new PqExecutor($handle));
}
}