-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathMapMethodStatementsGenerator.php
More file actions
401 lines (365 loc) · 16.3 KB
/
MapMethodStatementsGenerator.php
File metadata and controls
401 lines (365 loc) · 16.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
<?php
declare(strict_types=1);
namespace AutoMapper\Generator;
use AutoMapper\Exception\ReadOnlyTargetException;
use AutoMapper\Generator\Shared\CachedReflectionStatementsGenerator;
use AutoMapper\Generator\Shared\DiscriminatorStatementsGenerator;
use AutoMapper\MapperContext;
use AutoMapper\Metadata\GeneratorMetadata;
use AutoMapper\Provider\EarlyReturn;
use PhpParser\Comment;
use PhpParser\Node\Arg;
use PhpParser\Node\Expr;
use PhpParser\Node\Name;
use PhpParser\Node\Scalar;
use PhpParser\Node\Stmt;
use Symfony\Component\ExpressionLanguage\ExpressionLanguage;
/**
* @internal
*/
final readonly class MapMethodStatementsGenerator
{
private CreateTargetStatementsGenerator $createObjectStatementsGenerator;
private PropertyStatementsGenerator $propertyStatementsGenerator;
public function __construct(
DiscriminatorStatementsGenerator $discriminatorStatementsGeneratorSource,
DiscriminatorStatementsGenerator $discriminatorStatementsGeneratorTarget,
CachedReflectionStatementsGenerator $cachedReflectionStatementsGenerator,
ExpressionLanguage $expressionLanguage,
) {
$propertyConditionGenerator = new PropertyConditionsGenerator($expressionLanguage);
$this->createObjectStatementsGenerator = new CreateTargetStatementsGenerator(
$discriminatorStatementsGeneratorSource,
$discriminatorStatementsGeneratorTarget,
$cachedReflectionStatementsGenerator,
);
$this->propertyStatementsGenerator = new PropertyStatementsGenerator($propertyConditionGenerator);
}
/**
* @return list<Stmt>
*/
public function getStatements(GeneratorMetadata $metadata): array
{
$variableRegistry = $metadata->variableRegistry;
$statements = [$this->ifSourceIsNullReturnNull($metadata)];
$statements = [...$statements, ...$this->handleCircularReference($metadata)];
$canUseTargetToPopulate = $this->createObjectStatementsGenerator->canUseTargetToPopulate($metadata);
if ($canUseTargetToPopulate) {
$statements = [...$statements, ...$this->initializeTargetToPopulate($metadata)];
$statements = [...$statements, ...$this->initializeTargetFromProvider($metadata)];
}
$statements = [...$statements, ...$this->createObjectStatementsGenerator->generate($metadata, $variableRegistry)];
$addedDependenciesStatements = $this->handleDependencies($metadata);
$duplicatedStatements = [];
$setterStatements = [];
foreach ($metadata->propertiesMetadata as $propertyMetadata) {
/**
* This is the main loop to map the properties from the source to the target, there is 3 main steps in order to generate this code :.
*
* * Generate code on how to read the value from the source, which returns statements and an output expression
* * Generate code on how to transform the value, which use the output expression, add some statements and return a new output expression
* * Generate code on how to write this transformed value to the target, which use the output expression and add some statements
*
* As an example this could generate the following code :
*
* * Extract value from a private property : $this->extractCallbacks['propertyName']($source)
* * Transform the value, which is an object in this example, with another mapper : $this->mappers['SOURCE_TO_TARGET_MAPPER']->map(..., $context);
* * Write the value to a private property : $this->hydrateCallbacks['propertyName']($target, ...)
*
* Since it use expression that may not create variable this would produce the following code
*
* ```php
* $this->hydrateCallbacks['propertyName']($target, $this->mappers['SOURCE_TO_TARGET_MAPPER']->map($this->extractCallbacks['propertyName']($source), $context));
* ```
*/
$propStatements = $this->propertyStatementsGenerator->generate($metadata, $propertyMetadata);
/*
* Dispatch those statements into two categories:
* - Statements that need to be executed before the constructor, if the property needs to be written in the constructor
* - Statements that need to be executed after the constructor.
*/
if (\in_array($propertyMetadata->target->property, $metadata->getPropertiesInConstructor(), true)) {
$duplicatedStatements = [...$duplicatedStatements, ...$propStatements];
} else {
$setterStatements = [...$setterStatements, ...$propStatements];
}
}
if ($canUseTargetToPopulate && \count($duplicatedStatements) > 0 && \count($metadata->getPropertiesInConstructor())) {
/**
* We know that the last statement is an `if` statement (otherwise we can't add an `else` statement).
* Without this logic, the addedDependencies would only be called when the target was set. If the target is
* `null` instead, the code looked like:
*
* ```php
* if (null !== result) {
* $result = // Extracted with constructor arguments
* $context = \AutoMapper\MapperContext::withReference($context, $sourceHash, $result);
* $context = \AutoMapper\MapperContext::withIncrementedDepth($context);
* } else {
* $context = \AutoMapper\MapperContext::withReference($context, $sourceHash, $result);
* $context = \AutoMapper\MapperContext::withIncrementedDepth($context);
*
* $source->propertyName = $this->extractCallbacks['propertyName']($source);
* }
*/
$lastStatement = $statements[array_key_last($statements)];
\assert($lastStatement instanceof Stmt\If_);
$lastStatement->stmts = [
...$lastStatement->stmts,
...$addedDependenciesStatements,
];
/*
* Generate else statements when the result is already an object, which means it has already been created,
* so we need to execute the statements that need to be executed before the constructor since the constructor has already been called
*
* ```php
* if (null !== $result) {
* .. // create object statements
* } else {
* // remap property from the constructor in case object already exists so we do not loose information
* $source->propertyName = $this->extractCallbacks['propertyName']($source);
* ...
* }
* ```
*/
$statements[] = new Stmt\Else_(array_merge($addedDependenciesStatements, $duplicatedStatements));
} else {
$statements = [...$statements, ...$addedDependenciesStatements];
}
return [
...$statements,
...$setterStatements,
new Stmt\Return_($variableRegistry->getResult()),
];
}
/**
* If the source is null, if so, return null.
*
* ```php
* if (null === $source) {
* return $source;
* }
* ```
*/
private function ifSourceIsNullReturnNull(GeneratorMetadata $metadata): Stmt
{
return new Stmt\If_(
new Expr\BinaryOp\Identical(new Expr\ConstFetch(new Name('null')), $metadata->variableRegistry->getSourceInput()),
[
'stmts' => [new Stmt\Return_($metadata->variableRegistry->getSourceInput())],
]
);
}
/**
* When there can be circular dependency in the mapping,
* the following statements try to use the reference for the source if it's available.
*
* ```php
* $sourceHash = spl_object_hash($source) . $target;
* if (MapperContext::shouldHandleCircularReference($context, $sourceHash)) {
* return MapperContext::handleCircularReference($context, $sourceHash, $source);
* }
* ```
*
* @return list<Stmt>
*/
private function handleCircularReference(GeneratorMetadata $metadata): array
{
if (!$metadata->canHaveCircularReference()) {
return [];
}
$variableRegistry = $metadata->variableRegistry;
return [
new Stmt\Expression(
new Expr\Assign(
$variableRegistry->getHash(),
new Expr\BinaryOp\Concat(new Expr\FuncCall(new Name('spl_object_hash'), [
new Arg($variableRegistry->getSourceInput()),
]),
new Scalar\String_($metadata->mapperMetadata->target)
)
)
),
new Stmt\If_(
new Expr\StaticCall(new Name\FullyQualified(MapperContext::class), 'shouldHandleCircularReference', [
new Arg($variableRegistry->getContext()),
new Arg($variableRegistry->getHash()),
]), [
'stmts' => [
new Stmt\Return_(
new Expr\StaticCall(
new Name\FullyQualified(MapperContext::class),
'handleCircularReference',
[
new Arg($variableRegistry->getContext()),
new Arg($variableRegistry->getHash()),
new Arg($variableRegistry->getSourceInput()),
]
)
),
],
]
),
];
}
/**
* @return list<Stmt>
*/
private function initializeTargetToPopulate(GeneratorMetadata $metadata): array
{
$variableRegistry = $metadata->variableRegistry;
$targetToPopulate = new Expr\ArrayDimFetch($variableRegistry->getContext(), new Scalar\String_(MapperContext::TARGET_TO_POPULATE));
$statements = [];
/*
* Get result from context if available, otherwise set it to null
*
* ```php
* $result = $context[MapperContext::TARGET_TO_POPULATE] ?? null;
* ```
*/
$statements[] = new Stmt\Expression(
new Expr\Assign(
$variableRegistry->getResult(),
new Expr\BinaryOp\Coalesce($targetToPopulate, new Expr\ConstFetch(new Name('null')))
),
['comments' => [new Comment(\sprintf('/** @var %s|null $result */', $metadata->mapperMetadata->target === 'array' ? $metadata->mapperMetadata->target : '\\' . $metadata->mapperMetadata->target))]]
);
if (!$metadata->allowReadOnlyTargetToPopulate && $metadata->isTargetReadOnlyClass()) {
/*
* If the target is a read-only class, we throw an exception if the target is not null
*
* ```php
* if ($contextVariable[MapperContext::ALLOW_READONLY_TARGET_TO_POPULATE] ?? false && is_object($targetToPopulate)) {
* throw new ReadOnlyTargetException();
* }
* ```
*/
$statements[] = new Stmt\If_(
new Expr\BinaryOp\BooleanAnd(
new Expr\BooleanNot(
new Expr\BinaryOp\Coalesce(
new Expr\ArrayDimFetch(
$variableRegistry->getContext(),
new Scalar\String_(MapperContext::ALLOW_READONLY_TARGET_TO_POPULATE)
), new Expr\ConstFetch(new Name('false'))
)
),
new Expr\FuncCall(
new Name('is_object'),
[new Arg(new Expr\BinaryOp\Coalesce($targetToPopulate, new Expr\ConstFetch(new Name('null'))))]
)
), [
'stmts' => [
new Stmt\Expression(
new Expr\Throw_(new Expr\New_(new Name(ReadOnlyTargetException::class)))
),
],
]
);
}
return $statements;
}
/**
* @return list<Stmt>
*/
private function initializeTargetFromProvider(GeneratorMetadata $metadata): array
{
if ($metadata->provider === null) {
return [];
}
$variableRegistry = $metadata->variableRegistry;
/*
* Get result from provider if available
*
* ```php
* $result ??= $this->providerRegistry->getProvider($metadata->provider)->provide($source, $context);
*
* if ($result instanceof EarlyReturn) {
* return $result->value;
* }
* ```
*/
$statements = [];
$statements[] = new Stmt\Expression(
new Expr\AssignOp\Coalesce(
$variableRegistry->getResult(),
new Expr\MethodCall(new Expr\MethodCall(new Expr\PropertyFetch(new Expr\Variable('this'), 'providerRegistry'), 'getProvider', [
new Arg(new Scalar\String_($metadata->provider)),
]), 'provide', [
new Arg(new Scalar\String_($metadata->mapperMetadata->target)),
new Arg($variableRegistry->getSourceInput()),
new Arg($variableRegistry->getContext()),
new Arg(new Expr\MethodCall(new Expr\Variable('this'), 'getTargetIdentifiers', [
new Arg(new Expr\Variable('value')),
])),
]),
)
);
$statements[] = new Stmt\If_(
new Expr\Instanceof_($variableRegistry->getResult(), new Name(EarlyReturn::class)),
[
'stmts' => [
new Stmt\Return_(
new Expr\PropertyFetch($variableRegistry->getResult(), 'value')
),
],
]
);
return $statements;
}
/**
* @return list<Stmt>
*/
private function handleDependencies(GeneratorMetadata $metadata): array
{
if (!$metadata->getDependencies()) {
return [
new Stmt\Expression(
new Expr\Assign(
$metadata->variableRegistry->getContext(),
new Expr\StaticCall(new Name\FullyQualified(MapperContext::class), 'withIncrementedDepth', [
new Arg($metadata->variableRegistry->getContext()),
])
)
),
];
}
$variableRegistry = $metadata->variableRegistry;
$addedDependenciesStatements = [];
if ($metadata->canHaveCircularReference()) {
/*
* Here we register the result into the context to allow circular dependency, it's done before mapping so if there is a circular dependency, it will be correctly handled
*
* ```php
* $context = MapperContext::withReference($context, $sourceHash, $result);
* ```
*/
$addedDependenciesStatements[] = new Stmt\Expression(
new Expr\Assign(
$variableRegistry->getContext(),
new Expr\StaticCall(new Name\FullyQualified(MapperContext::class), 'withReference', [
new Arg($variableRegistry->getContext()),
new Arg($variableRegistry->getHash()),
new Arg($variableRegistry->getResult()),
])
)
);
}
/*
* We increase the depth of the context to allow to check the max depth of the mapping
*
* ```php
* $context = MapperContext::withIncrementedDepth($context);
* ```
*/
$addedDependenciesStatements[] = new Stmt\Expression(
new Expr\Assign(
$variableRegistry->getContext(),
new Expr\StaticCall(new Name\FullyQualified(MapperContext::class), 'withIncrementedDepth', [
new Arg($variableRegistry->getContext()),
])
)
);
return $addedDependenciesStatements;
}
}