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:
<?php
namespace Inlm\SchemaGenerator;
use CzProject\SqlSchema;
class SchemaGenerator
{
private $extractor;
private $adapter;
private $dumper;
private $logger;
private $options;
private $customTypes;
private $testMode = FALSE;
public function __construct(IExtractor $extractor, IAdapter $adapter, IDumper $dumper, ILogger $logger = NULL)
{
$this->extractor = $extractor;
$this->adapter = $adapter;
$this->dumper = $dumper;
$this->logger = $logger;
$this->options = array(
'ENGINE' => 'InnoDB',
'CHARACTER SET' => 'utf8mb4',
'COLLATE' => 'utf8mb4_czech_ci',
);
$this->setCustomType('money', 'DECIMAL', array(15, 4));
}
public function setCustomType($name, $dbType, $dbParameters = array(), array $dbOptions = array())
{
$this->customTypes[strtolower($name)] = new DataType($dbType, $dbParameters, $dbOptions);
return $this;
}
public function setOption($option, $value)
{
if ($value === NULL) {
unset($this->options[$option]);
} else {
$this->options[$option] = $value;
}
return $this;
}
public function setTestMode($testMode = TRUE)
{
$this->testMode = $testMode;
return $this;
}
public function generate()
{
if ($this->testMode) {
$this->log('TEST MODE');
}
$configOld = $this->adapter->load();
$options = $configOld->getOptions() + $this->options;
$this->log('Generating schema');
$configNew = new Configuration($this->extractor->generateSchema($options, $this->customTypes));
$configNew->setOptions($options);
$this->log('Generating diff');
$schemaDiff = new DiffGenerator($configOld->getSchema(), $configNew->getSchema());
$this->log('Generating migrations');
$this->dumper->start();
foreach ($schemaDiff->getCreatedTables() as $table) {
$this->log(" - created table {$table->getDefinition()->getName()}");
$this->dumper->createTable($table);
}
foreach ($schemaDiff->getUpdatedTables() as $updatedTable) {
foreach ($updatedTable->getCreatedColumns() as $column) {
$this->log(" - created column {$column->getTableName()}.{$column->getDefinition()->getName()}");
$this->dumper->createTableColumn($column);
}
foreach ($updatedTable->getCreatedIndexes() as $index) {
$this->log(" - created index {$index->getTableName()}.{$index->getDefinition()->getName()}");
$this->dumper->createTableIndex($index);
}
foreach ($updatedTable->getCreatedForeignKeys() as $foreignKey) {
$this->log(" - created foreign key {$foreignKey->getTableName()}.{$foreignKey->getDefinition()->getName()}");
$this->dumper->createForeignKey($foreignKey);
}
foreach ($updatedTable->getAddedOptions() as $option) {
$this->log(" - added option {$option->getTableName()}.{$option->getOption()}");
$this->dumper->addTableOption($option);
}
foreach ($updatedTable->getUpdatedColumns() as $column) {
$this->log(" - updated column {$column->getTableName()}.{$column->getDefinition()->getName()}");
$this->dumper->updateTableColumn($column);
}
foreach ($updatedTable->getUpdatedIndexes() as $index) {
$this->log(" - updated index {$index->getTableName()}.{$index->getDefinition()->getName()}");
$this->dumper->updateTableIndex($index);
}
foreach ($updatedTable->getUpdatedForeignKeys() as $foreignKey) {
$this->log(" - updated foreign key {$foreignKey->getTableName()}.{$foreignKey->getDefinition()->getName()}");
$this->dumper->updateForeignKey($foreignKey);
}
foreach ($updatedTable->getUpdatedOptions() as $option) {
$this->log(" - updated option {$option->getTableName()}.{$option->getOption()}");
$this->dumper->updateTableOption($option);
}
foreach ($updatedTable->getUpdatedComments() as $comment) {
$this->log(" - updated comment for {$comment->getTableName()}");
$this->dumper->updateTableComment($comment);
}
foreach ($updatedTable->getRemovedForeignKeys() as $foreignKey) {
$this->log(" - REMOVED foreign key {$foreignKey->getTableName()}.{$foreignKey->getForeignKeyName()}");
$this->dumper->removeForeignKey($foreignKey);
}
foreach ($updatedTable->getRemovedIndexes() as $index) {
$this->log(" - REMOVED index {$index->getTableName()}.{$index->getIndexName()}");
$this->dumper->removeTableIndex($index);
}
foreach ($updatedTable->getRemovedColumns() as $column) {
$this->log(" - REMOVED column {$column->getTableName()}.{$column->getColumnName()}");
$this->dumper->removeTableColumn($column);
}
foreach ($updatedTable->getRemovedOptions() as $option) {
$this->log(" - REMOVED option {$option->getTableName()}.{$option->getOption()}");
$this->dumper->removeTableOption($option);
}
}
foreach ($schemaDiff->getRemovedTables() as $removedTable) {
$this->log(" - REMOVED table {$removedTable->getTableName()}");
$this->dumper->removeTable($removedTable);
}
$this->dumper->end();
if (!$this->testMode) {
$this->log('Saving schema');
$this->adapter->save($configNew);
}
$this->log('Done.');
}
private function log($msg)
{
if (isset($this->logger)) {
$this->logger->log($msg);
}
}
}