Feature #60460
Epic #55070: Workpackages
Epic #55065: WP: Overall System Performance (Backend and Frontend)
Epic #55656: Optimize overall Extbase performance
Story #55168: Optimize Extbase generic persistence
Task #55169: Extbase: fetch child objects in one query
Refactor lazyLoading handling in extbase
Status: | Accepted | Start date: | 2014-07-22 | |
---|---|---|---|---|
Priority: | Could have | Due date: | ||
Assigned To: | Felix Oertel | % Done: | 0% |
|
Category: | Extbase | Spent time: | - | |
Target version: | 7.4 (Backend) | |||
PHP Version: | Sprint Focus: | |||
Complexity: |
Description
For quiet some time now I wanted to refactor the lazyLoading handling in extbase.
It stinks, that the lazyLoadingProxy does not extend the actual class, thus fataling when using correct typehints. This leads to developers allways resolving the lazyLoadingProxy which - let's face it - kind of goes against what lazyLoading was intended to do. ;-)
So we need a lazyProxy, which extends the actual class, eliminating the need to ever resolve a lazyProxy if no property is called.
Related issues
History
#1 Updated by Stefano Kowalke about 1 year ago
The new implementation introduces a LazyLoadingProxyFactory
which generates a LazyProxy
object which extends the concrete object. With this way proxy objects will pass type hints.
The implementation in detail:
LazyLoadingProxyFactory¶
The class can be found at \TYPO3\CMS\Extbase\Persistence\Generic\LazyLoadingProxyFactory
. To retrieve a lazy proxy object call the get() method of the class, which expects three parameters:
- The classname or object to create the proxy from
- The parent object
- The property
- The value of the field
$this->lazyProxyFactory->getProxy($propertyMetaData['type'], $parentObject, $propertyName, $fieldValue);
The generated proxy class is cached and you will find it at typo3temp/Cache/Code/extbase_lazyproxyobject_storage/*LazyProxy.php
Example¶
Lets use the blog_example as … well … as an example:
At some point the DataMapper calls$this->lazyProxyFactory->getProxy(…)
with this values:
- string $className: ExtbaseTeam\BlogExample\Domain\Model\Administrator
- object $parentObject: ExtbaseTeam\BlogExample\Domain\Model\Blog
- string $propertyName: administrator
- string $fieldValue: 351
Here is the code of the generated AdministratorLazyProxy.php:
<?php namespace ExtbaseTeam\BlogExample\Domain\Model; use TYPO3\CMS\Extbase\Persistence\QueryResultInterface; /** * This class is generated by the LazyProxyFactory of Extbase. Don't change the file by yourself! */ class AdministratorLazyProxy extends \ExtbaseTeam\BlogExample\Domain\Model\Administrator implements \TYPO3\CMS\Extbase\Persistence\Generic\LoadingStrategyInterface { private $parentObject; private $propertyName; private $fieldValue; private $parentQueryResult; public function __construct($parentObject, $propertyName, $fieldValue) { $this->parentObject = $parentObject; $this->propertyName = $propertyName; $this->fieldValue = $fieldValue; } public function setUsername($username) { $this->parentQueryResult->fetchLazyObjects($this->propertyName); return parent::setUsername($username); } public function getUsername() { $this->parentQueryResult->fetchLazyObjects($this->propertyName); return parent::getUsername(); } ... /** * @param QueryResultInterface $queryResult * * @return void */ public function setParentQueryResult(QueryResultInterface $queryResult) { $this->parentQueryResult = $queryResult; } /** * Returns the parentObject so we can populate the proxy. * * @return object */ public function _getParentObject() { return $this->parentObject; } /** * Returns the fieldValue so we can fetch multiple LazyObjects in one query. * * @return mixed */ public function _getFieldValue() { return $this->fieldValue; } }
The proxy class overrides all public methods from his parent with his own variant of the methods. This just just add a call to the methods whereby the proxy is able to resolve himself. At the end it will return the requested value from the concrete object.
#2 Updated by Mathias Brodala 12 months ago
Can you push a changeset to Gerrit to get this ball rolling again?
#3 Updated by Felix Oertel 12 months ago
Hey Mathias,
sorry, the patch was with me for some polish ... an I was on vacation. ;-) But it's ready now and I am gonna push it today.
#4 Updated by Mathias Schreiber 7 months ago
- Target version changed from 7.0 to 7.1 (Cleanup)
#5 Updated by Stephan Großberndt 5 months ago
The patch is in https://review.typo3.org/#/c/32286/
#6 Updated by Christian Kuhn about 1 month ago
the pending patch was abandoned.
#7 Updated by Benjamin Mack about 1 month ago
- Target version changed from 7.1 (Cleanup) to 7.4 (Backend)