![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/symfony/doctrine-bridge/Middleware/Debug/ |
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <[email protected]> * * 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; use Doctrine\DBAL\Driver\Connection as ConnectionInterface; use Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware; use Doctrine\DBAL\Driver\Result; use Symfony\Component\Stopwatch\Stopwatch; /** * @author Laurent VOULLEMIER <[email protected]> * @author Alexander M. Turek <[email protected]> * * @internal */ final class Connection extends AbstractConnectionMiddleware { public function __construct( ConnectionInterface $connection, private DebugDataHolder $debugDataHolder, private ?Stopwatch $stopwatch, private 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 { $affectedRows = parent::exec($sql); } finally { $query->stop(); $this->stopwatch?->stop('doctrine'); } return $affectedRows; } public function beginTransaction(): void { $query = new Query('"START TRANSACTION"'); $this->debugDataHolder->addQuery($this->connectionName, $query); $this->stopwatch?->start('doctrine', 'doctrine'); $query->start(); try { parent::beginTransaction(); } finally { $query->stop(); $this->stopwatch?->stop('doctrine'); } } public function commit(): void { $query = new Query('"COMMIT"'); $this->debugDataHolder->addQuery($this->connectionName, $query); $this->stopwatch?->start('doctrine', 'doctrine'); $query->start(); try { parent::commit(); } finally { $query->stop(); $this->stopwatch?->stop('doctrine'); } } public function rollBack(): void { $query = new Query('"ROLLBACK"'); $this->debugDataHolder->addQuery($this->connectionName, $query); $this->stopwatch?->start('doctrine', 'doctrine'); $query->start(); try { parent::rollBack(); } finally { $query->stop(); $this->stopwatch?->stop('doctrine'); } } }