Complex classes like DocComment 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. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
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 DocComment, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 24 | class DocComment |
||
| 25 | { |
||
| 26 | |||
| 27 | private static $use = []; |
||
| 28 | private static $useAliases = []; |
||
| 29 | private static $namespaces = []; |
||
| 30 | private static $classNames = []; |
||
| 31 | private static $classes = []; |
||
| 32 | private static $methods = []; |
||
| 33 | private static $fields = []; |
||
| 34 | private static $parsedFiles = []; |
||
| 35 | |||
| 36 | 1 | public static function clearCache() |
|
| 45 | |||
| 46 | 47 | public function get($reflection) |
|
| 47 | { |
||
| 48 | 47 | if ($reflection instanceof ReflectionClass) |
|
| 49 | 47 | { |
|
| 50 | 40 | return $this->forClass($reflection); |
|
| 51 | } |
||
| 52 | 26 | elseif ($reflection instanceof ReflectionMethod) |
|
| 53 | { |
||
| 54 | 8 | return $this->forMethod($reflection); |
|
| 55 | } |
||
| 56 | 22 | elseif ($reflection instanceof ReflectionProperty) |
|
| 57 | { |
||
| 58 | 22 | return $this->forProperty($reflection); |
|
| 59 | } |
||
| 60 | } |
||
| 61 | |||
| 62 | /** |
||
| 63 | * Get doc comment for file |
||
| 64 | * If file contains several classes, $className will be returned |
||
| 65 | * If file name matches class name, this class will be returned |
||
| 66 | * @param string $name |
||
| 67 | * @param string $className |
||
| 68 | */ |
||
| 69 | 2 | public function forFile($name, $className = null) |
|
| 70 | { |
||
| 71 | 2 | $fqn = $this->process($name, $className); |
|
|
|
|||
| 72 | 2 | if (null !== $className) |
|
| 73 | 2 | { |
|
| 74 | $fqn = $className; |
||
| 75 | } |
||
| 76 | /** |
||
| 77 | * TODO Use some container here with ArrayAccess interface. Array-like access is *required* here. |
||
| 78 | */ |
||
| 79 | $result = [ |
||
| 80 | 2 | 'namespace' => isset(self::$namespaces[$fqn]) ? self::$namespaces[$fqn] : [], |
|
| 81 | 2 | 'use' => isset(self::$use[$fqn]) ? self::$use[$fqn] : [], |
|
| 82 | 2 | 'useAliases' => isset(self::$useAliases[$fqn]) ? self::$useAliases[$fqn] : [], |
|
| 83 | 2 | 'className' => isset(self::$classNames[$fqn]) ? self::$classNames[$fqn] : [], |
|
| 84 | 2 | 'class' => isset(self::$classes[$fqn]) ? self::$classes[$fqn] : '', |
|
| 85 | 2 | 'methods' => isset(self::$methods[$fqn]) ? self::$methods[$fqn] : [], |
|
| 86 | 2 | 'fields' => isset(self::$fields[$fqn]) ? self::$fields[$fqn] : [] |
|
| 87 | 2 | ]; |
|
| 88 | |||
| 89 | 2 | return $result; |
|
| 90 | } |
||
| 91 | |||
| 92 | 49 | public function forClass(Reflector $reflection) |
|
| 93 | { |
||
| 94 | 49 | if (ClassChecker::isAnonymous($reflection->name)) |
|
| 95 | 49 | { |
|
| 96 | echo ''; |
||
| 97 | } |
||
| 98 | 49 | $fqn = $reflection->getName(); |
|
| 99 | 49 | $this->process($reflection->getFileName(), $fqn); |
|
| 100 | 49 | if (ClassChecker::isAnonymous($reflection->name)) |
|
| 101 | 49 | { |
|
| 102 | $info = new \ReflectionClass($reflection->getName()); |
||
| 103 | $anonFqn = $reflection->getName(); |
||
| 104 | NameNormalizer::normalize($anonFqn); |
||
| 105 | $this->processAnonymous($info, $anonFqn); |
||
| 106 | } |
||
| 107 | $result = [ |
||
| 108 | 49 | 'namespace' => isset(self::$namespaces[$fqn]) ? self::$namespaces[$fqn] : [], |
|
| 109 | 49 | 'use' => isset(self::$use[$fqn]) ? self::$use[$fqn] : [], |
|
| 110 | 49 | 'useAliases' => isset(self::$useAliases[$fqn]) ? self::$useAliases[$fqn] : [], |
|
| 111 | 49 | 'className' => isset(self::$classNames[$fqn]) ? self::$classNames[$fqn] : [], |
|
| 112 | 49 | 'class' => isset(self::$classes[$fqn]) ? self::$classes[$fqn] : '', |
|
| 113 | 49 | 'methods' => isset(self::$methods[$fqn]) ? self::$methods[$fqn] : [], |
|
| 114 | 49 | 'fields' => isset(self::$fields[$fqn]) ? self::$fields[$fqn] : [] |
|
| 115 | 49 | ]; |
|
| 116 | 49 | if (ClassChecker::isAnonymous($reflection->name)) |
|
| 117 | 49 | { |
|
| 118 | $result['className'] = self::$classNames[$anonFqn]; |
||
| 119 | $result['class'] = self::$classes[$anonFqn]; |
||
| 120 | } |
||
| 121 | 49 | return $result; |
|
| 122 | } |
||
| 123 | |||
| 124 | 8 | public function forMethod(Reflector $reflection) |
|
| 125 | { |
||
| 126 | 8 | $this->process($reflection->getDeclaringClass()->getFileName()); |
|
| 127 | |||
| 128 | |||
| 129 | |||
| 130 | 8 | $class = $reflection->getDeclaringClass()->getName(); |
|
| 131 | 8 | $method = $reflection->getName(); |
|
| 132 | 8 | return isset(self::$methods[$class][$method]) ? self::$methods[$class][$method] : false; |
|
| 133 | } |
||
| 134 | |||
| 135 | 22 | public function forProperty(Reflector $reflection) |
|
| 136 | { |
||
| 137 | 22 | $this->process($reflection->getDeclaringClass()->getFileName()); |
|
| 138 | |||
| 139 | |||
| 140 | 22 | $class = $reflection->getDeclaringClass()->getName(); |
|
| 141 | 22 | $field = $reflection->getName(); |
|
| 142 | 22 | return isset(self::$fields[$class][$field]) ? self::$fields[$class][$field] : false; |
|
| 143 | } |
||
| 144 | |||
| 145 | private function processAnonymous(Reflector $reflection, $fqn) |
||
| 146 | { |
||
| 147 | if (!isset(self::$parsedFiles[$fqn])) |
||
| 148 | { |
||
| 149 | /* @var $reflection \Maslosoft\Addendum\Reflection\ReflectionAnnotatedClass */ |
||
| 150 | self::$classNames[$fqn] = $fqn; |
||
| 151 | self::$classes[$fqn] = $reflection->getDocComment(); |
||
| 152 | self::$methods[$fqn] = []; |
||
| 153 | self::$fields[$fqn] = []; |
||
| 154 | foreach ($reflection->getMethods(\ReflectionMethod::IS_PUBLIC) as $method) |
||
| 155 | { |
||
| 156 | self::$methods[$fqn][$method->name] = $method->getDocComment(); |
||
| 157 | } |
||
| 158 | foreach ($reflection->getProperties(\ReflectionProperty::IS_PUBLIC) as $property) |
||
| 159 | { |
||
| 160 | self::$fields[$fqn][$property->name] = $property->getDocComment(); |
||
| 161 | } |
||
| 162 | self::$parsedFiles[$fqn] = $fqn; |
||
| 163 | } |
||
| 164 | return self::$parsedFiles[$fqn]; |
||
| 165 | } |
||
| 166 | |||
| 167 | 56 | private function process($file, $fqn = false) |
|
| 168 | { |
||
| 169 | 56 | if (!isset(self::$parsedFiles[$file])) |
|
| 170 | 56 | { |
|
| 171 | 47 | $fqn = $this->parse($file, $fqn); |
|
| 172 | 47 | self::$parsedFiles[$file] = $fqn; |
|
| 173 | 47 | } |
|
| 174 | 56 | return self::$parsedFiles[$file]; |
|
| 175 | } |
||
| 176 | |||
| 177 | 47 | protected function parse($file, $fqn = false) |
|
| 178 | { |
||
| 179 | 47 | $use = []; |
|
| 180 | 47 | $aliases = []; |
|
| 181 | 47 | $namespace = '\\'; |
|
| 182 | 47 | $tokens = $this->getTokens($file); |
|
| 183 | 47 | $class = false; |
|
| 184 | 47 | $comment = null; |
|
| 185 | 47 | $max = count($tokens); |
|
| 186 | 47 | $i = 0; |
|
| 187 | 47 | while ($i < $max) |
|
| 188 | { |
||
| 189 | 47 | $token = $tokens[$i]; |
|
| 190 | 47 | if (is_array($token)) |
|
| 191 | 47 | { |
|
| 192 | 47 | list($code, $value) = $token; |
|
| 193 | |||
| 194 | switch ($code) |
||
| 195 | { |
||
| 196 | 47 | case T_DOC_COMMENT: |
|
| 197 | 47 | $comment = $value; |
|
| 198 | 47 | break; |
|
| 199 | |||
| 200 | 47 | case T_NAMESPACE: |
|
| 201 | 47 | $comment = false; |
|
| 202 | 47 | $tokensCount = count($tokens); |
|
| 203 | 47 | for ($j = $i + 1; $j < $tokensCount; $j++) |
|
| 204 | { |
||
| 205 | 47 | if ($tokens[$j][0] === T_STRING) |
|
| 206 | 47 | { |
|
| 207 | 47 | $namespace .= '\\' . $tokens[$j][1]; |
|
| 208 | 47 | } |
|
| 209 | 47 | elseif ($tokens[$j] === '{' || $tokens[$j] === ';') |
|
| 210 | { |
||
| 211 | 47 | break; |
|
| 212 | } |
||
| 213 | 47 | } |
|
| 214 | |||
| 215 | 47 | $namespace = preg_replace('~^\\\\+~', '', $namespace); |
|
| 216 | 47 | break; |
|
| 217 | 47 | case T_USE: |
|
| 218 | // After class declaration, this should ignore `use` trait |
||
| 219 | if ($class) |
||
| 220 | 44 | { |
|
| 221 | 4 | break; |
|
| 222 | } |
||
| 223 | 44 | $comment = false; |
|
| 224 | 44 | $useNs = ''; |
|
| 225 | 44 | $tokensCount = count($tokens); |
|
| 226 | 44 | $as = false; |
|
| 227 | 44 | for ($j = $i + 1; $j < $tokensCount; $j++) |
|
| 228 | { |
||
| 229 | 44 | $tokenName = $tokens[$j][0]; |
|
| 230 | 44 | if (isset($tokens[$j][1]) && $tokens[$j][1] == 'IMatcher') |
|
| 231 | 44 | { |
|
| 232 | 1 | echo 's'; |
|
| 233 | 1 | } |
|
| 234 | 44 | if ($tokenName === T_STRING && !$as) |
|
| 235 | 44 | { |
|
| 236 | 44 | $useNs .= '\\' . $tokens[$j][1]; |
|
| 237 | 44 | } |
|
| 238 | 44 | if ($tokenName === T_STRING && $as) |
|
| 239 | 44 | { |
|
| 240 | 2 | $alias = $tokens[$j][1]; |
|
| 241 | 2 | break; |
|
| 242 | } |
||
| 243 | 44 | if ($tokenName === T_AS) |
|
| 244 | 44 | { |
|
| 245 | 2 | $as = true; |
|
| 246 | 2 | } |
|
| 247 | 44 | if ($tokens[$j] === '{' || $tokens[$j] === ';') |
|
| 248 | 44 | { |
|
| 249 | 44 | break; |
|
| 250 | } |
||
| 251 | 44 | } |
|
| 252 | 44 | $use[] = preg_replace('~^\\\\+~', '', $useNs); |
|
| 253 | if ($as) |
||
| 254 | 44 | { |
|
| 255 | 2 | $aliases[$useNs] = $alias; |
|
| 256 | 2 | } |
|
| 257 | 44 | break; |
|
| 258 | 47 | case T_TRAIT: |
|
| 259 | 47 | case T_CLASS: |
|
| 260 | 47 | case T_INTERFACE: |
|
| 261 | // Ignore magic constant `::class` |
||
| 262 | 47 | if ($tokens[$i - 1][0] == T_DOUBLE_COLON) |
|
| 263 | 47 | { |
|
| 264 | 4 | break; |
|
| 265 | } |
||
| 266 | 47 | $class = $this->getString($tokens, $i, $max); |
|
| 267 | 47 | if (!$fqn) |
|
| 268 | 47 | { |
|
| 269 | 1 | $fqn = sprintf('%s\%s', $namespace, $class); |
|
| 270 | 1 | } |
|
| 271 | 47 | if ($comment !== false) |
|
| 272 | 47 | { |
|
| 273 | 39 | self::$classes[$fqn] = $comment; |
|
| 274 | 39 | $comment = false; |
|
| 275 | 39 | } |
|
| 276 | 47 | self::$namespaces[$fqn] = $namespace; |
|
| 277 | 47 | self::$classNames[$fqn] = $class; |
|
| 278 | 47 | self::$use[$fqn] = $use; |
|
| 279 | 47 | self::$useAliases[$fqn] = $aliases; |
|
| 280 | 47 | break; |
|
| 281 | |||
| 282 | 47 | case T_VARIABLE: |
|
| 283 | 38 | if ($comment !== false && $class) |
|
| 284 | 38 | { |
|
| 285 | 32 | $field = substr($token[1], 1); |
|
| 286 | 32 | self::$fields[$fqn][$field] = $comment; |
|
| 287 | 32 | $comment = false; |
|
| 288 | 32 | } |
|
| 289 | 38 | break; |
|
| 290 | |||
| 291 | 47 | case T_FUNCTION: |
|
| 292 | 19 | if ($comment !== false && $class) |
|
| 293 | 19 | { |
|
| 294 | 11 | $function = $this->getString($tokens, $i, $max); |
|
| 295 | 11 | self::$methods[$fqn][$function] = $comment; |
|
| 296 | 11 | $comment = false; |
|
| 297 | 11 | } |
|
| 298 | |||
| 299 | 19 | break; |
|
| 300 | |||
| 301 | // ignore |
||
| 302 | 47 | case T_WHITESPACE: |
|
| 303 | 47 | case T_PUBLIC: |
|
| 304 | 47 | case T_PROTECTED: |
|
| 305 | 47 | case T_PRIVATE: |
|
| 306 | 47 | case T_ABSTRACT: |
|
| 307 | 47 | case T_FINAL: |
|
| 308 | 47 | case T_VAR: |
|
| 309 | 47 | break; |
|
| 310 | |||
| 311 | 47 | default: |
|
| 312 | 47 | $comment = false; |
|
| 313 | 47 | break; |
|
| 314 | 47 | } |
|
| 315 | 47 | } |
|
| 316 | else |
||
| 317 | { |
||
| 318 | 47 | $comment = false; |
|
| 319 | } |
||
| 320 | 47 | $i++; |
|
| 321 | 47 | } |
|
| 322 | 47 | return $fqn; |
|
| 323 | } |
||
| 324 | |||
| 325 | 47 | private function getString($tokens, &$i, $max) |
|
| 326 | { |
||
| 327 | do |
||
| 328 | { |
||
| 329 | /** |
||
| 330 | * TODO Workaround for problem desribed near T_CLASS token |
||
| 331 | */ |
||
| 332 | 47 | if (!isset($tokens[$i])) |
|
| 333 | 47 | { |
|
| 334 | $i++; |
||
| 335 | continue; |
||
| 336 | } |
||
| 337 | 47 | $token = $tokens[$i]; |
|
| 338 | 47 | $i++; |
|
| 339 | 47 | if (is_array($token)) |
|
| 340 | 47 | { |
|
| 341 | 47 | if ($token[0] == T_STRING) |
|
| 342 | 47 | { |
|
| 343 | 47 | return $token[1]; |
|
| 344 | } |
||
| 345 | 47 | } |
|
| 346 | } |
||
| 347 | 47 | while ($i <= $max); |
|
| 348 | return false; |
||
| 349 | } |
||
| 350 | |||
| 351 | 47 | private function getTokens($file) |
|
| 355 | |||
| 356 | } |
||
| 357 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: