2018-01-07 06:11:23 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $current_dir
|
2018-01-10 01:33:39 +01:00
|
|
|
* @param bool $has_explicit_root
|
2018-01-25 17:32:54 +01:00
|
|
|
* @param string $vendor_dir
|
2018-01-07 06:11:23 +01:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-01-25 17:32:54 +01:00
|
|
|
function requireAutoloaders($current_dir, $has_explicit_root, $vendor_dir)
|
2018-01-07 06:11:23 +01:00
|
|
|
{
|
|
|
|
$autoload_roots = [$current_dir];
|
|
|
|
|
|
|
|
$psalm_dir = dirname(__DIR__);
|
|
|
|
|
|
|
|
if (realpath($psalm_dir) !== realpath($current_dir)) {
|
|
|
|
$autoload_roots[] = $psalm_dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
$autoload_files = [];
|
|
|
|
|
|
|
|
foreach ($autoload_roots as $autoload_root) {
|
|
|
|
$has_autoloader = false;
|
|
|
|
|
|
|
|
$nested_autoload_file = dirname(dirname($autoload_root)) . DIRECTORY_SEPARATOR . 'autoload.php';
|
|
|
|
|
|
|
|
if (file_exists($nested_autoload_file)) {
|
|
|
|
$autoload_files[] = realpath($nested_autoload_file);
|
|
|
|
$has_autoloader = true;
|
|
|
|
}
|
|
|
|
|
2018-01-25 17:32:54 +01:00
|
|
|
$vendor_autoload_file = $autoload_root . DIRECTORY_SEPARATOR . $vendor_dir . DIRECTORY_SEPARATOR . 'autoload.php';
|
2018-01-07 06:11:23 +01:00
|
|
|
|
|
|
|
if (file_exists($vendor_autoload_file)) {
|
|
|
|
$autoload_files[] = realpath($vendor_autoload_file);
|
|
|
|
$has_autoloader = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$has_autoloader) {
|
|
|
|
$error_message = 'Could not find any composer autoloaders in ' . $autoload_root;
|
|
|
|
|
2018-01-10 01:33:39 +01:00
|
|
|
if (!$has_explicit_root) {
|
2018-01-07 06:11:23 +01:00
|
|
|
$error_message .= PHP_EOL . 'Add a --root=[your/project/directory] flag '
|
|
|
|
. 'to specify a particular project to run Psalm on.';
|
|
|
|
}
|
|
|
|
|
|
|
|
die($error_message . PHP_EOL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($autoload_files as $file) {
|
|
|
|
/** @psalm-suppress UnresolvableInclude */
|
|
|
|
require_once $file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-25 17:32:54 +01:00
|
|
|
* @param string $current_dir
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*
|
|
|
|
* @psalm-suppress PossiblyFalseArgument
|
|
|
|
* @psalm-suppress MixedArrayAccess
|
|
|
|
* @psalm-suppress MixedAssignment
|
|
|
|
*/
|
|
|
|
function getVendorDir($current_dir)
|
|
|
|
{
|
|
|
|
$composer_json_path = $current_dir . DIRECTORY_SEPARATOR . 'composer.json'; // this should ideally not be hardcoded
|
|
|
|
|
|
|
|
if (!file_exists($composer_json_path)) {
|
|
|
|
return 'vendor';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$composer_json = json_decode(file_get_contents($composer_json_path), true)) {
|
|
|
|
throw new \UnexpectedValueException('Invalid composer.json at ' . $composer_json_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($composer_json['config']['vendor-dir'])) {
|
|
|
|
return (string) $composer_json['config']['vendor-dir'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'vendor';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string|array|null|false $f_paths
|
2018-01-07 06:11:23 +01:00
|
|
|
*
|
|
|
|
* @return string[]|null
|
|
|
|
*/
|
|
|
|
function getPathsToCheck($f_paths)
|
|
|
|
{
|
|
|
|
global $argv;
|
|
|
|
|
|
|
|
$paths_to_check = [];
|
|
|
|
|
|
|
|
if ($f_paths) {
|
|
|
|
$input_paths = is_array($f_paths) ? $f_paths : [$f_paths];
|
|
|
|
} else {
|
|
|
|
$input_paths = $argv ? $argv : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($input_paths) {
|
|
|
|
$filtered_input_paths = [];
|
|
|
|
|
|
|
|
for ($i = 0; $i < count($input_paths); ++$i) {
|
|
|
|
/** @var string */
|
|
|
|
$input_path = $input_paths[$i];
|
|
|
|
|
|
|
|
if (realpath($input_path) === realpath(dirname(__DIR__) . DIRECTORY_SEPARATOR . 'psalm')
|
|
|
|
|| realpath($input_path) === realpath(dirname(__DIR__) . DIRECTORY_SEPARATOR . 'psalter')
|
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($input_path[0] === '-' && strlen($input_path) === 2) {
|
|
|
|
if ($input_path[1] === 'c' || $input_path[1] === 'f') {
|
|
|
|
++$i;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($input_path[0] === '-' && $input_path[2] === '=') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (substr($input_path, 0, 2) === '--' && strlen($input_path) > 2) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$filtered_input_paths[] = $input_path;
|
|
|
|
}
|
|
|
|
|
2018-01-18 12:23:15 +01:00
|
|
|
if ($filtered_input_paths === ['-']) {
|
2018-01-18 12:48:57 +01:00
|
|
|
$meta = stream_get_meta_data(STDIN);
|
|
|
|
stream_set_blocking(STDIN, false);
|
2018-01-18 14:35:25 +01:00
|
|
|
if ($stdin = fgets(STDIN)) {
|
2018-01-18 12:48:57 +01:00
|
|
|
$filtered_input_paths = preg_split('/\s+/', trim($stdin));
|
|
|
|
}
|
|
|
|
/** @var bool */
|
|
|
|
$blocked = $meta['blocked'];
|
|
|
|
stream_set_blocking(STDIN, $blocked);
|
2018-01-07 06:11:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($filtered_input_paths as $i => $path_to_check) {
|
|
|
|
if ($path_to_check[0] === '-') {
|
|
|
|
die('Invalid usage, expecting psalm [options] [file...]' . PHP_EOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!file_exists($path_to_check)) {
|
|
|
|
die('Cannot locate ' . $path_to_check . PHP_EOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
$path_to_check = realpath($path_to_check);
|
|
|
|
|
|
|
|
if (!$path_to_check) {
|
|
|
|
die('Error getting realpath for file' . PHP_EOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
$paths_to_check[] = $path_to_check;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$paths_to_check) {
|
|
|
|
$paths_to_check = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $paths_to_check;
|
|
|
|
}
|