1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?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\Test;
- use Doctrine\ORM\EntityManagerInterface;
- use Doctrine\ORM\Mapping\ClassMetadata;
- use Doctrine\ORM\Repository\RepositoryFactory;
- use Doctrine\Persistence\ObjectRepository;
- /**
- * @author Andreas Braun <alcaeus@alcaeus.org>
- */
- final class TestRepositoryFactory implements RepositoryFactory
- {
- /**
- * @var ObjectRepository[]
- */
- private $repositoryList = [];
- /**
- * {@inheritdoc}
- *
- * @return ObjectRepository
- */
- public function getRepository(EntityManagerInterface $entityManager, $entityName)
- {
- $repositoryHash = $this->getRepositoryHash($entityManager, $entityName);
- if (isset($this->repositoryList[$repositoryHash])) {
- return $this->repositoryList[$repositoryHash];
- }
- return $this->repositoryList[$repositoryHash] = $this->createRepository($entityManager, $entityName);
- }
- public function setRepository(EntityManagerInterface $entityManager, string $entityName, ObjectRepository $repository)
- {
- $repositoryHash = $this->getRepositoryHash($entityManager, $entityName);
- $this->repositoryList[$repositoryHash] = $repository;
- }
- private function createRepository(EntityManagerInterface $entityManager, string $entityName): ObjectRepository
- {
- /* @var $metadata ClassMetadata */
- $metadata = $entityManager->getClassMetadata($entityName);
- $repositoryClassName = $metadata->customRepositoryClassName ?: $entityManager->getConfiguration()->getDefaultRepositoryClassName();
- return new $repositoryClassName($entityManager, $metadata);
- }
- private function getRepositoryHash(EntityManagerInterface $entityManager, string $entityName): string
- {
- return $entityManager->getClassMetadata($entityName)->getName().spl_object_hash($entityManager);
- }
- }
|