DrizzleSchemaManager.php 3.79 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 22 23 24
 * <http://www.doctrine-project.org>.
 */

namespace Doctrine\DBAL\Schema;

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

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

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

        return new Column($tableName, \Doctrine\DBAL\Types\Type::getType($type), $options);
    }

Benjamin Morel's avatar
Benjamin Morel committed
54 55 56
    /**
     * {@inheritdoc}
     */
57 58 59 60 61
    protected function _getPortableDatabaseDefinition($database)
    {
        return $database['SCHEMA_NAME'];
    }

Benjamin Morel's avatar
Benjamin Morel committed
62 63 64
    /**
     * {@inheritdoc}
     */
65 66 67 68
    protected function _getPortableTableDefinition($table)
    {
        return $table['TABLE_NAME'];
    }
69

Benjamin Morel's avatar
Benjamin Morel committed
70 71 72
    /**
     * {@inheritdoc}
     */
73 74 75
    public function _getPortableTableForeignKeyDefinition($tableForeignKey)
    {
        $columns = array();
Kim Hemsø Rasmussen's avatar
Kim Hemsø Rasmussen committed
76
        foreach (explode(',', $tableForeignKey['CONSTRAINT_COLUMNS']) as $value) {
77
            $columns[] = trim($value, ' `');
78 79 80
        }

        $ref_columns = array();
Kim Hemsø Rasmussen's avatar
Kim Hemsø Rasmussen committed
81
        foreach (explode(',', $tableForeignKey['REFERENCED_TABLE_COLUMNS']) as $value) {
82
            $ref_columns[] = trim($value, ' `');
83 84 85 86 87 88
        }

        return new ForeignKeyConstraint(
            $columns,
            $tableForeignKey['REFERENCED_TABLE_NAME'],
            $ref_columns,
89
            $tableForeignKey['CONSTRAINT_NAME'],
90 91 92 93 94
            array(
                'onUpdate' => $tableForeignKey['UPDATE_RULE'],
                'onDelete' => $tableForeignKey['DELETE_RULE'],
            )
        );
Kim Hemsø Rasmussen's avatar
Kim Hemsø Rasmussen committed
95 96
    }

Benjamin Morel's avatar
Benjamin Morel committed
97 98 99
    /**
     * {@inheritdoc}
     */
100
    protected function _getPortableTableIndexesList($tableIndexes, $tableName = null)
Kim Hemsø Rasmussen's avatar
Kim Hemsø Rasmussen committed
101 102 103 104 105 106
    {
        $indexes = array();
        foreach ($tableIndexes as $k) {
            $k['primary'] = (boolean)$k['primary'];
            $indexes[] = $k;
        }
107

Kim Hemsø Rasmussen's avatar
Kim Hemsø Rasmussen committed
108
        return parent::_getPortableTableIndexesList($indexes, $tableName);
109
    }
110
}