This commit is contained in:
Marek
2026-03-24 00:04:55 +01:00
commit c5229e48ed
4225 changed files with 511461 additions and 0 deletions

View File

@@ -0,0 +1,133 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3;
use Doctrine\DBAL\Driver\Connection as ConnectionInterface;
use Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware;
use Doctrine\DBAL\Driver\Result;
use Symfony\Bridge\Doctrine\Middleware\Debug\DebugDataHolder;
use Symfony\Bridge\Doctrine\Middleware\Debug\Query;
use Symfony\Component\Stopwatch\Stopwatch;
/**
* @author Laurent VOULLEMIER <laurent.voullemier@gmail.com>
*
* @internal
*/
final class Connection extends AbstractConnectionMiddleware
{
private int $nestingLevel = 0;
public function __construct(
ConnectionInterface $connection,
private readonly DebugDataHolder $debugDataHolder,
private readonly ?Stopwatch $stopwatch,
private readonly string $connectionName,
) {
parent::__construct($connection);
}
public function prepare(string $sql): Statement
{
return new Statement(
parent::prepare($sql),
$this->debugDataHolder,
$this->connectionName,
$sql,
$this->stopwatch,
);
}
public function query(string $sql): Result
{
$this->debugDataHolder->addQuery($this->connectionName, $query = new Query($sql));
$this->stopwatch?->start('doctrine', 'doctrine');
$query->start();
try {
return parent::query($sql);
} finally {
$query->stop();
$this->stopwatch?->stop('doctrine');
}
}
public function exec(string $sql): int
{
$this->debugDataHolder->addQuery($this->connectionName, $query = new Query($sql));
$this->stopwatch?->start('doctrine', 'doctrine');
$query->start();
try {
return parent::exec($sql);
} finally {
$query->stop();
$this->stopwatch?->stop('doctrine');
}
}
public function beginTransaction(): bool
{
$query = null;
if (1 === ++$this->nestingLevel) {
$this->debugDataHolder->addQuery($this->connectionName, $query = new Query('"START TRANSACTION"'));
}
$this->stopwatch?->start('doctrine', 'doctrine');
$query?->start();
try {
return parent::beginTransaction();
} finally {
$query?->stop();
$this->stopwatch?->stop('doctrine');
}
}
public function commit(): bool
{
$query = null;
if (1 === $this->nestingLevel--) {
$this->debugDataHolder->addQuery($this->connectionName, $query = new Query('"COMMIT"'));
}
$this->stopwatch?->start('doctrine', 'doctrine');
$query?->start();
try {
return parent::commit();
} finally {
$query?->stop();
$this->stopwatch?->stop('doctrine');
}
}
public function rollBack(): bool
{
$query = null;
if (1 === $this->nestingLevel--) {
$this->debugDataHolder->addQuery($this->connectionName, $query = new Query('"ROLLBACK"'));
}
$this->stopwatch?->start('doctrine', 'doctrine');
$query?->start();
try {
return parent::rollBack();
} finally {
$query?->stop();
$this->stopwatch?->stop('doctrine');
}
}
}

View File

@@ -0,0 +1,76 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3;
use Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware;
use Doctrine\DBAL\Driver\Result as ResultInterface;
use Doctrine\DBAL\Driver\Statement as StatementInterface;
use Doctrine\DBAL\ParameterType;
use Symfony\Bridge\Doctrine\Middleware\Debug\DebugDataHolder;
use Symfony\Bridge\Doctrine\Middleware\Debug\Query;
use Symfony\Component\Stopwatch\Stopwatch;
/**
* @author Laurent VOULLEMIER <laurent.voullemier@gmail.com>
*
* @internal
*/
final class Statement extends AbstractStatementMiddleware
{
private readonly Query $query;
public function __construct(
StatementInterface $statement,
private readonly DebugDataHolder $debugDataHolder,
private readonly string $connectionName,
string $sql,
private readonly ?Stopwatch $stopwatch = null,
) {
$this->query = new Query($sql);
parent::__construct($statement);
}
public function bindParam($param, &$variable, $type = ParameterType::STRING, $length = null): bool
{
$this->query->setParam($param, $variable, $type);
return parent::bindParam($param, $variable, $type, ...\array_slice(\func_get_args(), 3));
}
public function bindValue($param, $value, $type = ParameterType::STRING): bool
{
$this->query->setValue($param, $value, $type);
return parent::bindValue($param, $value, $type);
}
public function execute($params = null): ResultInterface
{
if (null !== $params) {
$this->query->setValues($params);
}
// clone to prevent variables by reference to change
$this->debugDataHolder->addQuery($this->connectionName, $query = clone $this->query);
$this->stopwatch?->start('doctrine', 'doctrine');
$query->start();
try {
return parent::execute($params);
} finally {
$query->stop();
$this->stopwatch?->stop('doctrine');
}
}
}