*/ protected static $issue_data = []; /** * @var int */ protected static $error_count = 0; /** * @var array */ protected static $emitted = []; /** @var int */ protected static $recording_level = 0; /** @var array> */ protected static $recorded_issues = []; /** * @var int */ protected static $start_time = 0; /** * @param CodeIssue $e * @param array $suppressed_issues * @return bool */ public static function accepts(CodeIssue $e, array $suppressed_issues = []) { $config = Config::getInstance(); $fqcn_parts = explode('\\', get_class($e)); $issue_type = array_pop($fqcn_parts); if (in_array($issue_type, $suppressed_issues)) { return false; } if (!$config->reportIssueInFile($issue_type, $e->getFilePath())) { return false; } if (self::$recording_level > 0) { self::$recorded_issues[self::$recording_level][] = $e; return false; } return self::add($e); } /** * @param CodeIssue $e * @return bool * @throws Exception\CodeException */ public static function add(CodeIssue $e) { $config = Config::getInstance(); $project_checker = ProjectChecker::getInstance(); $fqcn_parts = explode('\\', get_class($e)); $issue_type = array_pop($fqcn_parts); $error_message = $issue_type . ' - ' . $e->getShortLocation() . ' - ' . $e->getMessage(); $reporting_level = $config->getReportingLevelForFile($issue_type, $e->getFilePath()); if ($reporting_level === Config::REPORT_SUPPRESS) { return false; } if ($reporting_level === Config::REPORT_INFO) { if ($project_checker->show_info && !self::alreadyEmitted($error_message)) { switch ($project_checker->output_format) { case ProjectChecker::TYPE_CONSOLE: echo 'INFO: ' . $error_message . PHP_EOL; break; case ProjectChecker::TYPE_JSON: self::$issue_data[] = self::getIssueArray($e, Config::REPORT_INFO); break; case ProjectChecker::TYPE_EMACS: echo self::getEmacsOutput($e, Config::REPORT_INFO) . PHP_EOL; break; } } return false; } if ($config->throw_exception) { throw new Exception\CodeException($error_message); } if (!self::alreadyEmitted($error_message)) { switch ($project_checker->output_format) { case ProjectChecker::TYPE_CONSOLE: echo ($project_checker->use_color ? "\e[0;31mERROR\e[0m" : 'ERROR') . ': ' . $error_message . PHP_EOL; echo self::getSnippet($e, $project_checker->use_color) . PHP_EOL . PHP_EOL; self::$error_count++; break; case ProjectChecker::TYPE_JSON: self::$issue_data[] = self::getIssueArray($e); break; case ProjectChecker::TYPE_EMACS: echo self::getEmacsOutput($e) . PHP_EOL; break; } } if ($config->stop_on_first_error) { exit(1); } return true; } /** * @param CodeIssue $e * @param string $severity * @return array */ protected static function getIssueArray(CodeIssue $e, $severity = Config::REPORT_ERROR) { $location = $e->getLocation(); $selection_bounds = $location->getSelectionBounds(); return [ 'type' => $severity, 'line_number' => $location->getLineNumber(), 'message' => $e->getMessage(), 'file_name' => $location->file_name, 'file_path' => $location->file_path, 'snippet' => $location->getSnippet(), 'from' => $selection_bounds[0], 'to' => $selection_bounds[1], ]; } /** * @param CodeIssue $e * @param string $severity * @return string */ protected static function getEmacsOutput(CodeIssue $e, $severity = Config::REPORT_ERROR) { $location = $e->getLocation(); return $location->file_path . ':' . $location->getLineNumber() . ':' . $location->getColumn() . ': ' . ($severity === Config::REPORT_ERROR ? 'error' : 'warning') . ' - ' . $e->getMessage(); } /** * @return array */ public static function getIssueData() { return self::$issue_data; } /** * @param CodeIssue $e * @param boolean $use_color * @return string */ protected static function getSnippet(CodeIssue $e, $use_color = true) { $location = $e->getLocation(); $snippet = $location->getSnippet(); if (!$use_color) { return $snippet; } $snippet_bounds = $location->getSnippetBounds(); $selection_bounds = $location->getSelectionBounds(); $selection_start = $selection_bounds[0] - $snippet_bounds[0]; $selection_length = $selection_bounds[1] - $selection_bounds[0]; return substr($snippet, 0, $selection_start) . "\e[97;41m" . substr($snippet, $selection_start, $selection_length) . "\e[0m" . substr($snippet, $selection_length + $selection_start) . PHP_EOL; } /** * @param bool $is_full * @param int|null $start_time * @param array $visited_files * @return void */ public static function finish($is_full, $start_time, array $visited_files) { Provider\FileReferenceProvider::updateReferenceCache($visited_files); if ($start_time) { echo('Checks took ' . ((float)microtime(true) - self::$start_time)); echo(' and used ' . number_format(memory_get_peak_usage() / (1024 * 1024), 3) . 'MB' . PHP_EOL); } if (self::$error_count) { $project_checker = ProjectChecker::getInstance(); if ($project_checker->output_format === ProjectChecker::TYPE_JSON) { echo json_encode(self::$issue_data) . PHP_EOL; } exit(1); } if ($is_full && $start_time) { Provider\CacheProvider::processSuccessfulRun($start_time); } } /** * @param string $message * @return bool */ protected static function alreadyEmitted($message) { $sham = sha1($message); if (isset(self::$emitted[$sham])) { return true; } self::$emitted[$sham] = true; return false; } /** * @param int $time * @return void */ public static function setStartTime($time) { self::$start_time = $time; } /** * @return void */ public static function clearCache() { self::$issue_data = []; self::$emitted = []; self::$error_count = 0; self::$recording_level = 0; self::$recorded_issues = []; } /** * @return void */ public static function startRecording() { self::$recording_level++; self::$recorded_issues[self::$recording_level] = []; } /** * @return void */ public static function stopRecording() { if (self::$recording_level === 0) { throw new \UnexpectedValueException('Cannot stop recording - already at base level'); } self::$recording_level--; } /** * @return array */ public static function clearRecordingLevel() { if (self::$recording_level === 0) { throw new \UnexpectedValueException('Not currently recording'); } $recorded_issues = self::$recorded_issues[self::$recording_level]; self::$recorded_issues[self::$recording_level] = []; return $recorded_issues; } /** * @return void */ public static function bubbleUp(CodeIssue $e) { if (self::$recording_level === 0) { self::add($e); return; } self::$recorded_issues[self::$recording_level][] = $e; } }