t-regx/T-Regx

View on GitHub
src/CleanRegex/Internal/Match/Details/NumericDetail.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace TRegx\CleanRegex\Internal\Match\Details;

use TRegx\CleanRegex\Internal\Match\Numeral\IntegerBase;
use TRegx\CleanRegex\Internal\Match\Numeral\MatchExceptions;
use TRegx\CleanRegex\Internal\Model\Entry;
use TRegx\CleanRegex\Internal\Numeral\Base;
use TRegx\CleanRegex\Internal\Numeral\NumeralFormatException;
use TRegx\CleanRegex\Internal\Numeral\NumeralOverflowException;
use TRegx\CleanRegex\Internal\Numeral\StringNumeral;

class NumericDetail
{
    /** @var Entry */
    private $entry;

    public function __construct(Entry $entry)
    {
        $this->entry = $entry;
    }

    public function asInteger(Base $base): int
    {
        return $this->entryInBase(new IntegerBase($base, new MatchExceptions()));
    }

    private function entryInBase(IntegerBase $integerBase): int
    {
        return $integerBase->integer($this->entry->text());
    }

    public function isInteger(Base $base): bool
    {
        $numeral = new StringNumeral($this->entry->text());
        try {
            $numeral->asInt($base);
            return true;
        } catch (NumeralFormatException | NumeralOverflowException $exception) {
            return false;
        }
    }
}