climbx/Dotenv

View on GitHub
src/Parser/ValueParser.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

namespace Climbx\Dotenv\Parser;

use Climbx\Dotenv\Exception\ParserException;

class ValueParser
{
    /**
     * @var ValueParserState
     */
    private ValueParserState $state;

    /**
     * @var ValueStepParserInterface[]
     */
    private array $stepParsers;

    public function __construct()
    {
        $this->state = new ValueParserState();
        $this->stepParsers[ValueParserState::STEP_START] = new ValueStepStartParser();
        $this->stepParsers[ValueParserState::STEP_MIDDLE] = new ValueStepMiddleParser();
        $this->stepParsers[ValueParserState::STEP_END] = new ValueStepEndParser();
    }

    /**
     * @param Line  $line
     * @param array $data
     *
     * @return string
     * @throws ParserException
     */
    public function getValue(Line $line, array $data): string
    {
        if ($line->isValueDataEmpty()) {
            return '';
        }

        $charsLength = strlen($line->getValueData());
        $chars = str_split($line->getValueData());
        $this->state->initialize($line->getNumber(), $charsLength, $data);

        foreach ($chars as $char) {
            if ($this->state->isToExit()) {
                break;
            }

            $this->state->setCurrentChar($char);
            $this->stepParsers[$this->state->getStep()]->parseChar($this->state);
        }

        return $this->state->getValue();
    }
}