| Current Path : /var/www/www.indacotrentino.com/www/vendor/magento/module-catalog/Model/Indexer/Category/ |
| Current File : /var/www/www.indacotrentino.com/www/vendor/magento/module-catalog/Model/Indexer/Category/Flat.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Model\Indexer\Category;
use Magento\Framework\Indexer\CacheContext;
/**
* Category flat indexer
*
* @api
* @since 100.0.2
*/
class Flat implements \Magento\Framework\Indexer\ActionInterface, \Magento\Framework\Mview\ActionInterface
{
/**
* @var \Magento\Catalog\Model\Indexer\Category\Flat\Action\FullFactory
*/
protected $fullActionFactory;
/**
* @var \Magento\Catalog\Model\Indexer\Category\Flat\Action\RowsFactory
*/
protected $rowsActionFactory;
/**
* @var \Magento\Framework\Indexer\IndexerRegistry
*/
protected $indexerRegistry;
/**
* @var \Magento\Framework\Indexer\CacheContext
*/
private $cacheContext;
/**
* @param Flat\Action\FullFactory $fullActionFactory
* @param Flat\Action\RowsFactory $rowsActionFactory
* @param \Magento\Framework\Indexer\IndexerRegistry $indexerRegistry
*/
public function __construct(
Flat\Action\FullFactory $fullActionFactory,
Flat\Action\RowsFactory $rowsActionFactory,
\Magento\Framework\Indexer\IndexerRegistry $indexerRegistry
) {
$this->fullActionFactory = $fullActionFactory;
$this->rowsActionFactory = $rowsActionFactory;
$this->indexerRegistry = $indexerRegistry;
}
/**
* Execute materialization on ids entities
*
* @param int[] $ids
* @return void
*/
public function execute($ids)
{
$indexer = $this->indexerRegistry->get(Flat\State::INDEXER_ID);
if ($indexer->isInvalid()) {
return;
}
/** @var Flat\Action\Rows $action */
$action = $this->rowsActionFactory->create();
if ($indexer->isWorking()) {
$action->reindex($ids, true);
}
$action->reindex($ids);
$this->getCacheContext()->registerEntities(\Magento\Catalog\Model\Category::CACHE_TAG, $ids);
}
/**
* Execute full indexation
*
* @return void
*/
public function executeFull()
{
$this->fullActionFactory->create()->reindexAll();
$this->getCacheContext()->registerTags([\Magento\Catalog\Model\Category::CACHE_TAG]);
}
/**
* Execute partial indexation by ID list
*
* @param int[] $ids
* @return void
*/
public function executeList(array $ids)
{
$this->execute($ids);
}
/**
* Execute partial indexation by ID
*
* @param int $id
* @return void
*/
public function executeRow($id)
{
$this->execute([$id]);
}
/**
* Get cache context
*
* @return \Magento\Framework\Indexer\CacheContext
* @deprecated 100.0.11
* @since 100.0.11
*/
protected function getCacheContext()
{
if (!($this->cacheContext instanceof CacheContext)) {
return \Magento\Framework\App\ObjectManager::getInstance()->get(CacheContext::class);
} else {
return $this->cacheContext;
}
}
}