DDC-733 - Add UnitOfWork::initializeObject() method.
This commit is contained in:
parent
86c3744b8c
commit
875912bffd
4 changed files with 55 additions and 3 deletions
|
@ -269,7 +269,8 @@ class <proxyClassName> extends \<className> implements \Doctrine\ORM\Proxy\Proxy
|
||||||
$this->_entityPersister = $entityPersister;
|
$this->_entityPersister = $entityPersister;
|
||||||
$this->_identifier = $identifier;
|
$this->_identifier = $identifier;
|
||||||
}
|
}
|
||||||
private function __load()
|
/** @private */
|
||||||
|
public function __load()
|
||||||
{
|
{
|
||||||
if (!$this->__isInitialized__ && $this->_entityPersister) {
|
if (!$this->__isInitialized__ && $this->_entityPersister) {
|
||||||
$this->__isInitialized__ = true;
|
$this->__isInitialized__ = true;
|
||||||
|
@ -279,7 +280,7 @@ class <proxyClassName> extends \<className> implements \Doctrine\ORM\Proxy\Proxy
|
||||||
unset($this->_entityPersister, $this->_identifier);
|
unset($this->_entityPersister, $this->_identifier);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
<methods>
|
<methods>
|
||||||
|
|
||||||
public function __sleep()
|
public function __sleep()
|
||||||
|
|
|
@ -2335,7 +2335,28 @@ class UnitOfWork implements PropertyChangedListener
|
||||||
{
|
{
|
||||||
return $this->collectionUpdates;
|
return $this->collectionUpdates;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper method to initialize a lazy loading proxy or persistent collection.
|
||||||
|
*
|
||||||
|
* @param object
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function initializeObject($obj)
|
||||||
|
{
|
||||||
|
if ($obj instanceof Proxy) {
|
||||||
|
$obj->__load();
|
||||||
|
} else if ($obj instanceof PersistentCollection) {
|
||||||
|
$obj->initialize();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper method to show an object as string.
|
||||||
|
*
|
||||||
|
* @param object $obj
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
private static function objToStr($obj)
|
private static function objToStr($obj)
|
||||||
{
|
{
|
||||||
return method_exists($obj, '__toString') ? (string)$obj : get_class($obj).'@'.spl_object_hash($obj);
|
return method_exists($obj, '__toString') ? (string)$obj : get_class($obj).'@'.spl_object_hash($obj);
|
||||||
|
|
|
@ -342,4 +342,19 @@ class ManyToManyBasicAssociationTest extends \Doctrine\Tests\OrmFunctionalTestCa
|
||||||
$this->assertEquals('Developers_New1', $user->groups[0]->name);
|
$this->assertEquals('Developers_New1', $user->groups[0]->name);
|
||||||
$this->assertEquals('Developers_New2', $user->groups[1]->name);
|
$this->assertEquals('Developers_New2', $user->groups[1]->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @group DDC-733
|
||||||
|
*/
|
||||||
|
public function testInitializePersistentCollection()
|
||||||
|
{
|
||||||
|
$user = $this->addCmsUserGblancoWithGroups(2);
|
||||||
|
$this->_em->clear();
|
||||||
|
|
||||||
|
$user = $this->_em->find(get_class($user), $user->id);
|
||||||
|
|
||||||
|
$this->assertFalse($user->groups->isInitialized(), "Pre-condition: lazy collection");
|
||||||
|
$this->_em->getUnitOfWork()->initializeObject($user->groups);
|
||||||
|
$this->assertTrue($user->groups->isInitialized(), "Collection should be initialized after calling UnitOfWork::initializeObject()");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -97,4 +97,19 @@ class ReferenceProxyTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
$this->assertTrue($clone->isCloned);
|
$this->assertTrue($clone->isCloned);
|
||||||
$this->assertFalse($entity->isCloned);
|
$this->assertFalse($entity->isCloned);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @group DDC-733
|
||||||
|
*/
|
||||||
|
public function testInitializeProxy()
|
||||||
|
{
|
||||||
|
$id = $this->createProduct();
|
||||||
|
|
||||||
|
/* @var $entity Doctrine\Tests\Models\ECommerce\ECommerceProduct */
|
||||||
|
$entity = $this->_em->getReference('Doctrine\Tests\Models\ECommerce\ECommerceProduct' , $id);
|
||||||
|
|
||||||
|
$this->assertFalse($entity->__isInitialized__, "Pre-Condition: Object is unitialized proxy.");
|
||||||
|
$this->_em->getUnitOfWork()->initializeObject($entity);
|
||||||
|
$this->assertTrue($entity->__isInitialized__, "Should be initialized after called UnitOfWork::initializeObject()");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue