Merge pull request #16216 from demeritcowboy/unicode-mailing-labels
[civicrm-core.git] / Civi / Api4 / Utils / ReflectionUtils.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 namespace Civi\Api4\Utils;
13
14 /**
15 * Just another place to put static functions...
16 */
17 class ReflectionUtils {
18
19 /**
20 * @param \Reflector|\ReflectionClass $reflection
21 * @param string $type
22 * If we are not reflecting the class itself, specify "Method", "Property", etc.
23 *
24 * @return array
25 */
26 public static function getCodeDocs($reflection, $type = NULL) {
27 $docs = self::parseDocBlock($reflection->getDocComment());
28
29 // Recurse into parent functions
30 if (isset($docs['inheritDoc']) || isset($docs['inheritdoc'])) {
31 unset($docs['inheritDoc'], $docs['inheritdoc']);
32 $newReflection = NULL;
33 try {
34 if ($type) {
35 $name = $reflection->getName();
36 $reflectionClass = $reflection->getDeclaringClass()->getParentClass();
37 if ($reflectionClass) {
38 $getItem = "get$type";
39 $newReflection = $reflectionClass->$getItem($name);
40 }
41 }
42 else {
43 $newReflection = $reflection->getParentClass();
44 }
45 }
46 catch (\ReflectionException $e) {
47 }
48 if ($newReflection) {
49 // Mix in
50 $additionalDocs = self::getCodeDocs($newReflection, $type);
51 if (!empty($docs['comment']) && !empty($additionalDocs['comment'])) {
52 $docs['comment'] .= "\n\n" . $additionalDocs['comment'];
53 }
54 $docs += $additionalDocs;
55 }
56 }
57 return $docs;
58 }
59
60 /**
61 * @param string $comment
62 * @return array
63 */
64 public static function parseDocBlock($comment) {
65 $info = [];
66 $param = NULL;
67 foreach (preg_split("/((\r?\n)|(\r\n?))/", $comment) as $num => $line) {
68 if (!$num || strpos($line, '*/') !== FALSE) {
69 continue;
70 }
71 $line = preg_replace('/[ ]+/', ' ', ltrim(trim($line), '* '));
72 if (strpos($line, '@') === 0) {
73 $words = explode(' ', $line);
74 $key = substr(array_shift($words), 1);
75 $param = NULL;
76 if ($key == 'var') {
77 $info['type'] = explode('|', $words[0]);
78 }
79 elseif ($key == 'options') {
80 $val = str_replace(', ', ',', implode(' ', $words));
81 $info['options'] = explode(',', $val);
82 }
83 elseif ($key == 'throws') {
84 $info[$key][] = implode(' ', $words);
85 }
86 elseif ($key == 'param' && $words) {
87 $type = $words[0][0] !== '$' ? explode('|', array_shift($words)) : NULL;
88 $param = rtrim(array_shift($words), '-:()/');
89 $info['params'][$param] = [
90 'type' => $type,
91 'description' => $words ? ltrim(implode(' ', $words), '-: ') : '',
92 'comment' => '',
93 ];
94 }
95 else {
96 // Unrecognized annotation, but we'll duly add it to the info array
97 $val = implode(' ', $words);
98 $info[$key] = strlen($val) ? $val : TRUE;
99 }
100 }
101 elseif ($param) {
102 $info['params'][$param]['comment'] .= $line . "\n";
103 }
104 elseif ($num == 1) {
105 $info['description'] = $line;
106 }
107 elseif (!$line) {
108 if (isset($info['comment'])) {
109 $info['comment'] .= "\n";
110 }
111 }
112 else {
113 $info['comment'] = isset($info['comment']) ? "{$info['comment']}\n$line" : $line;
114 }
115 }
116 if (isset($info['comment'])) {
117 $info['comment'] = trim($info['comment']);
118 }
119 return $info;
120 }
121
122 /**
123 * List all traits used by a class and its parents.
124 *
125 * @param object|string $class
126 * @return array
127 */
128 public static function getTraits($class) {
129 $traits = [];
130 // Get traits of this class + parent classes
131 do {
132 $traits = array_merge(class_uses($class), $traits);
133 } while ($class = get_parent_class($class));
134 // Get traits of traits
135 foreach ($traits as $trait => $same) {
136 $traits = array_merge(class_uses($trait), $traits);
137 }
138 return $traits;
139 }
140
141 }