* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\DependencyInjection\Compiler; use Symfony\Component\DependencyInjection\Exception\ServiceCircularReferenceException; use Symfony\Component\DependencyInjection\ContainerBuilder; /** * Checks your services for circular references. * * References from method calls are ignored since we might be able to resolve * these references depending on the order in which services are called. * * Circular reference from method calls will only be detected at run-time. * * @author Johannes M. Schmitt */ class CheckCircularReferencesPass implements CompilerPassInterface { private $currentPath; private $checkedNodes; /** * Checks the ContainerBuilder object for circular references. */ public function process(ContainerBuilder $container) { $graph = $container->getCompiler()->getServiceReferenceGraph(); $this->checkedNodes = array(); foreach ($graph->getNodes() as $id => $node) { $this->currentPath = array($id); $this->checkOutEdges($node->getOutEdges()); } } /** * Checks for circular references. * * @param ServiceReferenceGraphEdge[] $edges An array of Edges * * @throws ServiceCircularReferenceException when a circular reference is found */ private function checkOutEdges(array $edges) { foreach ($edges as $edge) { $node = $edge->getDestNode(); $id = $node->getId(); if (empty($this->checkedNodes[$id])) { // Don't check circular references for lazy edges if (!$node->getValue() || (!$edge->isLazy() && !$edge->isWeak())) { $searchKey = array_search($id, $this->currentPath); $this->currentPath[] = $id; if (false !== $searchKey) { throw new ServiceCircularReferenceException($id, array_slice($this->currentPath, $searchKey)); } $this->checkOutEdges($node->getOutEdges()); } $this->checkedNodes[$id] = true; array_pop($this->currentPath); } } } } __halt_compiler();----SIGNATURE:----i8K2CosVrEW8lhxnQpolNyRjiytWdrw+Hqq5jIpDN7+naxbzlqCrOjzSb0Dqe5gAXog1UFN5r/VHowo1gvSpzF6IPh1ZQVayybFpwD4u2+hTTlJNrXSdUxKdzcL1Sdcazbcjc1EToFmIOzYycWAcN2NWFtrCiwIKlqyHpmw1IHy7Zqj5lkb6auX0dMcSY3X0/PJlbs2jIasdz6KM9dlFE+IylXptb435bWEcz2go93k+Y1YfBaOpmj+1F7//DMDQx95eNJFLJ40MxAjDEFzB2iEWAmAcH1czASqXyFWaiLE08yCl/HsjlLXHRIss+wJS+Rb9iUfrlrLoR1swc/ngyPRQOn5BqfIS1wonlag0K5zn/n4YPuxZnZFGT7+tln9mjuPlFRFage+b+3teQQARFTGgzeflWU7qMAH0E15G6rkpYS86qhd3CTBZIpTxbm95AEizFEbHsZZihk7iEifnXcQVqzYmWRq9xOMRES1Gh0NBT71PINdZDr67Mn7r2tRqznWG5gomzHwdmx1dOWGRxJ55Csm1uPs/5Bewpq2oZZ0Q0Jl7B5lXVgNVvMbYyUqh6fuEdgg8uTLrMhOePYy8Lmwo+xb/u2XKhzd2keBd6ObGqP53JTaWO0Ez6/x8HI6yzPdcVNZeZQoe8m3AywRGoW8Xux22euUK9o6v5k/fqrA=----ATTACHMENT:----MTE5MzAxODU0ODExMTYzOSA5OTU2NjI4ODUzNTgxMzAwIDQyOTcwMjg5MDc1NTU5Nzc=