RuntimeReflectionService.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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\Persistence\Mapping;
  20. use Doctrine\Common\Reflection\RuntimePublicReflectionProperty;
  21. use ReflectionClass;
  22. use ReflectionException;
  23. use ReflectionMethod;
  24. use ReflectionProperty;
  25. /**
  26. * PHP Runtime Reflection Service.
  27. *
  28. * @author Benjamin Eberlei <kontakt@beberlei.de>
  29. */
  30. class RuntimeReflectionService implements ReflectionService
  31. {
  32. /**
  33. * {@inheritDoc}
  34. */
  35. public function getParentClasses($class)
  36. {
  37. if ( ! class_exists($class)) {
  38. throw MappingException::nonExistingClass($class);
  39. }
  40. return class_parents($class);
  41. }
  42. /**
  43. * {@inheritDoc}
  44. */
  45. public function getClassShortName($class)
  46. {
  47. $reflectionClass = new ReflectionClass($class);
  48. return $reflectionClass->getShortName();
  49. }
  50. /**
  51. * {@inheritDoc}
  52. */
  53. public function getClassNamespace($class)
  54. {
  55. $reflectionClass = new ReflectionClass($class);
  56. return $reflectionClass->getNamespaceName();
  57. }
  58. /**
  59. * {@inheritDoc}
  60. */
  61. public function getClass($class)
  62. {
  63. return new ReflectionClass($class);
  64. }
  65. /**
  66. * {@inheritDoc}
  67. */
  68. public function getAccessibleProperty($class, $property)
  69. {
  70. $reflectionProperty = new ReflectionProperty($class, $property);
  71. if ($reflectionProperty->isPublic()) {
  72. $reflectionProperty = new RuntimePublicReflectionProperty($class, $property);
  73. }
  74. $reflectionProperty->setAccessible(true);
  75. return $reflectionProperty;
  76. }
  77. /**
  78. * {@inheritDoc}
  79. */
  80. public function hasPublicMethod($class, $method)
  81. {
  82. try {
  83. $reflectionMethod = new ReflectionMethod($class, $method);
  84. } catch (ReflectionException $e) {
  85. return false;
  86. }
  87. return $reflectionMethod->isPublic();
  88. }
  89. }