فهرست منبع

[Routing] removed AnnotationGlobLoader

Fabien Potencier 14 سال پیش
والد
کامیت
610c1cc987

+ 0 - 76
src/Symfony/Component/Routing/Loader/AnnotationGlobLoader.php

@@ -1,76 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\Routing\Loader;
-
-use Symfony\Component\Routing\RouteCollection;
-
-/**
- * AnnotationGlobLoader loads routing information from annotations set
- * on PHP classes and methods.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- */
-class AnnotationGlobLoader extends AnnotationDirectoryLoader
-{
-    /**
-     * Loads from annotations from a directory glob pattern.
-     *
-     * @param string $glob A directory glob pattern containing "*"
-     * @param string $type The resource type
-     *
-     * @return RouteCollection A RouteCollection instance
-     *
-     * @throws \InvalidArgumentException When route can't be parsed
-     */
-    public function load($glob, $type = null)
-    {
-        $collection = new RouteCollection();
-        foreach ($this->getAbsolutePaths($glob) as $path) {
-            $collection->addCollection(parent::load($path, $type));
-        }
-
-        return $collection;
-    }
-
-    /**
-     * Returns true if this class supports the given resource.
-     *
-     * @param mixed  $resource A resource
-     * @param string $type     The resource type
-     *
-     * @return Boolean True if this class supports the given resource, false otherwise
-     */
-    public function supports($resource, $type = null)
-    {
-        return is_string($resource) && false !== strpos($resource, '*') && (!$type || 'annotation' === $type);
-    }
-
-    /**
-     * Gets all absolute paths matched by expanding the glob pattern within all
-     * resource search paths.
-     *
-     * @param string $glob
-     *
-     * @return array An array of paths matching the glob pattern
-     */
-    private function getAbsolutePaths($glob)
-    {
-        $dirs = array();
-        foreach ($this->paths as $path) {
-            if (false !== ($d = glob($path.DIRECTORY_SEPARATOR.$glob, GLOB_ONLYDIR | GLOB_BRACE))) {
-                $dirs = array_merge($dirs, $d);
-            }
-        }
-
-        return $dirs;
-    }
-}

+ 0 - 38
tests/Symfony/Tests/Component/Routing/Loader/AnnotationGlobLoaderTest.php

@@ -1,38 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Tests\Component\Routing\Loader;
-
-use Symfony\Component\Config\Loader\LoaderResolver;
-use Symfony\Component\Routing\Loader\AnnotationGlobLoader;
-use Symfony\Component\Routing\Route;
-use Symfony\Component\Routing\RouteCollection;
-
-class AnnotationGlobLoaderTest extends \PHPUnit_Framework_TestCase
-{
-    /**
-     * @covers Symfony\Component\Routing\Loader\AnnotationGlobLoader::supports
-     */
-    public function testSupports()
-    {
-        $annotationClassLoader = $this->getMockBuilder('Symfony\Component\Routing\Loader\AnnotationClassLoader')
-           ->disableOriginalConstructor()
-           ->getMockForAbstractClass();
-
-        $loader = new AnnotationGlobLoader($this->getMock('Symfony\Component\Config\FileLocator'), $annotationClassLoader);
-
-        $this->assertTrue($loader->supports('*'), '->supports() returns true if the resource is loadable');
-        $this->assertFalse($loader->supports('foo.foo'), '->supports() returns true if the resource is loadable');
-
-        $this->assertTrue($loader->supports('*', 'annotation'), '->supports() checks the resource type if specified');
-        $this->assertFalse($loader->supports('*', 'foo'), '->supports() checks the resource type if specified');
-    }
-}