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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\ObjectManager\Config;
use Magento\Framework\Serialize\SerializerInterface;
use Magento\Framework\ObjectManager\ConfigCacheInterface;
use Magento\Framework\ObjectManager\DefinitionInterface;
use Magento\Framework\ObjectManager\RelationsInterface;
class Config implements \Magento\Framework\ObjectManager\ConfigInterface
{
/**
* Config cache
*
* @var ConfigCacheInterface
*/
protected $_cache;
/**
* Class definitions
*
* @var \Magento\Framework\ObjectManager\DefinitionInterface
*/
protected $_definitions;
/**
* Current cache key
*
* @var string
*/
protected $_currentCacheKey;
/**
* Interface preferences
*
* @var array
*/
protected $_preferences = [];
/**
* Virtual types
*
* @var array
*/
protected $_virtualTypes = [];
/**
* Instance arguments
*
* @var array
*/
protected $_arguments = [];
/**
* Type shareability
*
* @var array
*/
protected $_nonShared = [];
/**
* List of relations
*
* @var RelationsInterface
*/
protected $_relations;
/**
* List of merged arguments
*
* @var array
*/
protected $_mergedArguments;
/**
* @var \Magento\Framework\Serialize\SerializerInterface
*/
private $serializer;
/**
* @param RelationsInterface $relations
* @param DefinitionInterface $definitions
*/
public function __construct(RelationsInterface $relations = null, DefinitionInterface $definitions = null)
{
$this->_relations = $relations ?: new \Magento\Framework\ObjectManager\Relations\Runtime();
$this->_definitions = $definitions ?: new \Magento\Framework\ObjectManager\Definition\Runtime();
}
/**
* Set class relations
*
* @param RelationsInterface $relations
* @return void
*/
public function setRelations(RelationsInterface $relations)
{
$this->_relations = $relations;
}
/**
* Set cache instance
*
* @param ConfigCacheInterface $cache
* @return void
*/
public function setCache(ConfigCacheInterface $cache)
{
$this->_cache = $cache;
}
/**
* Retrieve list of arguments per type
*
* @param string $type
* @return array
*/
public function getArguments($type)
{
if (isset($this->_mergedArguments[$type])) {
return $this->_mergedArguments[$type];
}
return $this->_collectConfiguration($type);
}
/**
* Check whether type is shared
*
* @param string $type
* @return bool
*/
public function isShared($type)
{
return !isset($this->_nonShared[$type]);
}
/**
* Retrieve instance type
*
* @param string $instanceName
* @return mixed
*/
public function getInstanceType($instanceName)
{
while (isset($this->_virtualTypes[$instanceName])) {
$instanceName = $this->_virtualTypes[$instanceName];
}
return $instanceName;
}
/**
* Retrieve preference for type
*
* @param string $type
* @return string
* @throws \LogicException
*/
public function getPreference($type)
{
$type = ltrim($type, '\\');
$preferencePath = [];
while (isset($this->_preferences[$type])) {
if (isset($preferencePath[$this->_preferences[$type]])) {
throw new \LogicException(
'Circular type preference: ' .
$type .
' relates to ' .
$this->_preferences[$type] .
' and viceversa.'
);
}
$type = $this->_preferences[$type];
$preferencePath[$type] = 1;
}
return $type;
}
/**
* Collect parent types configuration for requested type
*
* @param string $type
* @return array
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
*/
protected function _collectConfiguration($type)
{
if (!isset($this->_mergedArguments[$type])) {
if (isset($this->_virtualTypes[$type])) {
$arguments = $this->_collectConfiguration($this->_virtualTypes[$type]);
} elseif ($this->_relations->has($type)) {
$relations = $this->_relations->getParents($type);
$arguments = [];
foreach ($relations as $relation) {
if ($relation) {
$relationArguments = $this->_collectConfiguration($relation);
if ($relationArguments) {
$arguments = array_replace($arguments, $relationArguments);
}
}
}
} else {
$arguments = [];
}
if (isset($this->_arguments[$type])) {
if ($arguments && count($arguments)) {
$arguments = array_replace_recursive($arguments, $this->_arguments[$type]);
} else {
$arguments = $this->_arguments[$type];
}
}
$this->_mergedArguments[$type] = $arguments;
return $arguments;
}
return $this->_mergedArguments[$type];
}
/**
* Merge configuration
*
* @param array $configuration
* @return void
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
*/
protected function _mergeConfiguration(array $configuration)
{
foreach ($configuration as $key => $curConfig) {
switch ($key) {
case 'preferences':
foreach ($curConfig as $for => $to) {
$this->_preferences[ltrim($for, '\\')] = ltrim($to, '\\');
}
break;
default:
$key = ltrim($key, '\\');
if (isset($curConfig['type'])) {
$this->_virtualTypes[$key] = ltrim($curConfig['type'], '\\');
}
if (isset($curConfig['arguments'])) {
if (!empty($this->_mergedArguments)) {
$this->_mergedArguments = [];
}
if (isset($this->_arguments[$key])) {
$this->_arguments[$key] = array_replace($this->_arguments[$key], $curConfig['arguments']);
} else {
$this->_arguments[$key] = $curConfig['arguments'];
}
}
if (isset($curConfig['shared'])) {
if (!$curConfig['shared']) {
$this->_nonShared[$key] = 1;
} else {
unset($this->_nonShared[$key]);
}
}
break;
}
}
}
/**
* Extend configuration
*
* @param array $configuration
* @return void
*/
public function extend(array $configuration)
{
if ($this->_cache) {
if (!$this->_currentCacheKey) {
$this->_currentCacheKey = md5(
$this->getSerializer()->serialize(
[$this->_arguments, $this->_nonShared, $this->_preferences, $this->_virtualTypes]
)
);
}
$key = md5($this->_currentCacheKey . $this->getSerializer()->serialize($configuration));
$cached = $this->_cache->get($key);
if ($cached) {
list(
$this->_arguments,
$this->_nonShared,
$this->_preferences,
$this->_virtualTypes,
$this->_mergedArguments
) = $cached;
} else {
$this->_mergeConfiguration($configuration);
if (!$this->_mergedArguments) {
foreach ($this->_definitions->getClasses() as $class) {
$this->_collectConfiguration($class);
}
}
$this->_cache->save(
[
$this->_arguments,
$this->_nonShared,
$this->_preferences,
$this->_virtualTypes,
$this->_mergedArguments,
],
$key
);
}
$this->_currentCacheKey = $key;
} else {
$this->_mergeConfiguration($configuration);
}
}
/**
* Returns list of virtual types
*
* @return array
*/
public function getVirtualTypes()
{
return $this->_virtualTypes;
}
/**
* Returns list on preferences
*
* @return array
*/
public function getPreferences()
{
return $this->_preferences;
}
/**
* Get serializer
*
* @return \Magento\Framework\Serialize\SerializerInterface
* @deprecated 101.0.0
*/
private function getSerializer()
{
if ($this->serializer === null) {
$this->serializer = \Magento\Framework\App\ObjectManager::getInstance()
->get(SerializerInterface::class);
}
return $this->serializer;
}
}