This file is indexed.

/usr/share/php/ApiGen/Reflection/Extractors/ClassMagicElementsExtractor.php is in php-apigen 4.1.2-1ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<?php

/**
 * This file is part of the ApiGen (http://apigen.org)
 *
 * For the full copyright and license information, please view
 * the file license.md that was distributed with this source code.
 */

namespace ApiGen\Reflection\Extractors;

use ApiGen\Reflection\ReflectionClass;
use ApiGen\Reflection\ReflectionElement;
use ApiGen\Reflection\ReflectionMethod;
use ApiGen\Reflection\ReflectionMethodMagic;
use ApiGen\Reflection\ReflectionProperty;
use ApiGen\Reflection\ReflectionPropertyMagic;


class ClassMagicElementsExtractor
{

	/**
	 * @var ReflectionClass
	 */
	private $reflectionClass;

	/**
	 * @var ReflectionPropertyMagic[]
	 */
	private $ownMagicProperties;

	/**
	 * @var ReflectionMethodMagic[]
	 */
	private $ownMagicMethods;


	public function __construct(ReflectionClass $reflectionClass)
	{
		$this->reflectionClass = $reflectionClass;
	}


	/**
	 * @return ReflectionPropertyMagic[]
	 */
	public function getMagicProperties()
	{
		return $this->getOwnMagicProperties() + (new MagicPropertyExtractor)->extractFromClass($this->reflectionClass);
	}


	/**
	 * @return ReflectionMethodMagic[]
	 */
	public function getMagicMethods()
	{
		return $this->getOwnMagicMethods() + (new MagicMethodExtractor)->extractFromClass($this->reflectionClass);
	}


	/**
	 * @return ReflectionPropertyMagic[]|array
	 */
	public function getOwnMagicProperties()
	{
		if ($this->ownMagicProperties === NULL) {
			$this->ownMagicProperties = [];

			if ($this->reflectionClass->isVisibilityLevelPublic() && $this->reflectionClass->getDocComment()) {
				$extractor = new AnnotationPropertyExtractor($this->reflectionClass->getReflectionFactory());
				$this->ownMagicProperties += $extractor->extractFromReflection($this->reflectionClass);
			}
		}

		return $this->ownMagicProperties;
	}


	/**
	 * @return ReflectionMethodMagic[]
	 */
	public function getOwnMagicMethods()
	{
		if ($this->ownMagicMethods === NULL) {
			$this->ownMagicMethods = [];

			if ($this->reflectionClass->isVisibilityLevelPublic() && $this->reflectionClass->getDocComment()) {
				$extractor = new AnnotationMethodExtractor($this->reflectionClass->getReflectionFactory());
				$this->ownMagicMethods += $extractor->extractFromReflection($this->reflectionClass);
			}
		}
		return $this->ownMagicMethods;
	}


	/**
	 * @return array {[ declaringClassName => ReflectionPropertyMagic[] ]}
	 */
	public function getInheritedMagicProperties()
	{
		$properties = [];
		$allProperties = array_flip(array_map(function (ReflectionProperty $property) {
			return $property->getName();
		}, $this->getOwnMagicProperties()));

		foreach ($this->reflectionClass->getParentClasses() as $class) {
			$inheritedProperties = $this->getUsedElements($class->getOwnMagicProperties(), $allProperties);
			$properties = $this->sortElements($inheritedProperties, $properties, $class);
		}

		return $properties;
	}


	/**
	 * @return array {[ declaringClassName => ReflectionMethodMagic[] ]}
	 */
	public function getInheritedMagicMethods()
	{
		$methods = [];
		$allMethods = array_flip(array_map(function (ReflectionMethod $method) {
			return $method->getName();
		}, $this->getOwnMagicMethods()));

		/** @var ReflectionClass[] $parentClassesAndInterfaces */
		$parentClassesAndInterfaces = array_merge(
			$this->reflectionClass->getParentClasses(), $this->reflectionClass->getInterfaces()
		);
		foreach ($parentClassesAndInterfaces as $class) {
			$inheritedMethods = $this->getUsedElements($class->getOwnMagicMethods(), $allMethods);
			$methods = $this->sortElements($inheritedMethods, $methods, $class);
		}

		return $methods;
	}


	/**
	 * @return array {[ declaringTraitName => ReflectionPropertyMagic[] ]}
	 */
	public function getUsedMagicProperties()
	{
		$properties = [];
		$allProperties = array_flip(array_map(function (ReflectionProperty $property) {
			return $property->getName();
		}, $this->getOwnMagicProperties()));

		foreach ($this->reflectionClass->getTraits() as $trait) {
			if ( ! $trait instanceof ReflectionClass) {
				continue;
			}
			$usedProperties = $this->getUsedElements($trait->getOwnMagicProperties(), $allProperties);
			$properties = $this->sortElements($usedProperties, $properties, $trait);
		}

		return $properties;
	}


	/**
	 * @return ReflectionMethodMagic[]|array
	 */
	public function getUsedMagicMethods()
	{
		$usedMethods = [];
		foreach ($this->getMagicMethods() as $method) {
			$declaringTraitName = $method->getDeclaringTraitName();
			if ($declaringTraitName === NULL || $declaringTraitName === $this->reflectionClass->getName()) {
				continue;
			}
			$usedMethods[$declaringTraitName][$method->getName()]['method'] = $method;
		}
		return $usedMethods;
	}


	/**
	 * @param ReflectionElement[] $elementsToCheck
	 * @param array $allElements
	 * @return array
	 */
	private function getUsedElements(array $elementsToCheck, array &$allElements)
	{
		$elements = [];
		foreach ($elementsToCheck as $property) {
			if ( ! array_key_exists($property->getName(), $allElements)) {
				$elements[$property->getName()] = $property;
				$allElements[$property->getName()] = NULL;
			}
		}
		return $elements;
	}


	/**
	 * @return array
	 */
	private function sortElements(array $elements, array $allElements, ReflectionClass $reflectionClass)
	{
		if ( ! empty($elements)) {
			ksort($elements);
			$allElements[$reflectionClass->getName()] = array_values($elements);
		}
		return $allElements;
	}

}