-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathSchemaProcessor.php
More file actions
397 lines (348 loc) · 13.6 KB
/
SchemaProcessor.php
File metadata and controls
397 lines (348 loc) · 13.6 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
<?php
declare(strict_types = 1);
namespace PHPModelGenerator\SchemaProcessor;
use PHPModelGenerator\Exception\SchemaException;
use PHPModelGenerator\Model\GeneratorConfiguration;
use PHPModelGenerator\Model\Property\CompositionPropertyDecorator;
use PHPModelGenerator\Model\Property\Property;
use PHPModelGenerator\Model\Property\PropertyInterface;
use PHPModelGenerator\Model\Property\PropertyType;
use PHPModelGenerator\Model\RenderJob;
use PHPModelGenerator\Model\Schema;
use PHPModelGenerator\Model\SchemaDefinition\JsonSchema;
use PHPModelGenerator\Model\SchemaDefinition\SchemaDefinitionDictionary;
use PHPModelGenerator\PropertyProcessor\Decorator\Property\ObjectInstantiationDecorator;
use PHPModelGenerator\PropertyProcessor\Decorator\SchemaNamespaceTransferDecorator;
use PHPModelGenerator\PropertyProcessor\Decorator\TypeHint\CompositionTypeHintDecorator;
use PHPModelGenerator\PropertyProcessor\PropertyMetaDataCollection;
use PHPModelGenerator\PropertyProcessor\PropertyFactory;
use PHPModelGenerator\PropertyProcessor\PropertyProcessorFactory;
/**
* Class SchemaProcessor
*
* @package PHPModelGenerator\SchemaProcessor
*/
class SchemaProcessor
{
/** @var GeneratorConfiguration */
protected $generatorConfiguration;
/** @var RenderQueue */
protected $renderQueue;
/** @var string */
protected $baseSource;
/** @var string */
protected $destination;
/** @var string */
protected $currentClassPath;
/** @var string */
protected $currentClassName;
/** @var Schema[] Collect processed schemas to avoid duplicated classes */
protected $processedSchema = [];
/** @var PropertyInterface[] Collect processed schemas to avoid duplicated classes */
protected $processedMergedProperties = [];
/** @var string[] */
protected $generatedFiles = [];
/**
* SchemaProcessor constructor.
*
* @param string $baseSource
* @param string $destination
* @param GeneratorConfiguration $generatorConfiguration
* @param RenderQueue $renderQueue
*/
public function __construct(
string $baseSource,
string $destination,
GeneratorConfiguration $generatorConfiguration,
RenderQueue $renderQueue
) {
$this->baseSource = $baseSource;
$this->destination = $destination;
$this->generatorConfiguration = $generatorConfiguration;
$this->renderQueue = $renderQueue;
}
/**
* Process a given json schema file
*
* @param JsonSchema $jsonSchema
*
* @throws SchemaException
*/
public function process(JsonSchema $jsonSchema): void
{
$this->setCurrentClassPath($jsonSchema->getFile());
$this->currentClassName = $this->generatorConfiguration->getClassNameGenerator()->getClassName(
str_ireplace('.json', '', basename($jsonSchema->getFile())),
$jsonSchema,
false
);
$this->processSchema(
$jsonSchema,
$this->currentClassPath,
$this->currentClassName,
new SchemaDefinitionDictionary(dirname($jsonSchema->getFile())),
true
);
}
/**
* Process a JSON schema stored as an associative array
*
* @param JsonSchema $jsonSchema
* @param string $classPath
* @param string $className
* @param SchemaDefinitionDictionary $dictionary If a nested object of a schema is processed import the
* definitions of the parent schema to make them available for the
* nested schema as well
* @param bool $initialClass Is it an initial class or a nested class?
*
* @return Schema|null
*
* @throws SchemaException
*/
public function processSchema(
JsonSchema $jsonSchema,
string $classPath,
string $className,
SchemaDefinitionDictionary $dictionary,
bool $initialClass = false
): ?Schema {
if ((!isset($jsonSchema->getJson()['type']) || $jsonSchema->getJson()['type'] !== 'object') &&
!array_intersect(array_keys($jsonSchema->getJson()), ['anyOf', 'allOf', 'oneOf', 'if', '$ref'])
) {
// skip the JSON schema as neither an object, a reference nor a composition is defined on the root level
return null;
}
return $this->generateModel($classPath, $className, $jsonSchema, $dictionary, $initialClass);
}
/**
* Generate a model and store the model to the file system
*
* @param string $classPath
* @param string $className
* @param JsonSchema $jsonSchema
* @param SchemaDefinitionDictionary $dictionary
* @param bool $initialClass
*
* @return Schema
*
* @throws SchemaException
*/
protected function generateModel(
string $classPath,
string $className,
JsonSchema $jsonSchema,
SchemaDefinitionDictionary $dictionary,
bool $initialClass
): Schema {
$schemaSignature = $jsonSchema->getSignature();
if (!$initialClass && isset($this->processedSchema[$schemaSignature])) {
if ($this->generatorConfiguration->isOutputEnabled()) {
echo "Duplicated signature $schemaSignature for class $className." .
" Redirecting to {$this->processedSchema[$schemaSignature]->getClassName()}\n";
}
return $this->processedSchema[$schemaSignature];
}
$schema = new Schema($classPath, $className, $jsonSchema, $dictionary, $initialClass);
$this->processedSchema[$schemaSignature] = $schema;
$json = $jsonSchema->getJson();
$json['type'] = 'base';
(new PropertyFactory(new PropertyProcessorFactory()))->create(
new PropertyMetaDataCollection($jsonSchema->getJson()['required'] ?? []),
$this,
$schema,
$className,
$jsonSchema->withJson($json)
);
$this->generateClassFile($classPath, $className, $schema);
return $schema;
}
/**
* Attach a new class file render job to the render proxy
*
* @param string $classPath
* @param string $className
* @param Schema $schema
*/
public function generateClassFile(
string $classPath,
string $className,
Schema $schema
): void {
$fileName = join(
DIRECTORY_SEPARATOR,
array_filter([$this->destination, str_replace('\\', DIRECTORY_SEPARATOR, $classPath), $className])
) . '.php';
$this->renderQueue->addRenderJob(new RenderJob($fileName, $classPath, $className, $schema));
if ($this->generatorConfiguration->isOutputEnabled()) {
echo sprintf(
"Generated class %s\n",
join('\\', array_filter([$this->generatorConfiguration->getNamespacePrefix(), $classPath, $className]))
);
}
$this->generatedFiles[] = $fileName;
}
/**
* Gather all nested object properties and merge them together into a single merged property
*
* @param Schema $schema
* @param PropertyInterface $property
* @param CompositionPropertyDecorator[] $compositionProperties
* @param JsonSchema $propertySchema
*
* @return PropertyInterface|null
*
* @throws SchemaException
*/
public function createMergedProperty(
Schema $schema,
PropertyInterface $property,
array $compositionProperties,
JsonSchema $propertySchema
): ?PropertyInterface {
$redirectToProperty = $this->redirectMergedProperty($compositionProperties);
if ($redirectToProperty === null || $redirectToProperty instanceof PropertyInterface) {
if ($redirectToProperty) {
$property->addTypeHintDecorator(new CompositionTypeHintDecorator($redirectToProperty));
}
return $redirectToProperty;
}
/** @var JsonSchema $jsonSchema */
$jsonSchema = $propertySchema->getJson()['propertySchema'];
$schemaSignature = $jsonSchema->getSignature();
if (!isset($this->processedMergedProperties[$schemaSignature])) {
$mergedClassName = $this
->getGeneratorConfiguration()
->getClassNameGenerator()
->getClassName(
$property->getName(),
$propertySchema,
true,
$this->getCurrentClassName()
);
$mergedPropertySchema = new Schema($schema->getClassPath(), $mergedClassName, $propertySchema);
$this->processedMergedProperties[$schemaSignature] = (new Property(
'MergedProperty',
new PropertyType($mergedClassName),
$mergedPropertySchema->getJsonSchema()
))
->addDecorator(new ObjectInstantiationDecorator($mergedClassName, $this->getGeneratorConfiguration()))
->setNestedSchema($mergedPropertySchema);
$this->transferPropertiesToMergedSchema($schema, $mergedPropertySchema, $compositionProperties);
// make sure the merged schema knows all imports of the parent schema
$mergedPropertySchema->addNamespaceTransferDecorator(new SchemaNamespaceTransferDecorator($schema));
$this->generateClassFile($this->getCurrentClassPath(), $mergedClassName, $mergedPropertySchema);
}
$mergedSchema = $this->processedMergedProperties[$schemaSignature]->getNestedSchema();
$schema->addUsedClass(
join(
'\\',
array_filter([
$this->generatorConfiguration->getNamespacePrefix(),
$mergedSchema->getClassPath(),
$mergedSchema->getClassName(),
])
)
);
$property->addTypeHintDecorator(
new CompositionTypeHintDecorator($this->processedMergedProperties[$schemaSignature])
);
return $this->processedMergedProperties[$schemaSignature];
}
/**
* Check if multiple $compositionProperties contain nested schemas. Only in this case a merged property must be
* created. If no nested schemas are detected null will be returned. If only one $compositionProperty contains a
* nested schema the $compositionProperty will be used as a replacement for the merged property.
*
* Returns false if a merged property must be created.
*
* @param CompositionPropertyDecorator[] $compositionProperties
*
* @return PropertyInterface|null|false
*/
private function redirectMergedProperty(array $compositionProperties)
{
$redirectToProperty = null;
foreach ($compositionProperties as $property) {
if ($property->getNestedSchema()) {
if ($redirectToProperty !== null) {
return false;
}
$redirectToProperty = $property;
}
}
return $redirectToProperty;
}
/**
* @param Schema $schema
* @param Schema $mergedPropertySchema
* @param PropertyInterface[] $compositionProperties
*/
private function transferPropertiesToMergedSchema(
Schema $schema,
Schema $mergedPropertySchema,
array $compositionProperties
): void {
foreach ($compositionProperties as $property) {
if (!$property->getNestedSchema()) {
continue;
}
$property->getNestedSchema()->onAllPropertiesResolved(
function () use ($property, $schema, $mergedPropertySchema): void {
foreach ($property->getNestedSchema()->getProperties() as $nestedProperty) {
$attachProperty = clone $nestedProperty;
// don't validate fields in merged properties. All fields were validated before
// corresponding to the defined constraints of the composition property.
$attachProperty->filterValidators(static function (): bool {
return false;
});
$mergedPropertySchema->addProperty($attachProperty);
}
}
);
}
}
/**
* Get the class path out of the file path of a schema file
*
* @param string $jsonSchemaFile
*/
protected function setCurrentClassPath(string $jsonSchemaFile): void
{
$path = str_replace($this->baseSource, '', dirname($jsonSchemaFile));
$pieces = array_map(
static function (string $directory): string {
return ucfirst($directory);
},
explode(DIRECTORY_SEPARATOR, $path)
);
$this->currentClassPath = join('\\', array_filter($pieces));
}
/**
* @return string
*/
public function getCurrentClassPath(): string
{
return $this->currentClassPath;
}
/**
* @return string
*/
public function getCurrentClassName(): string
{
return $this->currentClassName;
}
/**
* @return array
*/
public function getGeneratedFiles(): array
{
return $this->generatedFiles;
}
/**
* @return GeneratorConfiguration
*/
public function getGeneratorConfiguration(): GeneratorConfiguration
{
return $this->generatorConfiguration;
}
}