| Total Complexity | 64 |
| Total Lines | 391 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like ClassLoader often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use ClassLoader, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 43 | class ClassLoader |
||
| 44 | { |
||
| 45 | /** @var \Closure(string):void */ |
||
| 46 | private static $includeFile; |
||
| 47 | |||
| 48 | /** @var string|null */ |
||
| 49 | private $vendorDir; |
||
| 50 | |||
| 51 | // PSR-4 |
||
| 52 | /** |
||
| 53 | * @var array<string, array<string, int>> |
||
| 54 | */ |
||
| 55 | private $prefixLengthsPsr4 = array(); |
||
| 56 | /** |
||
| 57 | * @var array<string, list<string>> |
||
| 58 | */ |
||
| 59 | private $prefixDirsPsr4 = array(); |
||
| 60 | /** |
||
| 61 | * @var list<string> |
||
| 62 | */ |
||
| 63 | private $fallbackDirsPsr4 = array(); |
||
| 64 | |||
| 65 | // PSR-0 |
||
| 66 | /** |
||
| 67 | * List of PSR-0 prefixes |
||
| 68 | * |
||
| 69 | * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2'))) |
||
| 70 | * |
||
| 71 | * @var array<string, array<string, list<string>>> |
||
| 72 | */ |
||
| 73 | private $prefixesPsr0 = array(); |
||
| 74 | /** |
||
| 75 | * @var list<string> |
||
| 76 | */ |
||
| 77 | private $fallbackDirsPsr0 = array(); |
||
| 78 | |||
| 79 | /** @var bool */ |
||
| 80 | private $useIncludePath = false; |
||
| 81 | |||
| 82 | /** |
||
| 83 | * @var array<string, string> |
||
| 84 | */ |
||
| 85 | private $classMap = array(); |
||
| 86 | |||
| 87 | /** @var bool */ |
||
| 88 | private $classMapAuthoritative = false; |
||
| 89 | |||
| 90 | /** |
||
| 91 | * @var array<string, bool> |
||
| 92 | */ |
||
| 93 | private $missingClasses = array(); |
||
| 94 | |||
|
|
|||
| 95 | /** @var string|null */ |
||
| 96 | private $apcuPrefix; |
||
| 97 | |||
| 98 | /** |
||
| 99 | * @var array<string, self> |
||
| 100 | */ |
||
| 101 | private static $registeredLoaders = array(); |
||
| 102 | |||
| 103 | /** |
||
| 104 | * @param string|null $vendorDir |
||
| 105 | */ |
||
| 106 | public function __construct($vendorDir = null) |
||
| 107 | { |
||
| 108 | $this->vendorDir = $vendorDir; |
||
| 109 | self::initializeIncludeClosure(); |
||
| 110 | } |
||
| 111 | |||
| 112 | /** |
||
| 113 | * @return array<string, list<string>> |
||
| 114 | */ |
||
| 115 | public function getPrefixes() |
||
| 116 | { |
||
| 117 | if (!empty($this->prefixesPsr0)) { |
||
| 118 | return call_user_func_array('array_merge', array_values($this->prefixesPsr0)); |
||
| 119 | } |
||
| 120 | |||
| 121 | return array(); |
||
| 122 | } |
||
| 123 | |||
| 124 | /** |
||
| 125 | * @return array<string, list<string>> |
||
| 126 | */ |
||
| 127 | public function getPrefixesPsr4() |
||
| 128 | { |
||
| 129 | return $this->prefixDirsPsr4; |
||
| 130 | } |
||
| 131 | |||
| 132 | /** |
||
| 133 | * @return list<string> |
||
| 134 | */ |
||
| 135 | public function getFallbackDirs() |
||
| 136 | { |
||
| 137 | return $this->fallbackDirsPsr0; |
||
| 138 | } |
||
| 139 | |||
| 140 | /** |
||
| 141 | * @return list<string> |
||
| 142 | */ |
||
| 143 | public function getFallbackDirsPsr4() |
||
| 144 | { |
||
| 145 | return $this->fallbackDirsPsr4; |
||
| 146 | } |
||
| 147 | |||
| 148 | /** |
||
| 149 | * @return array<string, string> Array of classname => path |
||
| 150 | */ |
||
| 151 | public function getClassMap() |
||
| 152 | { |
||
| 153 | return $this->classMap; |
||
| 154 | } |
||
| 155 | |||
| 156 | /** |
||
| 157 | * @param array<string, string> $classMap Class to filename map |
||
| 158 | * |
||
| 159 | * @return void |
||
| 160 | */ |
||
| 161 | public function addClassMap(array $classMap) |
||
| 162 | { |
||
| 163 | if ($this->classMap) { |
||
| 164 | $this->classMap = array_merge($this->classMap, $classMap); |
||
| 165 | } else { |
||
| 166 | $this->classMap = $classMap; |
||
| 167 | } |
||
| 168 | } |
||
| 169 | |||
| 170 | /** |
||
| 171 | * Registers a set of PSR-0 directories for a given prefix, either |
||
| 172 | * appending or prepending to the ones previously set for this prefix. |
||
| 173 | * |
||
| 174 | * @param string $prefix The prefix |
||
| 175 | * @param list<string>|string $paths The PSR-0 root directories |
||
| 176 | * @param bool $prepend Whether to prepend the directories |
||
| 177 | * |
||
| 178 | * @return void |
||
| 179 | */ |
||
| 180 | public function add($prefix, $paths, $prepend = false) |
||
| 181 | { |
||
| 182 | $paths = (array) $paths; |
||
| 183 | if (!$prefix) { |
||
| 184 | if ($prepend) { |
||
| 185 | $this->fallbackDirsPsr0 = array_merge( |
||
| 186 | $paths, |
||
| 187 | $this->fallbackDirsPsr0 |
||
| 188 | ); |
||
| 189 | } else { |
||
| 190 | $this->fallbackDirsPsr0 = array_merge( |
||
| 191 | $this->fallbackDirsPsr0, |
||
| 192 | $paths |
||
| 193 | ); |
||
| 194 | } |
||
| 195 | |||
| 196 | return; |
||
| 197 | } |
||
| 198 | |||
| 199 | $first = $prefix[0]; |
||
| 200 | if (!isset($this->prefixesPsr0[$first][$prefix])) { |
||
| 201 | $this->prefixesPsr0[$first][$prefix] = $paths; |
||
| 202 | |||
| 203 | return; |
||
| 204 | } |
||
| 205 | if ($prepend) { |
||
| 206 | $this->prefixesPsr0[$first][$prefix] = array_merge( |
||
| 207 | $paths, |
||
| 208 | $this->prefixesPsr0[$first][$prefix] |
||
| 209 | ); |
||
| 210 | } else { |
||
| 211 | $this->prefixesPsr0[$first][$prefix] = array_merge( |
||
| 212 | $this->prefixesPsr0[$first][$prefix], |
||
| 213 | $paths |
||
| 214 | ); |
||
| 215 | } |
||
| 216 | } |
||
| 217 | |||
| 218 | /** |
||
| 219 | * Registers a set of PSR-4 directories for a given namespace, either |
||
| 220 | * appending or prepending to the ones previously set for this namespace. |
||
| 221 | * |
||
| 222 | * @param string $prefix The prefix/namespace, with trailing '\\' |
||
| 223 | * @param list<string>|string $paths The PSR-4 base directories |
||
| 224 | * @param bool $prepend Whether to prepend the directories |
||
| 225 | * |
||
| 226 | * @throws \InvalidArgumentException |
||
| 227 | * |
||
| 228 | * @return void |
||
| 229 | */ |
||
| 230 | public function addPsr4($prefix, $paths, $prepend = false) |
||
| 231 | { |
||
| 232 | $paths = (array) $paths; |
||
| 233 | if (!$prefix) { |
||
| 234 | // Register directories for the root namespace. |
||
| 235 | if ($prepend) { |
||
| 236 | $this->fallbackDirsPsr4 = array_merge( |
||
| 237 | $paths, |
||
| 238 | $this->fallbackDirsPsr4 |
||
| 239 | ); |
||
| 240 | } else { |
||
| 241 | $this->fallbackDirsPsr4 = array_merge( |
||
| 242 | $this->fallbackDirsPsr4, |
||
| 243 | $paths |
||
| 244 | ); |
||
| 245 | } |
||
| 246 | } elseif (!isset($this->prefixDirsPsr4[$prefix])) { |
||
| 247 | // Register directories for a new namespace. |
||
| 248 | $length = strlen($prefix); |
||
| 249 | if ('\\' !== $prefix[$length - 1]) { |
||
| 250 | throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); |
||
| 251 | } |
||
| 252 | $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; |
||
| 253 | $this->prefixDirsPsr4[$prefix] = $paths; |
||
| 254 | } elseif ($prepend) { |
||
| 255 | // Prepend directories for an already registered namespace. |
||
| 256 | $this->prefixDirsPsr4[$prefix] = array_merge( |
||
| 257 | $paths, |
||
| 258 | $this->prefixDirsPsr4[$prefix] |
||
| 259 | ); |
||
| 260 | } else { |
||
| 261 | // Append directories for an already registered namespace. |
||
| 262 | $this->prefixDirsPsr4[$prefix] = array_merge( |
||
| 263 | $this->prefixDirsPsr4[$prefix], |
||
| 264 | $paths |
||
| 265 | ); |
||
| 266 | } |
||
| 267 | } |
||
| 268 | |||
| 269 | /** |
||
| 270 | * Registers a set of PSR-0 directories for a given prefix, |
||
| 271 | * replacing any others previously set for this prefix. |
||
| 272 | * |
||
| 273 | * @param string $prefix The prefix |
||
| 274 | * @param list<string>|string $paths The PSR-0 base directories |
||
| 275 | * |
||
| 276 | * @return void |
||
| 277 | */ |
||
| 278 | public function set($prefix, $paths) |
||
| 279 | { |
||
| 280 | if (!$prefix) { |
||
| 281 | $this->fallbackDirsPsr0 = (array) $paths; |
||
| 282 | } else { |
||
| 283 | $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; |
||
| 284 | } |
||
| 285 | } |
||
| 286 | |||
| 287 | /** |
||
| 288 | * Registers a set of PSR-4 directories for a given namespace, |
||
| 289 | * replacing any others previously set for this namespace. |
||
| 290 | * |
||
| 291 | * @param string $prefix The prefix/namespace, with trailing '\\' |
||
| 292 | * @param list<string>|string $paths The PSR-4 base directories |
||
| 293 | * |
||
| 294 | * @throws \InvalidArgumentException |
||
| 295 | * |
||
| 296 | * @return void |
||
| 297 | */ |
||
| 298 | public function setPsr4($prefix, $paths) |
||
| 299 | { |
||
| 300 | if (!$prefix) { |
||
| 303 | $length = strlen($prefix); |
||
| 304 | if ('\\' !== $prefix[$length - 1]) { |
||
| 305 | throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); |
||
| 306 | } |
||
| 307 | $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; |
||
| 308 | $this->prefixDirsPsr4[$prefix] = (array) $paths; |
||
| 309 | } |
||
| 310 | } |
||
| 311 | |||
| 312 | /** |
||
| 313 | * Turns on searching the include path for class files. |
||
| 314 | * |
||
| 315 | * @param bool $useIncludePath |
||
| 316 | * |
||
| 317 | * @return void |
||
| 318 | */ |
||
| 319 | public function setUseIncludePath($useIncludePath) |
||
| 325 | * Can be used to check if the autoloader uses the include path to check |
||
| 326 | * for classes. |
||
| 327 | * |
||
| 328 | * @return bool |
||
| 329 | */ |
||
| 330 | public function getUseIncludePath() |
||
| 331 | { |
||
| 332 | return $this->useIncludePath; |
||
| 333 | } |
||
| 334 | |||
| 335 | /** |
||
| 336 | * Turns off searching the prefix and fallback directories for classes |
||
| 337 | * that have not been registered with the class map. |
||
| 338 | * |
||
| 339 | * @param bool $classMapAuthoritative |
||
| 340 | * |
||
| 341 | * @return void |
||
| 342 | */ |
||
| 343 | public function setClassMapAuthoritative($classMapAuthoritative) |
||
| 344 | { |
||
| 345 | $this->classMapAuthoritative = $classMapAuthoritative; |
||
| 346 | } |
||
| 347 | |||
| 348 | /** |
||
| 349 | * Should class lookup fail if not found in the current class map? |
||
| 350 | * |
||
| 351 | * @return bool |
||
| 352 | */ |
||
| 353 | public function isClassMapAuthoritative() |
||
| 354 | { |
||
| 355 | return $this->classMapAuthoritative; |
||
| 356 | } |
||
| 357 | |||
| 358 | /** |
||
| 359 | * APCu prefix to use to cache found/not-found classes, if the extension is enabled. |
||
| 360 | * |
||
| 361 | * @param string|null $apcuPrefix |
||
| 362 | * |
||
| 363 | * @return void |
||
| 364 | */ |
||
| 365 | public function setApcuPrefix($apcuPrefix) |
||
| 366 | { |
||
| 367 | $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; |
||
| 368 | } |
||
| 369 | |||
| 370 | /** |
||
| 434 | |||
| 435 | /** |
||
| 436 | * Finds the path to the file where the class is defined. |
||
| 437 | * |
||
| 438 | * @param string $class The name of the class |
||
| 439 | * |
||
| 440 | * @return string|false The path if found, false otherwise |
||
| 441 | */ |
||
| 580 |
This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.
Consider making the comparison explicit by using
empty(..)or! empty(...)instead.