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

AbstractGenericVisitor   A

Complexity

Total Complexity 14

Size/Duplication

Total Lines 127
Duplicated Lines 5.51 %

Coupling/Cohesion

Components 1
Dependencies 4

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 14
lcom 1
cbo 4
dl 7
loc 127
ccs 46
cts 46
cp 1
rs 10
c 0
b 0
f 0

10 Methods

Rating   Name   Duplication   Size   Complexity  
A visitArray() 0 12 2
A visitData() 0 8 2
A startVisitingObject() 0 11 2
A finishVisitingObject() 0 6 1
A getResult() 0 4 1
createResult() 0 1 ?
A doVisitArray() 0 12 2
A prepare() 7 7 1
A enterScope() 0 4 1
A leaveScope() 0 11 2

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

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