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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Setup\Model;
use Magento\Framework\Setup\Declaration\Schema\Diff\SchemaDiff;
use Magento\Framework\Setup\Declaration\Schema\OperationsExecutor;
use Magento\Framework\Setup\Declaration\Schema\SchemaConfigInterface;
/**
* Declaration Installer is facade for installation and upgrade db in declaration mode.
*/
class DeclarationInstaller
{
/**
* @var OperationsExecutor
*/
private $operationsExecutor;
/**
* @var SchemaDiff
*/
private $schemaDiff;
/**
* @var SchemaConfigInterface
*/
private $schemaConfig;
/**
* Constructor.
*
* @param SchemaConfigInterface $schemaConfig
* @param SchemaDiff $schemaDiff
* @param OperationsExecutor $operationsExecutor
*/
public function __construct(
SchemaConfigInterface $schemaConfig,
SchemaDiff $schemaDiff,
OperationsExecutor $operationsExecutor
) {
$this->operationsExecutor = $operationsExecutor;
$this->schemaConfig = $schemaConfig;
$this->schemaDiff = $schemaDiff;
}
/**
* Install Schema in declarative way.
*
* @param array $requestData -> Data params which comes from UI or from CLI.
* @return void
*/
public function installSchema(array $requestData)
{
$declarativeSchema = $this->schemaConfig->getDeclarationConfig();
$dbSchema = $this->schemaConfig->getDbConfig();
$diff = $this->schemaDiff->diff($declarativeSchema, $dbSchema);
$this->operationsExecutor->execute($diff, $requestData);
}
}