Complex classes like ClassMetadataInfo often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use ClassMetadataInfo, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 51 | class ClassMetadataInfo implements ClassMetadata |
||
| 52 | { |
||
| 53 | /* The inheritance mapping types */ |
||
| 54 | /** |
||
| 55 | * NONE means the class does not participate in an inheritance hierarchy |
||
| 56 | * and therefore does not need an inheritance mapping type. |
||
| 57 | */ |
||
| 58 | const INHERITANCE_TYPE_NONE = 1; |
||
| 59 | |||
| 60 | /** |
||
| 61 | * JOINED means the class will be persisted according to the rules of |
||
| 62 | * <tt>Class Table Inheritance</tt>. |
||
| 63 | */ |
||
| 64 | const INHERITANCE_TYPE_JOINED = 2; |
||
| 65 | |||
| 66 | /** |
||
| 67 | * SINGLE_TABLE means the class will be persisted according to the rules of |
||
| 68 | * <tt>Single Table Inheritance</tt>. |
||
| 69 | */ |
||
| 70 | const INHERITANCE_TYPE_SINGLE_TABLE = 3; |
||
| 71 | |||
| 72 | /** |
||
| 73 | * TABLE_PER_CLASS means the class will be persisted according to the rules |
||
| 74 | * of <tt>Concrete Table Inheritance</tt>. |
||
| 75 | */ |
||
| 76 | const INHERITANCE_TYPE_TABLE_PER_CLASS = 4; |
||
| 77 | |||
| 78 | /* The Id generator types. */ |
||
| 79 | /** |
||
| 80 | * AUTO means the generator type will depend on what the used platform prefers. |
||
| 81 | * Offers full portability. |
||
| 82 | */ |
||
| 83 | const GENERATOR_TYPE_AUTO = 1; |
||
| 84 | |||
| 85 | /** |
||
| 86 | * SEQUENCE means a separate sequence object will be used. Platforms that do |
||
| 87 | * not have native sequence support may emulate it. Full portability is currently |
||
| 88 | * not guaranteed. |
||
| 89 | */ |
||
| 90 | const GENERATOR_TYPE_SEQUENCE = 2; |
||
| 91 | |||
| 92 | /** |
||
| 93 | * TABLE means a separate table is used for id generation. |
||
| 94 | * Offers full portability. |
||
| 95 | */ |
||
| 96 | const GENERATOR_TYPE_TABLE = 3; |
||
| 97 | |||
| 98 | /** |
||
| 99 | * IDENTITY means an identity column is used for id generation. The database |
||
| 100 | * will fill in the id column on insertion. Platforms that do not support |
||
| 101 | * native identity columns may emulate them. Full portability is currently |
||
| 102 | * not guaranteed. |
||
| 103 | */ |
||
| 104 | const GENERATOR_TYPE_IDENTITY = 4; |
||
| 105 | |||
| 106 | /** |
||
| 107 | * NONE means the class does not have a generated id. That means the class |
||
| 108 | * must have a natural, manually assigned id. |
||
| 109 | */ |
||
| 110 | const GENERATOR_TYPE_NONE = 5; |
||
| 111 | |||
| 112 | /** |
||
| 113 | * UUID means that a UUID/GUID expression is used for id generation. Full |
||
| 114 | * portability is currently not guaranteed. |
||
| 115 | */ |
||
| 116 | const GENERATOR_TYPE_UUID = 6; |
||
| 117 | |||
| 118 | /** |
||
| 119 | * CUSTOM means that customer will use own ID generator that supposedly work |
||
| 120 | */ |
||
| 121 | const GENERATOR_TYPE_CUSTOM = 7; |
||
| 122 | |||
| 123 | /** |
||
| 124 | * DEFERRED_IMPLICIT means that changes of entities are calculated at commit-time |
||
| 125 | * by doing a property-by-property comparison with the original data. This will |
||
| 126 | * be done for all entities that are in MANAGED state at commit-time. |
||
| 127 | * |
||
| 128 | * This is the default change tracking policy. |
||
| 129 | */ |
||
| 130 | const CHANGETRACKING_DEFERRED_IMPLICIT = 1; |
||
| 131 | |||
| 132 | /** |
||
| 133 | * DEFERRED_EXPLICIT means that changes of entities are calculated at commit-time |
||
| 134 | * by doing a property-by-property comparison with the original data. This will |
||
| 135 | * be done only for entities that were explicitly saved (through persist() or a cascade). |
||
| 136 | */ |
||
| 137 | const CHANGETRACKING_DEFERRED_EXPLICIT = 2; |
||
| 138 | |||
| 139 | /** |
||
| 140 | * NOTIFY means that Doctrine relies on the entities sending out notifications |
||
| 141 | * when their properties change. Such entity classes must implement |
||
| 142 | * the <tt>NotifyPropertyChanged</tt> interface. |
||
| 143 | */ |
||
| 144 | const CHANGETRACKING_NOTIFY = 3; |
||
| 145 | |||
| 146 | /** |
||
| 147 | * Specifies that an association is to be fetched when it is first accessed. |
||
| 148 | */ |
||
| 149 | const FETCH_LAZY = 2; |
||
| 150 | |||
| 151 | /** |
||
| 152 | * Specifies that an association is to be fetched when the owner of the |
||
| 153 | * association is fetched. |
||
| 154 | */ |
||
| 155 | const FETCH_EAGER = 3; |
||
| 156 | |||
| 157 | /** |
||
| 158 | * Specifies that an association is to be fetched lazy (on first access) and that |
||
| 159 | * commands such as Collection#count, Collection#slice are issued directly against |
||
| 160 | * the database if the collection is not yet initialized. |
||
| 161 | */ |
||
| 162 | const FETCH_EXTRA_LAZY = 4; |
||
| 163 | |||
| 164 | /** |
||
| 165 | * Identifies a one-to-one association. |
||
| 166 | */ |
||
| 167 | const ONE_TO_ONE = 1; |
||
| 168 | |||
| 169 | /** |
||
| 170 | * Identifies a many-to-one association. |
||
| 171 | */ |
||
| 172 | const MANY_TO_ONE = 2; |
||
| 173 | |||
| 174 | /** |
||
| 175 | * Identifies a one-to-many association. |
||
| 176 | */ |
||
| 177 | const ONE_TO_MANY = 4; |
||
| 178 | |||
| 179 | /** |
||
| 180 | * Identifies a many-to-many association. |
||
| 181 | */ |
||
| 182 | const MANY_TO_MANY = 8; |
||
| 183 | |||
| 184 | /** |
||
| 185 | * Combined bitmask for to-one (single-valued) associations. |
||
| 186 | */ |
||
| 187 | const TO_ONE = 3; |
||
| 188 | |||
| 189 | /** |
||
| 190 | * Combined bitmask for to-many (collection-valued) associations. |
||
| 191 | */ |
||
| 192 | const TO_MANY = 12; |
||
| 193 | |||
| 194 | /** |
||
| 195 | * ReadOnly cache can do reads, inserts and deletes, cannot perform updates or employ any locks, |
||
| 196 | */ |
||
| 197 | const CACHE_USAGE_READ_ONLY = 1; |
||
| 198 | |||
| 199 | /** |
||
| 200 | * Nonstrict Read Write Cache doesn’t employ any locks but can do inserts, update and deletes. |
||
| 201 | */ |
||
| 202 | const CACHE_USAGE_NONSTRICT_READ_WRITE = 2; |
||
| 203 | |||
| 204 | /** |
||
| 205 | * Read Write Attempts to lock the entity before update/delete. |
||
| 206 | */ |
||
| 207 | const CACHE_USAGE_READ_WRITE = 3; |
||
| 208 | |||
| 209 | /** |
||
| 210 | * READ-ONLY: The name of the entity class. |
||
| 211 | * |
||
| 212 | * @var string |
||
| 213 | */ |
||
| 214 | public $name; |
||
| 215 | |||
| 216 | /** |
||
| 217 | * READ-ONLY: The namespace the entity class is contained in. |
||
| 218 | * |
||
| 219 | * @var string |
||
| 220 | * |
||
| 221 | * @todo Not really needed. Usage could be localized. |
||
| 222 | */ |
||
| 223 | public $namespace; |
||
| 224 | |||
| 225 | /** |
||
| 226 | * READ-ONLY: The name of the entity class that is at the root of the mapped entity inheritance |
||
| 227 | * hierarchy. If the entity is not part of a mapped inheritance hierarchy this is the same |
||
| 228 | * as {@link $name}. |
||
| 229 | * |
||
| 230 | * @var string |
||
| 231 | */ |
||
| 232 | public $rootEntityName; |
||
| 233 | |||
| 234 | /** |
||
| 235 | * READ-ONLY: The definition of custom generator. Only used for CUSTOM |
||
| 236 | * generator type |
||
| 237 | * |
||
| 238 | * The definition has the following structure: |
||
| 239 | * <code> |
||
| 240 | * array( |
||
| 241 | * 'class' => 'ClassName', |
||
| 242 | * ) |
||
| 243 | * </code> |
||
| 244 | * |
||
| 245 | * @var array |
||
| 246 | * |
||
| 247 | * @todo Merge with tableGeneratorDefinition into generic generatorDefinition |
||
| 248 | */ |
||
| 249 | public $customGeneratorDefinition; |
||
| 250 | |||
| 251 | /** |
||
| 252 | * The name of the custom repository class used for the entity class. |
||
| 253 | * (Optional). |
||
| 254 | * |
||
| 255 | * @var string |
||
| 256 | */ |
||
| 257 | public $customRepositoryClassName; |
||
| 258 | |||
| 259 | /** |
||
| 260 | * READ-ONLY: Whether this class describes the mapping of a mapped superclass. |
||
| 261 | * |
||
| 262 | * @var boolean |
||
| 263 | */ |
||
| 264 | public $isMappedSuperclass = false; |
||
| 265 | |||
| 266 | /** |
||
| 267 | * READ-ONLY: Whether this class describes the mapping of an embeddable class. |
||
| 268 | * |
||
| 269 | * @var boolean |
||
| 270 | */ |
||
| 271 | public $isEmbeddedClass = false; |
||
| 272 | |||
| 273 | /** |
||
| 274 | * READ-ONLY: The names of the parent classes (ancestors). |
||
| 275 | * |
||
| 276 | * @var array |
||
| 277 | */ |
||
| 278 | public $parentClasses = array(); |
||
| 279 | |||
| 280 | /** |
||
| 281 | * READ-ONLY: The names of all subclasses (descendants). |
||
| 282 | * |
||
| 283 | * @var array |
||
| 284 | */ |
||
| 285 | public $subClasses = array(); |
||
| 286 | |||
| 287 | /** |
||
| 288 | * READ-ONLY: The names of all embedded classes based on properties. |
||
| 289 | * |
||
| 290 | * @var array |
||
| 291 | */ |
||
| 292 | public $embeddedClasses = array(); |
||
| 293 | |||
| 294 | /** |
||
| 295 | * READ-ONLY: The named queries allowed to be called directly from Repository. |
||
| 296 | * |
||
| 297 | * @var array |
||
| 298 | */ |
||
| 299 | public $namedQueries = array(); |
||
| 300 | |||
| 301 | /** |
||
| 302 | * READ-ONLY: The named native queries allowed to be called directly from Repository. |
||
| 303 | * |
||
| 304 | * A native SQL named query definition has the following structure: |
||
| 305 | * <pre> |
||
| 306 | * array( |
||
| 307 | * 'name' => <query name>, |
||
| 308 | * 'query' => <sql query>, |
||
| 309 | * 'resultClass' => <class of the result>, |
||
| 310 | * 'resultSetMapping' => <name of a SqlResultSetMapping> |
||
| 311 | * ) |
||
| 312 | * </pre> |
||
| 313 | * |
||
| 314 | * @var array |
||
| 315 | */ |
||
| 316 | public $namedNativeQueries = array(); |
||
| 317 | |||
| 318 | /** |
||
| 319 | * READ-ONLY: The mappings of the results of native SQL queries. |
||
| 320 | * |
||
| 321 | * A native result mapping definition has the following structure: |
||
| 322 | * <pre> |
||
| 323 | * array( |
||
| 324 | * 'name' => <result name>, |
||
| 325 | * 'entities' => array(<entity result mapping>), |
||
| 326 | * 'columns' => array(<column result mapping>) |
||
| 327 | * ) |
||
| 328 | * </pre> |
||
| 329 | * |
||
| 330 | * @var array |
||
| 331 | */ |
||
| 332 | public $sqlResultSetMappings = array(); |
||
| 333 | |||
| 334 | /** |
||
| 335 | * READ-ONLY: The field names of all fields that are part of the identifier/primary key |
||
| 336 | * of the mapped entity class. |
||
| 337 | * |
||
| 338 | * @var array |
||
| 339 | */ |
||
| 340 | public $identifier = array(); |
||
| 341 | |||
| 342 | /** |
||
| 343 | * READ-ONLY: The inheritance mapping type used by the class. |
||
| 344 | * |
||
| 345 | * @var integer |
||
| 346 | */ |
||
| 347 | public $inheritanceType = self::INHERITANCE_TYPE_NONE; |
||
| 348 | |||
| 349 | /** |
||
| 350 | * READ-ONLY: The Id generator type used by the class. |
||
| 351 | * |
||
| 352 | * @var int |
||
| 353 | */ |
||
| 354 | public $generatorType = self::GENERATOR_TYPE_NONE; |
||
| 355 | |||
| 356 | /** |
||
| 357 | * READ-ONLY: The field mappings of the class. |
||
| 358 | * Keys are field names and values are mapping definitions. |
||
| 359 | * |
||
| 360 | * The mapping definition array has the following values: |
||
| 361 | * |
||
| 362 | * - <b>fieldName</b> (string) |
||
| 363 | * The name of the field in the Entity. |
||
| 364 | * |
||
| 365 | * - <b>type</b> (string) |
||
| 366 | * The type name of the mapped field. Can be one of Doctrine's mapping types |
||
| 367 | * or a custom mapping type. |
||
| 368 | * |
||
| 369 | * - <b>columnName</b> (string, optional) |
||
| 370 | * The column name. Optional. Defaults to the field name. |
||
| 371 | * |
||
| 372 | * - <b>length</b> (integer, optional) |
||
| 373 | * The database length of the column. Optional. Default value taken from |
||
| 374 | * the type. |
||
| 375 | * |
||
| 376 | * - <b>id</b> (boolean, optional) |
||
| 377 | * Marks the field as the primary key of the entity. Multiple fields of an |
||
| 378 | * entity can have the id attribute, forming a composite key. |
||
| 379 | * |
||
| 380 | * - <b>nullable</b> (boolean, optional) |
||
| 381 | * Whether the column is nullable. Defaults to FALSE. |
||
| 382 | * |
||
| 383 | * - <b>columnDefinition</b> (string, optional, schema-only) |
||
| 384 | * The SQL fragment that is used when generating the DDL for the column. |
||
| 385 | * |
||
| 386 | * - <b>precision</b> (integer, optional, schema-only) |
||
| 387 | * The precision of a decimal column. Only valid if the column type is decimal. |
||
| 388 | * |
||
| 389 | * - <b>scale</b> (integer, optional, schema-only) |
||
| 390 | * The scale of a decimal column. Only valid if the column type is decimal. |
||
| 391 | * |
||
| 392 | * - <b>'unique'</b> (string, optional, schema-only) |
||
| 393 | * Whether a unique constraint should be generated for the column. |
||
| 394 | * |
||
| 395 | * @var array |
||
| 396 | */ |
||
| 397 | public $fieldMappings = array(); |
||
| 398 | |||
| 399 | /** |
||
| 400 | * READ-ONLY: An array of field names. Used to look up field names from column names. |
||
| 401 | * Keys are column names and values are field names. |
||
| 402 | * |
||
| 403 | * @var array |
||
| 404 | */ |
||
| 405 | public $fieldNames = array(); |
||
| 406 | |||
| 407 | /** |
||
| 408 | * READ-ONLY: A map of field names to column names. Keys are field names and values column names. |
||
| 409 | * Used to look up column names from field names. |
||
| 410 | * This is the reverse lookup map of $_fieldNames. |
||
| 411 | * |
||
| 412 | * @var array |
||
| 413 | * |
||
| 414 | * @deprecated 3.0 Remove this. |
||
| 415 | */ |
||
| 416 | public $columnNames = array(); |
||
| 417 | |||
| 418 | /** |
||
| 419 | * READ-ONLY: The discriminator value of this class. |
||
| 420 | * |
||
| 421 | * <b>This does only apply to the JOINED and SINGLE_TABLE inheritance mapping strategies |
||
| 422 | * where a discriminator column is used.</b> |
||
| 423 | * |
||
| 424 | * @var mixed |
||
| 425 | * |
||
| 426 | * @see discriminatorColumn |
||
| 427 | */ |
||
| 428 | public $discriminatorValue; |
||
| 429 | |||
| 430 | /** |
||
| 431 | * READ-ONLY: The discriminator map of all mapped classes in the hierarchy. |
||
| 432 | * |
||
| 433 | * <b>This does only apply to the JOINED and SINGLE_TABLE inheritance mapping strategies |
||
| 434 | * where a discriminator column is used.</b> |
||
| 435 | * |
||
| 436 | * @var mixed |
||
| 437 | * |
||
| 438 | * @see discriminatorColumn |
||
| 439 | */ |
||
| 440 | public $discriminatorMap = array(); |
||
| 441 | |||
| 442 | /** |
||
| 443 | * READ-ONLY: The definition of the discriminator column used in JOINED and SINGLE_TABLE |
||
| 444 | * inheritance mappings. |
||
| 445 | * |
||
| 446 | * @var array |
||
| 447 | */ |
||
| 448 | public $discriminatorColumn; |
||
| 449 | |||
| 450 | /** |
||
| 451 | * READ-ONLY: The primary table definition. The definition is an array with the |
||
| 452 | * following entries: |
||
| 453 | * |
||
| 454 | * name => <tableName> |
||
| 455 | * schema => <schemaName> |
||
| 456 | * indexes => array |
||
| 457 | * uniqueConstraints => array |
||
| 458 | * |
||
| 459 | * @var array |
||
| 460 | */ |
||
| 461 | public $table; |
||
| 462 | |||
| 463 | /** |
||
| 464 | * READ-ONLY: The registered lifecycle callbacks for entities of this class. |
||
| 465 | * |
||
| 466 | * @var array |
||
| 467 | */ |
||
| 468 | public $lifecycleCallbacks = array(); |
||
| 469 | |||
| 470 | /** |
||
| 471 | * READ-ONLY: The registered entity listeners. |
||
| 472 | * |
||
| 473 | * @var array |
||
| 474 | */ |
||
| 475 | public $entityListeners = array(); |
||
| 476 | |||
| 477 | /** |
||
| 478 | * READ-ONLY: The association mappings of this class. |
||
| 479 | * |
||
| 480 | * The mapping definition array supports the following keys: |
||
| 481 | * |
||
| 482 | * - <b>fieldName</b> (string) |
||
| 483 | * The name of the field in the entity the association is mapped to. |
||
| 484 | * |
||
| 485 | * - <b>targetEntity</b> (string) |
||
| 486 | * The class name of the target entity. If it is fully-qualified it is used as is. |
||
| 487 | * If it is a simple, unqualified class name the namespace is assumed to be the same |
||
| 488 | * as the namespace of the source entity. |
||
| 489 | * |
||
| 490 | * - <b>mappedBy</b> (string, required for bidirectional associations) |
||
| 491 | * The name of the field that completes the bidirectional association on the owning side. |
||
| 492 | * This key must be specified on the inverse side of a bidirectional association. |
||
| 493 | * |
||
| 494 | * - <b>inversedBy</b> (string, required for bidirectional associations) |
||
| 495 | * The name of the field that completes the bidirectional association on the inverse side. |
||
| 496 | * This key must be specified on the owning side of a bidirectional association. |
||
| 497 | * |
||
| 498 | * - <b>cascade</b> (array, optional) |
||
| 499 | * The names of persistence operations to cascade on the association. The set of possible |
||
| 500 | * values are: "persist", "remove", "detach", "merge", "refresh", "all" (implies all others). |
||
| 501 | * |
||
| 502 | * - <b>orderBy</b> (array, one-to-many/many-to-many only) |
||
| 503 | * A map of field names (of the target entity) to sorting directions (ASC/DESC). |
||
| 504 | * Example: array('priority' => 'desc') |
||
| 505 | * |
||
| 506 | * - <b>fetch</b> (integer, optional) |
||
| 507 | * The fetching strategy to use for the association, usually defaults to FETCH_LAZY. |
||
| 508 | * Possible values are: ClassMetadata::FETCH_EAGER, ClassMetadata::FETCH_LAZY. |
||
| 509 | * |
||
| 510 | * - <b>joinTable</b> (array, optional, many-to-many only) |
||
| 511 | * Specification of the join table and its join columns (foreign keys). |
||
| 512 | * Only valid for many-to-many mappings. Note that one-to-many associations can be mapped |
||
| 513 | * through a join table by simply mapping the association as many-to-many with a unique |
||
| 514 | * constraint on the join table. |
||
| 515 | * |
||
| 516 | * - <b>indexBy</b> (string, optional, to-many only) |
||
| 517 | * Specification of a field on target-entity that is used to index the collection by. |
||
| 518 | * This field HAS to be either the primary key or a unique column. Otherwise the collection |
||
| 519 | * does not contain all the entities that are actually related. |
||
| 520 | * |
||
| 521 | * A join table definition has the following structure: |
||
| 522 | * <pre> |
||
| 523 | * array( |
||
| 524 | * 'name' => <join table name>, |
||
| 525 | * 'joinColumns' => array(<join column mapping from join table to source table>), |
||
| 526 | * 'inverseJoinColumns' => array(<join column mapping from join table to target table>) |
||
| 527 | * ) |
||
| 528 | * </pre> |
||
| 529 | * |
||
| 530 | * @var array |
||
| 531 | */ |
||
| 532 | public $associationMappings = array(); |
||
| 533 | |||
| 534 | /** |
||
| 535 | * READ-ONLY: Flag indicating whether the identifier/primary key of the class is composite. |
||
| 536 | * |
||
| 537 | * @var boolean |
||
| 538 | */ |
||
| 539 | public $isIdentifierComposite = false; |
||
| 540 | |||
| 541 | /** |
||
| 542 | * READ-ONLY: Flag indicating whether the identifier/primary key contains at least one foreign key association. |
||
| 543 | * |
||
| 544 | * This flag is necessary because some code blocks require special treatment of this cases. |
||
| 545 | * |
||
| 546 | * @var boolean |
||
| 547 | */ |
||
| 548 | public $containsForeignIdentifier = false; |
||
| 549 | |||
| 550 | /** |
||
| 551 | * READ-ONLY: The ID generator used for generating IDs for this class. |
||
| 552 | * |
||
| 553 | * @var \Doctrine\ORM\Id\AbstractIdGenerator |
||
| 554 | * |
||
| 555 | * @todo Remove! |
||
| 556 | */ |
||
| 557 | public $idGenerator; |
||
| 558 | |||
| 559 | /** |
||
| 560 | * READ-ONLY: The definition of the sequence generator of this class. Only used for the |
||
| 561 | * SEQUENCE generation strategy. |
||
| 562 | * |
||
| 563 | * The definition has the following structure: |
||
| 564 | * <code> |
||
| 565 | * array( |
||
| 566 | * 'sequenceName' => 'name', |
||
| 567 | * 'allocationSize' => 20, |
||
| 568 | * 'initialValue' => 1 |
||
| 569 | * ) |
||
| 570 | * </code> |
||
| 571 | * |
||
| 572 | * @var array |
||
| 573 | * |
||
| 574 | * @todo Merge with tableGeneratorDefinition into generic generatorDefinition |
||
| 575 | */ |
||
| 576 | public $sequenceGeneratorDefinition; |
||
| 577 | |||
| 578 | /** |
||
| 579 | * READ-ONLY: The definition of the table generator of this class. Only used for the |
||
| 580 | * TABLE generation strategy. |
||
| 581 | * |
||
| 582 | * @var array |
||
| 583 | * |
||
| 584 | * @todo Merge with tableGeneratorDefinition into generic generatorDefinition |
||
| 585 | */ |
||
| 586 | public $tableGeneratorDefinition; |
||
| 587 | |||
| 588 | /** |
||
| 589 | * READ-ONLY: The policy used for change-tracking on entities of this class. |
||
| 590 | * |
||
| 591 | * @var integer |
||
| 592 | */ |
||
| 593 | public $changeTrackingPolicy = self::CHANGETRACKING_DEFERRED_IMPLICIT; |
||
| 594 | |||
| 595 | /** |
||
| 596 | * READ-ONLY: A flag for whether or not instances of this class are to be versioned |
||
| 597 | * with optimistic locking. |
||
| 598 | * |
||
| 599 | * @var boolean |
||
| 600 | */ |
||
| 601 | public $isVersioned; |
||
| 602 | |||
| 603 | /** |
||
| 604 | * READ-ONLY: The name of the field which is used for versioning in optimistic locking (if any). |
||
| 605 | * |
||
| 606 | * @var mixed |
||
| 607 | */ |
||
| 608 | public $versionField; |
||
| 609 | |||
| 610 | /** |
||
| 611 | * @var array |
||
| 612 | */ |
||
| 613 | public $cache = null; |
||
| 614 | |||
| 615 | /** |
||
| 616 | * The ReflectionClass instance of the mapped class. |
||
| 617 | * |
||
| 618 | * @var ReflectionClass |
||
| 619 | */ |
||
| 620 | public $reflClass; |
||
| 621 | |||
| 622 | /** |
||
| 623 | * Is this entity marked as "read-only"? |
||
| 624 | * |
||
| 625 | * That means it is never considered for change-tracking in the UnitOfWork. It is a very helpful performance |
||
| 626 | * optimization for entities that are immutable, either in your domain or through the relation database |
||
| 627 | * (coming from a view, or a history table for example). |
||
| 628 | * |
||
| 629 | * @var bool |
||
| 630 | */ |
||
| 631 | public $isReadOnly = false; |
||
| 632 | |||
| 633 | /** |
||
| 634 | * NamingStrategy determining the default column and table names. |
||
| 635 | * |
||
| 636 | * @var \Doctrine\ORM\Mapping\NamingStrategy |
||
| 637 | */ |
||
| 638 | protected $namingStrategy; |
||
| 639 | |||
| 640 | /** |
||
| 641 | * The ReflectionProperty instances of the mapped class. |
||
| 642 | * |
||
| 643 | * @var \ReflectionProperty[] |
||
| 644 | */ |
||
| 645 | public $reflFields = array(); |
||
| 646 | |||
| 647 | /** |
||
| 648 | * @var \Doctrine\Instantiator\InstantiatorInterface|null |
||
| 649 | */ |
||
| 650 | private $instantiator; |
||
| 651 | |||
| 652 | /** |
||
| 653 | * Initializes a new ClassMetadata instance that will hold the object-relational mapping |
||
| 654 | * metadata of the class with the given name. |
||
| 655 | * |
||
| 656 | * @param string $entityName The name of the entity class the new instance is used for. |
||
| 657 | * @param NamingStrategy|null $namingStrategy |
||
| 658 | */ |
||
| 659 | 664 | public function __construct($entityName, NamingStrategy $namingStrategy = null) |
|
| 660 | { |
||
| 661 | 664 | $this->name = $entityName; |
|
| 662 | 664 | $this->rootEntityName = $entityName; |
|
| 663 | 664 | $this->namingStrategy = $namingStrategy ?: new DefaultNamingStrategy(); |
|
| 664 | 664 | $this->instantiator = new Instantiator(); |
|
| 665 | 664 | } |
|
| 666 | |||
| 667 | /** |
||
| 668 | * Gets the ReflectionProperties of the mapped class. |
||
| 669 | * |
||
| 670 | * @return array An array of ReflectionProperty instances. |
||
| 671 | */ |
||
| 672 | 224 | public function getReflectionProperties() |
|
| 673 | { |
||
| 674 | 224 | return $this->reflFields; |
|
| 675 | } |
||
| 676 | |||
| 677 | /** |
||
| 678 | * Gets a ReflectionProperty for a specific field of the mapped class. |
||
| 679 | * |
||
| 680 | * @param string $name |
||
| 681 | * |
||
| 682 | * @return \ReflectionProperty |
||
| 683 | */ |
||
| 684 | 1 | public function getReflectionProperty($name) |
|
| 685 | { |
||
| 686 | 1 | return $this->reflFields[$name]; |
|
| 687 | } |
||
| 688 | |||
| 689 | /** |
||
| 690 | * Gets the ReflectionProperty for the single identifier field. |
||
| 691 | * |
||
| 692 | * @return \ReflectionProperty |
||
| 693 | * |
||
| 694 | * @throws BadMethodCallException If the class has a composite identifier. |
||
| 695 | */ |
||
| 696 | public function getSingleIdReflectionProperty() |
||
| 704 | |||
| 705 | /** |
||
| 706 | * Extracts the identifier values of an entity of this class. |
||
| 707 | * |
||
| 708 | * For composite identifiers, the identifier values are returned as an array |
||
| 709 | * with the same order as the field order in {@link identifier}. |
||
| 710 | * |
||
| 711 | * @param object $entity |
||
| 712 | * |
||
| 713 | * @return array |
||
| 714 | */ |
||
| 715 | 465 | public function getIdentifierValues($entity) |
|
| 740 | |||
| 741 | /** |
||
| 742 | * Populates the entity identifier of an entity. |
||
| 743 | * |
||
| 744 | * @param object $entity |
||
| 745 | * @param array $id |
||
| 746 | * |
||
| 747 | * @return void |
||
| 748 | * |
||
| 749 | * @todo Rename to assignIdentifier() |
||
| 750 | */ |
||
| 751 | 6 | public function setIdentifierValues($entity, array $id) |
|
| 757 | |||
| 758 | /** |
||
| 759 | * Sets the specified field to the specified value on the given entity. |
||
| 760 | * |
||
| 761 | * @param object $entity |
||
| 762 | * @param string $field |
||
| 763 | * @param mixed $value |
||
| 764 | * |
||
| 765 | * @return void |
||
| 766 | */ |
||
| 767 | 231 | public function setFieldValue($entity, $field, $value) |
|
| 771 | |||
| 772 | /** |
||
| 773 | * Gets the specified field's value off the given entity. |
||
| 774 | * |
||
| 775 | * @param object $entity |
||
| 776 | * @param string $field |
||
| 777 | * |
||
| 778 | * @return mixed |
||
| 779 | */ |
||
| 780 | 312 | public function getFieldValue($entity, $field) |
|
| 784 | |||
| 785 | /** |
||
| 786 | * Creates a string representation of this instance. |
||
| 787 | * |
||
| 788 | * @return string The string representation of this instance. |
||
| 789 | * |
||
| 790 | * @todo Construct meaningful string representation. |
||
| 791 | */ |
||
| 792 | public function __toString() |
||
| 796 | |||
| 797 | /** |
||
| 798 | * Determines which fields get serialized. |
||
| 799 | * |
||
| 800 | * It is only serialized what is necessary for best unserialization performance. |
||
| 801 | * That means any metadata properties that are not set or empty or simply have |
||
| 802 | * their default value are NOT serialized. |
||
| 803 | * |
||
| 804 | * Parts that are also NOT serialized because they can not be properly unserialized: |
||
| 805 | * - reflClass (ReflectionClass) |
||
| 806 | * - reflFields (ReflectionProperty array) |
||
| 807 | * |
||
| 808 | * @return array The names of all the fields that should be serialized. |
||
| 809 | */ |
||
| 810 | 6 | public function __sleep() |
|
| 904 | |||
| 905 | /** |
||
| 906 | * Creates a new instance of the mapped class, without invoking the constructor. |
||
| 907 | * |
||
| 908 | * @return object |
||
| 909 | */ |
||
| 910 | 672 | public function newInstance() |
|
| 914 | |||
| 915 | /** |
||
| 916 | * Restores some state that can not be serialized/unserialized. |
||
| 917 | * |
||
| 918 | * @param \Doctrine\Common\Persistence\Mapping\ReflectionService $reflService |
||
| 919 | * |
||
| 920 | * @return void |
||
| 921 | */ |
||
| 922 | 2022 | public function wakeupReflection($reflService) |
|
| 974 | |||
| 975 | /** |
||
| 976 | * Initializes a new ClassMetadata instance that will hold the object-relational mapping |
||
| 977 | * metadata of the class with the given name. |
||
| 978 | * |
||
| 979 | * @param \Doctrine\Common\Persistence\Mapping\ReflectionService $reflService The reflection service. |
||
| 980 | * |
||
| 981 | * @return void |
||
| 982 | */ |
||
| 983 | 628 | public function initializeReflection($reflService) |
|
| 994 | |||
| 995 | /** |
||
| 996 | * Validates Identifier. |
||
| 997 | * |
||
| 998 | * @return void |
||
| 999 | * |
||
| 1000 | * @throws MappingException |
||
| 1001 | */ |
||
| 1002 | 415 | public function validateIdentifier() |
|
| 1017 | |||
| 1018 | /** |
||
| 1019 | * Validates association targets actually exist. |
||
| 1020 | * |
||
| 1021 | * @return void |
||
| 1022 | * |
||
| 1023 | * @throws MappingException |
||
| 1024 | */ |
||
| 1025 | 416 | public function validateAssociations() |
|
| 1033 | |||
| 1034 | /** |
||
| 1035 | * Validates lifecycle callbacks. |
||
| 1036 | * |
||
| 1037 | * @param \Doctrine\Common\Persistence\Mapping\ReflectionService $reflService |
||
| 1038 | * |
||
| 1039 | * @return void |
||
| 1040 | * |
||
| 1041 | * @throws MappingException |
||
| 1042 | */ |
||
| 1043 | 416 | public function validateLifecycleCallbacks($reflService) |
|
| 1053 | |||
| 1054 | /** |
||
| 1055 | * {@inheritDoc} |
||
| 1056 | */ |
||
| 1057 | 541 | public function getReflectionClass() |
|
| 1061 | |||
| 1062 | /** |
||
| 1063 | * @param array $cache |
||
| 1064 | * |
||
| 1065 | * @return void |
||
| 1066 | */ |
||
| 1067 | 21 | public function enableCache(array $cache) |
|
| 1079 | |||
| 1080 | /** |
||
| 1081 | * @param string $fieldName |
||
| 1082 | * @param array $cache |
||
| 1083 | * |
||
| 1084 | * @return void |
||
| 1085 | */ |
||
| 1086 | 2 | public function enableAssociationCache($fieldName, array $cache) |
|
| 1090 | |||
| 1091 | /** |
||
| 1092 | * @param string $fieldName |
||
| 1093 | * @param array $cache |
||
| 1094 | * |
||
| 1095 | * @return array |
||
| 1096 | */ |
||
| 1097 | 17 | public function getAssociationCacheDefaults($fieldName, array $cache) |
|
| 1111 | |||
| 1112 | /** |
||
| 1113 | * Sets the change tracking policy used by this class. |
||
| 1114 | * |
||
| 1115 | * @param integer $policy |
||
| 1116 | * |
||
| 1117 | * @return void |
||
| 1118 | */ |
||
| 1119 | 141 | public function setChangeTrackingPolicy($policy) |
|
| 1123 | |||
| 1124 | /** |
||
| 1125 | * Whether the change tracking policy of this class is "deferred explicit". |
||
| 1126 | * |
||
| 1127 | * @return boolean |
||
| 1128 | */ |
||
| 1129 | 267 | public function isChangeTrackingDeferredExplicit() |
|
| 1133 | |||
| 1134 | /** |
||
| 1135 | * Whether the change tracking policy of this class is "deferred implicit". |
||
| 1136 | * |
||
| 1137 | * @return boolean |
||
| 1138 | */ |
||
| 1139 | 459 | public function isChangeTrackingDeferredImplicit() |
|
| 1143 | |||
| 1144 | /** |
||
| 1145 | * Whether the change tracking policy of this class is "notify". |
||
| 1146 | * |
||
| 1147 | * @return boolean |
||
| 1148 | */ |
||
| 1149 | 290 | public function isChangeTrackingNotify() |
|
| 1153 | |||
| 1154 | /** |
||
| 1155 | * Checks whether a field is part of the identifier/primary key field(s). |
||
| 1156 | * |
||
| 1157 | * @param string $fieldName The field name. |
||
| 1158 | * |
||
| 1159 | * @return boolean TRUE if the field is part of the table identifier/primary key field(s), |
||
| 1160 | * FALSE otherwise. |
||
| 1161 | */ |
||
| 1162 | 1070 | public function isIdentifier($fieldName) |
|
| 1174 | |||
| 1175 | /** |
||
| 1176 | * Checks if the field is unique. |
||
| 1177 | * |
||
| 1178 | * @param string $fieldName The field name. |
||
| 1179 | * |
||
| 1180 | * @return boolean TRUE if the field is unique, FALSE otherwise. |
||
| 1181 | */ |
||
| 1182 | public function isUniqueField($fieldName) |
||
| 1192 | |||
| 1193 | /** |
||
| 1194 | * Checks if the field is not null. |
||
| 1195 | * |
||
| 1196 | * @param string $fieldName The field name. |
||
| 1197 | * |
||
| 1198 | * @return boolean TRUE if the field is not null, FALSE otherwise. |
||
| 1199 | */ |
||
| 1200 | 1 | public function isNullable($fieldName) |
|
| 1210 | |||
| 1211 | /** |
||
| 1212 | * Gets a column name for a field name. |
||
| 1213 | * If the column name for the field cannot be found, the given field name |
||
| 1214 | * is returned. |
||
| 1215 | * |
||
| 1216 | * @param string $fieldName The field name. |
||
| 1217 | * |
||
| 1218 | * @return string The column name. |
||
| 1219 | */ |
||
| 1220 | 16 | public function getColumnName($fieldName) |
|
| 1226 | |||
| 1227 | /** |
||
| 1228 | * Gets the mapping of a (regular) field that holds some data but not a |
||
| 1229 | * reference to another object. |
||
| 1230 | * |
||
| 1231 | * @param string $fieldName The field name. |
||
| 1232 | * |
||
| 1233 | * @return array The field mapping. |
||
| 1234 | * |
||
| 1235 | * @throws MappingException |
||
| 1236 | */ |
||
| 1237 | 199 | public function getFieldMapping($fieldName) |
|
| 1245 | |||
| 1246 | /** |
||
| 1247 | * Gets the mapping of an association. |
||
| 1248 | * |
||
| 1249 | * @see ClassMetadataInfo::$associationMappings |
||
| 1250 | * |
||
| 1251 | * @param string $fieldName The field name that represents the association in |
||
| 1252 | * the object model. |
||
| 1253 | * |
||
| 1254 | * @return array The mapping. |
||
| 1255 | * |
||
| 1256 | * @throws MappingException |
||
| 1257 | */ |
||
| 1258 | 485 | public function getAssociationMapping($fieldName) |
|
| 1266 | |||
| 1267 | /** |
||
| 1268 | * Gets all association mappings of the class. |
||
| 1269 | * |
||
| 1270 | * @return array |
||
| 1271 | */ |
||
| 1272 | public function getAssociationMappings() |
||
| 1276 | |||
| 1277 | /** |
||
| 1278 | * Gets the field name for a column name. |
||
| 1279 | * If no field name can be found the column name is returned. |
||
| 1280 | * |
||
| 1281 | * @param string $columnName The column name. |
||
| 1282 | * |
||
| 1283 | * @return string The column alias. |
||
| 1284 | */ |
||
| 1285 | 237 | public function getFieldName($columnName) |
|
| 1291 | |||
| 1292 | /** |
||
| 1293 | * Gets the named query. |
||
| 1294 | * |
||
| 1295 | * @see ClassMetadataInfo::$namedQueries |
||
| 1296 | * |
||
| 1297 | * @param string $queryName The query name. |
||
| 1298 | * |
||
| 1299 | * @return string |
||
| 1300 | * |
||
| 1301 | * @throws MappingException |
||
| 1302 | */ |
||
| 1303 | 4 | public function getNamedQuery($queryName) |
|
| 1311 | |||
| 1312 | /** |
||
| 1313 | * Gets all named queries of the class. |
||
| 1314 | * |
||
| 1315 | * @return array |
||
| 1316 | */ |
||
| 1317 | 7 | public function getNamedQueries() |
|
| 1321 | |||
| 1322 | /** |
||
| 1323 | * Gets the named native query. |
||
| 1324 | * |
||
| 1325 | * @see ClassMetadataInfo::$namedNativeQueries |
||
| 1326 | * |
||
| 1327 | * @param string $queryName The query name. |
||
| 1328 | * |
||
| 1329 | * @return array |
||
| 1330 | * |
||
| 1331 | * @throws MappingException |
||
| 1332 | */ |
||
| 1333 | 17 | public function getNamedNativeQuery($queryName) |
|
| 1341 | |||
| 1342 | /** |
||
| 1343 | * Gets all named native queries of the class. |
||
| 1344 | * |
||
| 1345 | * @return array |
||
| 1346 | */ |
||
| 1347 | 2 | public function getNamedNativeQueries() |
|
| 1351 | |||
| 1352 | /** |
||
| 1353 | * Gets the result set mapping. |
||
| 1354 | * |
||
| 1355 | * @see ClassMetadataInfo::$sqlResultSetMappings |
||
| 1356 | * |
||
| 1357 | * @param string $name The result set mapping name. |
||
| 1358 | * |
||
| 1359 | * @return array |
||
| 1360 | * |
||
| 1361 | * @throws MappingException |
||
| 1362 | */ |
||
| 1363 | 21 | public function getSqlResultSetMapping($name) |
|
| 1371 | |||
| 1372 | /** |
||
| 1373 | * Gets all sql result set mappings of the class. |
||
| 1374 | * |
||
| 1375 | * @return array |
||
| 1376 | */ |
||
| 1377 | 8 | public function getSqlResultSetMappings() |
|
| 1381 | |||
| 1382 | /** |
||
| 1383 | * Validates & completes the given field mapping. |
||
| 1384 | * |
||
| 1385 | * @param array $mapping The field mapping to validate & complete. |
||
| 1386 | * |
||
| 1387 | * @return array The validated and completed field mapping. |
||
| 1388 | * |
||
| 1389 | * @throws MappingException |
||
| 1390 | */ |
||
| 1391 | 544 | protected function _validateAndCompleteFieldMapping(array &$mapping) |
|
| 1445 | |||
| 1446 | /** |
||
| 1447 | * Validates & completes the basic mapping information that is common to all |
||
| 1448 | * association mappings (one-to-one, many-ot-one, one-to-many, many-to-many). |
||
| 1449 | * |
||
| 1450 | * @param array $mapping The mapping. |
||
| 1451 | * |
||
| 1452 | * @return array The updated mapping. |
||
| 1453 | * |
||
| 1454 | * @throws MappingException If something is wrong with the mapping. |
||
| 1455 | */ |
||
| 1456 | 355 | protected function _validateAndCompleteAssociationMapping(array $mapping) |
|
| 1457 | { |
||
| 1458 | 355 | if ( ! isset($mapping['mappedBy'])) { |
|
| 1459 | 338 | $mapping['mappedBy'] = null; |
|
| 1460 | } |
||
| 1461 | |||
| 1462 | 355 | if ( ! isset($mapping['inversedBy'])) { |
|
| 1463 | 328 | $mapping['inversedBy'] = null; |
|
| 1464 | } |
||
| 1465 | |||
| 1466 | 355 | $mapping['isOwningSide'] = true; // assume owning side until we hit mappedBy |
|
| 1467 | |||
| 1468 | 355 | if (empty($mapping['indexBy'])) { |
|
| 1469 | 352 | unset($mapping['indexBy']); |
|
| 1470 | } |
||
| 1471 | |||
| 1472 | // If targetEntity is unqualified, assume it is in the same namespace as |
||
| 1473 | // the sourceEntity. |
||
| 1474 | 355 | $mapping['sourceEntity'] = $this->name; |
|
| 1475 | |||
| 1476 | 355 | if (isset($mapping['targetEntity'])) { |
|
| 1477 | 355 | $mapping['targetEntity'] = $this->fullyQualifiedClassName($mapping['targetEntity']); |
|
| 1478 | 355 | $mapping['targetEntity'] = ltrim($mapping['targetEntity'], '\\'); |
|
| 1479 | } |
||
| 1480 | |||
| 1481 | 355 | if (($mapping['type'] & self::MANY_TO_ONE) > 0 && isset($mapping['orphanRemoval']) && $mapping['orphanRemoval'] == true) { |
|
| 1482 | 1 | throw MappingException::illegalOrphanRemoval($this->name, $mapping['fieldName']); |
|
| 1483 | } |
||
| 1484 | |||
| 1485 | // Complete id mapping |
||
| 1486 | 354 | if (isset($mapping['id']) && $mapping['id'] === true) { |
|
| 1487 | 53 | if (isset($mapping['orphanRemoval']) && $mapping['orphanRemoval'] == true) { |
|
| 1488 | 1 | throw MappingException::illegalOrphanRemovalOnIdentifierAssociation($this->name, $mapping['fieldName']); |
|
| 1489 | } |
||
| 1490 | |||
| 1491 | 52 | if ( ! in_array($mapping['fieldName'], $this->identifier)) { |
|
| 1492 | 52 | if (isset($mapping['joinColumns']) && count($mapping['joinColumns']) >= 2) { |
|
| 1493 | throw MappingException::cannotMapCompositePrimaryKeyEntitiesAsForeignId( |
||
| 1494 | $mapping['targetEntity'], $this->name, $mapping['fieldName'] |
||
| 1495 | ); |
||
| 1496 | } |
||
| 1497 | |||
| 1498 | 52 | $this->identifier[] = $mapping['fieldName']; |
|
| 1499 | 52 | $this->containsForeignIdentifier = true; |
|
| 1500 | } |
||
| 1501 | |||
| 1502 | // Check for composite key |
||
| 1503 | 52 | if ( ! $this->isIdentifierComposite && count($this->identifier) > 1) { |
|
| 1504 | 24 | $this->isIdentifierComposite = true; |
|
| 1505 | } |
||
| 1506 | |||
| 1507 | 52 | if ($this->cache && !isset($mapping['cache'])) { |
|
| 1508 | 3 | throw CacheException::nonCacheableEntityAssociation($this->name, $mapping['fieldName']); |
|
| 1509 | } |
||
| 1510 | } |
||
| 1511 | |||
| 1512 | // Mandatory attributes for both sides |
||
| 1513 | // Mandatory: fieldName, targetEntity |
||
| 1514 | 350 | if ( ! isset($mapping['fieldName']) || strlen($mapping['fieldName']) == 0) { |
|
| 1515 | 1 | throw MappingException::missingFieldName($this->name); |
|
| 1516 | } |
||
| 1517 | |||
| 1518 | 349 | if ( ! isset($mapping['targetEntity'])) { |
|
| 1519 | throw MappingException::missingTargetEntity($mapping['fieldName']); |
||
| 1520 | } |
||
| 1521 | |||
| 1522 | // Mandatory and optional attributes for either side |
||
| 1523 | 349 | if ( ! $mapping['mappedBy']) { |
|
| 1524 | 333 | if (isset($mapping['joinTable']) && $mapping['joinTable']) { |
|
| 1525 | 121 | if (isset($mapping['joinTable']['name']) && $mapping['joinTable']['name'][0] === '`') { |
|
| 1526 | 4 | $mapping['joinTable']['name'] = trim($mapping['joinTable']['name'], '`'); |
|
| 1527 | 333 | $mapping['joinTable']['quoted'] = true; |
|
| 1528 | } |
||
| 1529 | } |
||
| 1530 | } else { |
||
| 1531 | 184 | $mapping['isOwningSide'] = false; |
|
| 1532 | } |
||
| 1533 | |||
| 1534 | 349 | if (isset($mapping['id']) && $mapping['id'] === true && $mapping['type'] & self::TO_MANY) { |
|
| 1535 | 3 | throw MappingException::illegalToManyIdentifierAssociation($this->name, $mapping['fieldName']); |
|
| 1536 | } |
||
| 1537 | |||
| 1538 | // Fetch mode. Default fetch mode to LAZY, if not set. |
||
| 1539 | 346 | if ( ! isset($mapping['fetch'])) { |
|
| 1540 | 99 | $mapping['fetch'] = self::FETCH_LAZY; |
|
| 1541 | } |
||
| 1542 | |||
| 1543 | // Cascades |
||
| 1544 | 346 | $cascades = isset($mapping['cascade']) ? array_map('strtolower', $mapping['cascade']) : array(); |
|
| 1545 | |||
| 1546 | 346 | $allCascades = array('remove', 'persist', 'refresh', 'merge', 'detach'); |
|
| 1547 | 346 | if (in_array('all', $cascades)) { |
|
| 1548 | 36 | $cascades = $allCascades; |
|
| 1549 | 339 | } elseif (count($cascades) !== count(array_intersect($cascades, $allCascades))) { |
|
| 1550 | 1 | throw MappingException::invalidCascadeOption( |
|
| 1551 | array_diff($cascades, $allCascades), |
||
| 1552 | 1 | $this->name, |
|
| 1553 | 1 | $mapping['fieldName'] |
|
| 1554 | ); |
||
| 1555 | } |
||
| 1556 | |||
| 1557 | 345 | $mapping['cascade'] = $cascades; |
|
| 1558 | 345 | $mapping['isCascadeRemove'] = in_array('remove', $cascades); |
|
| 1559 | 345 | $mapping['isCascadePersist'] = in_array('persist', $cascades); |
|
| 1560 | 345 | $mapping['isCascadeRefresh'] = in_array('refresh', $cascades); |
|
| 1561 | 345 | $mapping['isCascadeMerge'] = in_array('merge', $cascades); |
|
| 1562 | 345 | $mapping['isCascadeDetach'] = in_array('detach', $cascades); |
|
| 1563 | |||
| 1564 | 345 | return $mapping; |
|
| 1565 | } |
||
| 1566 | |||
| 1567 | /** |
||
| 1568 | * Validates & completes a one-to-one association mapping. |
||
| 1569 | * |
||
| 1570 | * @param array $mapping The mapping to validate & complete. |
||
| 1571 | * |
||
| 1572 | * @return array The validated & completed mapping. |
||
| 1573 | * |
||
| 1574 | * @throws RuntimeException |
||
| 1575 | * @throws MappingException |
||
| 1576 | */ |
||
| 1577 | 297 | protected function _validateAndCompleteOneToOneMapping(array $mapping) |
|
| 1659 | |||
| 1660 | /** |
||
| 1661 | * Validates & completes a one-to-many association mapping. |
||
| 1662 | * |
||
| 1663 | * @param array $mapping The mapping to validate and complete. |
||
| 1664 | * |
||
| 1665 | * @return array The validated and completed mapping. |
||
| 1666 | * |
||
| 1667 | * @throws MappingException |
||
| 1668 | * @throws InvalidArgumentException |
||
| 1669 | */ |
||
| 1670 | 131 | protected function _validateAndCompleteOneToManyMapping(array $mapping) |
|
| 1686 | |||
| 1687 | /** |
||
| 1688 | * Validates & completes a many-to-many association mapping. |
||
| 1689 | * |
||
| 1690 | * @param array $mapping The mapping to validate & complete. |
||
| 1691 | * |
||
| 1692 | * @return array The validated & completed mapping. |
||
| 1693 | * |
||
| 1694 | * @throws \InvalidArgumentException |
||
| 1695 | */ |
||
| 1696 | 151 | protected function _validateAndCompleteManyToManyMapping(array $mapping) |
|
| 1792 | |||
| 1793 | /** |
||
| 1794 | * {@inheritDoc} |
||
| 1795 | */ |
||
| 1796 | 602 | public function getIdentifierFieldNames() |
|
| 1800 | |||
| 1801 | /** |
||
| 1802 | * Gets the name of the single id field. Note that this only works on |
||
| 1803 | * entity classes that have a single-field pk. |
||
| 1804 | * |
||
| 1805 | * @return string |
||
| 1806 | * |
||
| 1807 | * @throws MappingException If the class has a composite primary key. |
||
| 1808 | */ |
||
| 1809 | 400 | public function getSingleIdentifierFieldName() |
|
| 1817 | |||
| 1818 | /** |
||
| 1819 | * Gets the column name of the single id column. Note that this only works on |
||
| 1820 | * entity classes that have a single-field pk. |
||
| 1821 | * |
||
| 1822 | * @return string |
||
| 1823 | * |
||
| 1824 | * @throws MappingException If the class has a composite primary key. |
||
| 1825 | */ |
||
| 1826 | 3 | public function getSingleIdentifierColumnName() |
|
| 1830 | |||
| 1831 | /** |
||
| 1832 | * INTERNAL: |
||
| 1833 | * Sets the mapped identifier/primary key fields of this class. |
||
| 1834 | * Mainly used by the ClassMetadataFactory to assign inherited identifiers. |
||
| 1835 | * |
||
| 1836 | * @param array $identifier |
||
| 1837 | * |
||
| 1838 | * @return void |
||
| 1839 | */ |
||
| 1840 | 126 | public function setIdentifier(array $identifier) |
|
| 1845 | |||
| 1846 | /** |
||
| 1847 | * {@inheritDoc} |
||
| 1848 | */ |
||
| 1849 | 62 | public function getIdentifier() |
|
| 1853 | |||
| 1854 | /** |
||
| 1855 | * {@inheritDoc} |
||
| 1856 | */ |
||
| 1857 | 292 | public function hasField($fieldName) |
|
| 1861 | |||
| 1862 | /** |
||
| 1863 | * Gets an array containing all the column names. |
||
| 1864 | * |
||
| 1865 | * @param array|null $fieldNames |
||
| 1866 | * |
||
| 1867 | * @return array |
||
| 1868 | */ |
||
| 1869 | 43 | public function getColumnNames(array $fieldNames = null) |
|
| 1877 | |||
| 1878 | /** |
||
| 1879 | * Returns an array with all the identifier column names. |
||
| 1880 | * |
||
| 1881 | * @return array |
||
| 1882 | */ |
||
| 1883 | 322 | public function getIdentifierColumnNames() |
|
| 1903 | |||
| 1904 | /** |
||
| 1905 | * Sets the type of Id generator to use for the mapped class. |
||
| 1906 | * |
||
| 1907 | * @param int $generatorType |
||
| 1908 | * |
||
| 1909 | * @return void |
||
| 1910 | */ |
||
| 1911 | 462 | public function setIdGeneratorType($generatorType) |
|
| 1915 | |||
| 1916 | /** |
||
| 1917 | * Checks whether the mapped class uses an Id generator. |
||
| 1918 | * |
||
| 1919 | * @return boolean TRUE if the mapped class uses an Id generator, FALSE otherwise. |
||
| 1920 | */ |
||
| 1921 | 405 | public function usesIdGenerator() |
|
| 1925 | |||
| 1926 | /** |
||
| 1927 | * @return boolean |
||
| 1928 | */ |
||
| 1929 | 1339 | public function isInheritanceTypeNone() |
|
| 1933 | |||
| 1934 | /** |
||
| 1935 | * Checks whether the mapped class uses the JOINED inheritance mapping strategy. |
||
| 1936 | * |
||
| 1937 | * @return boolean TRUE if the class participates in a JOINED inheritance mapping, |
||
| 1938 | * FALSE otherwise. |
||
| 1939 | */ |
||
| 1940 | 1052 | public function isInheritanceTypeJoined() |
|
| 1944 | |||
| 1945 | /** |
||
| 1946 | * Checks whether the mapped class uses the SINGLE_TABLE inheritance mapping strategy. |
||
| 1947 | * |
||
| 1948 | * @return boolean TRUE if the class participates in a SINGLE_TABLE inheritance mapping, |
||
| 1949 | * FALSE otherwise. |
||
| 1950 | */ |
||
| 1951 | 1226 | public function isInheritanceTypeSingleTable() |
|
| 1955 | |||
| 1956 | /** |
||
| 1957 | * Checks whether the mapped class uses the TABLE_PER_CLASS inheritance mapping strategy. |
||
| 1958 | * |
||
| 1959 | * @return boolean TRUE if the class participates in a TABLE_PER_CLASS inheritance mapping, |
||
| 1960 | * FALSE otherwise. |
||
| 1961 | */ |
||
| 1962 | 260 | public function isInheritanceTypeTablePerClass() |
|
| 1966 | |||
| 1967 | /** |
||
| 1968 | * Checks whether the class uses an identity column for the Id generation. |
||
| 1969 | * |
||
| 1970 | * @return boolean TRUE if the class uses the IDENTITY generator, FALSE otherwise. |
||
| 1971 | */ |
||
| 1972 | 1063 | public function isIdGeneratorIdentity() |
|
| 1976 | |||
| 1977 | /** |
||
| 1978 | * Checks whether the class uses a sequence for id generation. |
||
| 1979 | * |
||
| 1980 | * @return boolean TRUE if the class uses the SEQUENCE generator, FALSE otherwise. |
||
| 1981 | */ |
||
| 1982 | 315 | public function isIdGeneratorSequence() |
|
| 1986 | |||
| 1987 | /** |
||
| 1988 | * Checks whether the class uses a table for id generation. |
||
| 1989 | * |
||
| 1990 | * @return boolean TRUE if the class uses the TABLE generator, FALSE otherwise. |
||
| 1991 | */ |
||
| 1992 | 82 | public function isIdGeneratorTable() |
|
| 1996 | |||
| 1997 | /** |
||
| 1998 | * Checks whether the class has a natural identifier/pk (which means it does |
||
| 1999 | * not use any Id generator. |
||
| 2000 | * |
||
| 2001 | * @return boolean |
||
| 2002 | */ |
||
| 2003 | 73 | public function isIdentifierNatural() |
|
| 2007 | |||
| 2008 | /** |
||
| 2009 | * Checks whether the class use a UUID for id generation. |
||
| 2010 | * |
||
| 2011 | * @return boolean |
||
| 2012 | */ |
||
| 2013 | public function isIdentifierUuid() |
||
| 2017 | |||
| 2018 | /** |
||
| 2019 | * Gets the type of a field. |
||
| 2020 | * |
||
| 2021 | * @param string $fieldName |
||
| 2022 | * |
||
| 2023 | * @return \Doctrine\DBAL\Types\Type|string|null |
||
| 2024 | * |
||
| 2025 | * @todo 3.0 Remove this. PersisterHelper should fix it somehow |
||
| 2026 | */ |
||
| 2027 | 38 | public function getTypeOfField($fieldName) |
|
| 2033 | |||
| 2034 | /** |
||
| 2035 | * Gets the type of a column. |
||
| 2036 | * |
||
| 2037 | * @param string $columnName |
||
| 2038 | * |
||
| 2039 | * @return \Doctrine\DBAL\Types\Type|string|null |
||
| 2040 | * |
||
| 2041 | * @deprecated 3.0 remove this. this method is bogous and unreliable, since it cannot resolve the type of a column |
||
| 2042 | * that is derived by a referenced field on a different entity. |
||
| 2043 | */ |
||
| 2044 | public function getTypeOfColumn($columnName) |
||
| 2048 | |||
| 2049 | /** |
||
| 2050 | * Gets the name of the primary table. |
||
| 2051 | * |
||
| 2052 | * @return string |
||
| 2053 | */ |
||
| 2054 | 1465 | public function getTableName() |
|
| 2058 | |||
| 2059 | /** |
||
| 2060 | * Gets primary table's schema name. |
||
| 2061 | * |
||
| 2062 | * @return string|null |
||
| 2063 | */ |
||
| 2064 | 13 | public function getSchemaName() |
|
| 2068 | |||
| 2069 | /** |
||
| 2070 | * Gets the table name to use for temporary identifier tables of this class. |
||
| 2071 | * |
||
| 2072 | * @return string |
||
| 2073 | */ |
||
| 2074 | 7 | public function getTemporaryIdTableName() |
|
| 2079 | |||
| 2080 | /** |
||
| 2081 | * Sets the mapped subclasses of this class. |
||
| 2082 | * |
||
| 2083 | * @param array $subclasses The names of all mapped subclasses. |
||
| 2084 | * |
||
| 2085 | * @return void |
||
| 2086 | */ |
||
| 2087 | 2 | public function setSubclasses(array $subclasses) |
|
| 2093 | |||
| 2094 | /** |
||
| 2095 | * Sets the parent class names. |
||
| 2096 | * Assumes that the class names in the passed array are in the order: |
||
| 2097 | * directParent -> directParentParent -> directParentParentParent ... -> root. |
||
| 2098 | * |
||
| 2099 | * @param array $classNames |
||
| 2100 | * |
||
| 2101 | * @return void |
||
| 2102 | */ |
||
| 2103 | 424 | public function setParentClasses(array $classNames) |
|
| 2111 | |||
| 2112 | /** |
||
| 2113 | * Sets the inheritance type used by the class and its subclasses. |
||
| 2114 | * |
||
| 2115 | * @param integer $type |
||
| 2116 | * |
||
| 2117 | * @return void |
||
| 2118 | * |
||
| 2119 | * @throws MappingException |
||
| 2120 | */ |
||
| 2121 | 174 | public function setInheritanceType($type) |
|
| 2129 | |||
| 2130 | /** |
||
| 2131 | * Sets the association to override association mapping of property for an entity relationship. |
||
| 2132 | * |
||
| 2133 | * @param string $fieldName |
||
| 2134 | * @param array $overrideMapping |
||
| 2135 | * |
||
| 2136 | * @return void |
||
| 2137 | * |
||
| 2138 | * @throws MappingException |
||
| 2139 | */ |
||
| 2140 | 22 | public function setAssociationOverride($fieldName, array $overrideMapping) |
|
| 2187 | |||
| 2188 | /** |
||
| 2189 | * Sets the override for a mapped field. |
||
| 2190 | * |
||
| 2191 | * @param string $fieldName |
||
| 2192 | * @param array $overrideMapping |
||
| 2193 | * |
||
| 2194 | * @return void |
||
| 2195 | * |
||
| 2196 | * @throws MappingException |
||
| 2197 | */ |
||
| 2198 | 15 | public function setAttributeOverride($fieldName, array $overrideMapping) |
|
| 2230 | |||
| 2231 | /** |
||
| 2232 | * Checks whether a mapped field is inherited from an entity superclass. |
||
| 2233 | * |
||
| 2234 | * @param string $fieldName |
||
| 2235 | * |
||
| 2236 | * @return bool TRUE if the field is inherited, FALSE otherwise. |
||
| 2237 | */ |
||
| 2238 | 380 | public function isInheritedField($fieldName) |
|
| 2242 | |||
| 2243 | /** |
||
| 2244 | * Checks if this entity is the root in any entity-inheritance-hierarchy. |
||
| 2245 | * |
||
| 2246 | * @return bool |
||
| 2247 | */ |
||
| 2248 | 423 | public function isRootEntity() |
|
| 2252 | |||
| 2253 | /** |
||
| 2254 | * Checks whether a mapped association field is inherited from a superclass. |
||
| 2255 | * |
||
| 2256 | * @param string $fieldName |
||
| 2257 | * |
||
| 2258 | * @return boolean TRUE if the field is inherited, FALSE otherwise. |
||
| 2259 | */ |
||
| 2260 | 359 | public function isInheritedAssociation($fieldName) |
|
| 2264 | |||
| 2265 | 359 | public function isInheritedEmbeddedClass($fieldName) |
|
| 2269 | |||
| 2270 | /** |
||
| 2271 | * Sets the name of the primary table the class is mapped to. |
||
| 2272 | * |
||
| 2273 | * @param string $tableName The table name. |
||
| 2274 | * |
||
| 2275 | * @return void |
||
| 2276 | * |
||
| 2277 | * @deprecated Use {@link setPrimaryTable}. |
||
| 2278 | */ |
||
| 2279 | 5 | public function setTableName($tableName) |
|
| 2283 | |||
| 2284 | /** |
||
| 2285 | * Sets the primary table definition. The provided array supports the |
||
| 2286 | * following structure: |
||
| 2287 | * |
||
| 2288 | * name => <tableName> (optional, defaults to class name) |
||
| 2289 | * indexes => array of indexes (optional) |
||
| 2290 | * uniqueConstraints => array of constraints (optional) |
||
| 2291 | * |
||
| 2292 | * If a key is omitted, the current value is kept. |
||
| 2293 | * |
||
| 2294 | * @param array $table The table description. |
||
| 2295 | * |
||
| 2296 | * @return void |
||
| 2297 | */ |
||
| 2298 | 327 | public function setPrimaryTable(array $table) |
|
| 2330 | |||
| 2331 | /** |
||
| 2332 | * Checks whether the given type identifies an inheritance type. |
||
| 2333 | * |
||
| 2334 | * @param integer $type |
||
| 2335 | * |
||
| 2336 | * @return boolean TRUE if the given type identifies an inheritance type, FALSe otherwise. |
||
| 2337 | */ |
||
| 2338 | 174 | private function _isInheritanceType($type) |
|
| 2345 | |||
| 2346 | /** |
||
| 2347 | * Adds a mapped field to the class. |
||
| 2348 | * |
||
| 2349 | * @param array $mapping The field mapping. |
||
| 2350 | * |
||
| 2351 | * @return void |
||
| 2352 | * |
||
| 2353 | * @throws MappingException |
||
| 2354 | */ |
||
| 2355 | 544 | public function mapField(array $mapping) |
|
| 2362 | |||
| 2363 | /** |
||
| 2364 | * INTERNAL: |
||
| 2365 | * Adds an association mapping without completing/validating it. |
||
| 2366 | * This is mainly used to add inherited association mappings to derived classes. |
||
| 2367 | * |
||
| 2368 | * @param array $mapping |
||
| 2369 | * |
||
| 2370 | * @return void |
||
| 2371 | * |
||
| 2372 | * @throws MappingException |
||
| 2373 | */ |
||
| 2374 | 50 | public function addInheritedAssociationMapping(array $mapping/*, $owningClassName = null*/) |
|
| 2381 | |||
| 2382 | /** |
||
| 2383 | * INTERNAL: |
||
| 2384 | * Adds a field mapping without completing/validating it. |
||
| 2385 | * This is mainly used to add inherited field mappings to derived classes. |
||
| 2386 | * |
||
| 2387 | * @param array $fieldMapping |
||
| 2388 | * |
||
| 2389 | * @return void |
||
| 2390 | */ |
||
| 2391 | 112 | public function addInheritedFieldMapping(array $fieldMapping) |
|
| 2397 | |||
| 2398 | /** |
||
| 2399 | * INTERNAL: |
||
| 2400 | * Adds a named query to this class. |
||
| 2401 | * |
||
| 2402 | * @param array $queryMapping |
||
| 2403 | * |
||
| 2404 | * @return void |
||
| 2405 | * |
||
| 2406 | * @throws MappingException |
||
| 2407 | */ |
||
| 2408 | 29 | public function addNamedQuery(array $queryMapping) |
|
| 2432 | |||
| 2433 | /** |
||
| 2434 | * INTERNAL: |
||
| 2435 | * Adds a named native query to this class. |
||
| 2436 | * |
||
| 2437 | * @param array $queryMapping |
||
| 2438 | * |
||
| 2439 | * @return void |
||
| 2440 | * |
||
| 2441 | * @throws MappingException |
||
| 2442 | */ |
||
| 2443 | 39 | public function addNamedNativeQuery(array $queryMapping) |
|
| 2476 | |||
| 2477 | /** |
||
| 2478 | * INTERNAL: |
||
| 2479 | * Adds a sql result set mapping to this class. |
||
| 2480 | * |
||
| 2481 | * @param array $resultMapping |
||
| 2482 | * |
||
| 2483 | * @return void |
||
| 2484 | * |
||
| 2485 | * @throws MappingException |
||
| 2486 | */ |
||
| 2487 | 39 | public function addSqlResultSetMapping(array $resultMapping) |
|
| 2537 | |||
| 2538 | /** |
||
| 2539 | * Adds a one-to-one mapping. |
||
| 2540 | * |
||
| 2541 | * @param array $mapping The mapping. |
||
| 2542 | * |
||
| 2543 | * @return void |
||
| 2544 | */ |
||
| 2545 | 167 | public function mapOneToOne(array $mapping) |
|
| 2553 | |||
| 2554 | /** |
||
| 2555 | * Adds a one-to-many mapping. |
||
| 2556 | * |
||
| 2557 | * @param array $mapping The mapping. |
||
| 2558 | * |
||
| 2559 | * @return void |
||
| 2560 | */ |
||
| 2561 | 131 | public function mapOneToMany(array $mapping) |
|
| 2569 | |||
| 2570 | /** |
||
| 2571 | * Adds a many-to-one mapping. |
||
| 2572 | * |
||
| 2573 | * @param array $mapping The mapping. |
||
| 2574 | * |
||
| 2575 | * @return void |
||
| 2576 | */ |
||
| 2577 | 162 | public function mapManyToOne(array $mapping) |
|
| 2586 | |||
| 2587 | /** |
||
| 2588 | * Adds a many-to-many mapping. |
||
| 2589 | * |
||
| 2590 | * @param array $mapping The mapping. |
||
| 2591 | * |
||
| 2592 | * @return void |
||
| 2593 | */ |
||
| 2594 | 151 | public function mapManyToMany(array $mapping) |
|
| 2602 | |||
| 2603 | /** |
||
| 2604 | * Stores the association mapping. |
||
| 2605 | * |
||
| 2606 | * @param array $assocMapping |
||
| 2607 | * |
||
| 2608 | * @return void |
||
| 2609 | * |
||
| 2610 | * @throws MappingException |
||
| 2611 | */ |
||
| 2612 | 343 | protected function _storeAssociationMapping(array $assocMapping) |
|
| 2620 | |||
| 2621 | /** |
||
| 2622 | * Registers a custom repository class for the entity class. |
||
| 2623 | * |
||
| 2624 | * @param string $repositoryClassName The class name of the custom mapper. |
||
| 2625 | * |
||
| 2626 | * @return void |
||
| 2627 | */ |
||
| 2628 | 66 | public function setCustomRepositoryClass($repositoryClassName) |
|
| 2632 | |||
| 2633 | /** |
||
| 2634 | * Dispatches the lifecycle event of the given entity to the registered |
||
| 2635 | * lifecycle callbacks and lifecycle listeners. |
||
| 2636 | * |
||
| 2637 | * @deprecated Deprecated since version 2.4 in favor of \Doctrine\ORM\Event\ListenersInvoker |
||
| 2638 | * |
||
| 2639 | * @param string $lifecycleEvent The lifecycle event. |
||
| 2640 | * @param object $entity The Entity on which the event occurred. |
||
| 2641 | * |
||
| 2642 | * @return void |
||
| 2643 | */ |
||
| 2644 | 1 | public function invokeLifecycleCallbacks($lifecycleEvent, $entity) |
|
| 2650 | |||
| 2651 | /** |
||
| 2652 | * Whether the class has any attached lifecycle listeners or callbacks for a lifecycle event. |
||
| 2653 | * |
||
| 2654 | * @param string $lifecycleEvent |
||
| 2655 | * |
||
| 2656 | * @return boolean |
||
| 2657 | */ |
||
| 2658 | public function hasLifecycleCallbacks($lifecycleEvent) |
||
| 2662 | |||
| 2663 | /** |
||
| 2664 | * Gets the registered lifecycle callbacks for an event. |
||
| 2665 | * |
||
| 2666 | * @param string $event |
||
| 2667 | * |
||
| 2668 | * @return array |
||
| 2669 | */ |
||
| 2670 | public function getLifecycleCallbacks($event) |
||
| 2674 | |||
| 2675 | /** |
||
| 2676 | * Adds a lifecycle callback for entities of this class. |
||
| 2677 | * |
||
| 2678 | * @param string $callback |
||
| 2679 | * @param string $event |
||
| 2680 | * |
||
| 2681 | * @return void |
||
| 2682 | */ |
||
| 2683 | 41 | public function addLifecycleCallback($callback, $event) |
|
| 2691 | |||
| 2692 | /** |
||
| 2693 | * Sets the lifecycle callbacks for entities of this class. |
||
| 2694 | * Any previously registered callbacks are overwritten. |
||
| 2695 | * |
||
| 2696 | * @param array $callbacks |
||
| 2697 | * |
||
| 2698 | * @return void |
||
| 2699 | */ |
||
| 2700 | 125 | public function setLifecycleCallbacks(array $callbacks) |
|
| 2704 | |||
| 2705 | /** |
||
| 2706 | * Adds a entity listener for entities of this class. |
||
| 2707 | * |
||
| 2708 | * @param string $eventName The entity lifecycle event. |
||
| 2709 | * @param string $class The listener class. |
||
| 2710 | * @param string $method The listener callback method. |
||
| 2711 | * |
||
| 2712 | * @throws \Doctrine\ORM\Mapping\MappingException |
||
| 2713 | */ |
||
| 2714 | 35 | public function addEntityListener($eventName, $class, $method) |
|
| 2737 | |||
| 2738 | /** |
||
| 2739 | * Sets the discriminator column definition. |
||
| 2740 | * |
||
| 2741 | * @param array $columnDef |
||
| 2742 | * |
||
| 2743 | * @return void |
||
| 2744 | * |
||
| 2745 | * @throws MappingException |
||
| 2746 | * |
||
| 2747 | * @see getDiscriminatorColumn() |
||
| 2748 | */ |
||
| 2749 | 168 | public function setDiscriminatorColumn($columnDef) |
|
| 2775 | |||
| 2776 | /** |
||
| 2777 | * Sets the discriminator values used by this class. |
||
| 2778 | * Used for JOINED and SINGLE_TABLE inheritance mapping strategies. |
||
| 2779 | * |
||
| 2780 | * @param array $map |
||
| 2781 | * |
||
| 2782 | * @return void |
||
| 2783 | */ |
||
| 2784 | 159 | public function setDiscriminatorMap(array $map) |
|
| 2790 | |||
| 2791 | /** |
||
| 2792 | * Adds one entry of the discriminator map with a new class and corresponding name. |
||
| 2793 | * |
||
| 2794 | * @param string $name |
||
| 2795 | * @param string $className |
||
| 2796 | * |
||
| 2797 | * @return void |
||
| 2798 | * |
||
| 2799 | * @throws MappingException |
||
| 2800 | */ |
||
| 2801 | 104 | public function addDiscriminatorMapClass($name, $className) |
|
| 2822 | |||
| 2823 | /** |
||
| 2824 | * Checks whether the class has a named query with the given query name. |
||
| 2825 | * |
||
| 2826 | * @param string $queryName |
||
| 2827 | * |
||
| 2828 | * @return boolean |
||
| 2829 | */ |
||
| 2830 | 1 | public function hasNamedQuery($queryName) |
|
| 2834 | |||
| 2835 | /** |
||
| 2836 | * Checks whether the class has a named native query with the given query name. |
||
| 2837 | * |
||
| 2838 | * @param string $queryName |
||
| 2839 | * |
||
| 2840 | * @return boolean |
||
| 2841 | */ |
||
| 2842 | 1 | public function hasNamedNativeQuery($queryName) |
|
| 2846 | |||
| 2847 | /** |
||
| 2848 | * Checks whether the class has a named native query with the given query name. |
||
| 2849 | * |
||
| 2850 | * @param string $name |
||
| 2851 | * |
||
| 2852 | * @return boolean |
||
| 2853 | */ |
||
| 2854 | 1 | public function hasSqlResultSetMapping($name) |
|
| 2858 | |||
| 2859 | /** |
||
| 2860 | * {@inheritDoc} |
||
| 2861 | */ |
||
| 2862 | 342 | public function hasAssociation($fieldName) |
|
| 2866 | |||
| 2867 | /** |
||
| 2868 | * {@inheritDoc} |
||
| 2869 | */ |
||
| 2870 | 1 | public function isSingleValuedAssociation($fieldName) |
|
| 2875 | |||
| 2876 | /** |
||
| 2877 | * {@inheritDoc} |
||
| 2878 | */ |
||
| 2879 | 1026 | public function isCollectionValuedAssociation($fieldName) |
|
| 2884 | |||
| 2885 | /** |
||
| 2886 | * Is this an association that only has a single join column? |
||
| 2887 | * |
||
| 2888 | * @param string $fieldName |
||
| 2889 | * |
||
| 2890 | * @return bool |
||
| 2891 | */ |
||
| 2892 | 35 | public function isAssociationWithSingleJoinColumn($fieldName) |
|
| 2898 | |||
| 2899 | /** |
||
| 2900 | * Returns the single association join column (if any). |
||
| 2901 | * |
||
| 2902 | * @param string $fieldName |
||
| 2903 | * |
||
| 2904 | * @return string |
||
| 2905 | * |
||
| 2906 | * @throws MappingException |
||
| 2907 | */ |
||
| 2908 | 9 | public function getSingleAssociationJoinColumnName($fieldName) |
|
| 2916 | |||
| 2917 | /** |
||
| 2918 | * Returns the single association referenced join column name (if any). |
||
| 2919 | * |
||
| 2920 | * @param string $fieldName |
||
| 2921 | * |
||
| 2922 | * @return string |
||
| 2923 | * |
||
| 2924 | * @throws MappingException |
||
| 2925 | */ |
||
| 2926 | 9 | public function getSingleAssociationReferencedJoinColumnName($fieldName) |
|
| 2934 | |||
| 2935 | /** |
||
| 2936 | * Used to retrieve a fieldname for either field or association from a given column. |
||
| 2937 | * |
||
| 2938 | * This method is used in foreign-key as primary-key contexts. |
||
| 2939 | * |
||
| 2940 | * @param string $columnName |
||
| 2941 | * |
||
| 2942 | * @return string |
||
| 2943 | * |
||
| 2944 | * @throws MappingException |
||
| 2945 | */ |
||
| 2946 | 634 | public function getFieldForColumn($columnName) |
|
| 2962 | |||
| 2963 | /** |
||
| 2964 | * Sets the ID generator used to generate IDs for instances of this class. |
||
| 2965 | * |
||
| 2966 | * @param \Doctrine\ORM\Id\AbstractIdGenerator $generator |
||
| 2967 | * |
||
| 2968 | * @return void |
||
| 2969 | */ |
||
| 2970 | 426 | public function setIdGenerator($generator) |
|
| 2974 | |||
| 2975 | /** |
||
| 2976 | * Sets definition. |
||
| 2977 | * |
||
| 2978 | * @param array $definition |
||
| 2979 | * |
||
| 2980 | * @return void |
||
| 2981 | */ |
||
| 2982 | 12 | public function setCustomGeneratorDefinition(array $definition) |
|
| 2986 | |||
| 2987 | /** |
||
| 2988 | * Sets the definition of the sequence ID generator for this class. |
||
| 2989 | * |
||
| 2990 | * The definition must have the following structure: |
||
| 2991 | * <code> |
||
| 2992 | * array( |
||
| 2993 | * 'sequenceName' => 'name', |
||
| 2994 | * 'allocationSize' => 20, |
||
| 2995 | * 'initialValue' => 1 |
||
| 2996 | * 'quoted' => 1 |
||
| 2997 | * ) |
||
| 2998 | * </code> |
||
| 2999 | * |
||
| 3000 | * @param array $definition |
||
| 3001 | * |
||
| 3002 | * @return void |
||
| 3003 | * |
||
| 3004 | * @throws MappingException |
||
| 3005 | */ |
||
| 3006 | 23 | public function setSequenceGeneratorDefinition(array $definition) |
|
| 3019 | |||
| 3020 | /** |
||
| 3021 | * Sets the version field mapping used for versioning. Sets the default |
||
| 3022 | * value to use depending on the column type. |
||
| 3023 | * |
||
| 3024 | * @param array $mapping The version field mapping array. |
||
| 3025 | * |
||
| 3026 | * @return void |
||
| 3027 | * |
||
| 3028 | * @throws MappingException |
||
| 3029 | */ |
||
| 3030 | 25 | public function setVersionMapping(array &$mapping) |
|
| 3045 | |||
| 3046 | /** |
||
| 3047 | * Sets whether this class is to be versioned for optimistic locking. |
||
| 3048 | * |
||
| 3049 | * @param boolean $bool |
||
| 3050 | * |
||
| 3051 | * @return void |
||
| 3052 | */ |
||
| 3053 | 125 | public function setVersioned($bool) |
|
| 3057 | |||
| 3058 | /** |
||
| 3059 | * Sets the name of the field that is to be used for versioning if this class is |
||
| 3060 | * versioned for optimistic locking. |
||
| 3061 | * |
||
| 3062 | * @param string $versionField |
||
| 3063 | * |
||
| 3064 | * @return void |
||
| 3065 | */ |
||
| 3066 | 125 | public function setVersionField($versionField) |
|
| 3070 | |||
| 3071 | /** |
||
| 3072 | * Marks this class as read only, no change tracking is applied to it. |
||
| 3073 | * |
||
| 3074 | * @return void |
||
| 3075 | */ |
||
| 3076 | 3 | public function markReadOnly() |
|
| 3080 | |||
| 3081 | /** |
||
| 3082 | * {@inheritDoc} |
||
| 3083 | */ |
||
| 3084 | public function getFieldNames() |
||
| 3088 | |||
| 3089 | /** |
||
| 3090 | * {@inheritDoc} |
||
| 3091 | */ |
||
| 3092 | public function getAssociationNames() |
||
| 3096 | |||
| 3097 | /** |
||
| 3098 | * {@inheritDoc} |
||
| 3099 | * |
||
| 3100 | * @throws InvalidArgumentException |
||
| 3101 | */ |
||
| 3102 | 1 | public function getAssociationTargetClass($assocName) |
|
| 3110 | |||
| 3111 | /** |
||
| 3112 | * {@inheritDoc} |
||
| 3113 | */ |
||
| 3114 | 723 | public function getName() |
|
| 3118 | |||
| 3119 | /** |
||
| 3120 | * Gets the (possibly quoted) identifier column names for safe use in an SQL statement. |
||
| 3121 | * |
||
| 3122 | * @deprecated Deprecated since version 2.3 in favor of \Doctrine\ORM\Mapping\QuoteStrategy |
||
| 3123 | * |
||
| 3124 | * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform |
||
| 3125 | * |
||
| 3126 | * @return array |
||
| 3127 | */ |
||
| 3128 | public function getQuotedIdentifierColumnNames($platform) |
||
| 3157 | |||
| 3158 | /** |
||
| 3159 | * Gets the (possibly quoted) column name of a mapped field for safe use in an SQL statement. |
||
| 3160 | * |
||
| 3161 | * @deprecated Deprecated since version 2.3 in favor of \Doctrine\ORM\Mapping\QuoteStrategy |
||
| 3162 | * |
||
| 3163 | * @param string $field |
||
| 3164 | * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform |
||
| 3165 | * |
||
| 3166 | * @return string |
||
| 3167 | */ |
||
| 3168 | public function getQuotedColumnName($field, $platform) |
||
| 3174 | |||
| 3175 | /** |
||
| 3176 | * Gets the (possibly quoted) primary table name of this class for safe use in an SQL statement. |
||
| 3177 | * |
||
| 3178 | * @deprecated Deprecated since version 2.3 in favor of \Doctrine\ORM\Mapping\QuoteStrategy |
||
| 3179 | * |
||
| 3180 | * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform |
||
| 3181 | * |
||
| 3182 | * @return string |
||
| 3183 | */ |
||
| 3184 | public function getQuotedTableName($platform) |
||
| 3190 | |||
| 3191 | /** |
||
| 3192 | * Gets the (possibly quoted) name of the join table. |
||
| 3193 | * |
||
| 3194 | * @deprecated Deprecated since version 2.3 in favor of \Doctrine\ORM\Mapping\QuoteStrategy |
||
| 3195 | * |
||
| 3196 | * @param array $assoc |
||
| 3197 | * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform |
||
| 3198 | * |
||
| 3199 | * @return string |
||
| 3200 | */ |
||
| 3201 | public function getQuotedJoinTableName(array $assoc, $platform) |
||
| 3207 | |||
| 3208 | /** |
||
| 3209 | * {@inheritDoc} |
||
| 3210 | */ |
||
| 3211 | 12 | public function isAssociationInverseSide($fieldName) |
|
| 3216 | |||
| 3217 | /** |
||
| 3218 | * {@inheritDoc} |
||
| 3219 | */ |
||
| 3220 | public function getAssociationMappedByTargetField($fieldName) |
||
| 3224 | |||
| 3225 | /** |
||
| 3226 | * @param string $targetClass |
||
| 3227 | * |
||
| 3228 | * @return array |
||
| 3229 | */ |
||
| 3230 | 2 | public function getAssociationsByTargetClass($targetClass) |
|
| 3242 | |||
| 3243 | /** |
||
| 3244 | * @param string|null $className |
||
| 3245 | * |
||
| 3246 | * @return string|null null if the input value is null |
||
| 3247 | */ |
||
| 3248 | 482 | public function fullyQualifiedClassName($className) |
|
| 3260 | |||
| 3261 | /** |
||
| 3262 | * @param string $name |
||
| 3263 | * |
||
| 3264 | * @return mixed |
||
| 3265 | */ |
||
| 3266 | 2 | public function getMetadataValue($name) |
|
| 3275 | |||
| 3276 | /** |
||
| 3277 | * Map Embedded Class |
||
| 3278 | * |
||
| 3279 | * @param array $mapping |
||
| 3280 | * |
||
| 3281 | * @throws MappingException |
||
| 3282 | * @return void |
||
| 3283 | */ |
||
| 3284 | 27 | public function mapEmbedded(array $mapping) |
|
| 3295 | |||
| 3296 | /** |
||
| 3297 | * Inline the embeddable class |
||
| 3298 | * |
||
| 3299 | * @param string $property |
||
| 3300 | * @param ClassMetadataInfo $embeddable |
||
| 3301 | */ |
||
| 3302 | 11 | public function inlineEmbeddable($property, ClassMetadataInfo $embeddable) |
|
| 3331 | |||
| 3332 | /** |
||
| 3333 | * @param string $fieldName |
||
| 3334 | * @throws MappingException |
||
| 3335 | */ |
||
| 3336 | 579 | private function assertFieldNotMapped($fieldName) |
|
| 3345 | |||
| 3346 | /** |
||
| 3347 | * Gets the sequence name based on class metadata. |
||
| 3348 | * |
||
| 3349 | * @param AbstractPlatform $platform |
||
| 3350 | * @return string |
||
| 3351 | * |
||
| 3352 | * @todo Sequence names should be computed in DBAL depending on the platform |
||
| 3353 | */ |
||
| 3354 | 3 | public function getSequenceName(AbstractPlatform $platform) |
|
| 3362 | |||
| 3363 | /** |
||
| 3364 | * Gets the sequence name prefix based on class metadata. |
||
| 3365 | * |
||
| 3366 | * @param AbstractPlatform $platform |
||
| 3367 | * @return string |
||
| 3368 | * |
||
| 3369 | * @todo Sequence names should be computed in DBAL depending on the platform |
||
| 3370 | */ |
||
| 3371 | 3 | public function getSequencePrefix(AbstractPlatform $platform) |
|
| 3387 | |||
| 3388 | /** |
||
| 3389 | * @param array $mapping |
||
| 3390 | */ |
||
| 3391 | 212 | private function assertMappingOrderBy(array $mapping) |
|
| 3397 | } |
||
| 3398 |
Let’s assume that you have a directory layout like this:
. |-- OtherDir | |-- Bar.php | `-- Foo.php `-- SomeDir `-- Foo.phpand let’s assume the following content of
Bar.php:If both files
OtherDir/Foo.phpandSomeDir/Foo.phpare loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.phpHowever, as
OtherDir/Foo.phpdoes not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: