1
|
|
|
<?php |
2
|
|
|
namespace Thunder\Serializard\NormalizerContainer; |
3
|
|
|
|
4
|
|
|
use Thunder\Serializard\Exception\ClassNotFoundException; |
5
|
|
|
use Thunder\Serializard\Exception\NormalizerConflictException; |
6
|
|
|
use Thunder\Serializard\Exception\NormalizerNotFoundException; |
7
|
|
|
|
8
|
|
|
/** |
9
|
|
|
* @author Tomasz Kowalczyk <[email protected]> |
10
|
|
|
*/ |
11
|
|
|
final class FallbackNormalizerContainer implements NormalizerContainerInterface |
12
|
|
|
{ |
13
|
|
|
private $default; |
14
|
|
|
private $handlers = []; |
15
|
|
|
private $interfaces = []; |
16
|
|
|
private $aliases = []; |
17
|
|
|
|
18
|
20 |
View Code Duplication |
public function add($class, callable $handler) |
|
|
|
|
19
|
|
|
{ |
20
|
20 |
|
if(class_exists($class)) { |
21
|
16 |
|
$this->aliases[$class] = $class; |
22
|
16 |
|
$this->handlers[$class] = $handler; |
23
|
20 |
|
} elseif(interface_exists($class)) { |
24
|
3 |
|
$this->aliases[$class] = $class; |
25
|
3 |
|
$this->interfaces[$class] = $handler; |
26
|
3 |
|
} else { |
27
|
1 |
|
throw new ClassNotFoundException(sprintf('Given value %s is neither class nor interface name!', $class)); |
28
|
|
|
} |
29
|
19 |
|
} |
30
|
|
|
|
31
|
2 |
View Code Duplication |
public function addAlias($alias, $class) |
|
|
|
|
32
|
|
|
{ |
33
|
2 |
|
$handler = $this->getHandler($class); |
34
|
|
|
|
35
|
2 |
|
if(null === $handler) { |
36
|
1 |
|
throw new NormalizerNotFoundException(sprintf('Handler for class %s does not exist!', $class)); |
37
|
|
|
} |
38
|
|
|
|
39
|
1 |
|
$this->handlers[$alias] = $handler; |
40
|
1 |
|
$this->aliases[$alias] = $this->aliases[$class]; |
41
|
1 |
|
} |
42
|
|
|
|
43
|
18 |
|
public function getHandler($class) |
44
|
|
|
{ |
45
|
18 |
|
if(isset($this->handlers[$class])) { |
46
|
13 |
|
return $this->handlers[$class]; |
47
|
|
|
} |
48
|
|
|
|
49
|
8 |
|
$parents = array_intersect(array_keys($this->handlers), class_parents($class)); |
50
|
8 |
|
if($parents) { |
|
|
|
|
51
|
2 |
|
return $this->handlers[array_pop($parents)]; |
52
|
|
|
} |
53
|
|
|
|
54
|
6 |
|
$interfaces = array_intersect(array_keys($this->interfaces), array_values(class_implements($class))); |
55
|
6 |
View Code Duplication |
if($interfaces) { |
|
|
|
|
56
|
3 |
|
if(\count($interfaces) > 1) { |
57
|
1 |
|
throw new NormalizerConflictException(sprintf('Class %s implements interfaces with colliding handlers!', $class)); |
58
|
|
|
} |
59
|
|
|
|
60
|
2 |
|
return $this->interfaces[array_shift($interfaces)]; |
61
|
|
|
} |
62
|
|
|
|
63
|
3 |
|
return $this->default; |
64
|
|
|
} |
65
|
|
|
|
66
|
2 |
|
public function setDefault(callable $handler) |
67
|
|
|
{ |
68
|
2 |
|
$this->default = $handler; |
69
|
2 |
|
} |
70
|
|
|
|
71
|
1 |
|
public function hasDefault() |
72
|
|
|
{ |
73
|
1 |
|
return null !== $this->default; |
74
|
|
|
} |
75
|
|
|
|
76
|
1 |
|
public function getDefault() |
77
|
|
|
{ |
78
|
1 |
|
return $this->default; |
79
|
|
|
} |
80
|
|
|
} |
81
|
|
|
|
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.