2018-02-04 00:52:35 +01:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Codebase;
|
|
|
|
|
|
|
|
use Psalm\Checker\FileChecker;
|
|
|
|
use Psalm\Checker\ProjectChecker;
|
|
|
|
use Psalm\Config;
|
|
|
|
use Psalm\FileManipulation\FileManipulation;
|
|
|
|
use Psalm\FileManipulation\FileManipulationBuffer;
|
|
|
|
use Psalm\FileManipulation\FunctionDocblockManipulator;
|
|
|
|
use Psalm\IssueBuffer;
|
|
|
|
use Psalm\Provider\FileProvider;
|
|
|
|
use Psalm\Provider\FileReferenceProvider;
|
2018-06-04 00:31:43 +02:00
|
|
|
use Psalm\Provider\FileStorageProvider;
|
2018-02-04 00:52:35 +01:00
|
|
|
|
2018-09-26 00:37:24 +02:00
|
|
|
/**
|
|
|
|
* @psalm-type IssueData = array{
|
2018-09-26 22:33:59 +02:00
|
|
|
* severity: string,
|
|
|
|
* line_from: int,
|
|
|
|
* line_to: int,
|
|
|
|
* type: string,
|
|
|
|
* message: string,
|
|
|
|
* file_name: string,
|
|
|
|
* file_path: string,
|
|
|
|
* snippet: string,
|
|
|
|
* from: int,
|
|
|
|
* to: int,
|
|
|
|
* snippet_from: int,
|
|
|
|
* snippet_to: int,
|
|
|
|
* column_from: int,
|
|
|
|
* column_to: int
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* @psalm-type WorkerData = array{
|
|
|
|
* issues: array<int, IssueData>,
|
|
|
|
* file_references: array<string, array<string,bool>>,
|
|
|
|
* mixed_counts: array<string, array{0: int, 1: int}>,
|
|
|
|
* method_references: array<string, array<string,bool>>,
|
|
|
|
* correct_methods: array<string, array<string, bool>>
|
|
|
|
* }
|
2018-09-26 00:37:24 +02:00
|
|
|
*/
|
|
|
|
|
2018-02-09 23:51:49 +01:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*
|
|
|
|
* Called in the analysis phase of Psalm's execution
|
|
|
|
*/
|
2018-02-04 00:52:35 +01:00
|
|
|
class Analyzer
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var Config
|
|
|
|
*/
|
|
|
|
private $config;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var FileProvider
|
|
|
|
*/
|
|
|
|
private $file_provider;
|
|
|
|
|
2018-06-04 00:31:43 +02:00
|
|
|
/**
|
|
|
|
* @var FileStorageProvider
|
|
|
|
*/
|
|
|
|
private $file_storage_provider;
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private $debug_output;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Used to store counts of mixed vs non-mixed variables
|
|
|
|
*
|
|
|
|
* @var array<string, array{0: int, 1: int}
|
|
|
|
*/
|
|
|
|
private $mixed_counts = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private $count_mixed = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We analyze more files than we necessarily report errors in
|
|
|
|
*
|
|
|
|
* @var array<string, string>
|
|
|
|
*/
|
|
|
|
private $files_to_analyze = [];
|
|
|
|
|
2018-09-26 00:37:24 +02:00
|
|
|
/**
|
|
|
|
* @var array<string, array<string, bool>>
|
|
|
|
*/
|
|
|
|
private $correct_methods = [];
|
|
|
|
|
2018-09-26 22:33:59 +02:00
|
|
|
/**
|
|
|
|
* @var array<string, array<int, IssueData>>
|
|
|
|
*/
|
|
|
|
private $existing_issues = [];
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
/**
|
|
|
|
* @param bool $debug_output
|
|
|
|
*/
|
2018-06-04 00:31:43 +02:00
|
|
|
public function __construct(
|
|
|
|
Config $config,
|
|
|
|
FileProvider $file_provider,
|
|
|
|
FileStorageProvider $file_storage_provider,
|
|
|
|
$debug_output
|
|
|
|
) {
|
2018-02-04 00:52:35 +01:00
|
|
|
$this->config = $config;
|
|
|
|
$this->file_provider = $file_provider;
|
2018-06-04 00:31:43 +02:00
|
|
|
$this->file_storage_provider = $file_storage_provider;
|
2018-02-04 00:52:35 +01:00
|
|
|
$this->debug_output = $debug_output;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array<string, string> $files_to_analyze
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function addFiles(array $files_to_analyze)
|
|
|
|
{
|
|
|
|
$this->files_to_analyze += $files_to_analyze;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $file_path
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function canReportIssues($file_path)
|
|
|
|
{
|
|
|
|
return isset($this->files_to_analyze[$file_path]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $file_path
|
|
|
|
* @param array<string, string> $filetype_checkers
|
|
|
|
*
|
|
|
|
* @return FileChecker
|
2018-02-12 02:56:34 +01:00
|
|
|
*
|
|
|
|
* @psalm-suppress MixedOperand
|
2018-02-04 00:52:35 +01:00
|
|
|
*/
|
|
|
|
private function getFileChecker(ProjectChecker $project_checker, $file_path, array $filetype_checkers)
|
|
|
|
{
|
|
|
|
$extension = (string)pathinfo($file_path)['extension'];
|
|
|
|
|
|
|
|
$file_name = $this->config->shortenFileName($file_path);
|
|
|
|
|
|
|
|
if (isset($filetype_checkers[$extension])) {
|
|
|
|
/** @var FileChecker */
|
|
|
|
$file_checker = new $filetype_checkers[$extension]($project_checker, $file_path, $file_name);
|
|
|
|
} else {
|
|
|
|
$file_checker = new FileChecker($project_checker, $file_path, $file_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->debug_output) {
|
2018-04-13 01:42:24 +02:00
|
|
|
echo 'Getting ' . $file_path . "\n";
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $file_checker;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param ProjectChecker $project_checker
|
|
|
|
* @param int $pool_size
|
|
|
|
* @param bool $alter_code
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function analyzeFiles(ProjectChecker $project_checker, $pool_size, $alter_code)
|
|
|
|
{
|
2018-09-28 22:18:45 +02:00
|
|
|
$this->loadCachedResults($project_checker);
|
2018-09-26 22:33:59 +02:00
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
$filetype_checkers = $this->config->getFiletypeCheckers();
|
|
|
|
|
|
|
|
$analysis_worker =
|
|
|
|
/**
|
2018-02-27 17:39:26 +01:00
|
|
|
* @param int $_
|
2018-02-04 00:52:35 +01:00
|
|
|
* @param string $file_path
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-02-27 17:39:26 +01:00
|
|
|
function ($_, $file_path) use ($project_checker, $filetype_checkers) {
|
2018-02-04 00:52:35 +01:00
|
|
|
$file_checker = $this->getFileChecker($project_checker, $file_path, $filetype_checkers);
|
|
|
|
|
|
|
|
if ($this->debug_output) {
|
2018-04-13 01:42:24 +02:00
|
|
|
echo 'Analyzing ' . $file_checker->getFilePath() . "\n";
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$file_checker->analyze(null);
|
|
|
|
};
|
|
|
|
|
|
|
|
if ($pool_size > 1 && count($this->files_to_analyze) > $pool_size) {
|
|
|
|
$process_file_paths = [];
|
|
|
|
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
foreach ($this->files_to_analyze as $file_path) {
|
|
|
|
$process_file_paths[$i % $pool_size][] = $file_path;
|
|
|
|
++$i;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run analysis one file at a time, splitting the set of
|
|
|
|
// files up among a given number of child processes.
|
|
|
|
$pool = new \Psalm\Fork\Pool(
|
|
|
|
$process_file_paths,
|
|
|
|
/** @return void */
|
|
|
|
function () {
|
|
|
|
},
|
|
|
|
$analysis_worker,
|
2018-09-26 22:33:59 +02:00
|
|
|
/** @return WorkerData */
|
2018-02-04 00:52:35 +01:00
|
|
|
function () {
|
2018-09-28 22:18:45 +02:00
|
|
|
$project_checker = ProjectChecker::getInstance();
|
|
|
|
$analyzer = $project_checker->codebase->analyzer;
|
|
|
|
$file_reference_provider = $project_checker->file_reference_provider;
|
2018-09-26 00:37:24 +02:00
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
return [
|
|
|
|
'issues' => IssueBuffer::getIssuesData(),
|
2018-09-28 22:18:45 +02:00
|
|
|
'file_references' => $file_reference_provider->getAllFileReferences(),
|
|
|
|
'method_references' => $file_reference_provider->getClassMethodReferences(),
|
2018-09-26 00:37:24 +02:00
|
|
|
'mixed_counts' => $analyzer->getMixedCounts(),
|
|
|
|
'correct_methods' => $analyzer->getCorrectMethods(),
|
2018-02-04 00:52:35 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
// Wait for all tasks to complete and collect the results.
|
|
|
|
/**
|
2018-09-26 22:33:59 +02:00
|
|
|
* @var array<int, WorkerData>
|
2018-02-04 00:52:35 +01:00
|
|
|
*/
|
|
|
|
$forked_pool_data = $pool->wait();
|
|
|
|
|
|
|
|
foreach ($forked_pool_data as $pool_data) {
|
|
|
|
IssueBuffer::addIssues($pool_data['issues']);
|
2018-09-26 22:33:59 +02:00
|
|
|
|
|
|
|
foreach ($pool_data['issues'] as $issue_data) {
|
2018-09-28 22:18:45 +02:00
|
|
|
$project_checker->file_reference_provider->addIssue($issue_data['file_path'], $issue_data);
|
2018-09-26 22:33:59 +02:00
|
|
|
}
|
|
|
|
|
2018-09-28 22:18:45 +02:00
|
|
|
$project_checker->file_reference_provider->addFileReferences($pool_data['file_references']);
|
|
|
|
$project_checker->file_reference_provider->addClassMethodReferences($pool_data['method_references']);
|
2018-09-26 00:37:24 +02:00
|
|
|
$this->correct_methods = array_merge($pool_data['correct_methods'], $this->correct_methods);
|
2018-02-04 00:52:35 +01:00
|
|
|
|
|
|
|
foreach ($pool_data['mixed_counts'] as $file_path => list($mixed_count, $nonmixed_count)) {
|
|
|
|
if (!isset($this->mixed_counts[$file_path])) {
|
|
|
|
$this->mixed_counts[$file_path] = [$mixed_count, $nonmixed_count];
|
|
|
|
} else {
|
|
|
|
$this->mixed_counts[$file_path][0] += $mixed_count;
|
|
|
|
$this->mixed_counts[$file_path][1] += $nonmixed_count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Tell the caller that the fork pool encountered an error in another PR?
|
|
|
|
// $did_fork_pool_have_error = $pool->didHaveError();
|
|
|
|
} else {
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
foreach ($this->files_to_analyze as $file_path => $_) {
|
|
|
|
$analysis_worker($i, $file_path);
|
|
|
|
++$i;
|
|
|
|
}
|
2018-09-26 22:33:59 +02:00
|
|
|
|
|
|
|
foreach (IssueBuffer::getIssuesData() as $issue_data) {
|
2018-09-28 22:18:45 +02:00
|
|
|
$project_checker->file_reference_provider->addIssue($issue_data['file_path'], $issue_data);
|
2018-09-26 22:33:59 +02:00
|
|
|
}
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
2018-09-30 05:51:06 +02:00
|
|
|
if ($project_checker->cache_results) {
|
|
|
|
$project_checker->file_reference_provider->setCorrectMethods($this->correct_methods);
|
|
|
|
$project_checker->codebase->statements_provider->resetDiffs();
|
2018-09-26 00:37:24 +02:00
|
|
|
}
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
if ($alter_code) {
|
|
|
|
foreach ($this->files_to_analyze as $file_path) {
|
|
|
|
$this->updateFile($file_path, $project_checker->dry_run, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-28 22:18:45 +02:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function loadCachedResults(ProjectChecker $project_checker)
|
|
|
|
{
|
|
|
|
if ($project_checker->cache_results
|
|
|
|
&& !$project_checker->codebase->collect_references
|
|
|
|
) {
|
2018-09-30 05:51:06 +02:00
|
|
|
$this->correct_methods = $project_checker->file_reference_provider->getCorrectMethods(
|
|
|
|
$this->config
|
|
|
|
);
|
2018-09-28 22:18:45 +02:00
|
|
|
|
|
|
|
$this->existing_issues = $project_checker->file_reference_provider->getExistingIssues();
|
|
|
|
}
|
|
|
|
|
|
|
|
$statements_provider = $project_checker->codebase->statements_provider;
|
|
|
|
|
|
|
|
$unchanged_members = $statements_provider->getUnchangedMembers();
|
|
|
|
$changed_members = $statements_provider->getChangedMembers();
|
|
|
|
|
|
|
|
$diff_map = $statements_provider->getDiffMap();
|
|
|
|
|
|
|
|
$method_map = [];
|
|
|
|
|
|
|
|
foreach ($this->correct_methods as $file_path => $correct_methods) {
|
|
|
|
foreach ($correct_methods as $correct_method_id => $_) {
|
|
|
|
$method_map[$correct_method_id] = $file_path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$all_referencing_methods = $project_checker->file_reference_provider->getMethodsReferencing();
|
|
|
|
|
|
|
|
$newly_invalidated_methods = [];
|
|
|
|
|
|
|
|
foreach ($changed_members as $file_changed_members) {
|
|
|
|
foreach ($file_changed_members as $member_id => $_) {
|
|
|
|
if (isset($all_referencing_methods[$member_id])) {
|
|
|
|
$newly_invalidated_methods = array_merge($all_referencing_methods[$member_id]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($this->correct_methods as $file_path => $correct_methods) {
|
|
|
|
foreach ($correct_methods as $correct_method_id => $_) {
|
|
|
|
if (isset($newly_invalidated_methods[$correct_method_id])) {
|
|
|
|
unset($this->correct_methods[$file_path][$correct_method_id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($unchanged_members[$file_path])
|
|
|
|
&& !isset($unchanged_members[$file_path][$correct_method_id])
|
|
|
|
) {
|
|
|
|
unset($this->correct_methods[$file_path][$correct_method_id]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($this->existing_issues as $file_path => &$file_issues) {
|
2018-09-30 05:51:06 +02:00
|
|
|
if (!isset($this->correct_methods[$file_path])) {
|
2018-09-28 22:18:45 +02:00
|
|
|
unset($this->existing_issues[$file_path]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-09-30 05:51:06 +02:00
|
|
|
$file_diff_map = $diff_map[$file_path] ?? [];
|
2018-09-28 22:18:45 +02:00
|
|
|
|
|
|
|
if (!$file_diff_map) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$first_diff_offset = $file_diff_map[0][0];
|
|
|
|
$last_diff_offset = $file_diff_map[count($file_diff_map) - 1][1];
|
|
|
|
|
|
|
|
foreach ($file_issues as $i => &$issue_data) {
|
|
|
|
if ($issue_data['to'] < $first_diff_offset || $issue_data['from'] > $last_diff_offset) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($file_diff_map as list($from, $to, $file_offset, $line_offset)) {
|
|
|
|
if ($issue_data['from'] >= $from && $issue_data['from'] <= $to) {
|
|
|
|
if ($file_offset !== 0) {
|
|
|
|
$issue_data['from'] += $file_offset;
|
|
|
|
$issue_data['to'] += $file_offset;
|
|
|
|
$issue_data['snippet_from'] += $file_offset;
|
|
|
|
$issue_data['snippet_to'] += $file_offset;
|
|
|
|
$issue_data['line_from'] += $line_offset;
|
|
|
|
$issue_data['line_to'] += $line_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
continue 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-30 05:51:06 +02:00
|
|
|
|
|
|
|
foreach ($this->files_to_analyze as $file_path) {
|
|
|
|
$project_checker->file_reference_provider->clearExistingIssuesForFile($file_path);
|
|
|
|
}
|
2018-09-28 22:18:45 +02:00
|
|
|
}
|
|
|
|
|
2018-04-13 23:26:07 +02:00
|
|
|
/**
|
|
|
|
* @param string $file_path
|
|
|
|
*
|
|
|
|
* @return array{0:int, 1:int}
|
|
|
|
*/
|
|
|
|
public function getMixedCountsForFile($file_path)
|
|
|
|
{
|
|
|
|
if (!isset($this->mixed_counts[$file_path])) {
|
|
|
|
$this->mixed_counts[$file_path] = [0, 0];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->mixed_counts[$file_path];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $file_path
|
|
|
|
* @param array{0:int, 1:int} $mixed_counts
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setMixedCountsForFile($file_path, array $mixed_counts)
|
|
|
|
{
|
|
|
|
$this->mixed_counts[$file_path] = $mixed_counts;
|
|
|
|
}
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
/**
|
|
|
|
* @param string $file_path
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function incrementMixedCount($file_path)
|
|
|
|
{
|
|
|
|
if (!$this->count_mixed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($this->mixed_counts[$file_path])) {
|
|
|
|
$this->mixed_counts[$file_path] = [0, 0];
|
|
|
|
}
|
|
|
|
|
|
|
|
++$this->mixed_counts[$file_path][0];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $file_path
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function incrementNonMixedCount($file_path)
|
|
|
|
{
|
|
|
|
if (!$this->count_mixed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($this->mixed_counts[$file_path])) {
|
|
|
|
$this->mixed_counts[$file_path] = [0, 0];
|
|
|
|
}
|
|
|
|
|
|
|
|
++$this->mixed_counts[$file_path][1];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array<string, array{0: int, 1: int}>
|
|
|
|
*/
|
|
|
|
public function getMixedCounts()
|
|
|
|
{
|
|
|
|
return $this->mixed_counts;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-06-04 00:34:25 +02:00
|
|
|
* @return string
|
2018-02-04 00:52:35 +01:00
|
|
|
*/
|
2018-06-04 00:31:43 +02:00
|
|
|
public function getTypeInferenceSummary()
|
2018-02-04 00:52:35 +01:00
|
|
|
{
|
|
|
|
$mixed_count = 0;
|
|
|
|
$nonmixed_count = 0;
|
|
|
|
|
2018-06-04 00:31:43 +02:00
|
|
|
$all_deep_scanned_files = [];
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
foreach ($this->files_to_analyze as $file_path => $_) {
|
2018-06-04 00:31:43 +02:00
|
|
|
$all_deep_scanned_files[$file_path] = true;
|
|
|
|
|
|
|
|
foreach ($this->file_storage_provider->get($file_path)->required_file_paths as $required_file_path) {
|
|
|
|
$all_deep_scanned_files[$required_file_path] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($all_deep_scanned_files as $file_path => $_) {
|
2018-08-24 23:46:13 +02:00
|
|
|
if (!$this->config->reportTypeStatsForFile($file_path)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
if (isset($this->mixed_counts[$file_path])) {
|
|
|
|
list($path_mixed_count, $path_nonmixed_count) = $this->mixed_counts[$file_path];
|
|
|
|
$mixed_count += $path_mixed_count;
|
|
|
|
$nonmixed_count += $path_nonmixed_count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$total = $mixed_count + $nonmixed_count;
|
|
|
|
|
2018-06-04 00:31:43 +02:00
|
|
|
$total_files = count($all_deep_scanned_files);
|
|
|
|
|
|
|
|
if (!$total_files) {
|
|
|
|
return 'No files analyzed';
|
|
|
|
}
|
|
|
|
|
2018-06-27 19:41:50 +02:00
|
|
|
if (!$total) {
|
|
|
|
return 'Psalm was unable to infer types in any of '
|
|
|
|
. $total_files . ' file' . ($total_files > 1 ? 's' : '');
|
|
|
|
}
|
|
|
|
|
2018-06-04 00:34:25 +02:00
|
|
|
return 'Psalm was able to infer types for ' . number_format(100 * $nonmixed_count / $total, 3) . '%'
|
2018-06-04 00:31:43 +02:00
|
|
|
. ' of analyzed code (' . $total_files . ' file' . ($total_files > 1 ? 's' : '') . ')';
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getNonMixedStats()
|
|
|
|
{
|
|
|
|
$stats = '';
|
|
|
|
|
2018-06-04 00:31:43 +02:00
|
|
|
$all_deep_scanned_files = [];
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
foreach ($this->files_to_analyze as $file_path => $_) {
|
2018-06-04 00:31:43 +02:00
|
|
|
$all_deep_scanned_files[$file_path] = true;
|
|
|
|
|
2018-08-24 23:46:13 +02:00
|
|
|
if (!$this->config->reportTypeStatsForFile($file_path)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-06-04 00:31:43 +02:00
|
|
|
foreach ($this->file_storage_provider->get($file_path)->required_file_paths as $required_file_path) {
|
|
|
|
$all_deep_scanned_files[$required_file_path] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($all_deep_scanned_files as $file_path => $_) {
|
2018-02-04 00:52:35 +01:00
|
|
|
if (isset($this->mixed_counts[$file_path])) {
|
|
|
|
list($path_mixed_count, $path_nonmixed_count) = $this->mixed_counts[$file_path];
|
|
|
|
$stats .= number_format(100 * $path_nonmixed_count / ($path_mixed_count + $path_nonmixed_count), 0)
|
|
|
|
. '% ' . $this->config->shortenFileName($file_path)
|
2018-04-13 01:42:24 +02:00
|
|
|
. ' (' . $path_mixed_count . ' mixed)' . "\n";
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $stats;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function disableMixedCounts()
|
|
|
|
{
|
|
|
|
$this->count_mixed = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function enableMixedCounts()
|
|
|
|
{
|
|
|
|
$this->count_mixed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $file_path
|
|
|
|
* @param bool $dry_run
|
|
|
|
* @param bool $output_changes to console
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function updateFile($file_path, $dry_run, $output_changes = false)
|
|
|
|
{
|
|
|
|
$new_return_type_manipulations = FunctionDocblockManipulator::getManipulationsForFile($file_path);
|
|
|
|
|
|
|
|
$other_manipulations = FileManipulationBuffer::getForFile($file_path);
|
|
|
|
|
|
|
|
$file_manipulations = array_merge($new_return_type_manipulations, $other_manipulations);
|
|
|
|
|
|
|
|
usort(
|
|
|
|
$file_manipulations,
|
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
function (FileManipulation $a, FileManipulation $b) {
|
|
|
|
if ($a->start === $b->start) {
|
|
|
|
if ($b->end === $a->end) {
|
|
|
|
return $b->insertion_text > $a->insertion_text ? 1 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $b->end > $a->end ? 1 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $b->start > $a->start ? 1 : -1;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$docblock_update_count = count($file_manipulations);
|
|
|
|
|
|
|
|
$existing_contents = $this->file_provider->getContents($file_path);
|
|
|
|
|
|
|
|
foreach ($file_manipulations as $manipulation) {
|
|
|
|
$existing_contents
|
|
|
|
= substr($existing_contents, 0, $manipulation->start)
|
|
|
|
. $manipulation->insertion_text
|
|
|
|
. substr($existing_contents, $manipulation->end);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($docblock_update_count) {
|
|
|
|
if ($dry_run) {
|
2018-04-13 01:42:24 +02:00
|
|
|
echo $file_path . ':' . "\n";
|
2018-02-04 00:52:35 +01:00
|
|
|
|
|
|
|
$differ = new \PhpCsFixer\Diff\v2_0\Differ(
|
|
|
|
new \PhpCsFixer\Diff\GeckoPackages\DiffOutputBuilder\UnifiedDiffOutputBuilder([
|
|
|
|
'fromFile' => 'Original',
|
|
|
|
'toFile' => 'New',
|
|
|
|
])
|
|
|
|
);
|
|
|
|
|
|
|
|
echo (string) $differ->diff($this->file_provider->getContents($file_path), $existing_contents);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($output_changes) {
|
2018-04-13 01:42:24 +02:00
|
|
|
echo 'Altering ' . $file_path . "\n";
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->file_provider->setContents($file_path, $existing_contents);
|
|
|
|
}
|
|
|
|
}
|
2018-09-26 00:37:24 +02:00
|
|
|
|
2018-09-26 22:33:59 +02:00
|
|
|
/**
|
|
|
|
* @param string $file_path
|
|
|
|
* @param int $start
|
|
|
|
* @param int $end
|
|
|
|
*
|
|
|
|
* @return array<int, IssueData>
|
|
|
|
*/
|
|
|
|
public function getExistingIssuesForFile($file_path, $start, $end)
|
|
|
|
{
|
|
|
|
if (!isset($this->existing_issues[$file_path])) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$applicable_issues = [];
|
|
|
|
|
|
|
|
foreach ($this->existing_issues[$file_path] as $issue_data) {
|
|
|
|
if ($issue_data['from'] >= $start && $issue_data['from'] <= $end) {
|
|
|
|
$applicable_issues[] = $issue_data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $applicable_issues;
|
|
|
|
}
|
|
|
|
|
2018-09-26 00:37:24 +02:00
|
|
|
/**
|
|
|
|
* @return array<string, array<string, bool>>
|
|
|
|
*/
|
|
|
|
public function getCorrectMethods()
|
|
|
|
{
|
|
|
|
return $this->correct_methods;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $file_path
|
|
|
|
* @param string $method_id
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setCorrectMethod($file_path, $method_id)
|
|
|
|
{
|
|
|
|
$this->correct_methods[$file_path][$method_id] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $file_path
|
|
|
|
* @param string $method_id
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isMethodCorrect($file_path, $method_id)
|
|
|
|
{
|
|
|
|
return isset($this->correct_methods[$file_path][$method_id]);
|
|
|
|
}
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|