Merge pull request #7291 from Majkl578/fix/2.6/#7068
[2.6] Fix for #7068: EntityManager::find() with pessimistic lock should check for transaction
This commit is contained in:
commit
3cfcd6a856
@ -23,6 +23,7 @@ use Doctrine\Common\EventManager;
|
|||||||
use Doctrine\DBAL\Connection;
|
use Doctrine\DBAL\Connection;
|
||||||
use Doctrine\DBAL\DriverManager;
|
use Doctrine\DBAL\DriverManager;
|
||||||
use Doctrine\DBAL\LockMode;
|
use Doctrine\DBAL\LockMode;
|
||||||
|
use Doctrine\ORM\Mapping\ClassMetadata;
|
||||||
use Doctrine\ORM\Query\ResultSetMapping;
|
use Doctrine\ORM\Query\ResultSetMapping;
|
||||||
use Doctrine\ORM\Proxy\ProxyFactory;
|
use Doctrine\ORM\Proxy\ProxyFactory;
|
||||||
use Doctrine\ORM\Query\FilterCollection;
|
use Doctrine\ORM\Query\FilterCollection;
|
||||||
@ -380,6 +381,10 @@ use Throwable;
|
|||||||
{
|
{
|
||||||
$class = $this->metadataFactory->getMetadataFor(ltrim($entityName, '\\'));
|
$class = $this->metadataFactory->getMetadataFor(ltrim($entityName, '\\'));
|
||||||
|
|
||||||
|
if ($lockMode !== null) {
|
||||||
|
$this->checkLockRequirements($lockMode, $class);
|
||||||
|
}
|
||||||
|
|
||||||
if ( ! is_array($id)) {
|
if ( ! is_array($id)) {
|
||||||
if ($class->isIdentifierComposite) {
|
if ($class->isIdentifierComposite) {
|
||||||
throw ORMInvalidArgumentException::invalidCompositeIdentifier();
|
throw ORMInvalidArgumentException::invalidCompositeIdentifier();
|
||||||
@ -441,10 +446,6 @@ use Throwable;
|
|||||||
|
|
||||||
switch (true) {
|
switch (true) {
|
||||||
case LockMode::OPTIMISTIC === $lockMode:
|
case LockMode::OPTIMISTIC === $lockMode:
|
||||||
if ( ! $class->isVersioned) {
|
|
||||||
throw OptimisticLockException::notVersioned($class->name);
|
|
||||||
}
|
|
||||||
|
|
||||||
$entity = $persister->load($sortedId);
|
$entity = $persister->load($sortedId);
|
||||||
|
|
||||||
$unitOfWork->lock($entity, $lockMode, $lockVersion);
|
$unitOfWork->lock($entity, $lockMode, $lockVersion);
|
||||||
@ -453,10 +454,6 @@ use Throwable;
|
|||||||
|
|
||||||
case LockMode::PESSIMISTIC_READ === $lockMode:
|
case LockMode::PESSIMISTIC_READ === $lockMode:
|
||||||
case LockMode::PESSIMISTIC_WRITE === $lockMode:
|
case LockMode::PESSIMISTIC_WRITE === $lockMode:
|
||||||
if ( ! $this->getConnection()->isTransactionActive()) {
|
|
||||||
throw TransactionRequiredException::transactionRequired();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $persister->load($sortedId, null, null, [], $lockMode);
|
return $persister->load($sortedId, null, null, [], $lockMode);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
@ -915,4 +912,26 @@ use Throwable;
|
|||||||
{
|
{
|
||||||
return null !== $this->filterCollection;
|
return null !== $this->filterCollection;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $lockMode
|
||||||
|
* @param ClassMetadata $class
|
||||||
|
* @throws OptimisticLockException
|
||||||
|
* @throws TransactionRequiredException
|
||||||
|
*/
|
||||||
|
private function checkLockRequirements(int $lockMode, ClassMetadata $class): void
|
||||||
|
{
|
||||||
|
switch ($lockMode) {
|
||||||
|
case LockMode::OPTIMISTIC:
|
||||||
|
if (!$class->isVersioned) {
|
||||||
|
throw OptimisticLockException::notVersioned($class->name);
|
||||||
|
}
|
||||||
|
// Intentional fallthrough
|
||||||
|
case LockMode::PESSIMISTIC_READ:
|
||||||
|
case LockMode::PESSIMISTIC_WRITE:
|
||||||
|
if (!$this->getConnection()->isTransactionActive()) {
|
||||||
|
throw TransactionRequiredException::transactionRequired();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
43
tests/Doctrine/Tests/ORM/Functional/Ticket/GH7068Test.php
Normal file
43
tests/Doctrine/Tests/ORM/Functional/Ticket/GH7068Test.php
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Doctrine\Tests\ORM\Functional\Ticket;
|
||||||
|
|
||||||
|
use Doctrine\DBAL\LockMode;
|
||||||
|
use Doctrine\ORM\TransactionRequiredException;
|
||||||
|
use Doctrine\Tests\OrmFunctionalTestCase;
|
||||||
|
|
||||||
|
final class GH7068Test extends OrmFunctionalTestCase
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
protected function setUp()
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
|
||||||
|
$this->setUpEntitySchema(
|
||||||
|
[
|
||||||
|
SomeEntity::class,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testLockModeIsRespected()
|
||||||
|
{
|
||||||
|
$entity = new SomeEntity();
|
||||||
|
$this->_em->persist($entity);
|
||||||
|
$this->_em->flush();
|
||||||
|
$this->_em->clear();
|
||||||
|
|
||||||
|
$this->_em->find(SomeEntity::class, 1);
|
||||||
|
|
||||||
|
$this->expectException(TransactionRequiredException::class);
|
||||||
|
$this->_em->find(SomeEntity::class, 1, LockMode::PESSIMISTIC_WRITE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @Entity */
|
||||||
|
final class SomeEntity {
|
||||||
|
/** @Id @Column(type="integer") @GeneratedValue */
|
||||||
|
public $id;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user