. */ namespace Doctrine\ORM\Cache; use Doctrine\ORM\Query; use Doctrine\ORM\PersistentCollection; use Doctrine\ORM\Mapping\ClassMetadata; use Doctrine\ORM\EntityManagerInterface; /** * Default hydrator cache for collections * * @since 2.5 * @author Fabio B. Silva */ class DefaultCollectionHydrator implements CollectionHydrator { /** * @var \Doctrine\ORM\EntityManagerInterface */ private $em; /** * @var \Doctrine\ORM\UnitOfWork */ private $uow; /** * @var array */ private static $hints = array(Query::HINT_CACHE_ENABLED => true); /** * @param \Doctrine\ORM\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 = array(); foreach ($collection as $index => $entity) { $data[$index] = $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']); $targetRegion = $targetPersister->getCacheRegion(); $list = array(); foreach ($entry->identifiers as $index => $identifier) { $entityEntry = $targetRegion->get(new EntityCacheKey($assoc['targetEntity'], $identifier)); if ($entityEntry === null) { return null; } $list[$index] = $this->uow->createEntity($entityEntry->class, $entityEntry->resolveAssociationEntries($this->em), self::$hints); } array_walk($list, function($entity, $index) use ($collection) { $collection->hydrateSet($index, $entity); }); return $list; } }