Table.php 17.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<?php
/*
 *  $Id$
 *
 * 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
 * and is licensed under the LGPL. For more information, see
 * <http://www.doctrine-project.org>.
 */

namespace Doctrine\DBAL\Schema;

use Doctrine\DBAL\Types\Type;
25
use Doctrine\DBAL\Schema\Visitor\Visitor;
26
use Doctrine\DBAL\DBALException;
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

/**
 * Object Representation of a table
 *
 * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @link    www.doctrine-project.org
 * @since   2.0
 * @version $Revision$
 * @author  Benjamin Eberlei <kontakt@beberlei.de>
 */
class Table extends AbstractAsset
{
    /**
     * @var string
     */
    protected $_name = null;

    /**
     * @var array
     */
    protected $_columns = array();

    /**
     * @var array
     */
    protected $_indexes = array();

    /**
     * @var string
     */
    protected $_primaryKeyName = false;

    /**
     * @var array
     */
62
    protected $_fkConstraints = array();
63 64 65 66 67 68

    /**
     * @var array
     */
    protected $_options = array();

69 70 71 72 73
    /**
     * @var SchemaConfig
     */
    protected $_schemaConfig = null;

74 75 76 77 78
    /**
     *
     * @param string $tableName
     * @param array $columns
     * @param array $indexes
79
     * @param array $fkConstraints
80 81 82
     * @param int $idGeneratorType
     * @param array $options
     */
83
    public function __construct($tableName, array $columns=array(), array $indexes=array(), array $fkConstraints=array(), $idGeneratorType = 0, array $options=array())
84
    {
85 86 87 88
        if (strlen($tableName) == 0) {
            throw DBALException::invalidTableName($tableName);
        }

89
        $this->_setName($tableName);
90
        $this->_idGeneratorType = $idGeneratorType;
91

92 93 94
        foreach ($columns AS $column) {
            $this->_addColumn($column);
        }
95

96 97 98 99
        foreach ($indexes AS $idx) {
            $this->_addIndex($idx);
        }

100 101
        foreach ($fkConstraints AS $constraint) {
            $this->_addForeignKeyConstraint($constraint);
102 103 104 105 106
        }

        $this->_options = $options;
    }

107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
    /**
     * @param SchemaConfig $schemaConfig
     */
    public function setSchemaConfig(SchemaConfig $schemaConfig)
    {
        $this->_schemaConfig = $schemaConfig;
    }

    /**
     * @return int
     */
    protected function _getMaxIdentifierLength()
    {
        if ($this->_schemaConfig instanceof SchemaConfig) {
            return $this->_schemaConfig->getMaxIdentifierLength();
        } else {
            return 63;
        }
    }

127 128 129 130 131 132 133
    /**
     * Set Primary Key
     *
     * @param array $columns
     * @param string $indexName
     * @return Table
     */
134
    public function setPrimaryKey(array $columns, $indexName = false)
135
    {
136 137 138 139 140 141 142 143
        $primaryKey = $this->_createIndex($columns, $indexName ?: "primary", true, true);

        foreach ($columns AS $columnName) {
            $column = $this->getColumn($columnName);
            $column->setNotnull(true);
        }

        return $primaryKey;
144 145 146 147 148 149 150
    }

    /**
     * @param array $columnNames
     * @param string $indexName
     * @return Table
     */
151
    public function addIndex(array $columnNames, $indexName = null)
152
    {
153
        if($indexName == null) {
154
            $indexName = $this->_generateIdentifierName(
155
                array_merge(array($this->getName()), $columnNames), "idx", $this->_getMaxIdentifierLength()
156
            );
157 158
        }

159 160 161 162 163 164 165 166 167
        return $this->_createIndex($columnNames, $indexName, false, false);
    }

    /**
     *
     * @param array $columnNames
     * @param string $indexName
     * @return Table
     */
168
    public function addUniqueIndex(array $columnNames, $indexName = null)
169
    {
170
        if ($indexName == null) {
171
            $indexName = $this->_generateIdentifierName(
172
                array_merge(array($this->getName()), $columnNames), "uniq", $this->_getMaxIdentifierLength()
173
            );
174 175
        }

176 177 178
        return $this->_createIndex($columnNames, $indexName, true, false);
    }

179 180 181 182 183 184 185 186 187
    /**
     * Check if an index begins in the order of the given columns.
     *
     * @param  array $columnsNames
     * @return bool
     */
    public function columnsAreIndexed(array $columnsNames)
    {
        foreach ($this->getIndexes() AS $index) {
188 189
            /* @var $index Index */
            if ($index->spansColumns($columnsNames)) {
190 191 192 193 194 195
                return true;
            }
        }
        return false;
    }

196 197 198 199 200 201 202 203 204 205 206 207 208 209
    /**
     *
     * @param array $columnNames
     * @param string $indexName
     * @param bool $isUnique
     * @param bool $isPrimary
     * @return Table
     */
    private function _createIndex(array $columnNames, $indexName, $isUnique, $isPrimary)
    {
        if (preg_match('(([^a-zA-Z0-9_]+))', $indexName)) {
            throw SchemaException::indexNameInvalid($indexName);
        }

beberlei's avatar
beberlei committed
210 211 212 213 214
        foreach ($columnNames AS $columnName => $indexColOptions) {
            if (is_numeric($columnName) && is_string($indexColOptions)) {
                $columnName = $indexColOptions;
            }

215
            if ( ! $this->hasColumn($columnName)) {
216
                throw SchemaException::columnDoesNotExist($columnName, $this->_name);
217 218 219 220 221 222 223 224 225 226
            }
        }
        $this->_addIndex(new Index($indexName, $columnNames, $isUnique, $isPrimary));
        return $this;
    }

    /**
     * @param string $columnName
     * @param string $columnType
     * @param array $options
227
     * @return Column
228
     */
229
    public function addColumn($columnName, $typeName, array $options=array())
230 231 232 233
    {
        $column = new Column($columnName, Type::getType($typeName), $options);

        $this->_addColumn($column);
234
        return $column;
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
    }

    /**
     * Rename Column
     *
     * @param string $oldColumnName
     * @param string $newColumnName
     * @return Table
     */
    public function renameColumn($oldColumnName, $newColumnName)
    {
        $column = $this->getColumn($oldColumnName);
        $this->dropColumn($oldColumnName);

        $column->_setName($newColumnName);
        return $this;
    }

    /**
     * Change Column Details
255
     *
256 257 258 259 260 261 262 263 264 265 266 267 268
     * @param string $columnName
     * @param array $options
     * @return Table
     */
    public function changeColumn($columnName, array $options)
    {
        $column = $this->getColumn($columnName);
        $column->setOptions($options);
        return $this;
    }

    /**
     * Drop Column from Table
269
     *
270 271 272 273 274
     * @param string $columnName
     * @return Table
     */
    public function dropColumn($columnName)
    {
275
        $columnName = strtolower($columnName);
276 277 278 279 280 281 282 283 284
        $column = $this->getColumn($columnName);
        unset($this->_columns[$columnName]);
        return $this;
    }


    /**
     * Add a foreign key constraint
     *
285 286
     * Name is inferred from the local columns
     *
287 288 289 290
     * @param Table $foreignTable
     * @param array $localColumns
     * @param array $foreignColumns
     * @param array $options
291
     * @param string $constraintName
292 293
     * @return Table
     */
294
    public function addForeignKeyConstraint($foreignTable, array $localColumnNames, array $foreignColumnNames, array $options=array(), $constraintName = null)
295
    {
296 297
        $constraintName = $constraintName ?: $this->_generateIdentifierName(array_merge((array)$this->getName(), $localColumnNames), "fk", $this->_getMaxIdentifierLength());
        return $this->addNamedForeignKeyConstraint($constraintName, $foreignTable, $localColumnNames, $foreignColumnNames, $options);
298 299
    }

300 301 302 303 304
    /**
     * Add a foreign key constraint
     *
     * Name is to be generated by the database itsself.
     *
305
     * @deprecated Use {@link addForeignKeyConstraint}
306 307 308 309 310 311 312 313
     * @param Table $foreignTable
     * @param array $localColumns
     * @param array $foreignColumns
     * @param array $options
     * @return Table
     */
    public function addUnnamedForeignKeyConstraint($foreignTable, array $localColumnNames, array $foreignColumnNames, array $options=array())
    {
314
        return $this->addForeignKeyConstraint($foreignTable, $localColumnNames, $foreignColumnNames, $options);
315 316
    }

317 318 319
    /**
     * Add a foreign key constraint with a given name
     *
320
     * @deprecated Use {@link addForeignKeyConstraint}
321 322 323 324 325 326 327 328
     * @param string $name
     * @param Table $foreignTable
     * @param array $localColumns
     * @param array $foreignColumns
     * @param array $options
     * @return Table
     */
    public function addNamedForeignKeyConstraint($name, $foreignTable, array $localColumnNames, array $foreignColumnNames, array $options=array())
329
    {
330 331 332 333
        if ($foreignTable instanceof Table) {
            $foreignTableName = $foreignTable->getName();

            foreach ($foreignColumnNames AS $columnName) {
334
                if ( ! $foreignTable->hasColumn($columnName)) {
335
                    throw SchemaException::columnDoesNotExist($columnName, $foreignTable->getName());
336
                }
337
            }
338 339
        } else {
            $foreignTableName = $foreignTable;
340
        }
341 342

        foreach ($localColumnNames AS $columnName) {
343
            if ( ! $this->hasColumn($columnName)) {
344
                throw SchemaException::columnDoesNotExist($columnName, $this->_name);
345 346
            }
        }
347

348
        $constraint = new ForeignKeyConstraint(
349
            $localColumnNames, $foreignTableName, $foreignColumnNames, $name, $options
350
        );
351
        $this->_addForeignKeyConstraint($constraint);
352

353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
        return $this;
    }

    /**
     * @param string $name
     * @param string $value
     * @return Table
     */
    public function addOption($name, $value)
    {
        $this->_options[$name] = $value;
        return $this;
    }

    /**
     * @param Column $column
     */
    protected function _addColumn(Column $column)
    {
372 373 374
        $columnName = $column->getName();
        $columnName = strtolower($columnName);

375
        if (isset($this->_columns[$columnName])) {
376
            throw SchemaException::columnAlreadyExists($this->getName(), $columnName);
377 378 379 380 381 382 383
        }

        $this->_columns[$columnName] = $column;
    }

    /**
     * Add index to table
384
     *
385
     * @param Index $indexCandidate
386 387
     * @return Table
     */
388
    protected function _addIndex(Index $indexCandidate)
389
    {
390 391
        // check for duplicates
        foreach ($this->_indexes AS $existingIndex) {
392
            if ($indexCandidate->isFullfilledBy($existingIndex)) {
393 394 395 396
                return $this;
            }
        }

397
        $indexName = $indexCandidate->getName();
398
        $indexName = strtolower($indexName);
399

400
        if (isset($this->_indexes[$indexName]) || ($this->_primaryKeyName != false && $indexCandidate->isPrimary())) {
401
            throw SchemaException::indexAlreadyExists($indexName, $this->_name);
402 403
        }

404 405 406 407 408 409 410 411
        // remove overruled indexes
        foreach ($this->_indexes AS $idxKey => $existingIndex) {
            if ($indexCandidate->overrules($existingIndex)) {
                unset($this->_indexes[$idxKey]);
            }
        }

        if ($indexCandidate->isPrimary()) {
412 413 414
            $this->_primaryKeyName = $indexName;
        }

415
        $this->_indexes[$indexName] = $indexCandidate;
416 417 418 419
        return $this;
    }

    /**
420
     * @param ForeignKeyConstraint $constraint
421
     */
422
    protected function _addForeignKeyConstraint(ForeignKeyConstraint $constraint)
423
    {
424
        $constraint->setLocalTable($this);
425

426 427 428 429
        if(strlen($constraint->getName())) {
            $name = $constraint->getName();
        } else {
            $name = $this->_generateIdentifierName(
430
                array_merge((array)$this->getName(), $constraint->getLocalColumns()), "fk", $this->_getMaxIdentifierLength()
431 432
            );
        }
433
        $name = strtolower($name);
434 435

        $this->_fkConstraints[$name] = $constraint;
436 437 438 439
        // add an explicit index on the foreign key columns. If there is already an index that fullfils this requirements drop the request.
        // In the case of __construct calling this method during hydration from schema-details all the explicitly added indexes
        // lead to duplicates. This creates compuation overhead in this case, however no duplicate indexes are ever added (based on columns).
        $this->addIndex($constraint->getColumns());
440 441 442 443 444 445 446 447 448 449
    }

    /**
     * Does Table have a foreign key constraint with the given name?
     *      *
     * @param  string $constraintName
     * @return bool
     */
    public function hasForeignKey($constraintName)
    {
450
        $constraintName = strtolower($constraintName);
451 452 453 454 455 456 457 458 459
        return isset($this->_fkConstraints[$constraintName]);
    }

    /**
     * @param string $constraintName
     * @return ForeignKeyConstraint
     */
    public function getForeignKey($constraintName)
    {
460
        $constraintName = strtolower($constraintName);
461
        if(!$this->hasForeignKey($constraintName)) {
462
            throw SchemaException::foreignKeyDoesNotExist($constraintName, $this->_name);
463 464 465
        }

        return $this->_fkConstraints[$constraintName];
466 467
    }

468 469 470 471 472 473 474 475 476 477
    public function removeForeignKey($constraintName)
    {
        $constraintName = strtolower($constraintName);
        if(!$this->hasForeignKey($constraintName)) {
            throw SchemaException::foreignKeyDoesNotExist($constraintName, $this->_name);
        }

        unset($this->_fkConstraints[$constraintName]);
    }

478 479 480 481 482
    /**
     * @return Column[]
     */
    public function getColumns()
    {
483 484 485 486 487
        $columns = $this->_columns;

        $pkCols = array();
        $fkCols = array();

488
        if ($this->hasPrimaryKey()) {
489 490 491 492 493 494 495 496 497 498 499 500
            $pkCols = $this->getPrimaryKey()->getColumns();
        }
        foreach ($this->getForeignKeys() AS $fk) {
            /* @var $fk ForeignKeyConstraint */
            $fkCols = array_merge($fkCols, $fk->getColumns());
        }
        $colNames = array_unique(array_merge($pkCols, $fkCols, array_keys($columns)));

        uksort($columns, function($a, $b) use($colNames) {
            return (array_search($a, $colNames) >= array_search($b, $colNames));
        });
        return $columns;
501 502 503 504 505 506 507 508 509 510 511
    }


    /**
     * Does this table have a column with the given name?
     *
     * @param  string $columnName
     * @return bool
     */
    public function hasColumn($columnName)
    {
512
        $columnName = $this->trimQuotes(strtolower($columnName));
513 514 515 516 517
        return isset($this->_columns[$columnName]);
    }

    /**
     * Get a column instance
518
     *
519 520 521 522 523
     * @param  string $columnName
     * @return Column
     */
    public function getColumn($columnName)
    {
524
        $columnName = strtolower($this->trimQuotes($columnName));
525
        if (!$this->hasColumn($columnName)) {
526
            throw SchemaException::columnDoesNotExist($columnName, $this->_name);
527 528 529 530 531 532
        }

        return $this->_columns[$columnName];
    }

    /**
533
     * @return Index|null
534 535 536
     */
    public function getPrimaryKey()
    {
537 538 539
        if (!$this->hasPrimaryKey()) {
            return null;
        }
540 541 542
        return $this->getIndex($this->_primaryKeyName);
    }

543 544 545 546 547 548 549 550 551 552
    /**
     * Check if this table has a primary key.
     *
     * @return bool
     */
    public function hasPrimaryKey()
    {
        return ($this->_primaryKeyName && $this->hasIndex($this->_primaryKeyName));
    }

553 554 555 556 557 558
    /**
     * @param  string $indexName
     * @return bool
     */
    public function hasIndex($indexName)
    {
559
        $indexName = strtolower($indexName);
560 561 562 563 564 565 566 567 568
        return (isset($this->_indexes[$indexName]));
    }

    /**
     * @param  string $indexName
     * @return Index
     */
    public function getIndex($indexName)
    {
569
        $indexName = strtolower($indexName);
570
        if (!$this->hasIndex($indexName)) {
571
            throw SchemaException::indexDoesNotExist($indexName, $this->_name);
572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
        }
        return $this->_indexes[$indexName];
    }

    /**
     * @return array
     */
    public function getIndexes()
    {
        return $this->_indexes;
    }

    /**
     * Get Constraints
     *
     * @return array
     */
589
    public function getForeignKeys()
590
    {
591
        return $this->_fkConstraints;
592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
    }

    public function hasOption($name)
    {
        return isset($this->_options[$name]);
    }

    public function getOption($name)
    {
        return $this->_options[$name];
    }

    public function getOptions()
    {
        return $this->_options;
    }

609
    /**
610 611 612 613 614 615
     * @param Visitor $visitor
     */
    public function visit(Visitor $visitor)
    {
        $visitor->acceptTable($this);

616
        foreach ($this->getColumns() AS $column) {
617
            $visitor->acceptColumn($this, $column);
618 619
        }

620
        foreach ($this->getIndexes() AS $index) {
621 622 623
            $visitor->acceptIndex($this, $index);
        }

624 625
        foreach ($this->getForeignKeys() AS $constraint) {
            $visitor->acceptForeignKey($this, $constraint);
626 627
        }
    }
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644

    /**
     * Clone of a Table triggers a deep clone of all affected assets
     */
    public function __clone()
    {
        foreach ($this->_columns AS $k => $column) {
            $this->_columns[$k] = clone $column;
        }
        foreach ($this->_indexes AS $k => $index) {
            $this->_indexes[$k] = clone $index;
        }
        foreach ($this->_fkConstraints AS $k => $fk) {
            $this->_fkConstraints[$k] = clone $fk;
            $this->_fkConstraints[$k]->setLocalTable($this);
        }
    }
645
}