Passed
Pull Request — latest (#549)
by Colin
03:56 queued 01:59
created

PunctuationParser::parse()   B

Complexity

Conditions 8
Paths 6

Size

Total Lines 38
Code Lines 24

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 24
CRAP Score 8

Importance

Changes 0
Metric Value
eloc 24
c 0
b 0
f 0
dl 0
loc 38
ccs 24
cts 24
cp 1
rs 8.4444
cc 8
nc 6
nop 2
crap 8
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the league/commonmark package.
7
 *
8
 * (c) Colin O'Dell <[email protected]>
9
 *
10
 * Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js)
11
 *  - (c) John MacFarlane
12
 *
13
 * For the full copyright and license information, please view the LICENSE
14
 * file that was distributed with this source code.
15
 */
16
17
namespace League\CommonMark\Extension\SmartPunct;
18
19
use League\CommonMark\Node\Inline\Text;
20
use League\CommonMark\Parser\Inline\InlineParserInterface;
21
use League\CommonMark\Parser\Inline\InlineParserMatch;
22
use League\CommonMark\Parser\InlineParserContext;
23
24
final class PunctuationParser implements InlineParserInterface
25
{
26 51
    public function getMatchDefinition(): InlineParserMatch
27
    {
28 51
        return InlineParserMatch::oneOf('-', '.');
29
    }
30
31 36
    public function parse(string $match, InlineParserContext $inlineContext): bool
32
    {
33 36
        $cursor = $inlineContext->getCursor();
34
35
        // Ellipses
36 36
        if ($match === '.' && $matched = $cursor->match('/^\\.( ?\\.)\\1/')) {
0 ignored issues
show
Unused Code introduced by
The assignment to $matched is dead and can be removed.
Loading history...
37 3
            $inlineContext->getContainer()->appendChild(new Text('…'));
38
39 3
            return true;
40
        }
41
42
        // Em/En-dashes
43 36
        if ($match === '-' && $matched = $cursor->match('/^(?<!-)(-{2,})/')) {
44 6
            $count   = \strlen($matched);
45 6
            $enDash  = '–';
46 6
            $enCount = 0;
47 6
            $emDash  = '—';
48 6
            $emCount = 0;
49 6
            if ($count % 3 === 0) { // If divisible by 3, use all em dashes
50 6
                $emCount = (int) ($count / 3);
51 6
            } elseif ($count % 2 === 0) { // If divisible by 2, use all en dashes
52 6
                $enCount = (int) ($count / 2);
53 3
            } elseif ($count % 3 === 2) { // If 2 extra dashes, use en dash for last 2; em dashes for rest
54 3
                $emCount = (int) (($count - 2) / 3);
55 3
                $enCount = 1;
56
            } else { // Use en dashes for last 4 hyphens; em dashes for rest
57 3
                $emCount = (int) (($count - 4) / 3);
58 3
                $enCount = 2;
59
            }
60
61 6
            $inlineContext->getContainer()->appendChild(new Text(
62 6
                \str_repeat($emDash, $emCount) . \str_repeat($enDash, $enCount)
63
            ));
64
65 6
            return true;
66
        }
67
68 33
        return false;
69
    }
70
}
71