![]() 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/doctrine/orm/src/Cache/ |
<?php declare(strict_types=1); namespace Doctrine\ORM\Cache; use Doctrine\ORM\Cache\Persister\CachedPersister; use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\Mapping\ClassMetadata; use Doctrine\ORM\PersistentCollection; use Doctrine\ORM\Query; use Doctrine\ORM\UnitOfWork; use function assert; /** * Default hydrator cache for collections */ class DefaultCollectionHydrator implements CollectionHydrator { /** @var EntityManagerInterface */ private $em; /** @var UnitOfWork */ private $uow; /** @var array<string,mixed> */ private static $hints = [Query::HINT_CACHE_ENABLED => true]; /** @param EntityManagerInterface $em The entity manager. */ public function __construct(EntityManagerInterface $em) { $this->em = $em; $this->uow = $em->getUnitOfWork(); } /** * {@inheritDoc} */ public function buildCacheEntry(ClassMetadata $metadata, CollectionCacheKey $key, $collection) { $data = []; foreach ($collection as $index => $entity) { $data[$index] = new EntityCacheKey($metadata->rootEntityName, $this->uow->getEntityIdentifier($entity)); } return new CollectionCacheEntry($data); } /** * {@inheritDoc} */ public function loadCacheEntry(ClassMetadata $metadata, CollectionCacheKey $key, CollectionCacheEntry $entry, PersistentCollection $collection) { $assoc = $metadata->associationMappings[$key->association]; $targetPersister = $this->uow->getEntityPersister($assoc['targetEntity']); assert($targetPersister instanceof CachedPersister); $targetRegion = $targetPersister->getCacheRegion(); $list = []; /** @var EntityCacheEntry[]|null $entityEntries */ $entityEntries = $targetRegion->getMultiple($entry); if ($entityEntries === null) { return null; } foreach ($entityEntries as $index => $entityEntry) { $entity = $this->uow->createEntity( $entityEntry->class, $entityEntry->resolveAssociationEntries($this->em), self::$hints ); $collection->hydrateSet($index, $entity); $list[$index] = $entity; } $this->uow->hydrationComplete(); return $list; } }