ここに答えがあります
なぜ特定のケースでプロキシクラスが使用されるのですか?
クラス「SetConversionValueObserver」用に記述されたコードの下をよく見ると、Google adwardsがアクティブでない場合は「return」で、注文がない場合は「return」です。つまり、注文IDが存在し、Googleアドワーズ広告がアクティブな場合にのみ、注文コレクションオブジェクトが作成されます。実際のOrderコレクションクラスを挿入すると、オブジェクトマネージャーは、Google adwordsがアクティブでないことを認識せずに親クラスオブジェクトを使用してコレクションオブジェクトを作成し、オーダー成功ページを遅くします。そのため、プロキシを使用するオブジェクトをオンデマンドで作成する方が適切です。/vendor/magento/module-google-adwords/Observer/SetConversionValueObserver.php
/**
* Set base grand total of order to registry
*
* @param \Magento\Framework\Event\Observer $observer
* @return \Magento\GoogleAdwords\Observer\SetConversionValueObserver
*/
public function execute(\Magento\Framework\Event\Observer $observer)
{
if (!($this->_helper->isGoogleAdwordsActive() && $this->_helper->isDynamicConversionValue())) {
return $this;
}
$orderIds = $observer->getEvent()->getOrderIds();
if (!$orderIds || !is_array($orderIds)) {
return $this;
}
$this->_collection->addFieldToFilter('entity_id', ['in' => $orderIds]);
$conversionValue = 0;
/** @var $order \Magento\Sales\Model\Order */
foreach ($this->_collection as $order) {
$conversionValue += $order->getBaseGrandTotal();
}
$this->_registry->register(
\Magento\GoogleAdwords\Helper\Data::CONVERSION_VALUE_REGISTRY_NAME,
$conversionValue
);
return $this;
}
一般に、プロキシクラスを使用する必要がある場合
-オブジェクトの作成に費用がかかり、クラスのコンストラクターが特にリソースを消費する場合、プロキシクラスを挿入します。-オブジェクトの作成によるパフォーマンスへの不必要な影響を望まない場合。-特定の条件で特定のメソッドを常に呼び出すとは限らないときにオブジェクトの作成が発生する必要があると感じる場合。たとえば、レイアウトコンストラクターはリソースを大量に消費します。
実際のレイアウトコンストラクター対レイアウト/プロキシ
public function __construct(
Layout\ProcessorFactory $processorFactory,
ManagerInterface $eventManager,
Layout\Data\Structure $structure,
MessageManagerInterface $messageManager,
Design\Theme\ResolverInterface $themeResolver,
Layout\ReaderPool $readerPool,
Layout\GeneratorPool $generatorPool,
FrontendInterface $cache,
Layout\Reader\ContextFactory $readerContextFactory,
Layout\Generator\ContextFactory $generatorContextFactory,
AppState $appState,
Logger $logger,
$cacheable = true,
SerializerInterface $serializer = null
) {
$this->_elementClass = \Magento\Framework\View\Layout\Element::class;
$this->_renderingOutput = new \Magento\Framework\DataObject();
$this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class);
$this->_processorFactory = $processorFactory;
$this->_eventManager = $eventManager;
$this->structure = $structure;
$this->messageManager = $messageManager;
$this->themeResolver = $themeResolver;
$this->readerPool = $readerPool;
$this->generatorPool = $generatorPool;
$this->cacheable = $cacheable;
$this->cache = $cache;
$this->readerContextFactory = $readerContextFactory;
$this->generatorContextFactory = $generatorContextFactory;
$this->appState = $appState;
$this->logger = $logger;
}
プロキシコンストラクターを見てみましょう。親コンストラクターは呼び出されません。また、メソッドが呼び出されたときに実際のオブジェクト作成が行われるように、単にレイアウトクラス名を渡します。
/**
* Proxy constructor
*
* @param \Magento\Framework\ObjectManagerInterface $objectManager
* @param string $instanceName
* @param bool $shared
*/
public function __construct(
\Magento\Framework\ObjectManagerInterface $objectManager,
$instanceName = \Magento\Framework\View\Layout::class,
$shared = true
) {
$this->_objectManager = $objectManager;
$this->_instanceName = $instanceName;
$this->_isShared = $shared;
}
プロキシクラスにはオンデマンドでオブジェクトを作成するメソッドがあり、_subjectは渡されたクラスのオブジェクトです。
/**
* Get proxied instance
*
* @return \Magento\Framework\View\Layout
*/
protected function _getSubject()
{
if (!$this->_subject) {
$this->_subject = true === $this->_isShared
? $this->_objectManager->get($this->_instanceName)
: $this->_objectManager->create($this->_instanceName);
}
return $this->_subject;
}
そして、_subjectを使用して呼び出されるメソッド。
/**
* {@inheritdoc}
*/
public function setGeneratorPool(\Magento\Framework\View\Layout\GeneratorPool $generatorPool)
{
return $this->_getSubject()->setGeneratorPool($generatorPool);
}