PhpParser.php 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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\Annotations;
  20. use SplFileObject;
  21. /**
  22. * Parses a file for namespaces/use/class declarations.
  23. *
  24. * @author Fabien Potencier <fabien@symfony.com>
  25. * @author Christian Kaps <christian.kaps@mohiva.com>
  26. */
  27. final class PhpParser
  28. {
  29. /**
  30. * Parses a class.
  31. *
  32. * @param \ReflectionClass $class A <code>ReflectionClass</code> object.
  33. * @return array A list with use statements in the form (Alias => FQN).
  34. */
  35. public function parseClass(\ReflectionClass $class)
  36. {
  37. if (method_exists($class, 'getUseStatements')) {
  38. return $class->getUseStatements();
  39. }
  40. if (false === $filename = $class->getFilename()) {
  41. return array();
  42. }
  43. $content = $this->getFileContent($filename, $class->getStartLine());
  44. if (null === $content) {
  45. return array();
  46. }
  47. $namespace = preg_quote($class->getNamespaceName());
  48. $content = preg_replace('/^.*?(\bnamespace\s+' . $namespace . '\s*[;{].*)$/s', '\\1', $content);
  49. $tokenizer = new TokenParser('<?php ' . $content);
  50. $statements = $tokenizer->parseUseStatements($class->getNamespaceName());
  51. return $statements;
  52. }
  53. /**
  54. * Get the content of the file right up to the given line number.
  55. *
  56. * @param string $filename The name of the file to load.
  57. * @param int $lineNumber The number of lines to read from file.
  58. * @return string The content of the file.
  59. */
  60. private function getFileContent($filename, $lineNumber)
  61. {
  62. if ( ! is_file($filename)) {
  63. return null;
  64. }
  65. $content = '';
  66. $lineCnt = 0;
  67. $file = new SplFileObject($filename);
  68. while (!$file->eof()) {
  69. if ($lineCnt++ == $lineNumber) {
  70. break;
  71. }
  72. $content .= $file->fgets();
  73. }
  74. return $content;
  75. }
  76. }