* @link https://www.oxidmodule.com */ declare(strict_types=1); namespace D3\DIContainerHandler; use d3DIContainerCache; use Exception; use OxidEsales\Eshop\Core\Config; use OxidEsales\Eshop\Core\Registry; use OxidEsales\Facts\Config\ConfigFile; use Symfony\Component\Config\FileLocator; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Dumper\PhpDumper; use Symfony\Component\DependencyInjection\Loader\YamlFileLoader; class d3DicHandler implements d3DicHandlerInterface { /** * instance * @var array */ protected static $_instance; public static $circularReferenceMethodNames = array( 'getViewConfig' ); /** * get instance * @return ContainerBuilder */ public static function getInstance() { $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); $caller = $trace[1]; $functionName = $caller['function']; if (in_array(strtolower($functionName), array_map('strtolower', self::$circularReferenceMethodNames))) { throw oxNew(Exception::class, 'method '.$functionName." can't use DIC due the danger of circular reference"); } if (null == self::$_instance) { $oDicHandler = oxNew(d3DicHandler::class); self::$_instance = $oDicHandler->buildContainer(); } return self::$_instance; } /** * get instance * @return ContainerBuilder */ public static function getUncompiledInstance() { $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); $caller = $trace[1]; $functionName = $caller['function']; if (in_array(strtolower($functionName), array_map('strtolower', self::$circularReferenceMethodNames))) { throw oxNew(Exception::class, 'method '.$functionName." can't use DIC due the danger of circular reference"); } $oDicHandler = oxNew(d3DicHandler::class); self::$_instance = $oDicHandler->buildContainer(false); return self::$_instance; } public static function removeInstance() { self::$_instance = null; } /** * @return Config */ public function d3GetConfig() { return Registry::getConfig(); } public function d3GetCacheFilePath() { return $this->d3GetConfig()->getConfigParam('sCompileDir').'/d3DicContainer_'.Registry::getConfig()->getShopId().'.php'; } /** * @return d3DIContainerCache|object */ public function d3GetCacheContainer() { require_once $this->d3GetCacheFilePath(); return oxNew(d3DIContainerCache::class); } /** * @param $container * @return YamlFileLoader */ public function d3GetFileLoader($container) { /** @var YamlFileLoader $fileLoader */ $fileLoader = oxNew(YamlFileLoader::class, $container, oxNew(FileLocator::class, d3DicUtilities::getVendorDir()) ); return $fileLoader; } /** * @param $container */ public function loadFiles($container) { $loader = $this->d3GetFileLoader($container); $fileContainer = oxNew(definitionFileContainer::class); foreach ($fileContainer->getYamlDefinitions() as $file) { $fullPath = d3DicUtilities::getVendorDir().$file; if (is_file($fullPath)) { $loader->load($file); } } } /** * @param bool $compileAndDump * @return ContainerBuilder */ public function buildContainer(bool $compileAndDump = true) { if ((bool) Registry::get( ConfigFile::class)->getVar( 'iDebug')) startProfile(__METHOD__); $config = $this->d3GetConfig(); if ($config->isProductiveMode() && false == $config->getConfigParam('iDebug') && (false == defined('OXID_PHP_UNIT') || true == defined('D3_MODCFG_TEST')) && file_exists($this->d3GetCacheFilePath()) ) { $container = $this->d3GetCacheContainer(); } else { $container = $this->getContainerBuilder(); $this->loadFiles($container); if ($compileAndDump) { $container->compile(); if (false == defined('OXID_PHP_UNIT')) { $dumper = new PhpDumper($container); file_put_contents($this->d3GetCacheFilePath(), $dumper->dump(array('class' => 'd3DIContainerCache'))); } } } if ((bool) Registry::get( ConfigFile::class)->getVar( 'iDebug')) stopProfile(__METHOD__); return $container; } public function getContainerBuilder() { return oxNew(ContainerBuilder::class); } /** * clone */ public function __clone() {} /** * constructor */ public function __construct() {} }