rector/packages/FileFormatter/ValueObject/Indent.php
Abdul Malik Ikhsan fc10fce13d
[Rectify] [Php81] Enable Rectify on Readonly Property only (#1384)
* re-enable rectify and ecs

* [Rectify] [Php81] Enable Rectify on Readonly Property only

* comment

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

Co-authored-by: GitHub Action <action@github.com>
2021-12-04 15:32:52 +03:00

129 lines
3.1 KiB
PHP

<?php
declare(strict_types=1);
namespace Rector\FileFormatter\ValueObject;
use Nette\Utils\Strings;
use Rector\FileFormatter\Exception\InvalidIndentSizeException;
use Rector\FileFormatter\Exception\InvalidIndentStringException;
use Rector\FileFormatter\Exception\InvalidIndentStyleException;
use Rector\FileFormatter\Exception\ParseIndentException;
use Stringable;
/**
* @see \Rector\Tests\FileFormatter\ValueObject\IndentTest
*/
final class Indent implements Stringable
{
/**
* @var array<string, string>
*/
public const CHARACTERS = [
self::SPACE => ' ',
self::TAB => "\t",
];
/**
* @var string
*/
private const SPACE = 'space';
/**
* @var string
*/
private const TAB = 'tab';
/**
* @see https://regex101.com/r/A2XiaF/1
* @var string
*/
private const VALID_INDENT_REGEX = '#^( *|\t+)$#';
/**
* @var int
*/
private const MINIMUM_SIZE = 1;
/**
* @see https://regex101.com/r/3HFEjX/1
* @var string
*/
private const PARSE_INDENT_REGEX = '/^(?P<indent>( +|\t+)).*/m';
private function __construct(
private readonly string $string
) {
}
public function __toString(): string
{
return $this->string;
}
public static function fromString(string $content): self
{
$match = Strings::match($content, self::VALID_INDENT_REGEX);
if ($match === null) {
throw InvalidIndentStringException::fromString($content);
}
return new self($content);
}
public static function createSpaceWithSize(int $size): self
{
return self::fromSizeAndStyle($size, self::SPACE);
}
public static function createTab(): self
{
return self::fromSizeAndStyle(1, self::TAB);
}
public static function fromSizeAndStyle(int $size, string $style): self
{
if ($size < self::MINIMUM_SIZE) {
throw InvalidIndentSizeException::fromSizeAndMinimumSize($size, self::MINIMUM_SIZE);
}
if (! array_key_exists($style, self::CHARACTERS)) {
throw InvalidIndentStyleException::fromStyleAndAllowedStyles($style, array_keys(self::CHARACTERS));
}
$value = str_repeat(self::CHARACTERS[$style], $size);
return new self($value);
}
public static function fromContent(string $content): self
{
$match = Strings::match($content, self::PARSE_INDENT_REGEX);
if (isset($match['indent'])) {
return self::fromString($match['indent']);
}
throw ParseIndentException::fromString($content);
}
public function getIndentSize(): int
{
return strlen($this->string);
}
public function getIndentStyle(): string
{
return $this->startsWithSpace() ? self::SPACE : self::TAB;
}
public function getIndentStyleCharacter(): string
{
return $this->startsWithSpace() ? self::CHARACTERS[self::SPACE] : self::CHARACTERS[self::TAB];
}
private function startsWithSpace(): bool
{
return \str_starts_with($this->string, ' ');
}
}