1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace JMS\Serializer; |
6
|
|
|
|
7
|
|
|
use JMS\Serializer\Exception\NonVisitableTypeException; |
8
|
|
|
use JMS\Serializer\Exception\RuntimeException; |
9
|
|
|
use JMS\Serializer\Metadata\ClassMetadata; |
10
|
|
|
use JMS\Serializer\Metadata\PropertyMetadata; |
11
|
|
|
use JMS\Serializer\Visitor\DeserializationVisitorInterface; |
12
|
|
|
|
13
|
|
|
use function is_float; |
14
|
|
|
use function is_int; |
15
|
|
|
use function is_string; |
16
|
|
|
|
17
|
|
|
final class JsonDeserializationStrictVisitor extends AbstractVisitor implements DeserializationVisitorInterface |
18
|
|
|
{ |
19
|
|
|
/** @var JsonDeserializationVisitor */ |
20
|
|
|
private $wrappedDeserializationVisitor; |
21
|
|
|
|
22
|
|
|
public function __construct( |
23
|
|
|
int $options = 0, |
24
|
|
|
int $depth = 512 |
25
|
|
|
) { |
26
|
|
|
$this->wrappedDeserializationVisitor = new JsonDeserializationVisitor($options, $depth); |
27
|
|
|
} |
28
|
|
|
|
29
|
|
|
public function setNavigator(GraphNavigatorInterface $navigator): void |
30
|
|
|
{ |
31
|
|
|
parent::setNavigator($navigator); |
32
|
|
|
$this->wrappedDeserializationVisitor->setNavigator($navigator); |
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* {@inheritdoc} |
37
|
|
|
*/ |
38
|
|
|
public function visitNull($data, array $type) |
39
|
|
|
{ |
40
|
|
|
return null; |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
/** |
44
|
|
|
* {@inheritdoc} |
45
|
|
|
*/ |
46
|
|
|
public function visitString($data, array $type): ?string |
47
|
|
|
{ |
48
|
|
|
if (null === $data) { |
49
|
|
|
return null; |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
if (! is_string($data)) { |
53
|
|
|
throw NonVisitableTypeException::fromDataAndType($data, $type); |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
return $data; |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* {@inheritdoc} |
61
|
|
|
*/ |
62
|
|
|
public function visitBoolean($data, array $type): ?bool |
63
|
|
|
{ |
64
|
|
|
if (null === $data) { |
65
|
|
|
return null; |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
if (! is_bool($data)) { |
69
|
|
|
throw NonVisitableTypeException::fromDataAndType($data, $type); |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
return $data; |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
/** |
76
|
|
|
* {@inheritdoc} |
77
|
|
|
*/ |
78
|
|
|
public function visitInteger($data, array $type): ?int |
79
|
|
|
{ |
80
|
|
|
if (null === $data) { |
81
|
|
|
return null; |
82
|
|
|
} |
83
|
|
|
|
84
|
|
|
if (! is_int($data)) { |
85
|
|
|
throw NonVisitableTypeException::fromDataAndType($data, $type); |
86
|
|
|
} |
87
|
|
|
|
88
|
|
|
return $data; |
89
|
|
|
} |
90
|
|
|
|
91
|
|
|
/** |
92
|
|
|
* {@inheritdoc} |
93
|
|
|
*/ |
94
|
|
|
public function visitDouble($data, array $type): ?float |
95
|
|
|
{ |
96
|
|
|
if (null === $data) { |
97
|
|
|
return null; |
98
|
|
|
} |
99
|
|
|
|
100
|
|
|
if (! is_float($data)) { |
101
|
|
|
throw NonVisitableTypeException::fromDataAndType($data, $type); |
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
return $data; |
105
|
|
|
} |
106
|
|
|
|
107
|
|
|
/** |
108
|
|
|
* {@inheritdoc} |
109
|
|
|
*/ |
110
|
|
|
public function visitArray($data, array $type): array |
111
|
|
|
{ |
112
|
|
|
try { |
113
|
|
|
return $this->wrappedDeserializationVisitor->visitArray($data, $type); |
114
|
|
|
} catch (RuntimeException $e) { |
115
|
|
|
throw NonVisitableTypeException::fromDataAndType($data, $type, $e); |
116
|
|
|
} |
117
|
|
|
} |
118
|
|
|
|
119
|
|
|
/** |
120
|
|
|
* {@inheritdoc} |
121
|
|
|
*/ |
122
|
|
|
public function visitDiscriminatorMapProperty($data, ClassMetadata $metadata): string |
123
|
|
|
{ |
124
|
|
|
return $this->wrappedDeserializationVisitor->visitDiscriminatorMapProperty($data, $metadata); |
125
|
|
|
} |
126
|
|
|
|
127
|
|
|
/** |
128
|
|
|
* {@inheritdoc} |
129
|
|
|
*/ |
130
|
|
|
public function startVisitingObject(ClassMetadata $metadata, object $object, array $type): void |
131
|
|
|
{ |
132
|
|
|
$this->wrappedDeserializationVisitor->startVisitingObject($metadata, $object, $type); |
133
|
|
|
} |
134
|
|
|
|
135
|
|
|
/** |
136
|
|
|
* {@inheritdoc} |
137
|
|
|
*/ |
138
|
|
|
public function visitProperty(PropertyMetadata $metadata, $data) |
139
|
|
|
{ |
140
|
|
|
return $this->wrappedDeserializationVisitor->visitProperty($metadata, $data); |
141
|
|
|
} |
142
|
|
|
|
143
|
|
|
/** |
144
|
|
|
* {@inheritdoc} |
145
|
|
|
*/ |
146
|
|
|
public function endVisitingObject(ClassMetadata $metadata, $data, array $type): object |
147
|
|
|
{ |
148
|
|
|
return $this->wrappedDeserializationVisitor->endVisitingObject($metadata, $data, $type); |
149
|
|
|
} |
150
|
|
|
|
151
|
|
|
/** |
152
|
|
|
* {@inheritdoc} |
153
|
|
|
*/ |
154
|
|
|
public function getResult($data) |
155
|
|
|
{ |
156
|
|
|
return $this->wrappedDeserializationVisitor->getResult($data); |
157
|
|
|
} |
158
|
|
|
|
159
|
|
|
public function getCurrentObject(): ?object |
160
|
|
|
{ |
161
|
|
|
return $this->wrappedDeserializationVisitor->getCurrentObject(); |
162
|
|
|
} |
163
|
|
|
|
164
|
|
|
/** |
165
|
|
|
* {@inheritdoc} |
166
|
|
|
*/ |
167
|
|
|
public function prepare($data) |
168
|
|
|
{ |
169
|
|
|
return $this->wrappedDeserializationVisitor->prepare($data); |
170
|
|
|
} |
171
|
|
|
} |
172
|
|
|
|