84 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/*
 | 
						|
 * Copyright 2011 Johannes M. Schmitt <schmittjoh@gmail.com>
 | 
						|
 *
 | 
						|
 * Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
 * you may not use this file except in compliance with the License.
 | 
						|
 * You may obtain a copy of the License at
 | 
						|
 *
 | 
						|
 * http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 *
 | 
						|
 * Unless required by applicable law or agreed to in writing, software
 | 
						|
 * distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
 * See the License for the specific language governing permissions and
 | 
						|
 * limitations under the License.
 | 
						|
 */
 | 
						|
 | 
						|
namespace JMS\DiExtraBundle\DependencyInjection;
 | 
						|
 | 
						|
use JMS\DiExtraBundle\Exception\RuntimeException;
 | 
						|
use Symfony\Component\DependencyInjection\Alias;
 | 
						|
use Symfony\Component\Config\FileLocator;
 | 
						|
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
 | 
						|
use Symfony\Component\Config\Definition\Processor;
 | 
						|
use Symfony\Component\DependencyInjection\ContainerBuilder;
 | 
						|
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
 | 
						|
 | 
						|
class JMSDiExtraExtension extends Extension
 | 
						|
{
 | 
						|
    public function load(array $configs, ContainerBuilder $container)
 | 
						|
    {
 | 
						|
        $config = $this->mergeConfigs($configs);
 | 
						|
 | 
						|
        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
 | 
						|
        $loader->load('services.xml');
 | 
						|
 | 
						|
        $container->setParameter('jms_di_extra.all_bundles', $config['locations']['all_bundles']);
 | 
						|
        $container->setParameter('jms_di_extra.bundles', $config['locations']['bundles']);
 | 
						|
        $container->setParameter('jms_di_extra.directories', $config['locations']['directories']);
 | 
						|
        $container->setParameter('jms_di_extra.cache_dir', $config['cache_dir']);
 | 
						|
 | 
						|
        $this->configureMetadata($config['metadata'], $container, $config['cache_dir'].'/metadata');
 | 
						|
 | 
						|
        $this->addClassesToCompile(array(
 | 
						|
            'JMS\\DiExtraBundle\\HttpKernel\ControllerResolver',
 | 
						|
        ));
 | 
						|
    }
 | 
						|
 | 
						|
    private function configureMetadata(array $config, $container, $cacheDir)
 | 
						|
    {
 | 
						|
        if ('none' === $config['cache']) {
 | 
						|
            $container->removeAlias('jms_di_extra.metadata.cache');
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        if ('file' === $config['cache']) {
 | 
						|
            $cacheDir = $container->getParameterBag()->resolveValue($cacheDir);
 | 
						|
            if (!file_exists($cacheDir)) {
 | 
						|
                if (false === @mkdir($cacheDir, 0777, true)) {
 | 
						|
                    throw new RuntimeException(sprintf('The cache dir "%s" could not be created.', $cacheDir));
 | 
						|
                }
 | 
						|
            }
 | 
						|
            if (!is_writable($cacheDir)) {
 | 
						|
                throw new RuntimeException(sprintf('The cache dir "%s" is not writable.', $cacheDir));
 | 
						|
            }
 | 
						|
 | 
						|
            $container
 | 
						|
                ->getDefinition('jms_di_extra.metadata.cache.file_cache')
 | 
						|
                ->replaceArgument(0, $cacheDir)
 | 
						|
            ;
 | 
						|
        } else {
 | 
						|
            $container->setAlias('jms_di_extra.metadata.cache', new Alias($config['cache'], false));
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    private function mergeConfigs(array $configs)
 | 
						|
    {
 | 
						|
        $processor = new Processor();
 | 
						|
        $configuration = new Configuration();
 | 
						|
 | 
						|
        return $processor->process($configuration->getConfigTreeBuilder()->buildTree(), $configs);
 | 
						|
    }
 | 
						|
} |