DrizzleSchemaManager.php 3.94 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php
/*
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
Benjamin Eberlei's avatar
Benjamin Eberlei committed
16
 * and is licensed under the MIT license. For more information, see
17 18 19 20 21
 * <http://www.doctrine-project.org>.
 */

namespace Doctrine\DBAL\Schema;

22 23
use Doctrine\DBAL\Types\Type;

24 25 26
/**
 * Schema manager for the Drizzle RDBMS.
 *
Kim Hemsø Rasmussen's avatar
Kim Hemsø Rasmussen committed
27
 * @author Kim Hemsø Rasmussen <kimhemsoe@gmail.com>
28 29 30
 */
class DrizzleSchemaManager extends AbstractSchemaManager
{
Benjamin Morel's avatar
Benjamin Morel committed
31 32 33
    /**
     * {@inheritdoc}
     */
34 35
    protected function _getPortableTableColumnDefinition($tableColumn)
    {
36
        $dbType = strtolower($tableColumn['DATA_TYPE']);
37 38 39

        $type = $this->_platform->getDoctrineTypeMapping($dbType);
        $type = $this->extractDoctrineTypeFromComment($tableColumn['COLUMN_COMMENT'], $type);
40
        $tableColumn['COLUMN_COMMENT'] = $this->removeDoctrineTypeFromComment($tableColumn['COLUMN_COMMENT'], $type);
41

42
        $options = array(
43 44
            'notnull' => !(bool)$tableColumn['IS_NULLABLE'],
            'length' => (int)$tableColumn['CHARACTER_MAXIMUM_LENGTH'],
45
            'default' => isset($tableColumn['COLUMN_DEFAULT']) ? $tableColumn['COLUMN_DEFAULT'] : null,
46 47 48
            'autoincrement' => (bool)$tableColumn['IS_AUTO_INCREMENT'],
            'scale' => (int)$tableColumn['NUMERIC_SCALE'],
            'precision' => (int)$tableColumn['NUMERIC_PRECISION'],
49
            'comment' => (isset($tableColumn['COLUMN_COMMENT']) ? $tableColumn['COLUMN_COMMENT'] : null),
50
        );
51

52 53 54 55 56 57 58
        $column = new Column($tableColumn['COLUMN_NAME'], Type::getType($type), $options);

        if ( ! empty($tableColumn['COLLATION_NAME'])) {
            $column->setPlatformOption('collation', $tableColumn['COLLATION_NAME']);
        }

        return $column;
59 60
    }

Benjamin Morel's avatar
Benjamin Morel committed
61 62 63
    /**
     * {@inheritdoc}
     */
64 65 66 67 68
    protected function _getPortableDatabaseDefinition($database)
    {
        return $database['SCHEMA_NAME'];
    }

Benjamin Morel's avatar
Benjamin Morel committed
69 70 71
    /**
     * {@inheritdoc}
     */
72 73 74 75
    protected function _getPortableTableDefinition($table)
    {
        return $table['TABLE_NAME'];
    }
76

Benjamin Morel's avatar
Benjamin Morel committed
77 78 79
    /**
     * {@inheritdoc}
     */
80 81 82
    public function _getPortableTableForeignKeyDefinition($tableForeignKey)
    {
        $columns = array();
Kim Hemsø Rasmussen's avatar
Kim Hemsø Rasmussen committed
83
        foreach (explode(',', $tableForeignKey['CONSTRAINT_COLUMNS']) as $value) {
84
            $columns[] = trim($value, ' `');
85 86 87
        }

        $ref_columns = array();
Kim Hemsø Rasmussen's avatar
Kim Hemsø Rasmussen committed
88
        foreach (explode(',', $tableForeignKey['REFERENCED_TABLE_COLUMNS']) as $value) {
89
            $ref_columns[] = trim($value, ' `');
90 91 92 93 94 95
        }

        return new ForeignKeyConstraint(
            $columns,
            $tableForeignKey['REFERENCED_TABLE_NAME'],
            $ref_columns,
96
            $tableForeignKey['CONSTRAINT_NAME'],
97 98 99 100 101
            array(
                'onUpdate' => $tableForeignKey['UPDATE_RULE'],
                'onDelete' => $tableForeignKey['DELETE_RULE'],
            )
        );
Kim Hemsø Rasmussen's avatar
Kim Hemsø Rasmussen committed
102 103
    }

Benjamin Morel's avatar
Benjamin Morel committed
104 105 106
    /**
     * {@inheritdoc}
     */
107
    protected function _getPortableTableIndexesList($tableIndexes, $tableName = null)
Kim Hemsø Rasmussen's avatar
Kim Hemsø Rasmussen committed
108 109 110 111 112 113
    {
        $indexes = array();
        foreach ($tableIndexes as $k) {
            $k['primary'] = (boolean)$k['primary'];
            $indexes[] = $k;
        }
114

Kim Hemsø Rasmussen's avatar
Kim Hemsø Rasmussen committed
115
        return parent::_getPortableTableIndexesList($indexes, $tableName);
116
    }
117
}