XmlWritingVisitor   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 34
Duplicated Lines 0 %

Importance

Changes 4
Bugs 0 Features 0
Metric Value
wmc 5
eloc 11
c 4
b 0
f 0
dl 0
loc 34
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A visitAfter() 0 3 1
A __construct() 0 4 1
A visitBefore() 0 10 3
1
<?php
2
3
/**
4
 * This file is part of byrokrat\autogiro.
5
 *
6
 * byrokrat\autogiro is free software: you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License as published
8
 * by the Free Software Foundation, either version 3 of the License, or
9
 * (at your option) any later version.
10
 *
11
 * byrokrat\autogiro is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with byrokrat\autogiro. If not, see <http://www.gnu.org/licenses/>.
18
 *
19
 * Copyright 2016-21 Hannes Forsgård
20
 */
21
22
declare(strict_types=1);
23
24
namespace byrokrat\autogiro\Xml;
25
26
use byrokrat\autogiro\Tree\Node;
27
use byrokrat\autogiro\Visitor\VisitorInterface;
28
29
/**
30
 * Transform node tree into xml
31
 */
32
final class XmlWritingVisitor implements VisitorInterface
33
{
34
    /**
35
     * @var \XMLWriter
36
     */
37
    private $xmlWriter;
38
39
    /**
40
     * @var Stringifier
41
     */
42
    private $stringifier;
43
44
    public function __construct(\XMLWriter $xmlWriter, Stringifier $stringifier)
45
    {
46
        $this->xmlWriter = $xmlWriter;
47
        $this->stringifier = $stringifier;
48
    }
49
50
    public function visitBefore(Node $node): void
51
    {
52
        $this->xmlWriter->startElement($node->getName());
53
54
        if ($node->getName() != $node->getType()) {
55
            $this->xmlWriter->writeAttribute('type', $node->getType());
56
        }
57
58
        if ($node->getValue()) {
59
            $this->xmlWriter->text($this->stringifier->stringify($node->getValue()));
60
        }
61
    }
62
63
    public function visitAfter(Node $node): void
64
    {
65
        $this->xmlWriter->endElement();
66
    }
67
}
68