123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <?php
- declare(strict_types=1);
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Fixer\Alias;
- use PhpCsFixer\AbstractFunctionReferenceFixer;
- use PhpCsFixer\Fixer\ConfigurableFixerInterface;
- use PhpCsFixer\FixerConfiguration\FixerConfigurationResolver;
- use PhpCsFixer\FixerConfiguration\FixerConfigurationResolverInterface;
- use PhpCsFixer\FixerConfiguration\FixerOptionBuilder;
- use PhpCsFixer\FixerDefinition\CodeSample;
- use PhpCsFixer\FixerDefinition\FixerDefinition;
- use PhpCsFixer\FixerDefinition\FixerDefinitionInterface;
- use PhpCsFixer\Tokenizer\Analyzer\ArgumentsAnalyzer;
- use PhpCsFixer\Tokenizer\Token;
- use PhpCsFixer\Tokenizer\Tokens;
- use Symfony\Component\OptionsResolver\Exception\InvalidOptionsException;
- /**
- * @author Vladimir Reznichenko <kalessil@gmail.com>
- */
- final class RandomApiMigrationFixer extends AbstractFunctionReferenceFixer implements ConfigurableFixerInterface
- {
- /**
- * @var array<string, array<int, int>>
- */
- private static array $argumentCounts = [
- 'getrandmax' => [0],
- 'mt_rand' => [1, 2],
- 'rand' => [0, 2],
- 'srand' => [0, 1],
- 'random_int' => [0, 2],
- ];
- public function configure(array $configuration): void
- {
- parent::configure($configuration);
- }
- public function getDefinition(): FixerDefinitionInterface
- {
- return new FixerDefinition(
- 'Replaces `rand`, `srand`, `getrandmax` functions calls with their `mt_*` analogs or `random_int`.',
- [
- new CodeSample("<?php\n\$a = getrandmax();\n\$a = rand(\$b, \$c);\n\$a = srand();\n"),
- new CodeSample(
- "<?php\n\$a = getrandmax();\n\$a = rand(\$b, \$c);\n\$a = srand();\n",
- ['replacements' => ['getrandmax' => 'mt_getrandmax']]
- ),
- new CodeSample(
- "<?php \$a = rand(\$b, \$c);\n",
- ['replacements' => ['rand' => 'random_int']]
- ),
- ],
- null,
- 'Risky when the configured functions are overridden. Or when relying on the seed based generating of the numbers.'
- );
- }
- protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
- {
- $argumentsAnalyzer = new ArgumentsAnalyzer();
- foreach ($this->configuration['replacements'] as $functionIdentity => $functionReplacement) {
- if ($functionIdentity === $functionReplacement) {
- continue;
- }
- $currIndex = 0;
- do {
- // try getting function reference and translate boundaries for humans
- $boundaries = $this->find($functionIdentity, $tokens, $currIndex, $tokens->count() - 1);
- if (null === $boundaries) {
- // next function search, as current one not found
- continue 2;
- }
- [$functionName, $openParenthesis, $closeParenthesis] = $boundaries;
- $count = $argumentsAnalyzer->countArguments($tokens, $openParenthesis, $closeParenthesis);
- if (!\in_array($count, self::$argumentCounts[$functionIdentity], true)) {
- continue 2;
- }
- // analysing cursor shift, so nested calls could be processed
- $currIndex = $openParenthesis;
- $tokens[$functionName] = new Token([T_STRING, $functionReplacement]);
- if (0 === $count && 'random_int' === $functionReplacement) {
- $tokens->insertAt($currIndex + 1, [
- new Token([T_LNUMBER, '0']),
- new Token(','),
- new Token([T_WHITESPACE, ' ']),
- new Token([T_STRING, 'getrandmax']),
- new Token('('),
- new Token(')'),
- ]);
- $currIndex += 6;
- }
- } while (null !== $currIndex);
- }
- }
- protected function createConfigurationDefinition(): FixerConfigurationResolverInterface
- {
- return new FixerConfigurationResolver([
- (new FixerOptionBuilder('replacements', 'Mapping between replaced functions with the new ones.'))
- ->setAllowedTypes(['array'])
- ->setAllowedValues([static function (array $value): bool {
- foreach ($value as $functionName => $replacement) {
- if (!\array_key_exists($functionName, self::$argumentCounts)) {
- throw new InvalidOptionsException(sprintf(
- 'Function "%s" is not handled by the fixer.',
- $functionName
- ));
- }
- if (!\is_string($replacement)) {
- throw new InvalidOptionsException(sprintf(
- 'Replacement for function "%s" must be a string, "%s" given.',
- $functionName,
- get_debug_type($replacement)
- ));
- }
- }
- return true;
- }])
- ->setDefault([
- 'getrandmax' => 'mt_getrandmax',
- 'rand' => 'mt_rand', // @TODO change to `random_int` as default on 4.0
- 'srand' => 'mt_srand',
- ])
- ->getOption(),
- ]);
- }
- }
|