PageRenderTime 44ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/app/protected/core/utils/RuntimeUtil.php

https://bitbucket.org/zurmo/zurmo/
PHP | 95 lines | 39 code | 3 blank | 53 comment | 5 complexity | 1b15995ba2c40d48f390c96816dd88dd MD5 | raw file
Possible License(s): AGPL-3.0, BSD-3-Clause, GPL-2.0, LGPL-3.0, LGPL-2.1, BSD-2-Clause
  1. <?php
  2. /*********************************************************************************
  3. * Zurmo is a customer relationship management program developed by
  4. * Zurmo, Inc. Copyright (C) 2015 Zurmo Inc.
  5. *
  6. * Zurmo is free software; you can redistribute it and/or modify it under
  7. * the terms of the GNU Affero General Public License version 3 as published by the
  8. * Free Software Foundation with the addition of the following permission added
  9. * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
  10. * IN WHICH THE COPYRIGHT IS OWNED BY ZURMO, ZURMO DISCLAIMS THE WARRANTY
  11. * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
  12. *
  13. * Zurmo is distributed in the hope that it will be useful, but WITHOUT
  14. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  15. * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License along with
  19. * this program; if not, see http://www.gnu.org/licenses or write to the Free
  20. * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  21. * 02110-1301 USA.
  22. *
  23. * You can contact Zurmo, Inc. with a mailing address at 27 North Wacker Drive
  24. * Suite 370 Chicago, IL 60606. or at email address contact@zurmo.com.
  25. *
  26. * The interactive user interfaces in original and modified versions
  27. * of this program must display Appropriate Legal Notices, as required under
  28. * Section 5 of the GNU Affero General Public License version 3.
  29. *
  30. * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
  31. * these Appropriate Legal Notices must retain the display of the Zurmo
  32. * logo and Zurmo copyright notice. If the display of the logo is not reasonably
  33. * feasible for technical reasons, the Appropriate Legal Notices must display the words
  34. * "Copyright Zurmo Inc. 2015. All rights reserved".
  35. ********************************************************************************/
  36. /**
  37. * Helper functionality for use in accessing type information at runtime.
  38. */
  39. class RuntimeUtil
  40. {
  41. private static $classNamesToHierarchies = array();
  42. /**
  43. * Returns an array of the name of the class and each of its
  44. * parent classes up to but not including the given class.
  45. * @param $className The class name to start with.
  46. * @param $upToAndNotIncludingClassName The class name to end with, and which
  47. * is not included in the returned array.
  48. * @returns An array of strings, starting with $className, and
  49. * containing each of the class names in its inheritance
  50. * hierachy.
  51. */
  52. public static function getClassHierarchy($className, $upToAndNotIncludingClassName)
  53. {
  54. assert('is_string($className) && $className != ""');
  55. assert('is_string($upToAndNotIncludingClassName) && $upToAndNotIncludingClassName != ""');
  56. $key = "$className/$upToAndNotIncludingClassName";
  57. if (!array_key_exists($key, RuntimeUtil::$classNamesToHierarchies))
  58. {
  59. $modelClassNames = array();
  60. $modelClassName = $className;
  61. do
  62. {
  63. $modelClassNames[] = $modelClassName;
  64. $modelClassName = get_parent_class($modelClassName);
  65. } while ($modelClassName != $upToAndNotIncludingClassName);
  66. RuntimeUtil::$classNamesToHierarchies[$key] = $modelClassNames;
  67. }
  68. return RuntimeUtil::$classNamesToHierarchies[$key];
  69. }
  70. /**
  71. * Given a modelClassName, find the deriviation path to Item. This is used by the castDown method
  72. * for example in RedBeanModel.
  73. * @param string $relationModelClassName
  74. * @return array of derivation path.
  75. */
  76. public static function getModelDerivationPathToItem($modelClassName)
  77. {
  78. assert('is_string($modelClassName)');
  79. $modelDerivationPath = self::getClassHierarchy($modelClassName, 'RedBeanModel');
  80. $modelDerivationPathToItem = array();
  81. foreach ($modelDerivationPath as $modelClassName)
  82. {
  83. if ($modelClassName == 'Item')
  84. {
  85. break;
  86. }
  87. $modelDerivationPathToItem[] = $modelClassName;
  88. }
  89. return array_reverse($modelDerivationPathToItem);
  90. }
  91. }
  92. ?>