-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathAttributeFactory.php
More file actions
281 lines (246 loc) · 7.84 KB
/
AttributeFactory.php
File metadata and controls
281 lines (246 loc) · 7.84 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
<?php
/**
* This file is part of MetaModels/core.
*
* (c) 2012-2024 The MetaModels team.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* This project is provided in good faith and hope to be usable by anyone.
*
* @package MetaModels/core
* @author Christian Schiffler <c.schiffler@cyberspectrum.de>
* @author Sven Baumann <baumann.sv@gmail.com>
* @author Ingolf Steinhardt <info@e-spin.de>
* @copyright 2012-2024 The MetaModels team.
* @license https://github.com/MetaModels/core/blob/master/LICENSE LGPL-3.0-or-later
* @filesource
*/
namespace MetaModels\Attribute;
use MetaModels\Attribute\Events\CollectMetaModelAttributeInformationEvent;
use MetaModels\Attribute\Events\CreateAttributeEvent;
use MetaModels\Attribute\Events\CreateAttributeFactoryEvent;
use MetaModels\IMetaModel;
use MetaModels\IMetaModelsServiceContainer;
use MetaModels\MetaModelsEvents;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
/**
* This is the implementation of the Field factory to query instances of fields.
*
* Usually this is only used internally by {@link MetaModels\Factory}
*
* @psalm-suppress DeprecatedInterface
*/
class AttributeFactory implements IAttributeFactory
{
/**
* The service container.
*
* @var IMetaModelsServiceContainer|null
*
* @psalm-suppress DeprecatedInterface
*/
protected $serviceContainer = null;
/**
* The event dispatcher.
*
* @var EventDispatcherInterface
*/
private $eventDispatcher;
/**
* The registered type factories.
*
* @var IAttributeTypeFactory[]
*/
protected $typeFactories = [];
/**
* Create a new instance.
*
* @param EventDispatcherInterface $eventDispatcher The event dispatcher to use.
*/
public function __construct(EventDispatcherInterface $eventDispatcher)
{
$this->eventDispatcher = $eventDispatcher;
}
/**
* Set the service container.
*
* @param IMetaModelsServiceContainer $serviceContainer The service container to use.
* @param bool $deprecationNotice Determine deprecated notice.
*
* @return AttributeFactory
*
* @psalm-suppress DeprecatedInterface
*
* @deprecated The service container will get removed, use the symfony service container instead.
*/
#[\Override]
public function setServiceContainer(IMetaModelsServiceContainer $serviceContainer, $deprecationNotice = true)
{
if ($deprecationNotice) {
// @codingStandardsIgnoreStart
@trigger_error(
'"' .__METHOD__ . '" is deprecated and will get removed.',
E_USER_DEPRECATED
);
// @codingStandardsIgnoreEnd
}
$this->serviceContainer = $serviceContainer;
if ($this->eventDispatcher->hasListeners(MetaModelsEvents::ATTRIBUTE_FACTORY_CREATE)) {
// @codingStandardsIgnoreStart
@trigger_error(
'Event "' .
MetaModelsEvents::ATTRIBUTE_FACTORY_CREATE .
'" is deprecated - register your attribute factories via the service container.',
E_USER_DEPRECATED
);
// @codingStandardsIgnoreEnd
$this->eventDispatcher->dispatch(
new CreateAttributeFactoryEvent($this),
MetaModelsEvents::ATTRIBUTE_FACTORY_CREATE
);
}
return $this;
}
/**
* Retrieve the service container.
*
* @return IMetaModelsServiceContainer
*
* @psalm-suppress DeprecatedInterface
*
* @deprecated The service container will get removed, use the symfony service container instead.
*/
#[\Override]
public function getServiceContainer()
{
// @codingStandardsIgnoreStart
@trigger_error(
'"' .__METHOD__ . '" is deprecated - use the services from the service container.',
E_USER_DEPRECATED
);
// @codingStandardsIgnoreEnd
if (null === $this->serviceContainer) {
throw new \RuntimeException('The deprecated service container has not been set anymore.');
}
return $this->serviceContainer;
}
/**
* Create an attribute instance from an information array.
*
* @param array $information The attribute information.
* @param IMetaModel $metaModel The MetaModel instance for which the attribute shall be created.
*
* @return IAttribute|null
*/
#[\Override]
public function createAttribute($information, $metaModel)
{
$event = new CreateAttributeEvent($information, $metaModel);
$this->eventDispatcher->dispatch($event, CreateAttributeEvent::NAME);
if ($event->getAttribute()) {
return $event->getAttribute();
}
if (null === ($type = $information['type'] ?? null)) {
return null;
}
$factory = $this->getTypeFactory($type);
if (!$factory) {
return null;
}
return $factory->createInstance($information, $metaModel);
}
/**
* {@inheritdoc}
*
* @throws \RuntimeException When the type is already registered.
*/
#[\Override]
public function addTypeFactory(IAttributeTypeFactory $typeFactory)
{
$typeName = $typeFactory->getTypeName();
if (isset($this->typeFactories[$typeName])) {
throw new \RuntimeException('Attribute type ' . $typeName . ' is already registered.');
}
$this->typeFactories[$typeName] = $typeFactory;
return $this;
}
/**
* {@inheritdoc}
*/
#[\Override]
public function getTypeFactory($typeFactory)
{
return $this->typeFactories[$typeFactory] ?? null;
}
/**
* {@inheritdoc}
*/
#[\Override]
public function attributeTypeMatchesFlags($factory, $flags)
{
$factory = $this->getTypeFactory($factory);
if (null === $factory) {
return false;
}
// Shortcut, if all are valid, return all. :)
if ($flags === self::FLAG_ALL) {
return true;
}
return (($flags & self::FLAG_INCLUDE_TRANSLATED) && $factory->isTranslatedType())
|| (($flags & self::FLAG_INCLUDE_SIMPLE) && $factory->isSimpleType())
|| (($flags & self::FLAG_INCLUDE_COMPLEX) && $factory->isComplexType());
}
/**
* {@inheritdoc}
*/
#[\Override]
public function getTypeNames($flags = false)
{
if ($flags === false) {
$flags = self::FLAG_ALL;
}
$result = [];
foreach (\array_keys($this->typeFactories) as $name) {
if (!$this->attributeTypeMatchesFlags($name, $flags)) {
continue;
}
$result[] = $name;
}
return $result;
}
/**
* {@inheritdoc}
*/
#[\Override]
public function collectAttributeInformation(IMetaModel $metaModel)
{
$event = new CollectMetaModelAttributeInformationEvent($metaModel);
$this->eventDispatcher->dispatch($event, $event::NAME);
return $event->getAttributeInformation();
}
/**
* {@inheritdoc}
*/
#[\Override]
public function createAttributesForMetaModel($metaModel)
{
$attributes = array();
foreach ($this->collectAttributeInformation($metaModel) as $information) {
$attribute = $this->createAttribute($information, $metaModel);
if ($attribute) {
$attributes[] = $attribute;
}
}
return $attributes;
}
/**
* {@inheritdoc}
*/
#[\Override]
public function getIconForType($type)
{
return isset($this->typeFactories[$type]) ? $this->typeFactories[$type]->getTypeIcon() : '';
}
}