DelimiterParser   A
last analyzed

Complexity

Total Complexity 23

Size/Duplication

Total Lines 85
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 43
dl 0
loc 85
ccs 44
cts 44
cp 1
rs 10
c 1
b 0
f 0
wmc 23

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A getMatchDefinition() 0 3 1
C determineCanOpenOrClose() 0 19 14
B parse() 0 47 7
1
<?php
2
3
declare(strict_types=1);
4
5
namespace League\CommonMark\Delimiter;
6
7
use League\CommonMark\Delimiter\Processor\DelimiterProcessorCollection;
8
use League\CommonMark\Delimiter\Processor\DelimiterProcessorInterface;
9
use League\CommonMark\Node\Inline\Text;
10
use League\CommonMark\Parser\Inline\InlineParserInterface;
11
use League\CommonMark\Parser\Inline\InlineParserMatch;
12
use League\CommonMark\Parser\InlineParserContext;
13
use League\CommonMark\Util\RegexHelper;
14
15
/**
16
 * Delimiter parsing is implemented as an Inline Parser with the lowest-possible priority
17
 *
18
 * @internal
19
 */
20
final class DelimiterParser implements InlineParserInterface
21
{
22
    private DelimiterProcessorCollection $collection;
23
24 2382
    public function __construct(DelimiterProcessorCollection $collection)
25
    {
26 2382
        $this->collection = $collection;
27
    }
28
29 2370
    public function getMatchDefinition(): InlineParserMatch
30
    {
31 2370
        return InlineParserMatch::oneOf(...$this->collection->getDelimiterCharacters());
32
    }
33
34 632
    public function parse(InlineParserContext $inlineContext): bool
35
    {
36 632
        $character = $inlineContext->getFullMatch();
37 632
        $numDelims = 0;
38 632
        $cursor    = $inlineContext->getCursor();
39 632
        $processor = $this->collection->getDelimiterProcessor($character);
40
41
        \assert($processor !== null); // Delimiter processor should never be null here
42
43 632
        $charBefore = $cursor->peek(-1);
44 632
        if ($charBefore === null) {
45 378
            $charBefore = "\n";
46
        }
47
48 632
        while ($cursor->peek($numDelims) === $character) {
49 632
            ++$numDelims;
50
        }
51
52 632
        if ($numDelims < $processor->getMinLength()) {
53 2
            return false;
54
        }
55
56 632
        $cursor->advanceBy($numDelims);
57
58 632
        $charAfter = $cursor->getCurrentCharacter();
59 632
        if ($charAfter === null) {
60 400
            $charAfter = "\n";
61
        }
62
63 632
        [$canOpen, $canClose] = self::determineCanOpenOrClose($charBefore, $charAfter, $character, $processor);
64
65 632
        if (! ($canOpen || $canClose)) {
66 94
            $inlineContext->getContainer()->appendChild(new Text(\str_repeat($character, $numDelims)));
67
68 94
            return true;
69
        }
70
71 586
        $node = new Text(\str_repeat($character, $numDelims), [
72 586
            'delim' => true,
73 586
        ]);
74 586
        $inlineContext->getContainer()->appendChild($node);
75
76
        // Add entry to stack to this opener
77 586
        $delimiter = new Delimiter($character, $numDelims, $node, $canOpen, $canClose, $inlineContext->getCursor()->getPosition());
78 586
        $inlineContext->getDelimiterStack()->push($delimiter);
79
80 586
        return true;
81
    }
82
83
    /**
84
     * @return bool[]
85
     */
86 632
    private static function determineCanOpenOrClose(string $charBefore, string $charAfter, string $character, DelimiterProcessorInterface $delimiterProcessor): array
87
    {
88 632
        $afterIsWhitespace   = \preg_match(RegexHelper::REGEX_UNICODE_WHITESPACE_CHAR, $charAfter);
89 632
        $afterIsPunctuation  = \preg_match(RegexHelper::REGEX_PUNCTUATION, $charAfter);
90 632
        $beforeIsWhitespace  = \preg_match(RegexHelper::REGEX_UNICODE_WHITESPACE_CHAR, $charBefore);
91 632
        $beforeIsPunctuation = \preg_match(RegexHelper::REGEX_PUNCTUATION, $charBefore);
92
93 632
        $leftFlanking  = ! $afterIsWhitespace && (! $afterIsPunctuation || $beforeIsWhitespace || $beforeIsPunctuation);
94 632
        $rightFlanking = ! $beforeIsWhitespace && (! $beforeIsPunctuation || $afterIsWhitespace || $afterIsPunctuation);
95
96 632
        if ($character === '_') {
97 172
            $canOpen  = $leftFlanking && (! $rightFlanking || $beforeIsPunctuation);
98 172
            $canClose = $rightFlanking && (! $leftFlanking || $afterIsPunctuation);
99
        } else {
100 494
            $canOpen  = $leftFlanking && $character === $delimiterProcessor->getOpeningCharacter();
101 494
            $canClose = $rightFlanking && $character === $delimiterProcessor->getClosingCharacter();
102
        }
103
104 632
        return [$canOpen, $canClose];
105
    }
106
}
107