Psr0FindFile.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. /*
  3. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  4. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  5. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  6. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  7. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  8. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  9. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  10. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  11. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  12. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  13. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  14. *
  15. * This software consists of voluntary contributions made by many individuals
  16. * and is licensed under the MIT license. For more information, see
  17. * <http://www.doctrine-project.org>.
  18. */
  19. namespace Doctrine\Common\Reflection;
  20. /**
  21. * Finds a class in a PSR-0 structure.
  22. *
  23. * @author Karoly Negyesi <karoly@negyesi.net>
  24. */
  25. class Psr0FindFile implements ClassFinderInterface
  26. {
  27. /**
  28. * The PSR-0 prefixes.
  29. *
  30. * @var array
  31. */
  32. protected $prefixes;
  33. /**
  34. * @param array $prefixes An array of prefixes. Each key is a PHP namespace and each value is
  35. * a list of directories.
  36. */
  37. public function __construct($prefixes)
  38. {
  39. $this->prefixes = $prefixes;
  40. }
  41. /**
  42. * {@inheritDoc}
  43. */
  44. public function findFile($class)
  45. {
  46. $lastNsPos = strrpos($class, '\\');
  47. if ('\\' == $class[0]) {
  48. $class = substr($class, 1);
  49. }
  50. if (false !== $lastNsPos) {
  51. // namespaced class name
  52. $classPath = str_replace('\\', DIRECTORY_SEPARATOR, substr($class, 0, $lastNsPos)) . DIRECTORY_SEPARATOR;
  53. $className = substr($class, $lastNsPos + 1);
  54. } else {
  55. // PEAR-like class name
  56. $classPath = null;
  57. $className = $class;
  58. }
  59. $classPath .= str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php';
  60. foreach ($this->prefixes as $prefix => $dirs) {
  61. if (0 === strpos($class, $prefix)) {
  62. foreach ($dirs as $dir) {
  63. if (is_file($dir . DIRECTORY_SEPARATOR . $classPath)) {
  64. return $dir . DIRECTORY_SEPARATOR . $classPath;
  65. }
  66. }
  67. }
  68. }
  69. return null;
  70. }
  71. }