2009-10-05 08:11:29 +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.doctrine-project.org>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Doctrine\ORM\Mapping;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A <tt>ClassMetadata</tt> instance holds all the object-relational mapping metadata
|
|
|
|
* of an entity and it's associations.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* Once populated, ClassMetadata instances are usually cached in a serialized form.
|
|
|
|
*
|
|
|
|
* <b>IMPORTANT NOTE:</b>
|
|
|
|
*
|
|
|
|
* The fields of this class are only public for 2 reasons:
|
|
|
|
* 1) To allow fast READ access.
|
|
|
|
* 2) To drastically reduce the size of a serialized instance (private/protected members
|
|
|
|
* get the whole class name, namespace inclusive, prepended to every property in
|
|
|
|
* the serialized representation).
|
|
|
|
*
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2009-10-05 09:42:30 +04:00
|
|
|
* @author Jonathan H. Wage <jonwage@gmail.com>
|
2009-10-05 08:11:29 +04:00
|
|
|
* @since 2.0
|
|
|
|
*/
|
|
|
|
class ClassMetadataInfo
|
|
|
|
{
|
|
|
|
/* The inheritance mapping types */
|
|
|
|
/**
|
|
|
|
* NONE means the class does not participate in an inheritance hierarchy
|
|
|
|
* and therefore does not need an inheritance mapping type.
|
|
|
|
*/
|
|
|
|
const INHERITANCE_TYPE_NONE = 1;
|
|
|
|
/**
|
|
|
|
* JOINED means the class will be persisted according to the rules of
|
|
|
|
* <tt>Class Table Inheritance</tt>.
|
|
|
|
*/
|
|
|
|
const INHERITANCE_TYPE_JOINED = 2;
|
|
|
|
/**
|
|
|
|
* SINGLE_TABLE means the class will be persisted according to the rules of
|
|
|
|
* <tt>Single Table Inheritance</tt>.
|
|
|
|
*/
|
|
|
|
const INHERITANCE_TYPE_SINGLE_TABLE = 3;
|
|
|
|
/**
|
|
|
|
* TABLE_PER_CLASS means the class will be persisted according to the rules
|
|
|
|
* of <tt>Concrete Table Inheritance</tt>.
|
|
|
|
*/
|
|
|
|
const INHERITANCE_TYPE_TABLE_PER_CLASS = 4;
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/* The Id generator types. */
|
|
|
|
/**
|
|
|
|
* AUTO means the generator type will depend on what the used platform prefers.
|
|
|
|
* Offers full portability.
|
|
|
|
*/
|
|
|
|
const GENERATOR_TYPE_AUTO = 1;
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
const GENERATOR_TYPE_SEQUENCE = 2;
|
|
|
|
/**
|
|
|
|
* TABLE means a separate table is used for id generation.
|
|
|
|
* Offers full portability.
|
|
|
|
*/
|
|
|
|
const GENERATOR_TYPE_TABLE = 3;
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
const GENERATOR_TYPE_IDENTITY = 4;
|
|
|
|
/**
|
|
|
|
* NONE means the class does not have a generated id. That means the class
|
2009-10-23 19:03:00 +04:00
|
|
|
* must have a natural, manually assigned id.
|
2009-10-05 08:11:29 +04:00
|
|
|
*/
|
|
|
|
const GENERATOR_TYPE_NONE = 5;
|
|
|
|
/**
|
|
|
|
* DEFERRED_IMPLICIT means that changes of entities are calculated at commit-time
|
|
|
|
* by doing a property-by-property comparison with the original data. This will
|
|
|
|
* be done for all entities that are in MANAGED state at commit-time.
|
|
|
|
*
|
|
|
|
* This is the default change tracking policy.
|
|
|
|
*/
|
|
|
|
const CHANGETRACKING_DEFERRED_IMPLICIT = 1;
|
|
|
|
/**
|
|
|
|
* DEFERRED_EXPLICIT means that changes of entities are calculated at commit-time
|
|
|
|
* by doing a property-by-property comparison with the original data. This will
|
2009-10-23 19:03:00 +04:00
|
|
|
* be done only for entities that were explicitly saved (through persist() or a cascade).
|
2009-10-05 08:11:29 +04:00
|
|
|
*/
|
|
|
|
const CHANGETRACKING_DEFERRED_EXPLICIT = 2;
|
|
|
|
/**
|
|
|
|
* NOTIFY means that Doctrine relies on the entities sending out notifications
|
|
|
|
* when their properties change. Such entity classes must implement
|
|
|
|
* the <tt>NotifyPropertyChanged</tt> interface.
|
|
|
|
*/
|
|
|
|
const CHANGETRACKING_NOTIFY = 3;
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The name of the entity class.
|
2009-10-05 08:11:29 +04:00
|
|
|
*/
|
|
|
|
public $name;
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The namespace the entity class is contained in.
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* @var string
|
2009-12-21 14:06:27 +03:00
|
|
|
* @todo Not really needed. Usage could be localized.
|
2009-10-05 08:11:29 +04:00
|
|
|
*/
|
|
|
|
public $namespace;
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The name of the entity class that is at the root of the entity inheritance
|
2009-10-05 08:11:29 +04:00
|
|
|
* hierarchy. If the entity is not part of an inheritance hierarchy this is the same
|
|
|
|
* as $_entityName.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $rootEntityName;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the custom repository class used for the entity class.
|
|
|
|
* (Optional).
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $customRepositoryClassName;
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: Whether this class describes the mapping of a mapped superclass.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
public $isMappedSuperclass = false;
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The names of the parent classes (ancestors).
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $parentClasses = array();
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The names of all subclasses.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $subClasses = array();
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The field names of all fields that are part of the identifier/primary key
|
2009-10-05 08:11:29 +04:00
|
|
|
* of the mapped entity class.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $identifier = array();
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The inheritance mapping type used by the class.
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* @var integer
|
|
|
|
*/
|
|
|
|
public $inheritanceType = self::INHERITANCE_TYPE_NONE;
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The Id generator type used by the class.
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $generatorType = self::GENERATOR_TYPE_NONE;
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The field mappings of the class.
|
2009-10-05 08:11:29 +04:00
|
|
|
* Keys are field names and values are mapping definitions.
|
|
|
|
*
|
|
|
|
* The mapping definition array has the following values:
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* - <b>fieldName</b> (string)
|
2010-02-23 17:02:31 +03:00
|
|
|
* The name of the field in the Entity.
|
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* - <b>type</b> (object Doctrine\DBAL\Types\* or custom type)
|
|
|
|
* The type of the column. Can be one of Doctrine's portable types
|
|
|
|
* or a custom type.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* - <b>columnName</b> (string, optional)
|
|
|
|
* The column name. Optional. Defaults to the field name.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* - <b>length</b> (integer, optional)
|
|
|
|
* The database length of the column. Optional. Default value taken from
|
|
|
|
* the type.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +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.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +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!
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* - <b>nullable</b> (boolean, optional)
|
|
|
|
* Whether the column is nullable. Defaults to FALSE.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* - <b>columnDefinition</b> (string, optional, schema-only)
|
|
|
|
* The SQL fragment that is used when generating the DDL for the column.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* - <b>precision</b> (integer, optional, schema-only)
|
|
|
|
* The precision of a decimal column. Only valid if the column type is decimal.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* - <b>scale</b> (integer, optional, schema-only)
|
|
|
|
* The scale of a decimal column. Only valid if the column type is decimal.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-12-21 14:06:27 +03:00
|
|
|
* - <b>unique (string, optional, schema-only)</b>
|
|
|
|
* Whether a unique constraint should be generated for the column.
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* @var array
|
2010-02-23 17:02:31 +03:00
|
|
|
*/
|
2009-10-05 08:11:29 +04:00
|
|
|
public $fieldMappings = array();
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: An array of field names. Used to look up field names from column names.
|
2009-10-05 08:11:29 +04:00
|
|
|
* Keys are column names and values are field names.
|
|
|
|
* This is the reverse lookup map of $_columnNames.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $fieldNames = array();
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: A map of field names to column names. Keys are field names and values column names.
|
2009-10-05 08:11:29 +04:00
|
|
|
* Used to look up column names from field names.
|
|
|
|
* This is the reverse lookup map of $_fieldNames.
|
|
|
|
*
|
|
|
|
* @var array
|
2009-12-21 14:06:27 +03:00
|
|
|
* @todo We could get rid of this array by just using $fieldMappings[$fieldName]['columnName'].
|
2009-10-05 08:11:29 +04:00
|
|
|
*/
|
|
|
|
public $columnNames = array();
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The discriminator value of this class.
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* <b>This does only apply to the JOINED and SINGLE_TABLE inheritance mapping strategies
|
|
|
|
* where a discriminator column is used.</b>
|
|
|
|
*
|
|
|
|
* @var mixed
|
2010-02-09 20:13:49 +03:00
|
|
|
* @see discriminatorColumn
|
2009-10-05 08:11:29 +04:00
|
|
|
*/
|
|
|
|
public $discriminatorValue;
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The discriminator map of all mapped classes in the hierarchy.
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* <b>This does only apply to the JOINED and SINGLE_TABLE inheritance mapping strategies
|
|
|
|
* where a discriminator column is used.</b>
|
|
|
|
*
|
|
|
|
* @var mixed
|
2010-02-09 20:13:49 +03:00
|
|
|
* @see discriminatorColumn
|
2009-10-05 08:11:29 +04:00
|
|
|
*/
|
|
|
|
public $discriminatorMap = array();
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The definition of the descriminator column used in JOINED and SINGLE_TABLE
|
2009-10-05 08:11:29 +04:00
|
|
|
* inheritance mappings.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $discriminatorColumn;
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The primary table definition. The definition is an array with the
|
2009-10-05 08:11:29 +04:00
|
|
|
* following entries:
|
|
|
|
*
|
|
|
|
* name => <tableName>
|
|
|
|
* schema => <schemaName>
|
|
|
|
* indexes => array
|
|
|
|
* uniqueConstraints => array
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $primaryTable;
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The registered lifecycle callbacks for entities of this class.
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $lifecycleCallbacks = array();
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The association mappings. All mappings, inverse and owning side.
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $associationMappings = array();
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: List of inverse association mappings, indexed by mappedBy field name.
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* @var array
|
2009-12-09 15:37:57 +03:00
|
|
|
* @todo Remove! See http://www.doctrine-project.org/jira/browse/DDC-193
|
2009-10-05 08:11:29 +04:00
|
|
|
*/
|
|
|
|
public $inverseMappings = array();
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: Flag indicating whether the identifier/primary key of the class is composite.
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
public $isIdentifierComposite = false;
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The ID generator used for generating IDs for this class.
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* @var AbstractIdGenerator
|
|
|
|
*/
|
|
|
|
public $idGenerator;
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The definition of the sequence generator of this class. Only used for the
|
2009-10-05 08:11:29 +04:00
|
|
|
* SEQUENCE generation strategy.
|
2010-03-15 20:19:00 +03:00
|
|
|
*
|
|
|
|
* The definition has the following structure:
|
|
|
|
* <code>
|
|
|
|
* array(
|
|
|
|
* 'sequenceName' => 'name',
|
|
|
|
* 'allocationSize' => 20,
|
|
|
|
* 'initialValue' => 1
|
|
|
|
* )
|
|
|
|
* </code>
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $sequenceGeneratorDefinition;
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The definition of the table generator of this class. Only used for the
|
2009-10-05 08:11:29 +04:00
|
|
|
* TABLE generation strategy.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $tableGeneratorDefinition;
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The policy used for change-tracking on entities of this class.
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* @var integer
|
|
|
|
*/
|
|
|
|
public $changeTrackingPolicy = self::CHANGETRACKING_DEFERRED_IMPLICIT;
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: A map of field names to class names, where the field names are association
|
2009-10-05 08:11:29 +04:00
|
|
|
* fields that have been inherited from another class and values are the names
|
|
|
|
* of the classes that define the association.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $inheritedAssociationFields = array();
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: A flag for whether or not instances of this class are to be versioned
|
|
|
|
* with optimistic locking.
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* @var boolean $isVersioned
|
|
|
|
*/
|
|
|
|
public $isVersioned;
|
|
|
|
|
|
|
|
/**
|
2010-03-15 20:19:00 +03:00
|
|
|
* READ-ONLY: The name of the field which is used for versioning in optimistic locking (if any).
|
2009-10-05 08:11:29 +04:00
|
|
|
*
|
|
|
|
* @var mixed $versionField
|
|
|
|
*/
|
|
|
|
public $versionField;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes a new ClassMetadata instance that will hold the object-relational mapping
|
|
|
|
* metadata of the class with the given name.
|
|
|
|
*
|
|
|
|
* @param string $entityName The name of the entity class the new instance is used for.
|
|
|
|
*/
|
|
|
|
public function __construct($entityName)
|
|
|
|
{
|
|
|
|
$this->name = $entityName;
|
|
|
|
$this->rootEntityName = $entityName;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the change tracking policy used by this class.
|
|
|
|
*
|
|
|
|
* @param integer $policy
|
|
|
|
*/
|
|
|
|
public function setChangeTrackingPolicy($policy)
|
|
|
|
{
|
|
|
|
$this->changeTrackingPolicy = $policy;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the change tracking policy of this class is "deferred explicit".
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isChangeTrackingDeferredExplicit()
|
|
|
|
{
|
|
|
|
return $this->changeTrackingPolicy == self::CHANGETRACKING_DEFERRED_EXPLICIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the change tracking policy of this class is "deferred implicit".
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isChangeTrackingDeferredImplicit()
|
|
|
|
{
|
|
|
|
return $this->changeTrackingPolicy == self::CHANGETRACKING_DEFERRED_IMPLICIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the change tracking policy of this class is "notify".
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isChangeTrackingNotify()
|
|
|
|
{
|
|
|
|
return $this->changeTrackingPolicy == self::CHANGETRACKING_NOTIFY;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether a field is part of the identifier/primary key field(s).
|
|
|
|
*
|
|
|
|
* @param string $fieldName The field name
|
|
|
|
* @return boolean TRUE if the field is part of the table identifier/primary key field(s),
|
|
|
|
* FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function isIdentifier($fieldName)
|
|
|
|
{
|
|
|
|
if ( ! $this->isIdentifierComposite) {
|
|
|
|
return $fieldName === $this->identifier[0];
|
|
|
|
}
|
|
|
|
return in_array($fieldName, $this->identifier);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the field is unique.
|
|
|
|
*
|
|
|
|
* @param string $fieldName The field name
|
|
|
|
* @return boolean TRUE if the field is unique, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function isUniqueField($fieldName)
|
|
|
|
{
|
|
|
|
$mapping = $this->getFieldMapping($fieldName);
|
|
|
|
if ($mapping !== false) {
|
|
|
|
return isset($mapping['unique']) && $mapping['unique'] == true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the field is not null.
|
|
|
|
*
|
|
|
|
* @param string $fieldName The field name
|
|
|
|
* @return boolean TRUE if the field is not null, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function isNullable($fieldName)
|
|
|
|
{
|
|
|
|
$mapping = $this->getFieldMapping($fieldName);
|
|
|
|
if ($mapping !== false) {
|
|
|
|
return isset($mapping['nullable']) && $mapping['nullable'] == true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a column name for a field name.
|
|
|
|
* If the column name for the field cannot be found, the given field name
|
|
|
|
* is returned.
|
|
|
|
*
|
|
|
|
* @param string $fieldName The field name.
|
|
|
|
* @return string The column name.
|
|
|
|
*/
|
|
|
|
public function getColumnName($fieldName)
|
|
|
|
{
|
|
|
|
return isset($this->columnNames[$fieldName]) ?
|
|
|
|
$this->columnNames[$fieldName] : $fieldName;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the mapping of a (regular) field that holds some data but not a
|
|
|
|
* reference to another object.
|
|
|
|
*
|
|
|
|
* @param string $fieldName The field name.
|
|
|
|
* @return array The field mapping.
|
|
|
|
*/
|
|
|
|
public function getFieldMapping($fieldName)
|
|
|
|
{
|
|
|
|
if ( ! isset($this->fieldMappings[$fieldName])) {
|
2009-10-07 22:52:51 +04:00
|
|
|
throw MappingException::mappingNotFound($this->name, $fieldName);
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
|
|
|
return $this->fieldMappings[$fieldName];
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Gets the mapping of an association.
|
|
|
|
*
|
|
|
|
* @param string $fieldName The field name that represents the association in
|
|
|
|
* the object model.
|
|
|
|
* @return Doctrine\ORM\Mapping\AssociationMapping The mapping.
|
|
|
|
*/
|
|
|
|
public function getAssociationMapping($fieldName)
|
|
|
|
{
|
|
|
|
if ( ! isset($this->associationMappings[$fieldName])) {
|
2009-10-07 22:52:51 +04:00
|
|
|
throw MappingException::mappingNotFound($this->name, $fieldName);
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
|
|
|
return $this->associationMappings[$fieldName];
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Gets the inverse association mapping for the given target class name and
|
|
|
|
* owning fieldname.
|
|
|
|
*
|
2010-02-23 17:02:31 +03:00
|
|
|
* @param string $mappedByFieldName The field on the
|
2009-10-05 08:11:29 +04:00
|
|
|
* @return Doctrine\ORM\Mapping\AssociationMapping The mapping or NULL if there is no such
|
|
|
|
* inverse association mapping.
|
|
|
|
*/
|
|
|
|
public function getInverseAssociationMapping($targetClassName, $mappedByFieldName)
|
|
|
|
{
|
|
|
|
return isset($this->inverseMappings[$targetClassName][$mappedByFieldName]) ?
|
|
|
|
$this->inverseMappings[$targetClassName][$mappedByFieldName] : null;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Checks whether the class has an inverse association mapping that points to the
|
|
|
|
* specified class and ha the specified mappedBy field.
|
|
|
|
*
|
|
|
|
* @param string $targetClassName The name of the target class.
|
|
|
|
* @param string $mappedByFieldName The name of the mappedBy field that points to the field on
|
|
|
|
* the target class that owns the association.
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function hasInverseAssociationMapping($targetClassName, $mappedByFieldName)
|
|
|
|
{
|
|
|
|
return isset($this->inverseMappings[$targetClassName][$mappedByFieldName]);
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Gets all association mappings of the class.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getAssociationMappings()
|
|
|
|
{
|
|
|
|
return $this->associationMappings;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Gets the field name for a column name.
|
|
|
|
* If no field name can be found the column name is returned.
|
|
|
|
*
|
|
|
|
* @param string $columnName column name
|
|
|
|
* @return string column alias
|
|
|
|
*/
|
|
|
|
public function getFieldName($columnName)
|
|
|
|
{
|
|
|
|
return isset($this->fieldNames[$columnName]) ?
|
|
|
|
$this->fieldNames[$columnName] : $columnName;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Validates & completes the given field mapping.
|
|
|
|
*
|
|
|
|
* @param array $mapping The field mapping to validated & complete.
|
|
|
|
* @return array The validated and completed field mapping.
|
|
|
|
*/
|
|
|
|
protected function _validateAndCompleteFieldMapping(array &$mapping)
|
|
|
|
{
|
|
|
|
// Check mandatory fields
|
|
|
|
if ( ! isset($mapping['fieldName'])) {
|
2009-10-07 22:52:51 +04:00
|
|
|
throw MappingException::missingFieldName($this->name, $mapping);
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
|
|
|
if ( ! isset($mapping['type'])) {
|
2010-02-09 20:13:49 +03:00
|
|
|
// Default to string
|
|
|
|
$mapping['type'] = 'string';
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Complete fieldName and columnName mapping
|
|
|
|
if ( ! isset($mapping['columnName'])) {
|
|
|
|
$mapping['columnName'] = $mapping['fieldName'];
|
|
|
|
} else {
|
|
|
|
if ($mapping['columnName'][0] == '`') {
|
|
|
|
$mapping['columnName'] = trim($mapping['columnName'], '`');
|
|
|
|
$mapping['quoted'] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->columnNames[$mapping['fieldName']] = $mapping['columnName'];
|
|
|
|
$this->fieldNames[$mapping['columnName']] = $mapping['fieldName'];
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
// Complete id mapping
|
|
|
|
if (isset($mapping['id']) && $mapping['id'] === true) {
|
|
|
|
if ( ! in_array($mapping['fieldName'], $this->identifier)) {
|
|
|
|
$this->identifier[] = $mapping['fieldName'];
|
|
|
|
}
|
|
|
|
// Check for composite key
|
|
|
|
if ( ! $this->isIdentifierComposite && count($this->identifier) > 1) {
|
|
|
|
$this->isIdentifierComposite = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Maps an embedded value object.
|
|
|
|
*
|
|
|
|
* @todo Implementation.
|
|
|
|
*/
|
|
|
|
/*public function mapEmbeddedValue()
|
|
|
|
{
|
|
|
|
//...
|
|
|
|
}*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the identifier (primary key) field names of the class.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getIdentifierFieldNames()
|
|
|
|
{
|
|
|
|
return $this->identifier;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Gets the name of the single id field. Note that this only works on
|
|
|
|
* entity classes that have a single-field pk.
|
|
|
|
*
|
|
|
|
* @return string
|
2010-02-09 20:13:49 +03:00
|
|
|
* @throws MappingException If the class has a composite primary key.
|
2009-10-05 08:11:29 +04:00
|
|
|
*/
|
|
|
|
public function getSingleIdentifierFieldName()
|
|
|
|
{
|
|
|
|
if ($this->isIdentifierComposite) {
|
2010-02-03 00:17:00 +03:00
|
|
|
throw MappingException::singleIdNotAllowedOnCompositePrimaryKey($this->name);
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
|
|
|
return $this->identifier[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the column name of the single id column. Note that this only works on
|
|
|
|
* entity classes that have a single-field pk.
|
|
|
|
*
|
|
|
|
* @return string
|
2010-02-09 20:13:49 +03:00
|
|
|
* @throws MappingException If the class has a composite primary key.
|
2009-10-05 08:11:29 +04:00
|
|
|
*/
|
|
|
|
public function getSingleIdentifierColumnName()
|
|
|
|
{
|
|
|
|
return $this->getColumnName($this->getSingleIdentifierFieldName());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* INTERNAL:
|
|
|
|
* Sets the mapped identifier/primary key fields of this class.
|
|
|
|
* Mainly used by the ClassMetadataFactory to assign inherited identifiers.
|
|
|
|
*
|
|
|
|
* @param array $identifier
|
|
|
|
*/
|
|
|
|
public function setIdentifier(array $identifier)
|
|
|
|
{
|
|
|
|
$this->identifier = $identifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the class has a (mapped) field with a certain name.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function hasField($fieldName)
|
|
|
|
{
|
|
|
|
return isset($this->fieldMappings[$fieldName]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an array containing all the column names.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getColumnNames(array $fieldNames = null)
|
|
|
|
{
|
|
|
|
if ($fieldNames === null) {
|
|
|
|
return array_keys($this->fieldNames);
|
|
|
|
} else {
|
|
|
|
$columnNames = array();
|
|
|
|
foreach ($fieldNames as $fieldName) {
|
|
|
|
$columnNames[] = $this->getColumnName($fieldName);
|
2010-02-23 17:02:31 +03:00
|
|
|
}
|
2009-10-05 08:11:29 +04:00
|
|
|
return $columnNames;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array with all the identifier column names.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getIdentifierColumnNames()
|
|
|
|
{
|
|
|
|
if ($this->isIdentifierComposite) {
|
|
|
|
$columnNames = array();
|
|
|
|
foreach ($this->identifier as $idField) {
|
|
|
|
$columnNames[] = $this->fieldMappings[$idField]['columnName'];
|
|
|
|
}
|
|
|
|
return $columnNames;
|
|
|
|
} else {
|
|
|
|
return array($this->fieldMappings[$this->identifier[0]]['columnName']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the type of Id generator to use for the mapped class.
|
|
|
|
*/
|
|
|
|
public function setIdGeneratorType($generatorType)
|
|
|
|
{
|
|
|
|
$this->generatorType = $generatorType;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Checks whether the mapped class uses an Id generator.
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if the mapped class uses an Id generator, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function usesIdGenerator()
|
|
|
|
{
|
|
|
|
return $this->generatorType != self::GENERATOR_TYPE_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isInheritanceTypeNone()
|
|
|
|
{
|
|
|
|
return $this->inheritanceType == self::INHERITANCE_TYPE_NONE;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04: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.
|
|
|
|
*/
|
|
|
|
public function isInheritanceTypeJoined()
|
|
|
|
{
|
|
|
|
return $this->inheritanceType == self::INHERITANCE_TYPE_JOINED;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04: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.
|
|
|
|
*/
|
|
|
|
public function isInheritanceTypeSingleTable()
|
|
|
|
{
|
|
|
|
return $this->inheritanceType == self::INHERITANCE_TYPE_SINGLE_TABLE;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04: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.
|
|
|
|
*/
|
|
|
|
public function isInheritanceTypeTablePerClass()
|
|
|
|
{
|
|
|
|
return $this->inheritanceType == self::INHERITANCE_TYPE_TABLE_PER_CLASS;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +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;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Gets the type of a field.
|
|
|
|
*
|
|
|
|
* @param string $fieldName
|
|
|
|
* @return Doctrine\DBAL\Types\Type
|
|
|
|
*/
|
|
|
|
public function getTypeOfField($fieldName)
|
|
|
|
{
|
|
|
|
return isset($this->fieldMappings[$fieldName]) ?
|
|
|
|
$this->fieldMappings[$fieldName]['type'] : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the type of a column.
|
|
|
|
*
|
|
|
|
* @return Doctrine\DBAL\Types\Type
|
|
|
|
*/
|
|
|
|
public function getTypeOfColumn($columnName)
|
|
|
|
{
|
|
|
|
return $this->getTypeOfField($this->getFieldName($columnName));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the name of the primary table.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getTableName()
|
|
|
|
{
|
|
|
|
return $this->primaryTable['name'];
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Gets the table name to use for temporary identifier tables of this class.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getTemporaryIdTableName()
|
|
|
|
{
|
|
|
|
return $this->primaryTable['name'] . '_id_tmp';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the mapped subclasses of this class.
|
|
|
|
*
|
2010-02-09 20:13:49 +03:00
|
|
|
* @param array $subclasses The names of all mapped subclasses.
|
2009-10-05 08:11:29 +04:00
|
|
|
*/
|
|
|
|
public function setSubclasses(array $subclasses)
|
|
|
|
{
|
|
|
|
foreach ($subclasses as $subclass) {
|
2009-11-05 02:06:38 +03:00
|
|
|
if (strpos($subclass, '\\') === false && strlen($this->namespace)) {
|
2009-10-05 08:11:29 +04:00
|
|
|
$this->subClasses[] = $this->namespace . '\\' . $subclass;
|
|
|
|
} else {
|
|
|
|
$this->subClasses[] = $subclass;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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()
|
|
|
|
{
|
|
|
|
return ! $this->subClasses;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the parent class names.
|
|
|
|
* Assumes that the class names in the passed array are in the order:
|
|
|
|
* directParent -> directParentParent -> directParentParentParent ... -> root.
|
|
|
|
*/
|
|
|
|
public function setParentClasses(array $classNames)
|
|
|
|
{
|
|
|
|
$this->parentClasses = $classNames;
|
|
|
|
if (count($classNames) > 0) {
|
|
|
|
$this->rootEntityName = array_pop($classNames);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the class has any persistent parent classes.
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if the class has one or more persistent parent classes, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function hasParentClasses()
|
|
|
|
{
|
|
|
|
return ! $this->parentClasses;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the inheritance type used by the class and it's subclasses.
|
|
|
|
*
|
|
|
|
* @param integer $type
|
|
|
|
*/
|
|
|
|
public function setInheritanceType($type)
|
|
|
|
{
|
|
|
|
if ( ! $this->_isInheritanceType($type)) {
|
2009-10-07 22:52:51 +04:00
|
|
|
throw MappingException::invalidInheritanceType($this->name, $type);
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
|
|
|
$this->inheritanceType = $type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether a mapped field is inherited from a superclass.
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if the field is inherited, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function isInheritedField($fieldName)
|
|
|
|
{
|
|
|
|
return isset($this->fieldMappings[$fieldName]['inherited']);
|
|
|
|
}
|
|
|
|
|
2009-10-07 22:52:51 +04:00
|
|
|
/**
|
|
|
|
* Checks whether a mapped association field is inherited from a superclass.
|
|
|
|
*
|
|
|
|
* @param string $fieldName
|
|
|
|
* @return boolean TRUE if the field is inherited, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function isInheritedAssociation($fieldName)
|
|
|
|
{
|
|
|
|
return isset($this->inheritedAssociationFields[$fieldName]);
|
|
|
|
}
|
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Sets the name of the primary table the class is mapped to.
|
|
|
|
*
|
|
|
|
* @param string $tableName The table name.
|
|
|
|
* @deprecated
|
|
|
|
*/
|
|
|
|
public function setTableName($tableName)
|
|
|
|
{
|
|
|
|
$this->primaryTable['name'] = $tableName;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the primary table definition. The provided array must have the
|
|
|
|
* following structure:
|
|
|
|
*
|
|
|
|
* name => <tableName>
|
|
|
|
* schema => <schemaName>
|
|
|
|
* catalog => <catalogName>
|
|
|
|
*
|
|
|
|
* @param array $primaryTableDefinition
|
|
|
|
*/
|
|
|
|
public function setPrimaryTable(array $primaryTableDefinition)
|
|
|
|
{
|
|
|
|
$this->primaryTable = $primaryTableDefinition;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the given type identifies an inheritance type.
|
|
|
|
*
|
|
|
|
* @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;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Checks whether the given type identifies an id generator type.
|
|
|
|
*
|
|
|
|
* @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;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Makes some automatic additions to the association mapping to make the life
|
|
|
|
* easier for the user, and store join columns in the metadata.
|
|
|
|
*
|
|
|
|
* @param array $mapping
|
|
|
|
* @todo Pass param by ref?
|
|
|
|
*/
|
|
|
|
private function _completeAssociationMapping(array $mapping)
|
|
|
|
{
|
|
|
|
$mapping['sourceEntity'] = $this->name;
|
2009-11-05 02:06:38 +03:00
|
|
|
if (isset($mapping['targetEntity']) && strpos($mapping['targetEntity'], '\\') === false && strlen($this->namespace) > 0) {
|
2009-10-05 08:11:29 +04:00
|
|
|
$mapping['targetEntity'] = $this->namespace . '\\' . $mapping['targetEntity'];
|
|
|
|
}
|
|
|
|
return $mapping;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a field mapping.
|
|
|
|
*
|
|
|
|
* @param array $mapping The field mapping.
|
|
|
|
*/
|
|
|
|
public function mapField(array $mapping)
|
|
|
|
{
|
|
|
|
$this->_validateAndCompleteFieldMapping($mapping);
|
|
|
|
if (isset($this->fieldMappings[$mapping['fieldName']])) {
|
2009-10-07 22:52:51 +04:00
|
|
|
throw MappingException::duplicateFieldMapping($this->name, $mapping['fieldName']);
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
|
|
|
$this->fieldMappings[$mapping['fieldName']] = $mapping;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* INTERNAL:
|
|
|
|
* Adds an association mapping without completing/validating it.
|
|
|
|
* This is mainly used to add inherited association mappings to derived classes.
|
|
|
|
*
|
|
|
|
* @param AssociationMapping $mapping
|
|
|
|
* @param string $owningClassName The name of the class that defined this mapping.
|
|
|
|
* @todo Rename: addInheritedAssociationMapping
|
|
|
|
*/
|
|
|
|
public function addAssociationMapping(AssociationMapping $mapping, $owningClassName = null)
|
|
|
|
{
|
|
|
|
$sourceFieldName = $mapping->sourceFieldName;
|
|
|
|
if (isset($this->associationMappings[$sourceFieldName])) {
|
2009-10-07 22:52:51 +04:00
|
|
|
throw MappingException::duplicateAssociationMapping($this->name, $sourceFieldName);
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
|
|
|
$this->associationMappings[$sourceFieldName] = $mapping;
|
|
|
|
if ($owningClassName !== null) {
|
|
|
|
$this->inheritedAssociationFields[$sourceFieldName] = $owningClassName;
|
|
|
|
}
|
|
|
|
$this->_registerMappingIfInverse($mapping);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* INTERNAL:
|
|
|
|
* Adds a field mapping without completing/validating it.
|
|
|
|
* This is mainly used to add inherited field mappings to derived classes.
|
|
|
|
*
|
|
|
|
* @param array $mapping
|
|
|
|
* @todo Rename: addInheritedFieldMapping
|
|
|
|
*/
|
|
|
|
public function addFieldMapping(array $fieldMapping)
|
|
|
|
{
|
|
|
|
$this->fieldMappings[$fieldMapping['fieldName']] = $fieldMapping;
|
|
|
|
$this->columnNames[$fieldMapping['fieldName']] = $fieldMapping['columnName'];
|
|
|
|
$this->fieldNames[$fieldMapping['columnName']] = $fieldMapping['fieldName'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a one-to-one mapping.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @param array $mapping The mapping.
|
|
|
|
*/
|
|
|
|
public function mapOneToOne(array $mapping)
|
|
|
|
{
|
|
|
|
$mapping = $this->_completeAssociationMapping($mapping);
|
|
|
|
$oneToOneMapping = new OneToOneMapping($mapping);
|
|
|
|
$this->_storeAssociationMapping($oneToOneMapping);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
private function _registerMappingIfInverse(AssociationMapping $assoc)
|
|
|
|
{
|
|
|
|
if ($assoc->isInverseSide()) {
|
2010-03-15 20:19:00 +03:00
|
|
|
$this->inverseMappings[$assoc->targetEntityName][$assoc->mappedBy] = $assoc;
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a one-to-many mapping.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @param array $mapping The mapping.
|
|
|
|
*/
|
|
|
|
public function mapOneToMany(array $mapping)
|
|
|
|
{
|
|
|
|
$mapping = $this->_completeAssociationMapping($mapping);
|
|
|
|
$oneToManyMapping = new OneToManyMapping($mapping);
|
|
|
|
$this->_storeAssociationMapping($oneToManyMapping);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a many-to-one mapping.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @param array $mapping The mapping.
|
|
|
|
*/
|
|
|
|
public function mapManyToOne(array $mapping)
|
|
|
|
{
|
|
|
|
// A many-to-one mapping is simply a one-one backreference
|
|
|
|
$this->mapOneToOne($mapping);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a many-to-many mapping.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @param array $mapping The mapping.
|
|
|
|
*/
|
|
|
|
public function mapManyToMany(array $mapping)
|
|
|
|
{
|
|
|
|
$mapping = $this->_completeAssociationMapping($mapping);
|
|
|
|
$manyToManyMapping = new ManyToManyMapping($mapping);
|
|
|
|
$this->_storeAssociationMapping($manyToManyMapping);
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Stores the association mapping.
|
|
|
|
*
|
|
|
|
* @param AssociationMapping $assocMapping
|
|
|
|
*/
|
|
|
|
protected function _storeAssociationMapping(AssociationMapping $assocMapping)
|
|
|
|
{
|
|
|
|
$sourceFieldName = $assocMapping->sourceFieldName;
|
|
|
|
if (isset($this->associationMappings[$sourceFieldName])) {
|
2009-10-07 22:52:51 +04:00
|
|
|
throw MappingException::duplicateFieldMapping($this->name, $sourceFieldName);
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
|
|
|
$this->associationMappings[$sourceFieldName] = $assocMapping;
|
|
|
|
$this->_registerMappingIfInverse($assocMapping);
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Registers a custom repository class for the entity class.
|
|
|
|
*
|
|
|
|
* @param string $mapperClassName The class name of the custom mapper.
|
|
|
|
*/
|
|
|
|
public function setCustomRepositoryClass($repositoryClassName)
|
|
|
|
{
|
|
|
|
$this->customRepositoryClassName = $repositoryClassName;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +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.
|
|
|
|
*/
|
|
|
|
public function invokeLifecycleCallbacks($lifecycleEvent, $entity)
|
|
|
|
{
|
|
|
|
foreach ($this->lifecycleCallbacks[$lifecycleEvent] as $callback) {
|
|
|
|
$entity->$callback();
|
|
|
|
}
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Whether the class has any attached lifecycle listeners or callbacks for a lifecycle event.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @param string $lifecycleEvent
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function hasLifecycleCallbacks($lifecycleEvent)
|
|
|
|
{
|
|
|
|
return isset($this->lifecycleCallbacks[$lifecycleEvent]);
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* 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();
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Adds a lifecycle callback for entities of this class.
|
|
|
|
*
|
|
|
|
* Note: If the same callback is registered more than once, the old one
|
|
|
|
* will be overridden.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @param string $callback
|
|
|
|
* @param string $event
|
|
|
|
*/
|
|
|
|
public function addLifecycleCallback($callback, $event)
|
|
|
|
{
|
|
|
|
$this->lifecycleCallbacks[$event][] = $callback;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2010-02-11 01:17:43 +03:00
|
|
|
/**
|
|
|
|
* Sets the lifecycle callbacks for entities of this class.
|
|
|
|
* Any previously registered callbacks are overwritten.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2010-02-11 01:17:43 +03:00
|
|
|
* @param array $callbacks
|
|
|
|
*/
|
|
|
|
public function setLifecycleCallbacks(array $callbacks)
|
|
|
|
{
|
|
|
|
$this->lifecycleCallbacks = $callbacks;
|
|
|
|
}
|
2009-10-05 08:11:29 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the discriminator column definition.
|
|
|
|
*
|
|
|
|
* @param array $columnDef
|
|
|
|
* @see getDiscriminatorColumn()
|
|
|
|
*/
|
|
|
|
public function setDiscriminatorColumn($columnDef)
|
|
|
|
{
|
|
|
|
if ($columnDef !== null) {
|
|
|
|
if ( ! isset($columnDef['name'])) {
|
2009-10-07 22:52:51 +04:00
|
|
|
throw MappingException::nameIsMandatoryForDiscriminatorColumns($this->name, $columnDef);
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
|
|
|
if ( ! isset($columnDef['fieldName'])) {
|
|
|
|
$columnDef['fieldName'] = $columnDef['name'];
|
|
|
|
}
|
|
|
|
$this->discriminatorColumn = $columnDef;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the discriminator values used by this class.
|
|
|
|
* Used for JOINED and SINGLE_TABLE inheritance mapping strategies.
|
|
|
|
*
|
|
|
|
* @param array $map
|
|
|
|
*/
|
|
|
|
public function setDiscriminatorMap(array $map)
|
|
|
|
{
|
|
|
|
foreach ($map as $value => $className) {
|
2009-11-05 02:06:38 +03:00
|
|
|
if (strpos($className, '\\') === false && strlen($this->namespace)) {
|
2009-10-05 08:11:29 +04:00
|
|
|
$className = $this->namespace . '\\' . $className;
|
|
|
|
}
|
|
|
|
$this->discriminatorMap[$value] = $className;
|
|
|
|
if ($this->name == $className) {
|
|
|
|
$this->discriminatorValue = $value;
|
2010-02-23 17:02:31 +03:00
|
|
|
} else {
|
|
|
|
if ( ! class_exists($className)) {
|
|
|
|
throw MappingException::invalidClassInDiscriminatorMap($className, $this->name);
|
|
|
|
}
|
|
|
|
if (is_subclass_of($className, $this->name)) {
|
|
|
|
$this->subClasses[] = $className;
|
|
|
|
}
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the given column name is the discriminator column.
|
|
|
|
*
|
|
|
|
* @param string $columnName
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isDiscriminatorColumn($columnName)
|
|
|
|
{
|
|
|
|
return $columnName === $this->discriminatorColumn['name'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the class has a mapped association with the given field name.
|
|
|
|
*
|
|
|
|
* @param string $fieldName
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function hasAssociation($fieldName)
|
|
|
|
{
|
|
|
|
return isset($this->associationMappings[$fieldName]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the class has a mapped association for the specified field
|
|
|
|
* and if yes, checks whether it is a single-valued association (to-one).
|
|
|
|
*
|
|
|
|
* @param string $fieldName
|
|
|
|
* @return boolean TRUE if the association exists and is single-valued, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function isSingleValuedAssociation($fieldName)
|
|
|
|
{
|
|
|
|
return isset($this->associationMappings[$fieldName]) &&
|
|
|
|
$this->associationMappings[$fieldName]->isOneToOne();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the class has a mapped association for the specified field
|
|
|
|
* and if yes, checks whether it is a collection-valued association (to-many).
|
|
|
|
*
|
|
|
|
* @param string $fieldName
|
|
|
|
* @return boolean TRUE if the association exists and is collection-valued, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
public function isCollectionValuedAssociation($fieldName)
|
|
|
|
{
|
|
|
|
return isset($this->associationMappings[$fieldName]) &&
|
|
|
|
! $this->associationMappings[$fieldName]->isOneToOne();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the ID generator used to generate IDs for instances of this class.
|
|
|
|
*
|
|
|
|
* @param AbstractIdGenerator $generator
|
|
|
|
*/
|
|
|
|
public function setIdGenerator($generator)
|
|
|
|
{
|
|
|
|
$this->idGenerator = $generator;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the definition of the sequence ID generator for this class.
|
|
|
|
*
|
|
|
|
* The definition must have the following structure:
|
|
|
|
* <code>
|
|
|
|
* array(
|
|
|
|
* 'sequenceName' => 'name',
|
|
|
|
* 'allocationSize' => 20,
|
|
|
|
* 'initialValue' => 1
|
|
|
|
* )
|
|
|
|
* </code>
|
|
|
|
*
|
|
|
|
* @param array $definition
|
|
|
|
*/
|
|
|
|
public function setSequenceGeneratorDefinition(array $definition)
|
|
|
|
{
|
|
|
|
$this->sequenceGeneratorDefinition = $definition;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Sets the version field mapping used for versioning. Sets the default
|
|
|
|
* value to use depending on the column type
|
|
|
|
*
|
|
|
|
* @param array $mapping The version field mapping array
|
|
|
|
*/
|
|
|
|
public function setVersionMapping(array &$mapping)
|
|
|
|
{
|
|
|
|
$this->isVersioned = true;
|
|
|
|
$this->versionField = $mapping['fieldName'];
|
|
|
|
|
|
|
|
if ( ! isset($mapping['default'])) {
|
|
|
|
if ($mapping['type'] == 'integer') {
|
|
|
|
$mapping['default'] = 1;
|
|
|
|
} else if ($mapping['type'] == 'datetime') {
|
|
|
|
$mapping['default'] = 'CURRENT_TIMESTAMP';
|
|
|
|
} else {
|
2010-02-03 00:17:00 +03:00
|
|
|
throw MappingException::unsupportedOptimisticLockingType($this->name, $mapping['fieldName'], $mapping['type']);
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Sets whether this class is to be versioned for optimistic locking.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @param boolean $bool
|
|
|
|
*/
|
|
|
|
public function setVersioned($bool)
|
|
|
|
{
|
|
|
|
$this->isVersioned = $bool;
|
|
|
|
}
|
2010-02-23 17:02:31 +03:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
/**
|
|
|
|
* Sets the name of the field that is to be used for versioning if this class is
|
|
|
|
* versioned for optimistic locking.
|
2010-02-23 17:02:31 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @param string $versionField
|
|
|
|
*/
|
|
|
|
public function setVersionField($versionField)
|
|
|
|
{
|
|
|
|
$this->versionField = $versionField;
|
|
|
|
}
|
|
|
|
}
|