Completed
Push — master ( ddba2d...d7dfff )
by Eric
14:58
created

AbstractGenericVisitor::leaveScope()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 11
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 11
ccs 7
cts 7
cp 1
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 6
nc 2
nop 0
crap 2
1
<?php
2
3
/*
4
 * This file is part of the Ivory Serializer package.
5
 *
6
 * (c) Eric GELOEN <[email protected]>
7
 *
8
 * For the full copyright and license information, please read the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Ivory\Serializer\Visitor;
13
14
use Ivory\Serializer\Context\ContextInterface;
15
use Ivory\Serializer\Mapping\ClassMetadataInterface;
16
use Ivory\Serializer\Mapping\TypeMetadataInterface;
17
18
/**
19
 * @author GeLo <[email protected]>
20
 */
21
abstract class AbstractGenericVisitor extends AbstractVisitor
22
{
23
    /**
24
     * @var \SplStack
25
     */
26
    private $stack;
27
28
    /**
29
     * @var mixed
30
     */
31
    protected $result;
32
33
    /**
34
     * {@inheritdoc}
35
     */
36 444 View Code Duplication
    public function prepare($data, ContextInterface $context)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
37
    {
38 444
        $this->stack = new \SplStack();
39 444
        $this->result = null;
40
41 444
        return parent::prepare($data, $context);
42
    }
43
44
    /**
45
     * {@inheritdoc}
46
     */
47 102
    public function visitArray($data, TypeMetadataInterface $type, ContextInterface $context)
48
    {
49 102
        $result = [];
50
51 102
        if (!empty($data)) {
52 42
            $this->enterScope();
53 42
            $result = parent::visitArray($data, $type, $context);
54 42
            $this->leaveScope();
55 28
        }
56
57 102
        return $this->visitData($result, $type, $context);
58
    }
59
60
    /**
61
     * {@inheritdoc}
62
     */
63 399
    public function visitData($data, TypeMetadataInterface $type, ContextInterface $context)
64
    {
65 399
        if ($this->result === null) {
66 120
            $this->result = $data;
67 80
        }
68
69 399
        return $data;
70
    }
71
72
    /**
73
     * {@inheritdoc}
74
     */
75 309
    public function startVisitingObject($data, ClassMetadataInterface $class, ContextInterface $context)
76
    {
77 309
        if (!parent::startVisitingObject($data, $class, $context)) {
78 12
            return false;
79
        }
80
81 309
        $this->enterScope();
82 309
        $this->result = $this->createResult($class->getName());
83
84 309
        return true;
85
    }
86
87
    /**
88
     * {@inheritdoc}
89
     */
90 309
    public function finishVisitingObject($data, ClassMetadataInterface $class, ContextInterface $context)
91
    {
92 309
        parent::finishVisitingObject($data, $class, $context);
93
94 309
        return $this->leaveScope();
95
    }
96
97
    /**
98
     * {@inheritdoc}
99
     */
100 234
    public function getResult()
101
    {
102 234
        return $this->result;
103
    }
104
105
    /**
106
     * @param string $class
107
     *
108
     * @return mixed
109
     */
110
    abstract protected function createResult($class);
111
112
    /**
113
     * {@inheritdoc}
114
     */
115 36
    protected function doVisitArray($data, TypeMetadataInterface $type, ContextInterface $context)
116
    {
117 36
        $this->result = [];
118
119 36
        foreach ($data as $key => $value) {
120 36
            $key = $this->navigator->navigate($key, $context, $type->getOption('key'));
121 36
            $value = $this->navigator->navigate($value, $context, $type->getOption('value'));
122 36
            $this->result[$key] = $value;
123 24
        }
124
125 36
        return $this->result;
126
    }
127
128 324
    private function enterScope()
129
    {
130 324
        $this->stack->push($this->result);
131 324
    }
132
133
    /**
134
     * @return mixed
135
     */
136 324
    private function leaveScope()
137
    {
138 324
        $result = $this->result;
139 324
        $this->result = $this->stack->pop();
140
141 324
        if ($this->result === null) {
142 324
            $this->result = $result;
143 216
        }
144
145 324
        return $result;
146
    }
147
}
148