2008-05-06 17:41:22 +04:00
|
|
|
<?php
|
2008-02-11 20:08:22 +03:00
|
|
|
/*
|
|
|
|
* $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.org>.
|
|
|
|
*/
|
2008-02-04 00:29:57 +03:00
|
|
|
|
2008-12-18 17:08:11 +03:00
|
|
|
#namespace Doctrine\ORM\Mapping;
|
2008-05-30 16:09:24 +04:00
|
|
|
|
2008-12-18 17:08:11 +03:00
|
|
|
#use \Serializable;
|
2008-07-21 00:13:24 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-03-17 16:26:34 +03:00
|
|
|
* A <tt>ClassMetadata</tt> instance holds all the information (metadata) of an entity and
|
2008-08-22 13:05:14 +04:00
|
|
|
* it's associations and how they're mapped to a relational database.
|
2008-07-10 21:17:58 +04:00
|
|
|
* It is the backbone of Doctrine's metadata mapping.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2008-02-24 23:31:49 +03:00
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2008-03-26 14:10:45 +03:00
|
|
|
* @since 2.0
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2009-01-05 23:18:56 +03:00
|
|
|
class Doctrine_ORM_Mapping_ClassMetadata
|
2008-05-06 17:41:22 +04:00
|
|
|
{
|
2008-07-21 00:13:24 +04:00
|
|
|
/* The inheritance mapping types */
|
2008-08-22 13:05:14 +04:00
|
|
|
/**
|
|
|
|
* NONE means the class does not participate in an inheritance hierarchy
|
|
|
|
* and therefore does not need an inheritance mapping type.
|
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
const INHERITANCE_TYPE_NONE = 'none';
|
2008-08-22 13:05:14 +04:00
|
|
|
/**
|
|
|
|
* JOINED means the class will be persisted according to the rules of
|
|
|
|
* <tt>Class Table Inheritance</tt>.
|
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
const INHERITANCE_TYPE_JOINED = 'joined';
|
2008-08-22 13:05:14 +04:00
|
|
|
/**
|
|
|
|
* SINGLE_TABLE means the class will be persisted according to the rules of
|
|
|
|
* <tt>Single Table Inheritance</tt>.
|
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
const INHERITANCE_TYPE_SINGLE_TABLE = 'singleTable';
|
2008-08-22 13:05:14 +04:00
|
|
|
/**
|
|
|
|
* TABLE_PER_CLASS means the class will be persisted according to the rules
|
|
|
|
* of <tt>Concrete Table Inheritance</tt>.
|
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
const INHERITANCE_TYPE_TABLE_PER_CLASS = 'tablePerClass';
|
|
|
|
|
2008-08-22 13:05:14 +04:00
|
|
|
/* The Id generator types. */
|
|
|
|
/**
|
|
|
|
* AUTO means the generator type will depend on what the used platform prefers.
|
|
|
|
* Offers full portability.
|
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
const GENERATOR_TYPE_AUTO = 'auto';
|
2008-08-22 13:05:14 +04:00
|
|
|
/**
|
|
|
|
* SEQUENCE means a separate sequence object will be used. Platforms that do
|
|
|
|
* not have native sequence support may emulate it. Full portability is currently
|
|
|
|
* not guaranteed.
|
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
const GENERATOR_TYPE_SEQUENCE = 'sequence';
|
2008-08-22 13:05:14 +04:00
|
|
|
/**
|
|
|
|
* TABLE means a separate table is used for id generation.
|
|
|
|
* Offers full portability.
|
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
const GENERATOR_TYPE_TABLE = 'table';
|
2008-08-22 13:05:14 +04:00
|
|
|
/**
|
|
|
|
* IDENTITY means an identity column is used for id generation. The database
|
|
|
|
* will fill in the id column on insertion. Platforms that do not support
|
|
|
|
* native identity columns may emulate them. Full portability is currently
|
|
|
|
* not guaranteed.
|
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
const GENERATOR_TYPE_IDENTITY = 'identity';
|
2008-08-22 13:05:14 +04:00
|
|
|
/**
|
|
|
|
* NONE means the class does not have a generated id. That means the class
|
|
|
|
* must have a natural id.
|
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
const GENERATOR_TYPE_NONE = 'none';
|
|
|
|
|
2008-07-27 23:38:56 +04:00
|
|
|
/* The Entity types */
|
2008-08-16 23:40:59 +04:00
|
|
|
/**
|
|
|
|
* A regular entity is assumed to have persistent state that Doctrine should manage.
|
|
|
|
*/
|
2008-07-27 23:38:56 +04:00
|
|
|
const ENTITY_TYPE_REGULAR = 'regular';
|
2008-08-16 23:40:59 +04:00
|
|
|
/**
|
2008-08-22 13:05:14 +04:00
|
|
|
* A transient entity is ignored by Doctrine (so ... it's not an entity really).
|
2008-08-16 23:40:59 +04:00
|
|
|
*/
|
2008-07-27 23:38:56 +04:00
|
|
|
const ENTITY_TYPE_TRANSIENT = 'transient';
|
2008-08-16 23:40:59 +04:00
|
|
|
/**
|
|
|
|
* A mapped superclass entity is itself not persisted by Doctrine but it's
|
|
|
|
* field & association mappings are inherited by subclasses.
|
|
|
|
*/
|
2008-07-27 23:38:56 +04:00
|
|
|
const ENTITY_TYPE_MAPPED_SUPERCLASS = 'mappedSuperclass';
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2009-01-05 20:25:56 +03:00
|
|
|
/** The name of the entity class. */
|
|
|
|
protected $_entityName;
|
|
|
|
|
2008-02-28 18:30:55 +03:00
|
|
|
/**
|
|
|
|
* The name of the entity class that is at the root of the entity inheritance
|
|
|
|
* hierarchy. If the entity is not part of an inheritance hierarchy this is the same
|
2008-07-21 00:13:24 +04:00
|
|
|
* as $_entityName.
|
2008-02-28 18:30:55 +03:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $_rootEntityName;
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-13 13:53:07 +03:00
|
|
|
/**
|
2008-12-18 17:08:11 +03:00
|
|
|
* The name of the custom repository class used for the entity class.
|
2008-03-17 16:26:34 +03:00
|
|
|
* (Optional).
|
2008-02-13 13:53:07 +03:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2008-05-06 17:41:22 +04:00
|
|
|
protected $_customRepositoryClassName;
|
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-03-17 16:26:34 +03:00
|
|
|
* The names of the parent classes (ancestors).
|
2008-07-21 00:13:24 +04:00
|
|
|
*
|
|
|
|
* @var array
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
|
|
|
protected $_parentClasses = array();
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-03-26 14:10:45 +03:00
|
|
|
/**
|
2008-07-21 00:13:24 +04:00
|
|
|
* The names of all subclasses.
|
|
|
|
*
|
|
|
|
* @var array
|
2008-03-26 14:10:45 +03:00
|
|
|
*/
|
|
|
|
protected $_subClasses = array();
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
|
|
|
* The field names of all fields that are part of the identifier/primary key
|
2009-01-03 22:50:13 +03:00
|
|
|
* of the mapped entity class.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2008-02-13 13:53:07 +03:00
|
|
|
* @var array
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
|
|
|
protected $_identifier = array();
|
2008-07-21 00:13:24 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-07-21 00:13:24 +04:00
|
|
|
* The inheritance mapping type used by the class.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
|
|
|
* @var integer
|
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
protected $_inheritanceType = self::INHERITANCE_TYPE_NONE;
|
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-07-21 00:13:24 +04:00
|
|
|
* The Id generator type used by the class.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2008-07-21 00:13:24 +04:00
|
|
|
* @var string
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
protected $_generatorType = self::GENERATOR_TYPE_NONE;
|
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-07-10 21:17:58 +04:00
|
|
|
* The field mappings of the class.
|
|
|
|
* Keys are field names and values are mapping definitions.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2008-07-21 00:13:24 +04:00
|
|
|
* The mapping definition array has the following values:
|
|
|
|
*
|
|
|
|
* - <b>fieldName</b> (string)
|
|
|
|
* The name of the field in the Entity.
|
|
|
|
*
|
2008-08-31 22:27:16 +04:00
|
|
|
* - <b>type</b> (object Doctrine::DBAL::Types::* or custom type)
|
|
|
|
* The database type of the column. Can be one of Doctrine's portable types
|
|
|
|
* or a custom type.
|
2008-07-21 00:13:24 +04:00
|
|
|
*
|
|
|
|
* - <b>columnName</b> (string, optional)
|
|
|
|
* The column name. Optional. Defaults to the field name.
|
|
|
|
*
|
|
|
|
* - <b>length</b> (integer, optional)
|
2008-08-31 22:27:16 +04:00
|
|
|
* The database length of the column. Optional. Default value taken from
|
|
|
|
* the type.
|
2008-07-21 00:13:24 +04:00
|
|
|
*
|
|
|
|
* - <b>id</b> (boolean, optional)
|
|
|
|
* Marks the field as the primary key of the Entity. Multiple fields of an
|
|
|
|
* entity can have the id attribute, forming a composite key.
|
|
|
|
*
|
2008-07-27 23:38:56 +04:00
|
|
|
* - <b>idGenerator</b> (string, optional)
|
|
|
|
* Either: idGenerator => 'nameOfGenerator', usually only for TABLE/SEQUENCE generators
|
|
|
|
* Or: idGenerator => 'identity' or 'auto' or 'table' or 'sequence'
|
|
|
|
* Note that 'auto', 'table', 'sequence' and 'identity' are reserved names and
|
|
|
|
* therefore cant be used as a generator name!
|
2008-07-21 00:13:24 +04:00
|
|
|
*
|
|
|
|
* - <b>nullable</b> (boolean, optional)
|
|
|
|
* Whether the column is nullable. Defaults to TRUE.
|
|
|
|
*
|
2008-08-31 22:27:16 +04:00
|
|
|
* - <b>columnDefinition</b> (string, optional, schema-only)
|
2008-07-21 00:13:24 +04:00
|
|
|
* The SQL fragment that is used when generating the DDL for the column.
|
|
|
|
*
|
2008-08-31 22:27:16 +04:00
|
|
|
* - <b>precision</b> (integer, optional, schema-only)
|
2008-07-21 00:13:24 +04:00
|
|
|
* The precision of a decimal column. Only valid if the column type is decimal.
|
|
|
|
*
|
2008-08-31 22:27:16 +04:00
|
|
|
* - <b>scale</b> (integer, optional, schema-only)
|
2008-07-21 00:13:24 +04:00
|
|
|
* The scale of a decimal column. Only valid if the column type is decimal.
|
2008-08-31 22:27:16 +04:00
|
|
|
*
|
|
|
|
* - <b>index (string, optional, schema-only)</b>
|
|
|
|
* Whether an index should be generated for the column.
|
|
|
|
* The value specifies the name of the index. To create a multi-column index,
|
|
|
|
* just use the same name for several mappings.
|
|
|
|
*
|
|
|
|
* - <b>unique (string, optional, schema-only)</b>
|
|
|
|
* Whether a unique constraint should be generated for the column.
|
|
|
|
* The value specifies the name of the unique constraint. To create a multi-column
|
|
|
|
* unique constraint, just use the same name for several mappings.
|
|
|
|
*
|
|
|
|
* - <b>foreignKey (string, optional, schema-only)</b>
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2008-07-10 21:17:58 +04:00
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $_fieldMappings = array();
|
2008-05-14 01:20:34 +04:00
|
|
|
|
2008-06-15 19:56:28 +04:00
|
|
|
/**
|
2008-07-04 20:32:19 +04:00
|
|
|
* An array of field names. used to look up field names from column names.
|
|
|
|
* Keys are column names and values are field names.
|
|
|
|
* This is the reverse lookup map of $_columnNames.
|
2008-06-15 19:56:28 +04:00
|
|
|
*
|
2008-07-04 20:32:19 +04:00
|
|
|
* @var array
|
2008-06-15 19:56:28 +04:00
|
|
|
*/
|
2008-07-04 20:32:19 +04:00
|
|
|
protected $_fieldNames = array();
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
|
|
|
* An array of column names. Keys are field names and values column names.
|
|
|
|
* Used to look up column names from field names.
|
|
|
|
* This is the reverse lookup map of $_fieldNames.
|
2008-05-06 17:41:22 +04:00
|
|
|
*
|
|
|
|
* @var array
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
|
|
|
protected $_columnNames = array();
|
2008-06-15 19:56:28 +04:00
|
|
|
|
2008-07-04 20:32:19 +04:00
|
|
|
/**
|
|
|
|
* Map that maps lowercased column names to field names.
|
|
|
|
* Mainly used during hydration because Doctrine enforces PDO_CASE_LOWER
|
|
|
|
* for portability.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $_lcColumnToFieldNames = array();
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2009-01-05 23:18:56 +03:00
|
|
|
* Whether to automatically OUTER JOIN subtypes when a basetype is queried.
|
|
|
|
* This does only apply to the JOINED inheritance mapping strategy.
|
|
|
|
*
|
|
|
|
* @var boolean
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2009-01-05 23:18:56 +03:00
|
|
|
protected $_joinSubclasses = true;
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2009-01-05 23:18:56 +03:00
|
|
|
* A map that maps discriminator values to class names.
|
|
|
|
* This does only apply to the JOINED and SINGLE_TABLE inheritance mapping strategies
|
|
|
|
* where a discriminator column is used.
|
2008-05-06 17:41:22 +04:00
|
|
|
*
|
2009-01-05 23:18:56 +03:00
|
|
|
* @var array
|
|
|
|
* @see _discriminatorColumn
|
|
|
|
*/
|
|
|
|
protected $_discriminatorMap = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The definition of the descriminator column used in JOINED and SINGLE_TABLE
|
|
|
|
* inheritance mappings.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2009-01-05 23:18:56 +03:00
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $_discriminatorColumn;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the primary table.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2009-01-05 23:18:56 +03:00
|
|
|
* @var string
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2009-01-05 23:18:56 +03:00
|
|
|
protected $_tableName;
|
2008-07-10 21:17:58 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The cached lifecycle listeners. There is only one instance of each
|
|
|
|
* listener class at any time.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $_lifecycleListenerInstances = array();
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-07-10 21:17:58 +04:00
|
|
|
/**
|
|
|
|
* The registered lifecycle callbacks for Entities of this class.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $_lifecycleCallbacks = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The registered lifecycle listeners for Entities of this class.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $_lifecycleListeners = array();
|
|
|
|
|
2008-07-21 00:13:24 +04:00
|
|
|
/**
|
2008-08-31 22:27:16 +04:00
|
|
|
* The association mappings. All mappings, inverse and owning side.
|
2008-07-21 00:13:24 +04:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $_associationMappings = array();
|
|
|
|
|
2008-08-31 22:27:16 +04:00
|
|
|
/**
|
|
|
|
* List of inverse association mappings, indexed by mappedBy field name.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $_inverseMappings = array();
|
|
|
|
|
2008-07-21 00:13:24 +04:00
|
|
|
/**
|
|
|
|
* Flag indicating whether the identifier/primary key of the class is composite.
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
protected $_isIdentifierComposite = false;
|
2008-12-18 17:08:11 +03:00
|
|
|
|
2009-01-05 23:18:56 +03:00
|
|
|
/**
|
|
|
|
* The ReflectionClass instance of the mapped class.
|
|
|
|
*
|
|
|
|
* @var ReflectionClass
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
protected $_reflectionClass;
|
2009-01-05 23:18:56 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The ReflectionProperty instances of the mapped class.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
protected $_reflectionProperties;
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2009-01-05 23:18:56 +03:00
|
|
|
* Initializes a new ClassMetadata instance that will hold the ORM metadata
|
|
|
|
* of the class with the given name.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2009-01-05 23:18:56 +03:00
|
|
|
* @param string $entityName Name of the entity class the new instance is used for.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public function __construct($entityName)
|
2008-05-06 17:41:22 +04:00
|
|
|
{
|
2009-01-05 20:25:56 +03:00
|
|
|
$this->_entityName = $entityName;
|
2009-01-06 21:30:51 +03:00
|
|
|
$this->_tableName = $this->_entityName;
|
2008-02-28 18:30:55 +03:00
|
|
|
$this->_rootEntityName = $entityName;
|
2008-12-18 17:08:11 +03:00
|
|
|
$this->_reflectionClass = new ReflectionClass($entityName);
|
|
|
|
$reflectionProps = $this->_reflectionClass->getProperties();
|
|
|
|
foreach ($reflectionProps as $prop) {
|
|
|
|
$prop->setAccessible(true);
|
|
|
|
$this->_reflectionProperties[$prop->getName()] = $prop;
|
|
|
|
}
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-12-18 17:08:11 +03:00
|
|
|
|
2009-01-03 22:50:13 +03:00
|
|
|
/**
|
|
|
|
* Gets the ReflectionClass instance of the mapped class.
|
|
|
|
*
|
|
|
|
* @return ReflectionClass
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public function getReflectionClass()
|
|
|
|
{
|
|
|
|
return $this->_reflectionClass;
|
|
|
|
}
|
|
|
|
|
2009-01-03 22:50:13 +03:00
|
|
|
/**
|
|
|
|
* Gets the ReflectionPropertys of the mapped class.
|
|
|
|
*
|
|
|
|
* @return array An array of ReflectionProperty instances.
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public function getReflectionProperties()
|
|
|
|
{
|
|
|
|
return $this->_reflectionProperties;
|
|
|
|
}
|
|
|
|
|
2009-01-03 22:50:13 +03:00
|
|
|
/**
|
|
|
|
* Gets a ReflectionProperty for a specific field of the mapped class.
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @return ReflectionProperty
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public function getReflectionProperty($name)
|
2008-05-17 16:22:24 +04:00
|
|
|
{
|
2008-12-18 17:08:11 +03:00
|
|
|
return $this->_reflectionProperties[$name];
|
2008-05-17 16:22:24 +04:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @return <type>
|
|
|
|
*/
|
2009-01-03 22:50:13 +03:00
|
|
|
public function getSingleIdReflectionProperty()
|
|
|
|
{
|
|
|
|
if ($this->_isIdentifierComposite) {
|
|
|
|
throw new Doctrine_Exception("getSingleIdReflectionProperty called on entity with composite key.");
|
|
|
|
}
|
|
|
|
return $this->_reflectionProperties[$this->_identifier[0]];
|
|
|
|
}
|
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2009-01-03 22:50:13 +03:00
|
|
|
* Gets the name of the mapped class.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2008-03-17 16:26:34 +03:00
|
|
|
* @return string
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
|
|
|
public function getClassName()
|
|
|
|
{
|
2008-02-11 20:08:22 +03:00
|
|
|
return $this->_entityName;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-03-17 16:26:34 +03:00
|
|
|
/**
|
2009-01-03 22:50:13 +03:00
|
|
|
* Gets the name of the root class of the mapped entity hierarchy. If the entity described
|
|
|
|
* by this ClassMetadata instance is not participating in a hierarchy, this is the same as the
|
2008-03-17 16:26:34 +03:00
|
|
|
* name returned by {@link getClassName()}.
|
|
|
|
*
|
2009-01-03 22:50:13 +03:00
|
|
|
* @return string The name of the root class of the entity hierarchy.
|
2008-03-17 16:26:34 +03:00
|
|
|
*/
|
2008-02-28 18:30:55 +03:00
|
|
|
public function getRootClassName()
|
|
|
|
{
|
|
|
|
return $this->_rootEntityName;
|
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-02-11 20:08:22 +03:00
|
|
|
* Checks whether a field is part of the identifier/primary key field(s).
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
|
|
|
* @param string $fieldName The field name
|
2008-05-06 17:41:22 +04:00
|
|
|
* @return boolean TRUE if the field is part of the table identifier/primary key field(s),
|
2008-02-04 00:29:57 +03:00
|
|
|
* FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function isIdentifier($fieldName)
|
|
|
|
{
|
2008-07-21 00:13:24 +04:00
|
|
|
if ( ! $this->_isIdentifierComposite) {
|
2008-05-06 17:41:22 +04:00
|
|
|
return $fieldName === $this->_identifier[0];
|
|
|
|
}
|
|
|
|
return in_array($fieldName, $this->_identifier);
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-05-24 22:51:47 +04:00
|
|
|
/**
|
2009-01-03 22:50:13 +03:00
|
|
|
* Checks if the class has a composite identifier.
|
2008-05-24 22:51:47 +04:00
|
|
|
*
|
|
|
|
* @param string $fieldName The field name
|
2008-07-21 00:13:24 +04:00
|
|
|
* @return boolean TRUE if the identifier is composite, FALSE otherwise.
|
2008-05-24 22:51:47 +04:00
|
|
|
*/
|
|
|
|
public function isIdentifierComposite()
|
|
|
|
{
|
2008-07-21 00:13:24 +04:00
|
|
|
return $this->_isIdentifierComposite;
|
2008-05-24 22:51:47 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-06-15 19:56:28 +04:00
|
|
|
* Check if the field is unique.
|
2008-05-24 22:51:47 +04:00
|
|
|
*
|
|
|
|
* @param string $fieldName The field name
|
|
|
|
* @return boolean TRUE if the field is unique, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function isUniqueField($fieldName)
|
|
|
|
{
|
2008-07-10 21:17:58 +04:00
|
|
|
$mapping = $this->getFieldMapping($fieldName);
|
2008-05-24 22:51:47 +04:00
|
|
|
if ($mapping !== false) {
|
|
|
|
return isset($mapping['unique']) && $mapping['unique'] == true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-06-15 19:56:28 +04:00
|
|
|
* Check if the field is not null.
|
2008-05-24 22:51:47 +04:00
|
|
|
*
|
|
|
|
* @param string $fieldName The field name
|
|
|
|
* @return boolean TRUE if the field is not null, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function isNotNull($fieldName)
|
|
|
|
{
|
2008-07-10 21:17:58 +04:00
|
|
|
$mapping = $this->getFieldMapping($fieldName);
|
2008-05-24 22:51:47 +04:00
|
|
|
if ($mapping !== false) {
|
|
|
|
return isset($mapping['notnull']) && $mapping['notnull'] == true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-07-11 14:48:04 +04:00
|
|
|
* Gets a column name for a field name.
|
|
|
|
* If the column name for the field cannot be found, the given field name
|
|
|
|
* is returned.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2009-01-03 22:50:13 +03:00
|
|
|
* @param string $fieldName The field name.
|
2008-07-11 14:48:04 +04:00
|
|
|
* @return string The column name.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
|
|
|
public function getColumnName($fieldName)
|
|
|
|
{
|
2008-03-17 16:26:34 +03:00
|
|
|
return isset($this->_columnNames[$fieldName]) ?
|
2008-07-10 21:17:58 +04:00
|
|
|
$this->_columnNames[$fieldName] : $fieldName;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2009-01-03 22:50:13 +03:00
|
|
|
* Gets the mapping of a (regular) field that holds some data but not a
|
2008-07-11 14:48:04 +04:00
|
|
|
* reference to another object.
|
|
|
|
*
|
|
|
|
* @param string $fieldName The field name.
|
|
|
|
* @return array The mapping.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2008-07-10 21:17:58 +04:00
|
|
|
public function getFieldMapping($fieldName)
|
2008-02-24 01:04:39 +03:00
|
|
|
{
|
2008-07-21 00:13:24 +04:00
|
|
|
if ( ! isset($this->_fieldMappings[$fieldName])) {
|
|
|
|
throw Doctrine_MappingException::mappingNotFound($fieldName);
|
|
|
|
}
|
|
|
|
return $this->_fieldMappings[$fieldName];
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-07-11 14:48:04 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the mapping of an association.
|
|
|
|
*
|
|
|
|
* @param string $fieldName The field name that represents the association in
|
|
|
|
* the object model.
|
2009-01-03 22:50:13 +03:00
|
|
|
* @return Doctrine\ORM\Mapping\AssociationMapping The mapping.
|
2008-07-11 14:48:04 +04:00
|
|
|
*/
|
|
|
|
public function getAssociationMapping($fieldName)
|
|
|
|
{
|
2008-07-21 00:13:24 +04:00
|
|
|
if ( ! isset($this->_associationMappings[$fieldName])) {
|
2008-12-18 17:08:11 +03:00
|
|
|
throw new Doctrine_Exception("Mapping not found: $fieldName");
|
2008-07-21 00:13:24 +04:00
|
|
|
}
|
|
|
|
return $this->_associationMappings[$fieldName];
|
|
|
|
}
|
|
|
|
|
2008-08-31 22:27:16 +04:00
|
|
|
/**
|
|
|
|
* Gets the inverse association mapping for the given fieldname.
|
|
|
|
*
|
|
|
|
* @param string $mappedByFieldName
|
2009-01-03 22:50:13 +03:00
|
|
|
* @return Doctrine\ORM\Mapping\AssociationMapping The mapping.
|
2008-08-31 22:27:16 +04:00
|
|
|
*/
|
|
|
|
public function getInverseAssociationMapping($mappedByFieldName)
|
|
|
|
{
|
|
|
|
if ( ! isset($this->_associationMappings[$fieldName])) {
|
2009-01-05 23:18:56 +03:00
|
|
|
throw new Doctrine_Exception("Mapping not found: " . $fieldName);
|
2008-08-31 22:27:16 +04:00
|
|
|
}
|
|
|
|
return $this->_inverseMappings[$mappedByFieldName];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the class has an inverse association mapping on the given fieldname.
|
|
|
|
*
|
|
|
|
* @param string $mappedByFieldName
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function hasInverseAssociationMapping($mappedByFieldName)
|
|
|
|
{
|
|
|
|
return isset($this->_inverseMappings[$mappedByFieldName]);
|
|
|
|
}
|
|
|
|
|
2008-07-21 00:13:24 +04:00
|
|
|
/**
|
|
|
|
* Gets all association mappings of the class.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getAssociationMappings()
|
|
|
|
{
|
|
|
|
return $this->_associationMappings;
|
2008-07-11 14:48:04 +04:00
|
|
|
}
|
2008-09-07 17:48:40 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets all association mappings of the class.
|
|
|
|
* Alias for getAssociationMappings().
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getAssociations()
|
|
|
|
{
|
|
|
|
return $this->_associationMappings;
|
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-07-04 20:32:19 +04:00
|
|
|
* Gets the field name for a column name.
|
|
|
|
* If no field name can be found the column name is returned.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
|
|
|
* @param string $columnName column name
|
|
|
|
* @return string column alias
|
|
|
|
*/
|
|
|
|
public function getFieldName($columnName)
|
|
|
|
{
|
2008-03-17 16:26:34 +03:00
|
|
|
return isset($this->_fieldNames[$columnName]) ?
|
2008-06-15 19:56:28 +04:00
|
|
|
$this->_fieldNames[$columnName] : $columnName;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-25 01:29:01 +04:00
|
|
|
|
|
|
|
/**
|
2008-07-04 20:32:19 +04:00
|
|
|
* Gets the field name for a completely lowercased column name.
|
|
|
|
* Mainly used during hydration.
|
|
|
|
*
|
|
|
|
* @param string $lcColumnName
|
|
|
|
* @return string
|
2008-07-11 14:48:04 +04:00
|
|
|
* @todo Better name.
|
2008-05-25 01:29:01 +04:00
|
|
|
*/
|
2008-07-04 20:32:19 +04:00
|
|
|
public function getFieldNameForLowerColumnName($lcColumnName)
|
2008-05-25 01:29:01 +04:00
|
|
|
{
|
2008-07-04 20:32:19 +04:00
|
|
|
return isset($this->_lcColumnToFieldNames[$lcColumnName]) ?
|
|
|
|
$this->_lcColumnToFieldNames[$lcColumnName] : $lcColumnName;
|
|
|
|
}
|
2008-12-18 17:08:11 +03:00
|
|
|
|
2008-07-04 20:32:19 +04:00
|
|
|
/**
|
2009-01-05 23:18:56 +03:00
|
|
|
* Checks whether a specified column name (all lowercase) exists in this class.
|
2008-12-18 17:08:11 +03:00
|
|
|
*
|
2009-01-05 23:18:56 +03:00
|
|
|
* @param string $lcColumnName
|
|
|
|
* @return boolean
|
2008-07-04 20:32:19 +04:00
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public function hasLowerColumn($lcColumnName)
|
2008-07-04 20:32:19 +04:00
|
|
|
{
|
2008-12-18 17:08:11 +03:00
|
|
|
return isset($this->_lcColumnToFieldNames[$lcColumnName]);
|
2008-05-25 01:29:01 +04:00
|
|
|
}
|
2008-07-21 00:13:24 +04:00
|
|
|
|
|
|
|
/**
|
2009-01-03 22:50:13 +03:00
|
|
|
* Validates & completes the field mapping.
|
2008-07-21 00:13:24 +04:00
|
|
|
*
|
2008-08-16 23:40:59 +04:00
|
|
|
* @param array $mapping The field mapping to validated & complete.
|
|
|
|
* @return array The validated and completed field mapping.
|
2008-07-21 00:13:24 +04:00
|
|
|
*/
|
2009-01-05 20:25:56 +03:00
|
|
|
private function _validateAndCompleteFieldMapping(array &$mapping)
|
2008-07-21 00:13:24 +04:00
|
|
|
{
|
|
|
|
// Check mandatory fields
|
|
|
|
if ( ! isset($mapping['fieldName'])) {
|
2009-01-05 23:18:56 +03:00
|
|
|
throw Doctrine_ORM_Exceptions_MappingException::missingFieldName();
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-07-21 00:13:24 +04:00
|
|
|
if ( ! isset($mapping['type'])) {
|
2009-01-05 23:18:56 +03:00
|
|
|
throw Doctrine_ORM_Exceptions_MappingException::missingType();
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2009-01-07 20:46:02 +03:00
|
|
|
|
2009-01-08 14:23:24 +03:00
|
|
|
if ( ! is_object($mapping['type'])) {
|
|
|
|
$mapping['type'] = Doctrine_DBAL_Types_Type::getType($mapping['type']);
|
|
|
|
}
|
2009-01-07 20:46:02 +03:00
|
|
|
|
2008-07-21 00:13:24 +04:00
|
|
|
// Complete fieldName and columnName mapping
|
|
|
|
if ( ! isset($mapping['columnName'])) {
|
|
|
|
$mapping['columnName'] = $mapping['fieldName'];
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-07-21 00:13:24 +04:00
|
|
|
$lcColumnName = strtolower($mapping['columnName']);
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-07-21 00:13:24 +04:00
|
|
|
$this->_columnNames[$mapping['fieldName']] = $mapping['columnName'];
|
|
|
|
$this->_fieldNames[$mapping['columnName']] = $mapping['fieldName'];
|
|
|
|
$this->_lcColumnToFieldNames[$lcColumnName] = $mapping['fieldName'];
|
2008-02-04 00:29:57 +03:00
|
|
|
|
2008-07-21 00:13:24 +04:00
|
|
|
// Complete id mapping
|
|
|
|
if (isset($mapping['id']) && $mapping['id'] === true) {
|
|
|
|
if ( ! in_array($mapping['fieldName'], $this->_identifier)) {
|
|
|
|
$this->_identifier[] = $mapping['fieldName'];
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-07-27 23:38:56 +04:00
|
|
|
if (isset($mapping['idGenerator'])) {
|
|
|
|
if ( ! $this->_isIdGeneratorType($mapping['idGenerator'])) {
|
|
|
|
//TODO: check if the idGenerator specifies an existing generator by name
|
2009-01-05 20:25:56 +03:00
|
|
|
throw Doctrine_MappingException::invalidGeneratorType($mapping['idGenerator']);
|
2008-07-21 00:13:24 +04:00
|
|
|
} else if (count($this->_identifier) > 1) {
|
|
|
|
throw Doctrine_MappingException::generatorNotAllowedWithCompositeId();
|
|
|
|
}
|
2008-07-27 23:38:56 +04:00
|
|
|
$this->_generatorType = $mapping['idGenerator'];
|
2008-07-21 00:13:24 +04:00
|
|
|
}
|
2008-07-27 23:38:56 +04:00
|
|
|
// TODO: validate/complete 'tableGenerator' and 'sequenceGenerator' mappings
|
2008-07-21 00:13:24 +04:00
|
|
|
|
|
|
|
// Check for composite key
|
|
|
|
if ( ! $this->_isIdentifierComposite && count($this->_identifier) > 1) {
|
|
|
|
$this->_isIdentifierComposite = true;
|
|
|
|
}
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2009-01-05 20:25:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private function _validateAndCompleteClassMapping(array &$mapping)
|
|
|
|
{
|
2008-07-21 00:13:24 +04:00
|
|
|
|
2008-02-11 20:08:22 +03:00
|
|
|
}
|
2008-05-17 16:22:24 +04:00
|
|
|
|
2008-09-07 17:48:40 +04:00
|
|
|
/**
|
|
|
|
* @todo Implementation of Optimistic Locking.
|
|
|
|
*/
|
|
|
|
public function mapVersionField(array $mapping)
|
|
|
|
{
|
|
|
|
//...
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Overrides an existant field mapping.
|
|
|
|
* Used i.e. by Entity classes deriving from another Entity class that acts
|
|
|
|
* as a mapped superclass to refine the basic mapping.
|
|
|
|
*
|
|
|
|
* @param array $newMapping
|
|
|
|
* @todo Implementation.
|
|
|
|
*/
|
|
|
|
public function overrideFieldMapping(array $newMapping)
|
|
|
|
{
|
|
|
|
//...
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-12-18 17:08:11 +03:00
|
|
|
* Maps an embedded value object.
|
2008-09-07 17:48:40 +04:00
|
|
|
*
|
2008-12-18 17:08:11 +03:00
|
|
|
* @todo Implementation.
|
2008-09-07 17:48:40 +04:00
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public function mapEmbeddedValue()
|
2008-09-07 17:48:40 +04:00
|
|
|
{
|
2008-12-18 17:08:11 +03:00
|
|
|
//...
|
2008-09-07 17:48:40 +04:00
|
|
|
}
|
2008-12-18 17:08:11 +03:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-07-11 14:48:04 +04:00
|
|
|
* Gets the identifier (primary key) field names of the class.
|
2008-02-24 19:54:02 +03:00
|
|
|
*
|
2008-02-04 00:29:57 +03:00
|
|
|
* @return mixed
|
2008-02-28 18:30:55 +03:00
|
|
|
* @deprecated Use getIdentifierFieldNames()
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
|
|
|
public function getIdentifier()
|
|
|
|
{
|
|
|
|
return $this->_identifier;
|
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-28 18:30:55 +03:00
|
|
|
/**
|
2008-07-11 14:48:04 +04:00
|
|
|
* Gets the identifier (primary key) field names of the class.
|
2008-02-28 18:30:55 +03:00
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getIdentifierFieldNames()
|
|
|
|
{
|
|
|
|
return $this->_identifier;
|
|
|
|
}
|
2008-07-21 00:13:24 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-07-21 00:13:24 +04:00
|
|
|
* Gets the name of the single id field. Note that this only works on
|
|
|
|
* entity classes that have a single-field pk.
|
2008-05-06 17:41:22 +04:00
|
|
|
*
|
2008-07-21 00:13:24 +04:00
|
|
|
* @return string
|
2008-02-24 19:54:02 +03:00
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
public function getSingleIdentifierFieldName()
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2008-07-21 00:13:24 +04:00
|
|
|
if ($this->_isIdentifierComposite) {
|
|
|
|
throw new Doctrine_Exception("Calling getSingleIdentifierFieldName "
|
|
|
|
. "on a class that uses a composite identifier is not allowed.");
|
|
|
|
}
|
|
|
|
return $this->_identifier[0];
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
|
|
|
|
2008-07-21 00:13:24 +04:00
|
|
|
public function setIdentifier(array $identifier)
|
2008-02-24 19:54:02 +03:00
|
|
|
{
|
2008-07-21 00:13:24 +04:00
|
|
|
$this->_identifier = $identifier;
|
2008-02-24 19:54:02 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-07-21 00:13:24 +04:00
|
|
|
* Checks whether the class has a (mapped) field with a certain name.
|
|
|
|
*
|
2008-02-04 00:29:57 +03:00
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function hasField($fieldName)
|
|
|
|
{
|
|
|
|
return isset($this->_columnNames[$fieldName]);
|
|
|
|
}
|
2008-07-11 14:48:04 +04:00
|
|
|
|
2008-02-24 01:04:39 +03:00
|
|
|
/**
|
2008-07-11 14:48:04 +04:00
|
|
|
* Gets all field mappings.
|
2008-02-24 01:04:39 +03:00
|
|
|
*
|
2008-07-21 00:13:24 +04:00
|
|
|
* @return array
|
2009-01-05 20:25:56 +03:00
|
|
|
* @deprecated
|
2008-02-24 01:04:39 +03:00
|
|
|
*/
|
2008-07-10 21:17:58 +04:00
|
|
|
public function getFieldMappings()
|
|
|
|
{
|
2009-01-05 23:18:56 +03:00
|
|
|
return $this->_fieldMappings;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-07-21 00:13:24 +04:00
|
|
|
* Gets an array containing all the column names.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getColumnNames(array $fieldNames = null)
|
|
|
|
{
|
|
|
|
if ($fieldNames === null) {
|
2008-07-10 21:17:58 +04:00
|
|
|
return array_keys($this->_fieldNames);
|
2008-02-04 00:29:57 +03:00
|
|
|
} else {
|
2008-05-06 17:41:22 +04:00
|
|
|
$columnNames = array();
|
|
|
|
foreach ($fieldNames as $fieldName) {
|
|
|
|
$columnNames[] = $this->getColumnName($fieldName);
|
2008-07-21 00:13:24 +04:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
return $columnNames;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-07-21 00:13:24 +04:00
|
|
|
* Returns an array with all the identifier column names.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getIdentifierColumnNames()
|
|
|
|
{
|
|
|
|
return $this->getColumnNames((array) $this->getIdentifier());
|
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-07-21 00:13:24 +04:00
|
|
|
* Returns an array containing all the field names.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getFieldNames()
|
|
|
|
{
|
|
|
|
return array_values($this->_fieldNames);
|
|
|
|
}
|
2008-07-21 00:13:24 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-07-21 00:13:24 +04:00
|
|
|
* Gets the Id generator type used by the class.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2008-07-21 00:13:24 +04:00
|
|
|
* @return string
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
public function getIdGeneratorType()
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2008-07-21 00:13:24 +04:00
|
|
|
return $this->_generatorType;
|
|
|
|
}
|
2008-12-18 17:08:11 +03:00
|
|
|
|
|
|
|
/**
|
2009-01-03 22:50:13 +03:00
|
|
|
* Sets the type of Id generator to use for the mapped class.
|
2008-12-18 17:08:11 +03:00
|
|
|
*/
|
|
|
|
public function setIdGeneratorType($generatorType)
|
|
|
|
{
|
|
|
|
$this->_generatorType = $generatorType;
|
|
|
|
}
|
2008-07-21 00:13:24 +04:00
|
|
|
|
|
|
|
/**
|
2009-01-03 22:50:13 +03:00
|
|
|
* Checks whether the mapped class uses an Id generator.
|
2008-07-21 00:13:24 +04:00
|
|
|
*
|
2009-01-03 22:50:13 +03:00
|
|
|
* @return boolean TRUE if the mapped class uses an Id generator, FALSE otherwise.
|
2008-07-21 00:13:24 +04:00
|
|
|
*/
|
|
|
|
public function usesIdGenerator()
|
|
|
|
{
|
|
|
|
return $this->_generatorType != self::GENERATOR_TYPE_NONE;
|
|
|
|
}
|
2008-12-18 17:08:11 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @return <type>
|
|
|
|
*/
|
|
|
|
public function isInheritanceTypeNone()
|
|
|
|
{
|
|
|
|
return $this->_inheritanceType == self::INHERITANCE_TYPE_NONE;
|
|
|
|
}
|
2008-07-21 00:13:24 +04:00
|
|
|
|
2008-12-18 17:08:11 +03:00
|
|
|
/**
|
|
|
|
* Checks whether the mapped class uses the JOINED inheritance mapping strategy.
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if the class participates in a JOINED inheritance mapping,
|
|
|
|
* FALSE otherwise.
|
|
|
|
*/
|
2008-08-22 13:05:14 +04:00
|
|
|
public function isInheritanceTypeJoined()
|
|
|
|
{
|
|
|
|
return $this->_inheritanceType == self::INHERITANCE_TYPE_JOINED;
|
|
|
|
}
|
|
|
|
|
2008-12-18 17:08:11 +03:00
|
|
|
/**
|
|
|
|
* Checks whether the mapped class uses the SINGLE_TABLE inheritance mapping strategy.
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if the class participates in a SINGLE_TABLE inheritance mapping,
|
|
|
|
* FALSE otherwise.
|
|
|
|
*/
|
2008-08-22 13:05:14 +04:00
|
|
|
public function isInheritanceTypeSingleTable()
|
|
|
|
{
|
|
|
|
return $this->_inheritanceType == self::INHERITANCE_TYPE_SINGLE_TABLE;
|
|
|
|
}
|
|
|
|
|
2008-12-18 17:08:11 +03:00
|
|
|
/**
|
|
|
|
* Checks whether the mapped class uses the TABLE_PER_CLASS inheritance mapping strategy.
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if the class participates in a TABLE_PER_CLASS inheritance mapping,
|
|
|
|
* FALSE otherwise.
|
|
|
|
*/
|
2008-08-22 13:05:14 +04:00
|
|
|
public function isInheritanceTypeTablePerClass()
|
|
|
|
{
|
|
|
|
return $this->_inheritanceType == self::INHERITANCE_TYPE_TABLE_PER_CLASS;
|
|
|
|
}
|
|
|
|
|
2008-07-21 00:13:24 +04:00
|
|
|
/**
|
|
|
|
* Checks whether the class uses an identity column for the Id generation.
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if the class uses the IDENTITY generator, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function isIdGeneratorIdentity()
|
|
|
|
{
|
|
|
|
return $this->_generatorType == self::GENERATOR_TYPE_IDENTITY;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the class uses a sequence for id generation.
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if the class uses the SEQUENCE generator, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function isIdGeneratorSequence()
|
|
|
|
{
|
|
|
|
return $this->_generatorType == self::GENERATOR_TYPE_SEQUENCE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the class uses a table for id generation.
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if the class uses the TABLE generator, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function isIdGeneratorTable()
|
|
|
|
{
|
|
|
|
$this->_generatorType == self::GENERATOR_TYPE_TABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the class has a natural identifier/pk (which means it does
|
|
|
|
* not use any Id generator.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isIdentifierNatural()
|
|
|
|
{
|
|
|
|
return $this->_generatorType == self::GENERATOR_TYPE_NONE;
|
|
|
|
}
|
2008-05-17 16:22:24 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the type of a field.
|
|
|
|
*
|
|
|
|
* @param string $fieldName
|
|
|
|
* @return string
|
|
|
|
*/
|
2008-02-24 19:54:02 +03:00
|
|
|
public function getTypeOfField($fieldName)
|
|
|
|
{
|
2008-07-10 21:17:58 +04:00
|
|
|
return isset($this->_fieldMappings[$fieldName]) ?
|
|
|
|
$this->_fieldMappings[$fieldName]['type'] : false;
|
2008-02-24 19:54:02 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
|
|
|
* getTypeOfColumn
|
|
|
|
*
|
|
|
|
* @return mixed The column type or FALSE if the type cant be determined.
|
|
|
|
*/
|
|
|
|
public function getTypeOfColumn($columnName)
|
|
|
|
{
|
2008-07-10 21:17:58 +04:00
|
|
|
return $this->getTypeOfField($this->getFieldName($columnName));
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-02-24 01:04:39 +03:00
|
|
|
* Gets the (maximum) length of a field.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2008-02-24 01:04:39 +03:00
|
|
|
public function getFieldLength($fieldName)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2008-07-10 21:17:58 +04:00
|
|
|
return $this->_fieldMappings[$fieldName]['length'];
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-02-24 01:04:39 +03:00
|
|
|
* getTableName
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2008-02-24 01:04:39 +03:00
|
|
|
* @return void
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2008-02-24 01:04:39 +03:00
|
|
|
public function getTableName()
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2009-01-05 23:18:56 +03:00
|
|
|
return $this->_tableName;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
public function getInheritedFields()
|
|
|
|
{
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-02-24 01:04:39 +03:00
|
|
|
* Adds a named query.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
|
|
|
* @param string $name The name under which the query gets registered.
|
|
|
|
* @param string $query The DQL query.
|
2008-02-11 20:08:22 +03:00
|
|
|
* @todo Implementation.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2008-02-11 20:08:22 +03:00
|
|
|
public function addNamedQuery($name, $query)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2008-05-17 16:22:24 +04:00
|
|
|
//...
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2009-01-03 22:50:13 +03:00
|
|
|
* Gets the inheritance mapping type used by the mapped class.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2008-12-18 17:08:11 +03:00
|
|
|
* @return string
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
|
|
|
public function getInheritanceType()
|
|
|
|
{
|
|
|
|
return $this->_inheritanceType;
|
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2009-01-03 22:50:13 +03:00
|
|
|
* Sets the subclasses of the mapped class.
|
2008-02-04 00:29:57 +03:00
|
|
|
* All entity classes that participate in a hierarchy and have subclasses
|
2008-02-24 01:04:39 +03:00
|
|
|
* need to declare them this way.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
|
|
|
* @param array $subclasses The names of all subclasses.
|
|
|
|
*/
|
|
|
|
public function setSubclasses(array $subclasses)
|
|
|
|
{
|
2008-05-06 17:41:22 +04:00
|
|
|
$this->_subClasses = $subclasses;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
|
|
|
* Gets the names of all subclasses.
|
|
|
|
*
|
|
|
|
* @return array The names of all subclasses.
|
|
|
|
*/
|
|
|
|
public function getSubclasses()
|
|
|
|
{
|
2008-03-26 14:10:45 +03:00
|
|
|
return $this->_subClasses;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-02-11 20:08:22 +03:00
|
|
|
* Checks whether the class has any persistent subclasses.
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if the class has one or more persistent subclasses, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function hasSubclasses()
|
|
|
|
{
|
2008-03-26 14:10:45 +03:00
|
|
|
return ! $this->_subClasses;
|
2008-02-11 20:08:22 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-11 20:08:22 +03:00
|
|
|
/**
|
|
|
|
* Gets the names of all parent classes.
|
2008-02-24 01:04:39 +03:00
|
|
|
*
|
|
|
|
* @return array The names of all parent classes.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
|
|
|
public function getParentClasses()
|
|
|
|
{
|
2008-03-26 14:10:45 +03:00
|
|
|
return $this->_parentClasses;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-02-11 20:08:22 +03:00
|
|
|
* Sets the parent class names.
|
2008-07-21 00:13:24 +04:00
|
|
|
* Assumes that the class names in the passed array are in the order:
|
|
|
|
* directParent -> directParentParent -> directParentParentParent ... -> root.
|
2008-02-11 20:08:22 +03:00
|
|
|
*/
|
|
|
|
public function setParentClasses(array $classNames)
|
|
|
|
{
|
2008-03-26 14:10:45 +03:00
|
|
|
$this->_parentClasses = $classNames;
|
2008-05-01 13:41:47 +04:00
|
|
|
if (count($classNames) > 0) {
|
|
|
|
$this->_rootEntityName = array_pop($classNames);
|
|
|
|
}
|
2008-02-11 20:08:22 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-11 20:08:22 +03:00
|
|
|
/**
|
2008-03-26 14:10:45 +03:00
|
|
|
* Checks whether the class has any persistent parent classes.
|
2008-02-11 20:08:22 +03:00
|
|
|
*
|
|
|
|
* @return boolean TRUE if the class has one or more persistent parent classes, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function hasParentClasses()
|
|
|
|
{
|
2008-03-26 14:10:45 +03:00
|
|
|
return ! $this->_parentClasses;
|
2008-02-11 20:08:22 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-11 20:08:22 +03:00
|
|
|
/**
|
|
|
|
* Sets the inheritance type used by the class and it's subclasses.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
|
|
|
* @param integer $type
|
|
|
|
*/
|
2009-01-05 23:18:56 +03:00
|
|
|
public function setInheritanceType($type)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2008-03-26 14:10:45 +03:00
|
|
|
if ($parentClassNames = $this->getParentClasses()) {
|
2008-07-21 00:13:24 +04:00
|
|
|
throw new Doctrine_MappingException("All classes in an inheritance hierarchy"
|
|
|
|
. " must share the same inheritance mapping type and this type must be set"
|
|
|
|
. " in the root class of the hierarchy.");
|
2008-03-26 14:10:45 +03:00
|
|
|
}
|
2008-07-27 23:38:56 +04:00
|
|
|
if ( ! $this->_isInheritanceType($type)) {
|
2008-07-21 00:13:24 +04:00
|
|
|
throw Doctrine_MappingException::invalidInheritanceType($type);
|
|
|
|
}
|
2008-02-04 00:29:57 +03:00
|
|
|
$this->_inheritanceType = $type;
|
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
|
|
|
* exports this class to the database based on its mapping.
|
|
|
|
*
|
|
|
|
* @throws Doctrine_Connection_Exception If some error other than Doctrine::ERR_ALREADY_EXISTS
|
|
|
|
* occurred during the create table operation.
|
|
|
|
* @return boolean Whether or not the export operation was successful
|
|
|
|
* false if table already existed in the database.
|
2008-08-16 23:40:59 +04:00
|
|
|
* @todo Reimpl. & Placement.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
|
|
|
public function export()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array with all the information needed to create the main database table
|
|
|
|
* for the class.
|
|
|
|
*
|
|
|
|
* @return array
|
2008-08-16 23:40:59 +04:00
|
|
|
* @todo Reimpl. & placement.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
|
|
|
public function getExportableFormat($parseForeignKeys = true)
|
|
|
|
{
|
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-02-11 20:08:22 +03:00
|
|
|
* Checks whether a persistent field is inherited from a superclass.
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if the field is inherited, FALSE otherwise.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
|
|
|
public function isInheritedField($fieldName)
|
|
|
|
{
|
2008-07-10 21:17:58 +04:00
|
|
|
return isset($this->_fieldMappings[$fieldName]['inherited']);
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-02-11 20:08:22 +03:00
|
|
|
* Sets the name of the primary table the class is mapped to.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2008-02-11 20:08:22 +03:00
|
|
|
* @param string $tableName The table name.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
|
|
|
public function setTableName($tableName)
|
|
|
|
{
|
2009-01-05 23:18:56 +03:00
|
|
|
$this->_tableName = $tableName;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-02-24 01:04:39 +03:00
|
|
|
* Serializes the metadata.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
|
|
|
* Part of the implementation of the Serializable interface.
|
|
|
|
*
|
2008-02-24 01:04:39 +03:00
|
|
|
* @return string The serialized metadata.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2009-01-05 23:18:56 +03:00
|
|
|
/* public function serialize()
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2008-03-26 14:10:45 +03:00
|
|
|
//$contents = get_object_vars($this);
|
|
|
|
//return serialize($contents);
|
|
|
|
return "";
|
2009-01-05 23:18:56 +03:00
|
|
|
}*/
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
|
|
|
* Reconstructs the metadata class from it's serialized representation.
|
|
|
|
*
|
|
|
|
* Part of the implementation of the Serializable interface.
|
|
|
|
*
|
|
|
|
* @param string $serialized The serialized metadata class.
|
|
|
|
*/
|
2009-01-05 23:18:56 +03:00
|
|
|
/*public function unserialize($serialized)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
|
|
|
return true;
|
2009-01-05 23:18:56 +03:00
|
|
|
}*/
|
2008-07-27 23:38:56 +04:00
|
|
|
|
|
|
|
/**
|
2008-08-16 23:40:59 +04:00
|
|
|
* Checks whether the given type identifies an entity type.
|
2008-07-27 23:38:56 +04:00
|
|
|
*
|
|
|
|
* @param string $type
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
private function _isEntityType($type)
|
|
|
|
{
|
|
|
|
return $type == self::ENTITY_TYPE_REGULAR ||
|
|
|
|
$type == self::ENTITY_TYPE_MAPPED_SUPERCLASS ||
|
|
|
|
$type == self::ENTITY_TYPE_TRANSIENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-08-16 23:40:59 +04:00
|
|
|
* Checks whether the given type identifies an inheritance type.
|
2008-07-27 23:38:56 +04:00
|
|
|
*
|
|
|
|
* @param string $type
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
private function _isInheritanceType($type)
|
|
|
|
{
|
|
|
|
return $type == self::INHERITANCE_TYPE_NONE ||
|
|
|
|
$type == self::INHERITANCE_TYPE_SINGLE_TABLE ||
|
|
|
|
$type == self::INHERITANCE_TYPE_JOINED ||
|
|
|
|
$type == self::INHERITANCE_TYPE_TABLE_PER_CLASS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-08-16 23:40:59 +04:00
|
|
|
* Checks whether the given type identifies an id generator type.
|
2008-07-27 23:38:56 +04:00
|
|
|
*
|
|
|
|
* @param string $type
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
private function _isIdGeneratorType($type)
|
|
|
|
{
|
|
|
|
return $type == self::GENERATOR_TYPE_AUTO ||
|
|
|
|
$type == self::GENERATOR_TYPE_IDENTITY ||
|
|
|
|
$type == self::GENERATOR_TYPE_SEQUENCE ||
|
|
|
|
$type == self::GENERATOR_TYPE_TABLE ||
|
|
|
|
$type == self::GENERATOR_TYPE_NONE;
|
|
|
|
}
|
2008-08-16 23:40:59 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes some automatic additions to the association mapping to make the life
|
|
|
|
* easier for the user.
|
|
|
|
*
|
|
|
|
* @param array $mapping
|
|
|
|
* @return unknown
|
|
|
|
* @todo Pass param by ref?
|
|
|
|
*/
|
|
|
|
private function _completeAssociationMapping(array $mapping)
|
|
|
|
{
|
|
|
|
$mapping['sourceEntity'] = $this->_entityName;
|
|
|
|
return $mapping;
|
|
|
|
}
|
2009-01-05 20:25:56 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a field mapping.
|
|
|
|
*
|
|
|
|
* @param array $mapping
|
|
|
|
*/
|
|
|
|
public function mapField(array $mapping)
|
|
|
|
{
|
|
|
|
$this->_validateAndCompleteFieldMapping($mapping);
|
|
|
|
if (isset($this->_fieldMappings[$mapping['fieldName']])) {
|
2009-01-05 23:18:56 +03:00
|
|
|
throw Doctrine_ORM_Exceptions_MappingException::duplicateFieldMapping();
|
2009-01-05 20:25:56 +03:00
|
|
|
}
|
|
|
|
$this->_fieldMappings[$mapping['fieldName']] = $mapping;
|
|
|
|
}
|
2009-01-06 20:22:23 +03:00
|
|
|
|
|
|
|
public function addAssociationMapping(Doctrine_ORM_Mapping_AssociationMapping $mapping)
|
|
|
|
{
|
|
|
|
$this->_storeAssociationMapping($mapping);
|
|
|
|
}
|
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-08-22 13:05:14 +04:00
|
|
|
* Adds a one-to-one mapping.
|
2008-07-21 00:13:24 +04:00
|
|
|
*
|
2008-08-22 13:05:14 +04:00
|
|
|
* @param array $mapping The mapping.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
public function mapOneToOne(array $mapping)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2008-08-16 23:40:59 +04:00
|
|
|
$mapping = $this->_completeAssociationMapping($mapping);
|
2008-09-12 13:26:43 +04:00
|
|
|
$oneToOneMapping = new Doctrine_ORM_Mapping_OneToOneMapping($mapping);
|
2008-08-31 22:27:16 +04:00
|
|
|
$this->_storeAssociationMapping($oneToOneMapping);
|
|
|
|
}
|
2008-12-18 17:08:11 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Registers the mapping as an inverse mapping, if it is a mapping on the
|
|
|
|
* inverse side of an association mapping.
|
|
|
|
*
|
|
|
|
* @param AssociationMapping The mapping to register as inverse if it is a mapping
|
|
|
|
* for the inverse side of an association.
|
|
|
|
*/
|
2008-09-12 13:26:43 +04:00
|
|
|
private function _registerMappingIfInverse(Doctrine_ORM_Mapping_AssociationMapping $assoc)
|
2008-08-31 22:27:16 +04:00
|
|
|
{
|
|
|
|
if ($assoc->isInverseSide()) {
|
|
|
|
$this->_inverseMappings[$assoc->getMappedByFieldName()] = $assoc;
|
2008-07-21 00:13:24 +04:00
|
|
|
}
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-08-22 13:05:14 +04:00
|
|
|
* Adds a one-to-many mapping.
|
|
|
|
*
|
|
|
|
* @param array $mapping The mapping.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
public function mapOneToMany(array $mapping)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2008-08-16 23:40:59 +04:00
|
|
|
$mapping = $this->_completeAssociationMapping($mapping);
|
2008-09-12 13:26:43 +04:00
|
|
|
$oneToManyMapping = new Doctrine_ORM_Mapping_OneToManyMapping($mapping);
|
2008-08-31 22:27:16 +04:00
|
|
|
$this->_storeAssociationMapping($oneToManyMapping);
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-08-22 13:05:14 +04:00
|
|
|
* Adds a many-to-one mapping.
|
|
|
|
*
|
|
|
|
* @param array $mapping The mapping.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
public function mapManyToOne(array $mapping)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2008-08-22 13:05:14 +04:00
|
|
|
// A many-to-one mapping is simply a one-one backreference
|
|
|
|
$this->mapOneToOne($mapping);
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2008-08-31 22:27:16 +04:00
|
|
|
* Adds a many-to-many mapping.
|
|
|
|
*
|
|
|
|
* @param array $mapping The mapping.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2008-07-21 00:13:24 +04:00
|
|
|
public function mapManyToMany(array $mapping)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2008-08-31 22:27:16 +04:00
|
|
|
$mapping = $this->_completeAssociationMapping($mapping);
|
2008-09-12 13:26:43 +04:00
|
|
|
$manyToManyMapping = new Doctrine_ORM_Mapping_ManyToManyMapping($mapping);
|
2008-08-31 22:27:16 +04:00
|
|
|
$this->_storeAssociationMapping($manyToManyMapping);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stores the association mapping.
|
|
|
|
*
|
|
|
|
* @param Doctrine_Association $assocMapping
|
|
|
|
*/
|
2008-09-12 13:26:43 +04:00
|
|
|
private function _storeAssociationMapping(Doctrine_ORM_Mapping_AssociationMapping $assocMapping)
|
2008-08-31 22:27:16 +04:00
|
|
|
{
|
|
|
|
$sourceFieldName = $assocMapping->getSourceFieldName();
|
|
|
|
if (isset($this->_associationMappings[$sourceFieldName])) {
|
2009-01-06 20:22:23 +03:00
|
|
|
throw Doctrine_ORM_Exceptions_MappingException::duplicateFieldMapping();
|
2008-08-31 22:27:16 +04:00
|
|
|
}
|
|
|
|
$this->_associationMappings[$sourceFieldName] = $assocMapping;
|
|
|
|
$this->_registerMappingIfInverse($assocMapping);
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-02-13 13:53:07 +03:00
|
|
|
|
2008-05-06 17:41:22 +04:00
|
|
|
/**
|
|
|
|
* Registers a custom mapper for the entity class.
|
|
|
|
*
|
|
|
|
* @param string $mapperClassName The class name of the custom mapper.
|
|
|
|
*/
|
|
|
|
public function setCustomRepositoryClass($repositoryClassName)
|
|
|
|
{
|
|
|
|
$this->_customRepositoryClassName = $repositoryClassName;
|
|
|
|
}
|
2008-06-15 19:56:28 +04:00
|
|
|
|
2008-02-13 13:53:07 +03:00
|
|
|
/**
|
2008-06-15 19:56:28 +04:00
|
|
|
* Gets the name of the custom repository class used for the entity class.
|
2008-02-13 13:53:07 +03:00
|
|
|
*
|
2008-06-15 19:56:28 +04:00
|
|
|
* @return string|null The name of the custom repository class or NULL if the entity
|
|
|
|
* class does not have a custom repository class.
|
2008-02-13 13:53:07 +03:00
|
|
|
*/
|
2008-05-06 17:41:22 +04:00
|
|
|
public function getCustomRepositoryClass()
|
|
|
|
{
|
|
|
|
return $this->_customRepositoryClassName;
|
|
|
|
}
|
|
|
|
|
2008-02-13 13:53:07 +03:00
|
|
|
/**
|
2009-01-05 23:18:56 +03:00
|
|
|
* Sets whether sub classes should be automatically OUTER JOINed when a base
|
|
|
|
* class is queried in a class hierarchy that uses the JOINED inheritance mapping
|
|
|
|
* strategy.
|
|
|
|
*
|
|
|
|
* This options does only apply to the JOINED inheritance mapping strategy.
|
|
|
|
*
|
|
|
|
* @param boolean $bool
|
|
|
|
* @see getJoinSubClasses()
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2009-01-05 23:18:56 +03:00
|
|
|
public function setJoinSubClasses($bool)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2009-01-05 23:18:56 +03:00
|
|
|
$this->_joinSubclasses = (bool)$bool;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-03-26 14:10:45 +03:00
|
|
|
/**
|
2009-01-05 23:18:56 +03:00
|
|
|
* Gets whether the class mapped by this instance should OUTER JOIN sub classes
|
|
|
|
* when a base class is queried.
|
|
|
|
*
|
|
|
|
* @return <type>
|
|
|
|
* @see setJoinSubClasses()
|
2008-03-26 14:10:45 +03:00
|
|
|
*/
|
2009-01-05 23:18:56 +03:00
|
|
|
public function getJoinSubClasses()
|
2008-03-26 14:10:45 +03:00
|
|
|
{
|
2009-01-05 23:18:56 +03:00
|
|
|
return $this->_joinSubclasses;
|
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2009-01-05 23:18:56 +03:00
|
|
|
/**
|
|
|
|
* @todo Implementation.
|
|
|
|
*/
|
|
|
|
public function setEntityType($type)
|
|
|
|
{
|
|
|
|
//Entity::TYPE_ENTITY
|
|
|
|
//Entity::TYPE_MAPPED_SUPERCLASS
|
|
|
|
//Entity::TYPE_TRANSIENT
|
|
|
|
throw new Doctrine_Exception("Not yet implemented.");
|
|
|
|
}
|
2008-07-10 21:17:58 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dispatches the lifecycle event of the given Entity to the registered
|
|
|
|
* lifecycle callbacks and lifecycle listeners.
|
|
|
|
*
|
|
|
|
* @param string $event The lifecycle event.
|
|
|
|
* @param Entity $entity The Entity on which the event occured.
|
|
|
|
*/
|
2008-09-12 14:40:23 +04:00
|
|
|
public function invokeLifecycleCallbacks($lifecycleEvent, Doctrine_ORM_Entity $entity)
|
2008-07-10 21:17:58 +04:00
|
|
|
{
|
|
|
|
foreach ($this->getLifecycleCallbacks($lifecycleEvent) as $callback) {
|
|
|
|
$entity->$callback();
|
|
|
|
}
|
|
|
|
foreach ($this->getLifecycleListeners($lifecycleEvent) as $className => $callback) {
|
|
|
|
if ( ! isset($this->_lifecycleListenerInstances[$className])) {
|
|
|
|
$this->_lifecycleListenerInstances[$className] = new $className;
|
|
|
|
}
|
|
|
|
$this->_lifecycleListenerInstances[$className]->$callback($entity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the registered lifecycle callbacks for an event.
|
|
|
|
*
|
|
|
|
* @param string $event
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getLifecycleCallbacks($event)
|
|
|
|
{
|
|
|
|
return isset($this->_lifecycleCallbacks[$event]) ?
|
|
|
|
$this->_lifecycleCallbacks[$event] : array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the registered lifecycle listeners for an event.
|
|
|
|
*
|
|
|
|
* @param string $event
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getLifecycleListeners($event)
|
|
|
|
{
|
|
|
|
return isset($this->_lifecycleListeners[$event]) ?
|
|
|
|
$this->_lifecycleListeners[$event] : array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-12-18 17:08:11 +03:00
|
|
|
* Adds a lifecycle listener for Entities of this class.
|
2008-07-10 21:17:58 +04:00
|
|
|
*
|
|
|
|
* Note: If the same listener class is registered more than once, the old
|
|
|
|
* one will be overridden.
|
|
|
|
*
|
|
|
|
* @param string $listenerClass
|
|
|
|
* @param array $callbacks
|
|
|
|
*/
|
|
|
|
public function addLifecycleListener($listenerClass, array $callbacks)
|
|
|
|
{
|
|
|
|
$this->_lifecycleListeners[$event][$listenerClass] = array();
|
|
|
|
foreach ($callbacks as $method => $event) {
|
|
|
|
$this->_lifecycleListeners[$event][$listenerClass][] = $method;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a lifecycle callback for Entities of this class.
|
|
|
|
*
|
2008-07-21 00:13:24 +04:00
|
|
|
* Note: If the same callback is registered more than once, the old one
|
2008-07-10 21:17:58 +04:00
|
|
|
* will be overridden.
|
|
|
|
*
|
|
|
|
* @param string $callback
|
|
|
|
* @param string $event
|
|
|
|
*/
|
|
|
|
public function addLifecycleCallback($callback, $event)
|
|
|
|
{
|
|
|
|
if ( ! isset($this->_lifecycleCallbacks[$event])) {
|
|
|
|
$this->_lifecycleCallbacks[$event] = array();
|
|
|
|
}
|
|
|
|
if ( ! in_array($callback, $this->_lifecycleCallbacks[$event])) {
|
|
|
|
$this->_lifecycleCallbacks[$event][$callback] = $callback;
|
|
|
|
}
|
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-11 20:08:22 +03:00
|
|
|
/**
|
2009-01-05 23:18:56 +03:00
|
|
|
* Sets the discriminator column definition.
|
|
|
|
*
|
|
|
|
* @param array $columnDef
|
|
|
|
* @see getDiscriminatorColumn()
|
2008-02-11 20:08:22 +03:00
|
|
|
*/
|
2009-01-05 23:18:56 +03:00
|
|
|
public function setDiscriminatorColumn($columnDef)
|
2008-02-11 20:08:22 +03:00
|
|
|
{
|
2009-01-05 23:18:56 +03:00
|
|
|
$this->_discriminatorColumn = $columnDef;
|
2008-02-11 20:08:22 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2009-01-06 20:22:23 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param <type> $fieldName
|
|
|
|
* @param <type> $mapping
|
|
|
|
*/
|
|
|
|
/*public function addFieldMapping($fieldName, array $mapping)
|
|
|
|
{
|
|
|
|
$this->_fieldMappings[$fieldName] = $mapping;
|
|
|
|
}*/
|
|
|
|
|
2009-01-05 23:18:56 +03:00
|
|
|
/**
|
|
|
|
* Gets the discriminator column definition.
|
|
|
|
*
|
|
|
|
* The discriminator column definition is an array with the following keys:
|
|
|
|
* name: The name of the column
|
|
|
|
* type: The type of the column (only integer and string supported)
|
|
|
|
* length: The length of the column (applies only if type is string)
|
|
|
|
*
|
|
|
|
* A discriminator column is used for JOINED and SINGLE_TABLE inheritance mappings.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
* @see setDiscriminatorColumn()
|
|
|
|
*/
|
|
|
|
public function getDiscriminatorColumn()
|
2009-01-05 20:25:56 +03:00
|
|
|
{
|
2009-01-05 23:18:56 +03:00
|
|
|
return $this->_discriminatorColumn;
|
2009-01-05 20:25:56 +03:00
|
|
|
}
|
|
|
|
|
2009-01-05 23:18:56 +03:00
|
|
|
/**
|
|
|
|
* Sets the dsicriminator map used for mapping discriminator values to class names.
|
|
|
|
* Used for JOINED and SINGLE_TABLE inheritance mapping strategies.
|
|
|
|
*
|
|
|
|
* @param array $map
|
|
|
|
*/
|
2009-01-05 20:25:56 +03:00
|
|
|
public function setDiscriminatorMap(array $map)
|
|
|
|
{
|
2009-01-05 23:18:56 +03:00
|
|
|
$this->_discriminatorMap = $map;
|
2009-01-05 20:25:56 +03:00
|
|
|
}
|
|
|
|
|
2009-01-05 23:18:56 +03:00
|
|
|
/**
|
|
|
|
* Gets the discriminator map that maps discriminator values to class names.
|
|
|
|
* Used for JOINED and SINGLE_TABLE inheritance mapping strategies.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getDiscriminatorMap()
|
|
|
|
{
|
|
|
|
return $this->_discriminatorMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the given column name is the discriminator column.
|
|
|
|
*
|
|
|
|
* @param string $columnName
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2008-03-05 14:24:33 +03:00
|
|
|
public function isDiscriminatorColumn($columnName)
|
|
|
|
{
|
2009-01-05 23:18:56 +03:00
|
|
|
return $columnName === $this->_discriminatorColumn['name'];
|
2008-03-05 14:24:33 +03:00
|
|
|
}
|
2009-01-05 23:18:56 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the class has a mapped association with the given field name.
|
|
|
|
*
|
|
|
|
* @param string $fieldName
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2008-08-16 23:40:59 +04:00
|
|
|
public function hasAssociation($fieldName)
|
|
|
|
{
|
|
|
|
return isset($this->_associationMappings[$fieldName]);
|
|
|
|
}
|
2008-02-24 19:54:02 +03:00
|
|
|
|
2009-01-05 23:18:56 +03:00
|
|
|
/** Creates a string representation of the instance. */
|
2008-02-04 00:29:57 +03:00
|
|
|
public function __toString()
|
|
|
|
{
|
2009-01-03 22:50:13 +03:00
|
|
|
return __CLASS__ . '@' . spl_object_hash($this);
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|