Completed
Push — master ( a29d2d...4681dd )
by Hannes
10:53 queued 08:08
created

Parser::parse()   A

Complexity

Conditions 3
Paths 4

Size

Total Lines 15
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 15
rs 9.4285
c 0
b 0
f 0
cc 3
eloc 9
nc 4
nop 1
1
<?php
2
/**
3
 * This file is part of byrokrat\autogiro.
4
 *
5
 * byrokrat\autogiro is free software: you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License as published
7
 * by the Free Software Foundation, either version 3 of the License, or
8
 * (at your option) any later version.
9
 *
10
 * byrokrat\autogiro is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with byrokrat\autogiro. If not, see <http://www.gnu.org/licenses/>.
17
 *
18
 * Copyright 2016 Hannes Forsgård
19
 */
20
21
declare(strict_types = 1);
22
23
namespace byrokrat\autogiro;
24
25
use byrokrat\autogiro\Processor\Processor;
26
use byrokrat\autogiro\Tree\FileNode;
27
use byrokrat\autogiro\Exception\ParserException;
28
29
/**
30
 * Facade to Grammar with error handling
31
 */
32
class Parser
33
{
34
    /**
35
     * @var Grammar
36
     */
37
    private $grammar;
38
39
    /**
40
     * @var Processor
41
     */
42
    private $processor;
43
44
    public function __construct(Grammar $grammar, Processor $processor)
45
    {
46
        $this->grammar = $grammar;
47
        $this->processor = $processor;
48
    }
49
50
    /**
51
     * @throws ParserException If parsning fails
52
     */
53
    public function parse(string $content): FileNode
54
    {
55
        try {
56
            $fileNode = $this->grammar->parse($content);
57
            $fileNode->accept($this->processor);
58
        } catch (\Exception $exception) {
59
            throw new ParserException([$exception->getMessage()]);
60
        }
61
62
        if ($this->processor->hasErrors()) {
63
            throw new ParserException($this->processor->getErrors());
64
        }
65
66
        return $fileNode;
67
    }
68
}
69