1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-13 09:57:32 +01:00
postgres/lib/AbstractConnection.php

140 lines
3.7 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\{ CallableMaker, Coroutine, Deferred, Promise, function call };
2016-09-14 16:27:39 +02:00
abstract class AbstractConnection implements Connection {
use CallableMaker;
2017-05-16 06:28:37 +02:00
/** @var \Amp\Postgres\Executor */
2016-09-14 16:27:39 +02:00
private $executor;
2017-05-16 06:28:37 +02:00
/** @var \Amp\Deferred|null Used to only allow one transaction at a time. */
2016-09-14 16:27:39 +02:00
private $busy;
2017-05-16 06:28:37 +02:00
2016-09-14 16:27:39 +02:00
/** @var callable */
private $release;
2017-05-16 06:28:37 +02:00
2016-09-14 16:27:39 +02:00
/**
* @param string $connectionString
* @param int $timeout Timeout until the connection attempt fails. 0 for no timeout.
2016-09-14 16:27:39 +02:00
*
* @return \Amp\Promise<\Amp\Postgres\Connection>
2016-09-14 16:27:39 +02:00
*/
abstract public static function connect(string $connectionString, int $timeout = 0): Promise;
2017-05-16 06:28:37 +02:00
2016-09-14 16:27:39 +02:00
/**
* @param $executor;
*/
public function __construct(Executor $executor) {
$this->executor = $executor;
$this->release = $this->callableFromInstanceMethod("release");
}
/**
* @param callable $method Method to execute.
* @param mixed ...$args Arguments to pass to function.
*
* @return \Amp\Promise
2016-09-14 16:27:39 +02:00
*
* @throws \Amp\Postgres\FailureException
* @throws \Amp\Postgres\PendingOperationError
2016-09-14 16:27:39 +02:00
*/
private function send(callable $method, ...$args): Promise {
if ($this->busy) {
throw new PendingOperationError;
2016-09-14 16:27:39 +02:00
}
2017-05-16 06:28:37 +02:00
$this->busy = true;
try {
return $method(...$args);
} finally {
$this->busy = false;
}
2016-09-14 16:27:39 +02:00
}
2017-05-16 06:28:37 +02:00
/**
* Releases the transaction lock.
*/
2016-09-14 16:27:39 +02:00
private function release() {
$this->busy = false;
2016-09-14 16:27:39 +02:00
}
2017-05-16 06:28:37 +02:00
2016-09-14 16:27:39 +02:00
/**
* {@inheritdoc}
*/
2016-11-15 18:06:21 +01:00
public function query(string $sql): Promise {
return $this->send([$this->executor, "query"], $sql);
2016-09-14 16:27:39 +02:00
}
/**
* {@inheritdoc}
*/
2016-11-15 18:06:21 +01:00
public function execute(string $sql, ...$params): Promise {
return $this->send([$this->executor, "execute"], $sql, ...$params);
2016-09-14 16:27:39 +02:00
}
/**
* {@inheritdoc}
*/
2016-11-15 18:06:21 +01:00
public function prepare(string $sql): Promise {
return $this->send([$this->executor, "prepare"], $sql);
2016-09-19 18:12:32 +02:00
}
2017-05-16 06:28:37 +02:00
/**
* {@inheritdoc}
*/
2016-11-15 18:06:21 +01:00
public function notify(string $channel, string $payload = ""): Promise {
return $this->send([$this->executor, "notify"], $channel, $payload);
}
2017-05-16 06:28:37 +02:00
2016-09-19 18:12:32 +02:00
/**
* {@inheritdoc}
*/
2016-11-15 18:06:21 +01:00
public function listen(string $channel): Promise {
return $this->send([$this->executor, "listen"], $channel);
2016-09-14 16:27:39 +02:00
}
/**
* {@inheritdoc}
*/
2016-11-15 18:06:21 +01:00
public function transaction(int $isolation = Transaction::COMMITTED): Promise {
if ($this->busy) {
throw new PendingOperationError;
}
$this->busy = true;
2016-09-14 16:27:39 +02:00
switch ($isolation) {
case Transaction::UNCOMMITTED:
$promise = $this->executor->query("BEGIN TRANSACTION ISOLATION LEVEL READ UNCOMMITTED");
2016-09-14 16:27:39 +02:00
break;
2017-05-16 06:28:37 +02:00
2016-09-14 16:27:39 +02:00
case Transaction::COMMITTED:
$promise = $this->executor->query("BEGIN TRANSACTION ISOLATION LEVEL READ COMMITTED");
2016-09-14 16:27:39 +02:00
break;
2017-05-16 06:28:37 +02:00
2016-09-14 16:27:39 +02:00
case Transaction::REPEATABLE:
$promise = $this->executor->query("BEGIN TRANSACTION ISOLATION LEVEL REPEATABLE READ");
2016-09-14 16:27:39 +02:00
break;
2017-05-16 06:28:37 +02:00
2016-09-14 16:27:39 +02:00
case Transaction::SERIALIZABLE:
$promise = $this->executor->query("BEGIN TRANSACTION ISOLATION LEVEL SERIALIZABLE");
2016-09-14 16:27:39 +02:00
break;
2017-05-16 06:28:37 +02:00
2016-09-14 16:27:39 +02:00
default:
throw new \Error("Invalid transaction type");
}
2017-05-16 06:14:02 +02:00
return call(function () use ($promise, $isolation) {
yield $promise;
2016-09-14 16:27:39 +02:00
$transaction = new Transaction($this->executor, $isolation);
$transaction->onComplete($this->release);
return $transaction;
});
}
}