-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch refs/heads/1.11.x into 1.12.x
- Loading branch information
Showing
4 changed files
with
125 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace PHPStan\Rules\Functions; | ||
|
||
use Nette\Utils\Strings; | ||
use PHPStan\Php\PhpVersion; | ||
use function array_filter; | ||
use function count; | ||
use function max; | ||
use function sprintf; | ||
use function strlen; | ||
use const PREG_SET_ORDER; | ||
|
||
final class PrintfHelper | ||
{ | ||
|
||
public function __construct(private PhpVersion $phpVersion) | ||
{ | ||
} | ||
|
||
public function getPrintfPlaceholdersCount(string $format): int | ||
{ | ||
return $this->getPlaceholdersCount('(?:[bs%s]|l?[cdeEgfFGouxX])', $format); | ||
} | ||
|
||
public function getScanfPlaceholdersCount(string $format): int | ||
{ | ||
return $this->getPlaceholdersCount('(?:[cdDeEfinosuxX%s]|\[[^\]]+\])', $format); | ||
} | ||
|
||
private function getPlaceholdersCount(string $specifiersPattern, string $format): int | ||
{ | ||
$addSpecifier = ''; | ||
if ($this->phpVersion->supportsHhPrintfSpecifier()) { | ||
$addSpecifier .= 'hH'; | ||
} | ||
|
||
$specifiers = sprintf($specifiersPattern, $addSpecifier); | ||
|
||
$pattern = '~(?<before>%*)%(?:(?<position>\d+)\$)?[-+]?(?:[ 0]|(?:\'[^%]))?(?<width>\*)?-?\d*(?:\.(?:\d+|(?<precision>\*))?)?' . $specifiers . '~'; | ||
|
||
$matches = Strings::matchAll($format, $pattern, PREG_SET_ORDER); | ||
|
||
if (count($matches) === 0) { | ||
return 0; | ||
} | ||
|
||
$placeholders = array_filter($matches, static fn (array $match): bool => strlen($match['before']) % 2 === 0); | ||
|
||
if (count($placeholders) === 0) { | ||
return 0; | ||
} | ||
|
||
$maxPositionedNumber = 0; | ||
$maxOrdinaryNumber = 0; | ||
foreach ($placeholders as $placeholder) { | ||
if (isset($placeholder['width']) && $placeholder['width'] !== '') { | ||
$maxOrdinaryNumber++; | ||
} | ||
|
||
if (isset($placeholder['precision']) && $placeholder['precision'] !== '') { | ||
$maxOrdinaryNumber++; | ||
} | ||
|
||
if (isset($placeholder['position']) && $placeholder['position'] !== '') { | ||
$maxPositionedNumber = max((int) $placeholder['position'], $maxPositionedNumber); | ||
} else { | ||
$maxOrdinaryNumber++; | ||
} | ||
} | ||
|
||
return max($maxPositionedNumber, $maxOrdinaryNumber); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters