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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\EntityManager\Sequence;
use Magento\Framework\DB\Sequence\SequenceInterface;
use Magento\Framework\ObjectManagerInterface;
/**
* Class SequenceFactory
*/
class SequenceFactory
{
/**
* @var ObjectManagerInterface
*/
protected $objectManager;
/**
* @var SequenceRegistry
*/
protected $sequenceRegistry;
/**
* @var string
*/
protected $instanceName;
/**
* @param SequenceRegistry $sequenceRegistry
* @param ObjectManagerInterface $objectManager
* @param string $instanceName
*/
public function __construct(
SequenceRegistry $sequenceRegistry,
ObjectManagerInterface $objectManager,
$instanceName = \Magento\Framework\EntityManager\Sequence\Sequence::class
) {
$this->sequenceRegistry = $sequenceRegistry;
$this->objectManager = $objectManager;
$this->instanceName = $instanceName;
}
/**
* Creates sequence instance
*
* @param string $entityType
* @param array $config
* @return SequenceInterface
*/
public function create($entityType, $config)
{
if ($this->sequenceRegistry->retrieve($entityType) === false) {
if (isset($config[$entityType]['sequence'])) {
$this->sequenceRegistry->register(
$entityType,
$config[$entityType]['sequence']
);
} elseif (isset($config[$entityType]['sequenceTable'])) {
if (isset($config[$entityType]['connectionName'])) {
$connectionName = $config[$entityType]['connectionName'];
} else {
$connectionName = 'default';
}
$this->sequenceRegistry->register(
$entityType,
$this->objectManager->create(
$this->instanceName,
[
'connectionName' => $connectionName,
'sequenceTable' => $config[$entityType]['sequenceTable'],
]
),
$config[$entityType]['sequenceTable']
);
} else {
$this->sequenceRegistry->register($entityType);
}
}
return $this->sequenceRegistry->retrieve($entityType)['sequence'];
}
}