1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/lib/Doctrine/Export.php

828 lines
36 KiB
PHP
Raw Normal View History

2006-09-29 16:04:46 +04:00
<?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.phpdoctrine.com>.
*/
2006-11-15 23:36:58 +03:00
Doctrine::autoload('Doctrine_Connection_Module');
2006-09-29 16:04:46 +04:00
/**
* Doctrine_Export
*
* @package Doctrine
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
2006-12-03 01:44:53 +03:00
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/
2006-12-29 17:40:47 +03:00
class Doctrine_Export extends Doctrine_Connection_Module
{
/**
* drop an existing database
* (this method is implemented by the drivers)
*
* @param string $name name of the database that should be dropped
* @return void
*/
2006-12-29 17:40:47 +03:00
public function dropDatabase($database)
{
throw new Doctrine_Export_Exception('Drop database not supported by this driver.');
}
/**
* dropTable
2006-12-01 01:33:54 +03:00
* drop an existing table
*
2006-12-01 01:33:54 +03:00
* @param string $table name of table that should be dropped from the database
* @throws PDOException
* @return void
*/
2006-12-29 17:40:47 +03:00
public function dropTable($table)
{
2006-12-22 01:06:08 +03:00
$this->conn->execute('DROP TABLE ' . $table);
}
/**
* drop existing index
*
2006-12-01 01:33:54 +03:00
* @param string $table name of table that should be used in method
* @param string $name name of the index to be dropped
* @return void
*/
2006-12-29 17:40:47 +03:00
public function dropIndex($table, $name)
{
$name = $this->conn->quoteIdentifier($this->conn->getIndexName($name), true);
2006-12-22 01:06:08 +03:00
return $this->conn->exec('DROP INDEX ' . $name);
}
/**
* drop existing constraint
*
* @param string $table name of table that should be used in method
* @param string $name name of the constraint to be dropped
* @param string $primary hint if the constraint is primary
* @return void
*/
2006-12-29 17:40:47 +03:00
public function dropConstraint($table, $name, $primary = false)
{
$table = $this->conn->quoteIdentifier($table, true);
$name = $this->conn->quoteIdentifier($this->conn->getIndexName($name), true);
2006-12-22 01:06:08 +03:00
return $this->conn->exec('ALTER TABLE ' . $table . ' DROP CONSTRAINT ' . $name);
}
/**
* drop existing sequence
* (this method is implemented by the drivers)
*
* @param string $seq_name name of the sequence to be dropped
* @return void
*/
2006-12-29 17:40:47 +03:00
public function dropSequence($name)
{
throw new Doctrine_Export_Exception('Drop sequence not supported by this driver.');
}
/**
* create a new database
* (this method is implemented by the drivers)
*
* @param string $name name of the database that should be created
* @return void
*/
2006-12-29 17:40:47 +03:00
public function createDatabase($database)
{
throw new Doctrine_Export_Exception('Create database not supported by this driver.');
}
/**
* create a new table
*
* @param string $name Name of the database that should be created
* @param array $fields Associative array that contains the definition of each field of the new table
* The indexes of the array entries are the names of the fields of the table an
* the array entry values are associative arrays like those that are meant to be
* passed with the field definitions to get[Type]Declaration() functions.
* array(
* 'id' => array(
* 'type' => 'integer',
* 'unsigned' => 1
* 'notnull' => 1
* 'default' => 0
* ),
* 'name' => array(
* 'type' => 'text',
* 'length' => 12
* ),
* 'password' => array(
* 'type' => 'text',
* 'length' => 12
* )
* );
* @param array $options An associative array of table options:
*
2007-02-11 00:51:53 +03:00
* @return string
*/
2007-02-11 00:51:53 +03:00
public function createTableSql($name, array $fields, array $options = array())
2007-01-05 02:52:18 +03:00
{
if ( ! $name) {
throw new Doctrine_Export_Exception('no valid table name specified');
2007-01-05 02:52:18 +03:00
}
2006-12-29 17:01:31 +03:00
if (empty($fields)) {
throw new Doctrine_Export_Exception('no fields specified for table '.$name);
2006-12-29 17:01:31 +03:00
}
$queryFields = $this->getFieldDeclarationList($fields);
if (isset($options['primary']) && ! empty($options['primary'])) {
2007-02-11 00:51:53 +03:00
$queryFields .= ', PRIMARY KEY(' . implode(', ', array_values($options['primary'])) . ')';
}
if (isset($options['indexes']) && ! empty($options['indexes'])) {
foreach($options['indexes'] as $index => $definition) {
$queryFields .= ', ' . $this->getIndexDeclaration($index, $definition);
}
}
$name = $this->conn->quoteIdentifier($name, true);
$query = 'CREATE TABLE ' . $name . ' (' . $queryFields . ')';
2007-01-05 03:28:36 +03:00
2007-02-11 00:51:53 +03:00
return $query;
}
/**
* create a new table
*
* @param string $name Name of the database that should be created
* @param array $fields Associative array that contains the definition of each field of the new table
* @param array $options An associative array of table options:
* @see Doctrine_Export::createTableSql()
*
* @return void
*/
public function createTable($name, array $fields, array $options = array())
{
return $this->conn->execute($this->createTableSql($name, $fields, $options));
}
/**
* create sequence
*
2006-12-03 01:44:53 +03:00
* @param string $seqName name of the sequence to be created
* @param string $start start value of the sequence; default is 1
* @return void
*/
2007-01-10 23:34:25 +03:00
public function createSequence($seqName, $start = 1)
2007-02-11 00:51:53 +03:00
{
return $this->conn->execute($this->createSequenceSql($seqName, $start = 1));
}
/**
* return RDBMS specific create sequence statement
* (this method is implemented by the drivers)
*
* @param string $seqName name of the sequence to be created
* @param string $start start value of the sequence; default is 1
* @return string
*/
public function createSequenceSql($seqName, $start = 1)
2006-12-29 17:40:47 +03:00
{
throw new Doctrine_Export_Exception('Create sequence not supported by this driver.');
}
/**
* create a constraint on a table
*
* @param string $table name of the table on which the constraint is to be created
* @param string $name name of the constraint to be created
* @param array $definition associative array that defines properties of the constraint to be created.
* Currently, only one property named FIELDS is supported. This property
* is also an associative with the names of the constraint fields as array
* constraints. Each entry of this array is set to another type of associative
* array that specifies properties of the constraint that are specific to
* each field.
*
* Example
* array(
* 'fields' => array(
* 'user_name' => array(),
* 'last_login' => array()
* )
* )
* @return void
*/
2006-12-29 17:40:47 +03:00
public function createConstraint($table, $name, $definition)
{
$table = $this->conn->quoteIdentifier($table, true);
$name = $this->conn->quoteIdentifier($this->conn->getIndexName($name), true);
2007-01-26 01:27:20 +03:00
$query = 'ALTER TABLE ' . $table . ' ADD CONSTRAINT ' . $name;
if (!empty($definition['primary'])) {
2007-01-26 01:27:20 +03:00
$query .= ' PRIMARY KEY';
} elseif (!empty($definition['unique'])) {
2007-01-26 01:27:20 +03:00
$query .= ' UNIQUE';
}
$fields = array();
foreach (array_keys($definition['fields']) as $field) {
$fields[] = $this->conn->quoteIdentifier($field, true);
}
$query .= ' ('. implode(', ', $fields) . ')';
2006-12-22 01:06:08 +03:00
return $this->conn->exec($query);
}
/**
* Get the stucture of a field into an array
*
* @param string $table name of the table on which the index is to be created
* @param string $name name of the index to be created
* @param array $definition associative array that defines properties of the index to be created.
* Currently, only one property named FIELDS is supported. This property
* is also an associative with the names of the index fields as array
* indexes. Each entry of this array is set to another type of associative
* array that specifies properties of the index that are specific to
* each field.
*
* Currently, only the sorting property is supported. It should be used
* to define the sorting direction of the index. It may be set to either
* ascending or descending.
*
* Not all DBMS support index sorting direction configuration. The DBMS
* drivers of those that do not support it ignore this property. Use the
* function supports() to determine whether the DBMS driver can manage indexes.
*
* Example
* array(
* 'fields' => array(
* 'user_name' => array(
* 'sorting' => 'ascending'
* ),
* 'last_login' => array()
* )
* )
* @return void
*/
2006-12-29 17:40:47 +03:00
public function createIndex($table, $name, array $definition)
{
2006-12-22 01:06:08 +03:00
return $this->conn->execute($this->createIndexSql($table, $name, $definition));
}
/**
* Get the stucture of a field into an array
*
* @param string $table name of the table on which the index is to be created
* @param string $name name of the index to be created
* @param array $definition associative array that defines properties of the index to be created.
2007-01-26 01:27:20 +03:00
* @see Doctrine_Export::createIndex()
* @return string
*/
2006-12-29 17:40:47 +03:00
public function createIndexSql($table, $name, array $definition)
{
$table = $this->conn->quoteIdentifier($table);
$name = $this->conn->quoteIdentifier($name);
2007-02-10 17:41:24 +03:00
$type = '';
2007-02-11 00:51:53 +03:00
2007-02-10 17:41:24 +03:00
if(isset($definition['type'])) {
switch (strtolower($definition['type'])) {
case 'unique':
$type = strtoupper($definition['type']) . ' ';
break;
default:
throw new Doctrine_Export_Exception('Unknown index type ' . $definition['type']);
}
}
$query = 'CREATE ' . $type . 'INDEX ' . $name . ' ON ' . $table;
$fields = array();
foreach (array_keys($definition['fields']) as $field) {
$fields[] = $this->conn->quoteIdentifier($field);
}
2007-01-08 03:13:41 +03:00
$query .= ' (' . implode(', ', $fields) . ')';
2006-12-01 01:33:54 +03:00
return $query;
2007-01-26 01:27:20 +03:00
}
/**
* createForeignKey
*
* @param string $table name of the table on which the index is to be created
* @param string $name name of the foreign key to be created
* @param array $definition associative array that defines properties of the foreign key to be created.
*/
public function createForeignKey($table, $name, array $definition)
{
}
/**
* alter an existing table
* (this method is implemented by the drivers)
*
* @param string $name name of the table that is intended to be changed.
* @param array $changes associative array that contains the details of each type
* of change that is intended to be performed. The types of
* changes that are currently supported are defined as follows:
*
* name
*
* New name for the table.
*
* add
*
* Associative array with the names of fields to be added as
* indexes of the array. The value of each entry of the array
* should be set to another associative array with the properties
* of the fields to be added. The properties of the fields should
* be the same as defined by the MDB2 parser.
*
*
* remove
*
* Associative array with the names of fields to be removed as indexes
* of the array. Currently the values assigned to each entry are ignored.
* An empty array should be used for future compatibility.
*
* rename
*
* Associative array with the names of fields to be renamed as indexes
* of the array. The value of each entry of the array should be set to
* another associative array with the entry named name with the new
* field name and the entry named Declaration that is expected to contain
* the portion of the field declaration already in DBMS specific SQL code
* as it is used in the CREATE TABLE statement.
*
* change
*
* Associative array with the names of the fields to be changed as indexes
* of the array. Keep in mind that if it is intended to change either the
* name of a field and any other properties, the change array entries
* should have the new names of the fields as array indexes.
*
* The value of each entry of the array should be set to another associative
* array with the properties of the fields to that are meant to be changed as
* array entries. These entries should be assigned to the new values of the
* respective properties. The properties of the fields should be the same
* as defined by the MDB2 parser.
*
* Example
* array(
* 'name' => 'userlist',
* 'add' => array(
* 'quota' => array(
* 'type' => 'integer',
* 'unsigned' => 1
* )
* ),
* 'remove' => array(
* 'file_limit' => array(),
* 'time_limit' => array()
* ),
* 'change' => array(
* 'name' => array(
* 'length' => '20',
* 'definition' => array(
* 'type' => 'text',
* 'length' => 20,
* ),
* )
* ),
* 'rename' => array(
* 'sex' => array(
* 'name' => 'gender',
* 'definition' => array(
* 'type' => 'text',
* 'length' => 1,
* 'default' => 'M',
* ),
* )
* )
* )
*
* @param boolean $check indicates whether the function should just check if the DBMS driver
* can perform the requested table alterations if the value is true or
* actually perform them otherwise.
* @return void
*/
2006-12-29 17:40:47 +03:00
public function alterTable($name, array $changes, $check)
{
2006-12-22 01:06:08 +03:00
$this->conn->execute($this->alterTableSql($name, $changes, $check));
}
/**
2007-01-25 14:02:00 +03:00
* generates the sql for altering an existing table
* (this method is implemented by the drivers)
*
2007-01-25 14:02:00 +03:00
* @param string $name name of the table that is intended to be changed.
* @param array $changes associative array that contains the details of each type *
* @param boolean $check indicates whether the function should just check if the DBMS driver
* can perform the requested table alterations if the value is true or
* actually perform them otherwise.
* @see Doctrine_Export::alterTable()
* @return string
*/
2006-12-29 17:40:47 +03:00
public function alterTableSql($name, array $changes, $check)
{
throw new Doctrine_Export_Exception('Alter table not supported by this driver.');
}
/**
* Get declaration of a number of field in bulk
*
2006-12-01 01:33:54 +03:00
* @param array $fields a multidimensional associative array.
* The first dimension determines the field name, while the second
* dimension is keyed with the name of the properties
* of the field being declared as array indexes. Currently, the types
* of supported field properties are as follows:
*
2006-12-01 01:33:54 +03:00
* length
* Integer value that determines the maximum length of the text
* field. If this argument is missing the field should be
* declared to have the longest length allowed by the DBMS.
*
* default
2006-12-01 01:33:54 +03:00
* Text value to be used as default for this field.
*
* notnull
* Boolean flag that indicates whether this field is constrained
* to not be set to null.
2006-12-01 01:33:54 +03:00
* charset
* Text value with the default CHARACTER SET for this field.
* collation
* Text value with the default COLLATION for this field.
2007-02-10 17:22:02 +03:00
* unique
* unique constraint
*
* @return string
*/
2006-12-29 17:40:47 +03:00
public function getFieldDeclarationList(array $fields)
{
foreach ($fields as $fieldName => $field) {
$query = $this->getDeclaration($fieldName, $field);
$queryFields[] = $query;
}
return implode(', ', $queryFields);
}
/**
* Obtain DBMS specific SQL code portion needed to declare a generic type
* field to be used in statements like CREATE TABLE.
*
* @param string $name name the field to be declared.
* @param array $field associative array with the name of the properties
* of the field being declared as array indexes. Currently, the types
* of supported field properties are as follows:
*
* length
* Integer value that determines the maximum length of the text
* field. If this argument is missing the field should be
* declared to have the longest length allowed by the DBMS.
*
* default
* Text value to be used as default for this field.
*
* notnull
* Boolean flag that indicates whether this field is constrained
* to not be set to null.
* charset
* Text value with the default CHARACTER SET for this field.
* collation
* Text value with the default COLLATION for this field.
2007-02-10 17:22:02 +03:00
* unique
* unique constraint
*
* @return string DBMS specific SQL code portion that should be used to
* declare the specified field.
*/
2006-12-29 17:40:47 +03:00
public function getDeclaration($name, array $field)
{
2007-02-11 11:42:13 +03:00
$default = $this->getDefaultFieldDeclaration($field);
2007-02-10 17:22:02 +03:00
$charset = (isset($field['charset']) && $field['charset']) ?
' ' . $this->getCharsetFieldDeclaration($field['charset']) : '';
$collation = (isset($field['collation']) && $field['collation']) ?
' ' . $this->getCollationFieldDeclaration($field['collation']) : '';
2006-12-29 17:01:31 +03:00
2007-02-10 17:22:02 +03:00
$notnull = (isset($field['notnull']) && $field['notnull']) ? ' NOT NULL' : '';
2006-12-29 17:01:31 +03:00
2007-02-10 17:22:02 +03:00
$unique = (isset($field['unique']) && $field['unique']) ?
' ' . $this->getUniqueFieldDeclaration() : '';
$method = 'get' . $field['type'] . 'Declaration';
2006-12-29 17:01:31 +03:00
if (method_exists($this->conn->dataDict, $method)) {
return $this->conn->dataDict->$method($name, $field);
2006-12-29 17:01:31 +03:00
} else {
$dec = $this->conn->dataDict->getNativeDeclaration($field);
2006-12-29 17:01:31 +03:00
}
2007-02-10 17:22:02 +03:00
return $this->conn->quoteIdentifier($name, true) . ' ' . $dec . $charset . $default . $notnull . $unique . $collation;
}
2007-02-11 11:42:13 +03:00
/**
* getDefaultDeclaration
* Obtain DBMS specific SQL code portion needed to set a default value
* declaration to be used in statements like CREATE TABLE.
*
* @param array $field field definition array
* @return string DBMS specific SQL code portion needed to set a default value
*/
public function getDefaultFieldDeclaration($field)
{
$default = '';
if (isset($field['default'])) {
if ($field['default'] === '') {
$field['default'] = empty($field['notnull'])
? null : $this->valid_default_values[$field['type']];
if ($field['default'] === ''
&& ($conn->getAttribute(Doctrine::ATTR_PORTABILITY) & Doctrine::PORTABILITY_EMPTY_TO_NULL)
) {
$field['default'] = ' ';
}
}
$default = ' DEFAULT ' . $this->conn->quote($field['default'], $field['type']);
}
return $default;
}
2007-02-11 00:51:53 +03:00
/**
* Obtain DBMS specific SQL code portion needed to set an index
* declaration to be used in statements like CREATE TABLE.
*
* @param string $charset name of the index
* @param array $definition index definition
2007-02-11 11:42:13 +03:00
* @return string DBMS specific SQL code portion needed to set an index
2007-02-11 00:51:53 +03:00
*/
public function getIndexDeclaration($name, array $definition)
{
$name = $this->conn->quoteIdentifier($name);
$type = '';
if (isset($definition['type'])) {
if (strtolower($definition['type']) == 'unique') {
$type = strtoupper($definition['type']) . ' ';
} else {
throw new Doctrine_Export_Exception('Unknown index type ' . $definition['type']);
}
}
if ( ! isset($definition['fields']) || ! is_array($definition['fields'])) {
throw new Doctrine_Export_Exception('No index columns given.');
}
$query = $type . 'INDEX ' . $name;
$query .= ' (' . $this->getIndexFieldDeclarationList($definition['fields']) . ')';
return $query;
}
/**
* getIndexFieldDeclarationList
* Obtain DBMS specific SQL code portion needed to set an index
* declaration to be used in statements like CREATE TABLE.
*
* @return string
*/
public function getIndexFieldDeclarationList(array $fields)
{
2007-02-17 15:38:02 +03:00
$ret = array();
2007-02-11 00:51:53 +03:00
foreach ($fields as $field => $definition) {
if(is_array($definition)) {
2007-02-17 15:38:02 +03:00
$ret[] = $this->conn->quoteIdentifier($field);
2007-02-11 00:51:53 +03:00
} else {
2007-02-17 15:38:02 +03:00
$ret[] = $this->conn->quoteIdentifier($definition);
2007-02-11 00:51:53 +03:00
}
}
2007-02-17 15:38:02 +03:00
return implode(', ', $ret);
2007-02-11 00:51:53 +03:00
}
2007-03-22 02:09:39 +03:00
/**
* A method to return the required SQL string that fits between CREATE ... TABLE
* to create the table as a temporary table.
*
* Should be overridden in driver classes to return the correct string for the
* specific database type.
*
* The default is to return the string "TEMPORARY" - this will result in a
* SQL error for any database that does not support temporary tables, or that
* requires a different SQL command from "CREATE TEMPORARY TABLE".
*
* @return string The string required to be placed between "CREATE" and "TABLE"
* to generate a temporary table, if possible.
*/
public function getTemporaryTableQuery()
{
return 'TEMPORARY';
}
2007-02-11 00:51:53 +03:00
/**
* getForeignKeyDeclaration
* Obtain DBMS specific SQL code portion needed to set the FOREIGN KEY constraint
* of a field declaration to be used in statements like CREATE TABLE.
*
* @param array $definition an associative array with the following structure:
* name optional constraint name
*
* local the local field(s)
*
* foreign the foreign reference field(s)
*
* foreignTable the name of the foreign table
*
* onDelete referential delete action
*
* onUpdate referential update action
*
2007-02-11 11:42:13 +03:00
* deferred deferred constraint checking
*
2007-02-11 00:51:53 +03:00
* The onDelete and onUpdate keys accept the following values:
*
* CASCADE: Delete or update the row from the parent table and automatically delete or
2007-02-17 01:54:59 +03:00
* update the matching rows in the child table. Both ON DELETE CASCADE and ON UPDATE CASCADE are supported.
2007-02-11 00:51:53 +03:00
* Between two tables, you should not define several ON UPDATE CASCADE clauses that act on the same column
* in the parent table or in the child table.
*
* SET NULL: Delete or update the row from the parent table and set the foreign key column or columns in the
* child table to NULL. This is valid only if the foreign key columns do not have the NOT NULL qualifier
* specified. Both ON DELETE SET NULL and ON UPDATE SET NULL clauses are supported.
*
* NO ACTION: In standard SQL, NO ACTION means no action in the sense that an attempt to delete or update a primary
2007-02-17 01:54:59 +03:00
* key value is not allowed to proceed if there is a related foreign key value in the referenced table.
2007-02-11 00:51:53 +03:00
*
* RESTRICT: Rejects the delete or update operation for the parent table. NO ACTION and RESTRICT are the same as
* omitting the ON DELETE or ON UPDATE clause.
*
* SET DEFAULT
*
* @return string DBMS specific SQL code portion needed to set the FOREIGN KEY constraint
* of a field declaration.
*/
2007-02-17 01:54:59 +03:00
public function getForeignKeyDeclaration(array $definition)
2007-02-11 11:42:13 +03:00
{
2007-02-17 01:54:59 +03:00
$sql = $this->getForeignKeyBaseDeclaration($definition);
2007-02-11 11:42:13 +03:00
if (isset($definition['deferred'])) {
$sql .= ' ' . $this->getForeignKeyDeferredDeclaration();
}
$a = array('onUpdate', 'onDelete');
foreach($a as $v) {
$keyword = ($v == 'onUpdate') ? ' ON UPDATE ' : ' ON DELETE ';
if (isset($definition[$v])) {
switch ($definition[$v]) {
case 'CASCADE':
case 'SET NULL':
case 'NO ACTION':
case 'RESTRICT':
case 'SET DEFAULT':
$sql .= $keyword . $definition[$v];
break;
default:
throw new Doctrine_Export_Exception('Unknown foreign key referential action option given.');
}
}
}
return $sql;
}
/**
* getForeignKeyDeferredDeclaration
*
* @return string
*/
public function getForeignKeyDeferredDeclaration($deferred)
{
return '';
}
/**
* getForeignKeyBaseDeclaration
2007-02-17 01:54:59 +03:00
* Obtain DBMS specific SQL code portion needed to set the FOREIGN KEY constraint
* of a field declaration to be used in statements like CREATE TABLE.
2007-02-11 11:42:13 +03:00
*
2007-02-17 01:54:59 +03:00
* @param array $definition
2007-02-11 11:42:13 +03:00
* @return string
*/
2007-02-17 01:54:59 +03:00
public function getForeignKeyBaseDeclaration(array $definition)
2007-02-11 00:51:53 +03:00
{
$sql = '';
if (isset($definition['name'])) {
2007-02-17 01:54:59 +03:00
$sql .= 'CONSTRAINT ' . $definition['name'] . ' ';
2007-02-11 00:51:53 +03:00
}
2007-02-17 01:54:59 +03:00
$sql .= 'FOREIGN KEY ';
2007-02-17 15:38:02 +03:00
2007-02-11 00:51:53 +03:00
if ( ! isset($definition['local'])) {
throw new Doctrine_Export_Exception('Local reference field missing from definition.');
}
if ( ! isset($definition['foreign'])) {
throw new Doctrine_Export_Exception('Foreign reference field missing from definition.');
}
if ( ! isset($definition['foreignTable'])) {
throw new Doctrine_Export_Exception('Foreign reference table missing from definition.');
}
if ( ! is_array($definition['local'])) {
$definition['local'] = array($definition['local']);
}
if ( ! is_array($definition['foreign'])) {
$definition['foreign'] = array($definition['foreign']);
}
$sql .= implode(', ', array_map(array($this->conn, 'quoteIdentifier'), $definition['local']))
. ' REFERENCES '
. $definition['foreignTable'] . '('
. implode(', ', array_map(array($this->conn, 'quoteIdentifier'), $definition['foreign'])) . ')';
2007-02-11 11:42:13 +03:00
2007-02-11 00:51:53 +03:00
return $sql;
}
2007-02-10 17:22:02 +03:00
/**
* Obtain DBMS specific SQL code portion needed to set the UNIQUE constraint
* of a field declaration to be used in statements like CREATE TABLE.
*
* @return string DBMS specific SQL code portion needed to set the UNIQUE constraint
* of a field declaration.
*/
public function getUniqueFieldDeclaration()
{
return 'UNIQUE';
}
/**
* Obtain DBMS specific SQL code portion needed to set the CHARACTER SET
* of a field declaration to be used in statements like CREATE TABLE.
*
* @param string $charset name of the charset
* @return string DBMS specific SQL code portion needed to set the CHARACTER SET
* of a field declaration.
*/
2006-12-29 17:40:47 +03:00
public function getCharsetFieldDeclaration($charset)
{
return '';
}
/**
* Obtain DBMS specific SQL code portion needed to set the COLLATION
* of a field declaration to be used in statements like CREATE TABLE.
*
* @param string $collation name of the collation
* @return string DBMS specific SQL code portion needed to set the COLLATION
* of a field declaration.
*/
2006-12-29 17:40:47 +03:00
public function getCollationFieldDeclaration($collation)
{
return '';
}
/**
* export
2006-12-14 16:26:16 +03:00
* method for exporting Doctrine_Record classes to a schema
*
* @return void
*/
2006-12-29 17:40:47 +03:00
public static function exportAll()
{
$parent = new ReflectionClass('Doctrine_Record');
$conn = Doctrine_Manager::getInstance()->getCurrentConnection();
$old = $conn->getAttribute(Doctrine::ATTR_CREATE_TABLES);
$conn->setAttribute(Doctrine::ATTR_CREATE_TABLES, true);
2006-12-29 17:01:31 +03:00
foreach (get_declared_classes() as $name) {
$class = new ReflectionClass($name);
2006-12-29 17:01:31 +03:00
if ($class->isSubclassOf($parent) && ! $class->isAbstract()) {
$obj = new $class();
2006-12-29 17:01:31 +03:00
}
}
$conn->setAttribute(Doctrine::ATTR_CREATE_TABLES, $old);
}
2006-12-29 17:40:47 +03:00
public function export($record)
{
2006-12-29 17:01:31 +03:00
if ( ! $record instanceof Doctrine_Record)
2006-12-22 01:06:08 +03:00
$record = new $record();
$table = $record->getTable();
2006-12-29 17:01:31 +03:00
2006-12-22 01:06:08 +03:00
$reporter = new Doctrine_Reporter();
2006-12-29 17:01:31 +03:00
if ( ! Doctrine::isValidClassname($table->getComponentName())) {
$reporter->add(E_WARNING, 'Badly named class.');
2006-12-22 01:06:08 +03:00
}
2006-12-29 17:01:31 +03:00
2006-12-22 01:06:08 +03:00
try {
$columns = array();
2006-12-29 17:01:31 +03:00
foreach ($table->getColumns() as $name => $column) {
2006-12-22 01:06:08 +03:00
$definition = $column[2];
$definition['type'] = $column[0];
$definition['length'] = $column[1];
2006-12-29 17:01:31 +03:00
if ($definition['type'] == 'enum' && isset($definition['default'])) {
2006-12-22 01:06:08 +03:00
$definition['default'] = $table->enumIndex($name, $definition['default']);
2006-12-29 17:01:31 +03:00
}
if ($definition['type'] == 'boolean' && isset($definition['default'])) {
2006-12-22 01:06:08 +03:00
$definition['default'] = (int) $definition['default'];
2006-12-29 17:01:31 +03:00
}
2006-12-22 01:06:08 +03:00
$columns[$name] = $definition;
}
2006-12-22 01:06:08 +03:00
$this->createTable($table->getTableName(), $columns);
} catch(Doctrine_Connection_Exception $e) {
2007-01-05 02:52:18 +03:00
$reporter->add(E_ERROR, $e->getMessage());
}
2006-12-22 01:06:08 +03:00
return $reporter;
}
2006-09-29 16:04:46 +04:00
}