mirror of
https://github.com/danog/postgres.git
synced 2024-11-27 04:24:45 +01:00
65ede1b786
Deallocating queries without potential race conditions required allowing simultaneous queries.
57 lines
1.2 KiB
PHP
57 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Amp\Postgres;
|
|
|
|
use Amp\Promise;
|
|
|
|
class PgSqlStatement implements Statement {
|
|
/** @var string */
|
|
private $name;
|
|
|
|
/** @var string */
|
|
private $sql;
|
|
|
|
/** @var callable */
|
|
private $execute;
|
|
|
|
/** @var callable */
|
|
private $deallocate;
|
|
|
|
/**
|
|
* @internal
|
|
*
|
|
* @param string $name
|
|
* @param string $sql
|
|
* @param callable $execute
|
|
* @param callable $deallocate
|
|
*/
|
|
public function __construct(string $name, string $sql, callable $execute, callable $deallocate) {
|
|
$this->name = $name;
|
|
$this->sql = $sql;
|
|
$this->execute = $execute;
|
|
$this->deallocate = $deallocate;
|
|
}
|
|
|
|
public function __destruct() {
|
|
($this->deallocate)($this->name);
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getQuery(): string {
|
|
return $this->sql;
|
|
}
|
|
|
|
/**
|
|
* @param mixed ...$params
|
|
*
|
|
* @return \Amp\Promise<\Amp\Postgres\Result>
|
|
*
|
|
* @throws \Amp\Postgres\FailureException If executing the statement fails.
|
|
*/
|
|
public function execute(...$params): Promise {
|
|
return ($this->execute)($this->name, $params);
|
|
}
|
|
}
|