Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like Logger 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 Logger, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 45 | class Logger implements LoggerInterface |
||
| 46 | { |
||
| 47 | /** |
||
| 48 | * @var LoggerInterface[] chain of PSR-3 compatible loggers to call |
||
| 49 | */ |
||
| 50 | private $loggers = array(); |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @var boolean do we have active loggers? |
||
| 54 | */ |
||
| 55 | private $logging_active = false; |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @var boolean just to prevent fatal legacy errors. Does nothing. Stop it! |
||
| 59 | */ |
||
| 60 | //public $activated = false; |
||
| 61 | |||
| 62 | /** |
||
| 63 | * Get the Xoops\Core\Logger instance |
||
| 64 | * |
||
| 65 | * @return Logger object |
||
| 66 | */ |
||
| 67 | 18 | public static function getInstance() |
|
| 81 | |||
| 82 | /** |
||
| 83 | * Error handling callback. |
||
| 84 | * |
||
| 85 | * This will |
||
| 86 | * |
||
| 87 | * @param integer $errorNumber error number |
||
| 88 | * @param string $errorString error message |
||
| 89 | * @param string $errorFile file |
||
| 90 | * @param integer $errorLine line number |
||
| 91 | * |
||
| 92 | * @return void |
||
| 93 | */ |
||
| 94 | 53 | public function handleError($errorNumber, $errorString, $errorFile, $errorLine) |
|
| 165 | |||
| 166 | /** |
||
| 167 | * Exception handling callback. |
||
| 168 | * |
||
| 169 | * This will |
||
| 170 | * |
||
| 171 | * @param \Exception|\Throwable $e uncaught Exception or Error |
||
| 172 | * |
||
| 173 | * @return void |
||
| 174 | */ |
||
| 175 | public function handleException($e) |
||
| 180 | |||
| 181 | /** |
||
| 182 | * Announce fatal error, attempt to log |
||
| 183 | * |
||
| 184 | * @param string $msg error message to report |
||
| 185 | * |
||
| 186 | * @return void |
||
| 187 | */ |
||
| 188 | private function reportFatalError($msg) |
||
| 198 | |||
| 199 | /** |
||
| 200 | * clean a path to remove sensitive details |
||
| 201 | * |
||
| 202 | * @param string $message text to sanitize |
||
| 203 | * |
||
| 204 | * @return string sanitized message |
||
| 205 | */ |
||
| 206 | 21 | public function sanitizePath($message) |
|
| 242 | |||
| 243 | /** |
||
| 244 | * add a PSR-3 compatible logger to the chain |
||
| 245 | * |
||
| 246 | * @param object $logger a PSR-3 compatible logger object |
||
| 247 | * |
||
| 248 | * @return void |
||
| 249 | */ |
||
| 250 | 22 | public function addLogger($logger) |
|
| 257 | |||
| 258 | /** |
||
| 259 | * System is unusable. |
||
| 260 | * |
||
| 261 | * @param string $message message |
||
| 262 | * @param array $context array of context data for this log entry |
||
| 263 | * |
||
| 264 | * @return void |
||
| 265 | */ |
||
| 266 | 1 | public function emergency($message, array $context = array()) |
|
| 270 | |||
| 271 | /** |
||
| 272 | * Action must be taken immediately. |
||
| 273 | * |
||
| 274 | * Example: Entire website down, database unavailable, etc. This should |
||
| 275 | * trigger the SMS alerts and wake you up. |
||
| 276 | * |
||
| 277 | * @param string $message message |
||
| 278 | * @param array $context array of context data for this log entry |
||
| 279 | * |
||
| 280 | * @return void |
||
| 281 | */ |
||
| 282 | 1 | public function alert($message, array $context = array()) |
|
| 286 | |||
| 287 | /** |
||
| 288 | * Critical conditions. |
||
| 289 | * |
||
| 290 | * Example: Application component unavailable, unexpected exception. |
||
| 291 | * |
||
| 292 | * @param string $message message |
||
| 293 | * @param array $context array of context data for this log entry |
||
| 294 | * |
||
| 295 | * @return void |
||
| 296 | */ |
||
| 297 | 1 | public function critical($message, array $context = array()) |
|
| 301 | |||
| 302 | /** |
||
| 303 | * Runtime errors that do not require immediate action but should typically |
||
| 304 | * be logged and monitored. |
||
| 305 | * |
||
| 306 | * @param string $message message |
||
| 307 | * @param array $context array of context data for this log entry |
||
| 308 | * |
||
| 309 | * @return void |
||
| 310 | */ |
||
| 311 | 1 | public function error($message, array $context = array()) |
|
| 315 | |||
| 316 | /** |
||
| 317 | * Exceptional occurrences that are not errors. |
||
| 318 | * |
||
| 319 | * Example: Use of deprecated APIs, poor use of an API, undesirable things |
||
| 320 | * that are not necessarily wrong. |
||
| 321 | * |
||
| 322 | * @param string $message message |
||
| 323 | * @param array $context array of context data for this log entry |
||
| 324 | * |
||
| 325 | * @return void |
||
| 326 | */ |
||
| 327 | 1 | public function warning($message, array $context = array()) |
|
| 331 | |||
| 332 | /** |
||
| 333 | * Normal but significant events. |
||
| 334 | * |
||
| 335 | * @param string $message message |
||
| 336 | * @param array $context array of context data for this log entry |
||
| 337 | * |
||
| 338 | * @return void |
||
| 339 | */ |
||
| 340 | 1 | public function notice($message, array $context = array()) |
|
| 344 | |||
| 345 | /** |
||
| 346 | * Interesting events. |
||
| 347 | * |
||
| 348 | * Example: User logs in, SQL logs. |
||
| 349 | * |
||
| 350 | * @param string $message message |
||
| 351 | * @param array $context array of context data for this log entry |
||
| 352 | * |
||
| 353 | * @return void |
||
| 354 | */ |
||
| 355 | 1 | public function info($message, array $context = array()) |
|
| 359 | |||
| 360 | /** |
||
| 361 | * Detailed debug information. |
||
| 362 | * |
||
| 363 | * @param string $message message |
||
| 364 | * @param array $context array of context data for this log entry |
||
| 365 | * |
||
| 366 | * @return void |
||
| 367 | */ |
||
| 368 | 1 | public function debug($message, array $context = array()) |
|
| 372 | |||
| 373 | /** |
||
| 374 | * Logs with an arbitrary level. |
||
| 375 | * |
||
| 376 | * @param mixed $level PSR-3 LogLevel constant |
||
| 377 | * @param string $message message |
||
| 378 | * @param array $context array of context data for this log entry |
||
| 379 | * |
||
| 380 | * @return void |
||
| 381 | */ |
||
| 382 | 14 | public function log($level, $message, array $context = array()) |
|
| 396 | |||
| 397 | /** |
||
| 398 | * quiet - turn off output if output is rendered in XOOPS page output. |
||
| 399 | * This is intended to assist ajax code that may fail with any extra |
||
| 400 | * content the logger may introduce. |
||
| 401 | * |
||
| 402 | * It should have no effect on loggers using other methods, such a write |
||
| 403 | * to file. |
||
| 404 | * |
||
| 405 | * @return void |
||
| 406 | */ |
||
| 407 | 2 | public function quiet() |
|
| 421 | |||
| 422 | // Deprecated uses |
||
| 423 | |||
| 424 | /** |
||
| 425 | * Keep deprecated calls from failing |
||
| 426 | * |
||
| 427 | * @param string $var property |
||
| 428 | * @param string $val value |
||
| 429 | * |
||
| 430 | * @return void |
||
| 431 | * |
||
| 432 | * @deprecated |
||
| 433 | */ |
||
| 434 | 1 | public function __set($var, $val) |
|
| 443 | |||
| 444 | /** |
||
| 445 | * Keep deprecated calls from failing |
||
| 446 | * |
||
| 447 | * @param string $var property |
||
| 448 | * |
||
| 449 | * @return void |
||
| 450 | * |
||
| 451 | * @deprecated |
||
| 452 | */ |
||
| 453 | 1 | public function __get($var) |
|
| 457 | |||
| 458 | /** |
||
| 459 | * Keep deprecated calls from failing |
||
| 460 | * |
||
| 461 | * @param string $method method |
||
| 462 | * @param string $args arguments |
||
| 463 | * |
||
| 464 | * @return void |
||
| 465 | * |
||
| 466 | * @deprecated |
||
| 467 | */ |
||
| 468 | 1 | public function __call($method, $args) |
|
| 472 | |||
| 473 | /** |
||
| 474 | * issue a deprecated warning |
||
| 475 | * |
||
| 476 | * @return void |
||
| 477 | */ |
||
| 478 | 3 | private function deprecatedMessage() |
|
| 483 | } |
||
| 484 |
If you suppress an error, we recommend checking for the error condition explicitly: