1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 04:24:45 +01:00
postgres/lib/Transaction.php

236 lines
6.8 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;
use Amp\Promise;
2016-09-14 16:27:39 +02:00
class Transaction implements Handle, Operation {
2016-09-14 16:27:39 +02:00
const UNCOMMITTED = 0;
const COMMITTED = 1;
const REPEATABLE = 2;
const SERIALIZABLE = 4;
/** @var \Amp\Postgres\Handle */
private $handle;
2016-09-14 16:27:39 +02:00
/** @var int */
private $isolation;
/** @var \Amp\Postgres\Internal\ReferenceQueue */
private $queue;
2016-09-14 16:27:39 +02:00
/**
* @param \Amp\Postgres\Handle $handle
2016-09-14 16:27:39 +02:00
* @param int $isolation
*
* @throws \Error If the isolation level is invalid.
*/
public function __construct(Handle $handle, int $isolation = self::COMMITTED) {
2016-09-14 16:27:39 +02:00
switch ($isolation) {
case self::UNCOMMITTED:
case self::COMMITTED:
case self::REPEATABLE:
case self::SERIALIZABLE:
$this->isolation = $isolation;
break;
default:
throw new \Error("Isolation must be a valid transaction isolation level");
}
$this->handle = $handle;
$this->queue = new Internal\ReferenceQueue;
}
public function __destruct() {
if ($this->handle) {
$this->rollback(); // Invokes $this->queue->complete().
}
2016-09-14 16:27:39 +02:00
}
2017-05-16 06:28:37 +02:00
/**
* {@inheritdoc}
*/
public function onDestruct(callable $onComplete) {
$this->queue->onDestruct($onComplete);
}
/**
* {@inheritdoc}
*/
public function isAlive(): bool {
return $this->handle !== null && $this->handle->isAlive();
}
2016-09-14 16:27:39 +02:00
/**
* @return bool True if the transaction is active, false if it has been committed or rolled back.
2016-09-14 16:27:39 +02:00
*/
public function isActive(): bool {
return $this->handle !== null;
2016-09-14 16:27:39 +02:00
}
/**
* @return int
*/
public function getIsolationLevel(): int {
return $this->isolation;
}
2017-05-16 06:28:37 +02:00
2016-09-14 16:27:39 +02:00
/**
* {@inheritdoc}
*
* @throws \Amp\Postgres\TransactionError If the transaction has been committed or rolled back.
2016-09-14 16:27:39 +02:00
*/
2016-11-15 18:06:21 +01:00
public function query(string $sql): Promise {
if ($this->handle === null) {
2016-09-14 16:27:39 +02:00
throw new TransactionError("The transaction has been committed or rolled back");
}
return $this->handle->query($sql);
2016-09-14 16:27:39 +02:00
}
/**
* {@inheritdoc}
*
* @throws \Amp\Postgres\TransactionError If the transaction has been committed or rolled back.
2016-09-14 16:27:39 +02:00
*/
2016-11-15 18:06:21 +01:00
public function prepare(string $sql): Promise {
if ($this->handle === null) {
2016-09-14 16:27:39 +02:00
throw new TransactionError("The transaction has been committed or rolled back");
}
return $this->handle->prepare($sql);
2016-09-14 16:27:39 +02:00
}
/**
* {@inheritdoc}
*
* @throws \Amp\Postgres\TransactionError If the transaction has been committed or rolled back.
2016-09-14 16:27:39 +02:00
*/
public function execute(string $sql, array $params = []): Promise {
if ($this->handle === null) {
2016-09-14 16:27:39 +02:00
throw new TransactionError("The transaction has been committed or rolled back");
}
return $this->handle->execute($sql, $params);
2016-09-14 16:27:39 +02:00
}
2017-05-16 06:28:37 +02:00
/**
* {@inheritdoc}
*
* @throws \Amp\Postgres\TransactionError If the transaction has been committed or rolled back.
*/
2016-11-15 18:06:21 +01:00
public function notify(string $channel, string $payload = ""): Promise {
if ($this->handle === null) {
throw new TransactionError("The transaction has been committed or rolled back");
}
2017-05-16 06:28:37 +02:00
return $this->handle->notify($channel, $payload);
}
2016-09-14 16:27:39 +02:00
/**
* Commits the transaction and makes it inactive.
*
* @return \Amp\Promise<\Amp\Postgres\CommandResult>
2016-09-14 16:27:39 +02:00
*
* @throws \Amp\Postgres\TransactionError If the transaction has been committed or rolled back.
2016-09-14 16:27:39 +02:00
*/
2016-11-15 18:06:21 +01:00
public function commit(): Promise {
if ($this->handle === null) {
2016-09-14 16:27:39 +02:00
throw new TransactionError("The transaction has been committed or rolled back");
}
$promise = $this->handle->query("COMMIT");
$this->handle = null;
$promise->onResolve([$this->queue, "unreference"]);
2016-09-14 16:27:39 +02:00
return $promise;
2016-09-14 16:27:39 +02:00
}
/**
* Rolls back the transaction and makes it inactive.
*
* @return \Amp\Promise<\Amp\Postgres\CommandResult>
2016-09-14 16:27:39 +02:00
*
* @throws \Amp\Postgres\TransactionError If the transaction has been committed or rolled back.
2016-09-14 16:27:39 +02:00
*/
2016-11-15 18:06:21 +01:00
public function rollback(): Promise {
if ($this->handle === null) {
2016-09-14 16:27:39 +02:00
throw new TransactionError("The transaction has been committed or rolled back");
}
$promise = $this->handle->query("ROLLBACK");
$this->handle = null;
$promise->onResolve([$this->queue, "unreference"]);
2016-09-14 16:27:39 +02:00
return $promise;
2016-09-14 16:27:39 +02:00
}
/**
* Creates a savepoint with the given identifier. WARNING: Identifier is not sanitized, do not pass untrusted data.
*
* @param string $identifier Savepoint identifier.
*
* @return \Amp\Promise<\Amp\Postgres\CommandResult>
2016-09-14 16:27:39 +02:00
*
* @throws \Amp\Postgres\TransactionError If the transaction has been committed or rolled back.
2016-09-14 16:27:39 +02:00
*/
2016-11-15 18:06:21 +01:00
public function savepoint(string $identifier): Promise {
return $this->query("SAVEPOINT " . $this->quoteName($identifier));
2016-09-14 16:27:39 +02:00
}
/**
* Rolls back to the savepoint with the given identifier.
2016-09-14 16:27:39 +02:00
*
* @param string $identifier Savepoint identifier.
*
* @return \Amp\Promise<\Amp\Postgres\CommandResult>
2016-09-14 16:27:39 +02:00
*
* @throws \Amp\Postgres\TransactionError If the transaction has been committed or rolled back.
2016-09-14 16:27:39 +02:00
*/
2016-11-15 18:06:21 +01:00
public function rollbackTo(string $identifier): Promise {
return $this->query("ROLLBACK TO " . $this->quoteName($identifier));
2016-09-14 16:27:39 +02:00
}
/**
* Releases the savepoint with the given identifier. WARNING: Identifier is not sanitized, do not pass untrusted
* data.
*
* @param string $identifier Savepoint identifier.
*
* @return \Amp\Promise<\Amp\Postgres\CommandResult>
2016-09-14 16:27:39 +02:00
*
* @throws \Amp\Postgres\TransactionError If the transaction has been committed or rolled back.
2016-09-14 16:27:39 +02:00
*/
2016-11-15 18:06:21 +01:00
public function release(string $identifier): Promise {
return $this->query("RELEASE SAVEPOINT " . $this->quoteName($identifier));
}
/**
* {@inheritdoc}
*
* @throws \Amp\Postgres\TransactionError If the transaction has been committed or rolled back.
*/
public function quoteString(string $data): string {
if ($this->handle === null) {
throw new TransactionError("The transaction has been committed or rolled back");
}
return $this->handle->quoteString($data);
}
/**
* {@inheritdoc}
*
* @throws \Amp\Postgres\TransactionError If the transaction has been committed or rolled back.
*/
public function quoteName(string $name): string {
if ($this->handle === null) {
throw new TransactionError("The transaction has been committed or rolled back");
}
return $this->handle->quoteName($name);
2016-09-14 16:27:39 +02:00
}
}