菜谱项目

PhpParser.php 2.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. *
  34. * @return array A list with use statements in the form (Alias => FQN).
  35. */
  36. public function parseClass(\ReflectionClass $class)
  37. {
  38. if (method_exists($class, 'getUseStatements')) {
  39. return $class->getUseStatements();
  40. }
  41. if (false === $filename = $class->getFileName()) {
  42. return array();
  43. }
  44. $content = $this->getFileContent($filename, $class->getStartLine());
  45. if (null === $content) {
  46. return array();
  47. }
  48. $namespace = preg_quote($class->getNamespaceName());
  49. $content = preg_replace('/^.*?(\bnamespace\s+' . $namespace . '\s*[;{].*)$/s', '\\1', $content);
  50. $tokenizer = new TokenParser('<?php ' . $content);
  51. $statements = $tokenizer->parseUseStatements($class->getNamespaceName());
  52. return $statements;
  53. }
  54. /**
  55. * Gets the content of the file right up to the given line number.
  56. *
  57. * @param string $filename The name of the file to load.
  58. * @param integer $lineNumber The number of lines to read from file.
  59. *
  60. * @return string|null The content of the file or null if the file does not exist.
  61. */
  62. private function getFileContent($filename, $lineNumber)
  63. {
  64. if ( ! is_file($filename)) {
  65. return null;
  66. }
  67. $content = '';
  68. $lineCnt = 0;
  69. $file = new SplFileObject($filename);
  70. while (!$file->eof()) {
  71. if ($lineCnt++ == $lineNumber) {
  72. break;
  73. }
  74. $content .= $file->fgets();
  75. }
  76. return $content;
  77. }
  78. }