| Total Complexity | 425 |
| Total Lines | 3355 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
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.
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 |
||
| 50 | class ClassMetadataInfo implements ClassMetadata |
||
| 51 | { |
||
| 52 | /* The inheritance mapping types */ |
||
| 53 | /** |
||
| 54 | * NONE means the class does not participate in an inheritance hierarchy |
||
| 55 | * and therefore does not need an inheritance mapping type. |
||
| 56 | */ |
||
| 57 | const INHERITANCE_TYPE_NONE = 1; |
||
| 58 | |||
| 59 | /** |
||
| 60 | * JOINED means the class will be persisted according to the rules of |
||
| 61 | * <tt>Class Table Inheritance</tt>. |
||
| 62 | */ |
||
| 63 | const INHERITANCE_TYPE_JOINED = 2; |
||
| 64 | |||
| 65 | /** |
||
| 66 | * SINGLE_TABLE means the class will be persisted according to the rules of |
||
| 67 | * <tt>Single Table Inheritance</tt>. |
||
| 68 | */ |
||
| 69 | const INHERITANCE_TYPE_SINGLE_TABLE = 3; |
||
| 70 | |||
| 71 | /** |
||
| 72 | * TABLE_PER_CLASS means the class will be persisted according to the rules |
||
| 73 | * of <tt>Concrete Table Inheritance</tt>. |
||
| 74 | */ |
||
| 75 | const INHERITANCE_TYPE_TABLE_PER_CLASS = 4; |
||
| 76 | |||
| 77 | /* The Id generator types. */ |
||
| 78 | /** |
||
| 79 | * AUTO means the generator type will depend on what the used platform prefers. |
||
| 80 | * Offers full portability. |
||
| 81 | */ |
||
| 82 | const GENERATOR_TYPE_AUTO = 1; |
||
| 83 | |||
| 84 | /** |
||
| 85 | * SEQUENCE means a separate sequence object will be used. Platforms that do |
||
| 86 | * not have native sequence support may emulate it. Full portability is currently |
||
| 87 | * not guaranteed. |
||
| 88 | */ |
||
| 89 | const GENERATOR_TYPE_SEQUENCE = 2; |
||
| 90 | |||
| 91 | /** |
||
| 92 | * TABLE means a separate table is used for id generation. |
||
| 93 | * Offers full portability. |
||
| 94 | */ |
||
| 95 | const GENERATOR_TYPE_TABLE = 3; |
||
| 96 | |||
| 97 | /** |
||
| 98 | * IDENTITY means an identity column is used for id generation. The database |
||
| 99 | * will fill in the id column on insertion. Platforms that do not support |
||
| 100 | * native identity columns may emulate them. Full portability is currently |
||
| 101 | * not guaranteed. |
||
| 102 | */ |
||
| 103 | const GENERATOR_TYPE_IDENTITY = 4; |
||
| 104 | |||
| 105 | /** |
||
| 106 | * NONE means the class does not have a generated id. That means the class |
||
| 107 | * must have a natural, manually assigned id. |
||
| 108 | */ |
||
| 109 | const GENERATOR_TYPE_NONE = 5; |
||
| 110 | |||
| 111 | /** |
||
| 112 | * UUID means that a UUID/GUID expression is used for id generation. Full |
||
| 113 | * portability is currently not guaranteed. |
||
| 114 | */ |
||
| 115 | const GENERATOR_TYPE_UUID = 6; |
||
| 116 | |||
| 117 | /** |
||
| 118 | * CUSTOM means that customer will use own ID generator that supposedly work |
||
| 119 | */ |
||
| 120 | const GENERATOR_TYPE_CUSTOM = 7; |
||
| 121 | |||
| 122 | /** |
||
| 123 | * DEFERRED_IMPLICIT means that changes of entities are calculated at commit-time |
||
| 124 | * by doing a property-by-property comparison with the original data. This will |
||
| 125 | * be done for all entities that are in MANAGED state at commit-time. |
||
| 126 | * |
||
| 127 | * This is the default change tracking policy. |
||
| 128 | */ |
||
| 129 | const CHANGETRACKING_DEFERRED_IMPLICIT = 1; |
||
| 130 | |||
| 131 | /** |
||
| 132 | * DEFERRED_EXPLICIT means that changes of entities are calculated at commit-time |
||
| 133 | * by doing a property-by-property comparison with the original data. This will |
||
| 134 | * be done only for entities that were explicitly saved (through persist() or a cascade). |
||
| 135 | */ |
||
| 136 | const CHANGETRACKING_DEFERRED_EXPLICIT = 2; |
||
| 137 | |||
| 138 | /** |
||
| 139 | * NOTIFY means that Doctrine relies on the entities sending out notifications |
||
| 140 | * when their properties change. Such entity classes must implement |
||
| 141 | * the <tt>NotifyPropertyChanged</tt> interface. |
||
| 142 | */ |
||
| 143 | const CHANGETRACKING_NOTIFY = 3; |
||
| 144 | |||
| 145 | /** |
||
| 146 | * Specifies that an association is to be fetched when it is first accessed. |
||
| 147 | */ |
||
| 148 | const FETCH_LAZY = 2; |
||
| 149 | |||
| 150 | /** |
||
| 151 | * Specifies that an association is to be fetched when the owner of the |
||
| 152 | * association is fetched. |
||
| 153 | */ |
||
| 154 | const FETCH_EAGER = 3; |
||
| 155 | |||
| 156 | /** |
||
| 157 | * Specifies that an association is to be fetched lazy (on first access) and that |
||
| 158 | * commands such as Collection#count, Collection#slice are issued directly against |
||
| 159 | * the database if the collection is not yet initialized. |
||
| 160 | */ |
||
| 161 | const FETCH_EXTRA_LAZY = 4; |
||
| 162 | |||
| 163 | /** |
||
| 164 | * Identifies a one-to-one association. |
||
| 165 | */ |
||
| 166 | const ONE_TO_ONE = 1; |
||
| 167 | |||
| 168 | /** |
||
| 169 | * Identifies a many-to-one association. |
||
| 170 | */ |
||
| 171 | const MANY_TO_ONE = 2; |
||
| 172 | |||
| 173 | /** |
||
| 174 | * Identifies a one-to-many association. |
||
| 175 | */ |
||
| 176 | const ONE_TO_MANY = 4; |
||
| 177 | |||
| 178 | /** |
||
| 179 | * Identifies a many-to-many association. |
||
| 180 | */ |
||
| 181 | const MANY_TO_MANY = 8; |
||
| 182 | |||
| 183 | /** |
||
| 184 | * Combined bitmask for to-one (single-valued) associations. |
||
| 185 | */ |
||
| 186 | const TO_ONE = 3; |
||
| 187 | |||
| 188 | /** |
||
| 189 | * Combined bitmask for to-many (collection-valued) associations. |
||
| 190 | */ |
||
| 191 | const TO_MANY = 12; |
||
| 192 | |||
| 193 | /** |
||
| 194 | * ReadOnly cache can do reads, inserts and deletes, cannot perform updates or employ any locks, |
||
| 195 | */ |
||
| 196 | const CACHE_USAGE_READ_ONLY = 1; |
||
| 197 | |||
| 198 | /** |
||
| 199 | * Nonstrict Read Write Cache doesn’t employ any locks but can do inserts, update and deletes. |
||
| 200 | */ |
||
| 201 | const CACHE_USAGE_NONSTRICT_READ_WRITE = 2; |
||
| 202 | |||
| 203 | /** |
||
| 204 | * Read Write Attempts to lock the entity before update/delete. |
||
| 205 | */ |
||
| 206 | const CACHE_USAGE_READ_WRITE = 3; |
||
| 207 | |||
| 208 | /** |
||
| 209 | * READ-ONLY: The name of the entity class. |
||
| 210 | * |
||
| 211 | * @var string |
||
| 212 | */ |
||
| 213 | public $name; |
||
| 214 | |||
| 215 | /** |
||
| 216 | * READ-ONLY: The namespace the entity class is contained in. |
||
| 217 | * |
||
| 218 | * @var string |
||
| 219 | * |
||
| 220 | * @todo Not really needed. Usage could be localized. |
||
| 221 | */ |
||
| 222 | public $namespace; |
||
| 223 | |||
| 224 | /** |
||
| 225 | * READ-ONLY: The name of the entity class that is at the root of the mapped entity inheritance |
||
| 226 | * hierarchy. If the entity is not part of a mapped inheritance hierarchy this is the same |
||
| 227 | * as {@link $name}. |
||
| 228 | * |
||
| 229 | * @var string |
||
| 230 | */ |
||
| 231 | public $rootEntityName; |
||
| 232 | |||
| 233 | /** |
||
| 234 | * READ-ONLY: The definition of custom generator. Only used for CUSTOM |
||
| 235 | * generator type |
||
| 236 | * |
||
| 237 | * The definition has the following structure: |
||
| 238 | * <code> |
||
| 239 | * array( |
||
| 240 | * 'class' => 'ClassName', |
||
| 241 | * ) |
||
| 242 | * </code> |
||
| 243 | * |
||
| 244 | * @todo Merge with tableGeneratorDefinition into generic generatorDefinition |
||
| 245 | * |
||
| 246 | * @var array<string, string>|null |
||
| 247 | */ |
||
| 248 | public $customGeneratorDefinition; |
||
| 249 | |||
| 250 | /** |
||
| 251 | * The name of the custom repository class used for the entity class. |
||
| 252 | * (Optional). |
||
| 253 | * |
||
| 254 | * @var string |
||
| 255 | */ |
||
| 256 | public $customRepositoryClassName; |
||
| 257 | |||
| 258 | /** |
||
| 259 | * READ-ONLY: Whether this class describes the mapping of a mapped superclass. |
||
| 260 | * |
||
| 261 | * @var boolean |
||
| 262 | */ |
||
| 263 | public $isMappedSuperclass = false; |
||
| 264 | |||
| 265 | /** |
||
| 266 | * READ-ONLY: Whether this class describes the mapping of an embeddable class. |
||
| 267 | * |
||
| 268 | * @var boolean |
||
| 269 | */ |
||
| 270 | public $isEmbeddedClass = false; |
||
| 271 | |||
| 272 | /** |
||
| 273 | * READ-ONLY: The names of the parent classes (ancestors). |
||
| 274 | * |
||
| 275 | * @var array |
||
| 276 | */ |
||
| 277 | public $parentClasses = []; |
||
| 278 | |||
| 279 | /** |
||
| 280 | * READ-ONLY: The names of all subclasses (descendants). |
||
| 281 | * |
||
| 282 | * @var array |
||
| 283 | */ |
||
| 284 | public $subClasses = []; |
||
| 285 | |||
| 286 | /** |
||
| 287 | * READ-ONLY: The names of all embedded classes based on properties. |
||
| 288 | * |
||
| 289 | * @var array |
||
| 290 | */ |
||
| 291 | public $embeddedClasses = []; |
||
| 292 | |||
| 293 | /** |
||
| 294 | * READ-ONLY: The named queries allowed to be called directly from Repository. |
||
| 295 | * |
||
| 296 | * @var array |
||
| 297 | */ |
||
| 298 | public $namedQueries = []; |
||
| 299 | |||
| 300 | /** |
||
| 301 | * READ-ONLY: The named native queries allowed to be called directly from Repository. |
||
| 302 | * |
||
| 303 | * A native SQL named query definition has the following structure: |
||
| 304 | * <pre> |
||
| 305 | * array( |
||
| 306 | * 'name' => <query name>, |
||
| 307 | * 'query' => <sql query>, |
||
| 308 | * 'resultClass' => <class of the result>, |
||
| 309 | * 'resultSetMapping' => <name of a SqlResultSetMapping> |
||
| 310 | * ) |
||
| 311 | * </pre> |
||
| 312 | * |
||
| 313 | * @var array |
||
| 314 | */ |
||
| 315 | public $namedNativeQueries = []; |
||
| 316 | |||
| 317 | /** |
||
| 318 | * READ-ONLY: The mappings of the results of native SQL queries. |
||
| 319 | * |
||
| 320 | * A native result mapping definition has the following structure: |
||
| 321 | * <pre> |
||
| 322 | * array( |
||
| 323 | * 'name' => <result name>, |
||
| 324 | * 'entities' => array(<entity result mapping>), |
||
| 325 | * 'columns' => array(<column result mapping>) |
||
| 326 | * ) |
||
| 327 | * </pre> |
||
| 328 | * |
||
| 329 | * @var array |
||
| 330 | */ |
||
| 331 | public $sqlResultSetMappings = []; |
||
| 332 | |||
| 333 | /** |
||
| 334 | * READ-ONLY: The field names of all fields that are part of the identifier/primary key |
||
| 335 | * of the mapped entity class. |
||
| 336 | * |
||
| 337 | * @var array |
||
| 338 | */ |
||
| 339 | public $identifier = []; |
||
| 340 | |||
| 341 | /** |
||
| 342 | * READ-ONLY: The inheritance mapping type used by the class. |
||
| 343 | * |
||
| 344 | * @var integer |
||
| 345 | */ |
||
| 346 | public $inheritanceType = self::INHERITANCE_TYPE_NONE; |
||
| 347 | |||
| 348 | /** |
||
| 349 | * READ-ONLY: The Id generator type used by the class. |
||
| 350 | * |
||
| 351 | * @var int |
||
| 352 | */ |
||
| 353 | public $generatorType = self::GENERATOR_TYPE_NONE; |
||
| 354 | |||
| 355 | /** |
||
| 356 | * READ-ONLY: The field mappings of the class. |
||
| 357 | * Keys are field names and values are mapping definitions. |
||
| 358 | * |
||
| 359 | * The mapping definition array has the following values: |
||
| 360 | * |
||
| 361 | * - <b>fieldName</b> (string) |
||
| 362 | * The name of the field in the Entity. |
||
| 363 | * |
||
| 364 | * - <b>type</b> (string) |
||
| 365 | * The type name of the mapped field. Can be one of Doctrine's mapping types |
||
| 366 | * or a custom mapping type. |
||
| 367 | * |
||
| 368 | * - <b>columnName</b> (string, optional) |
||
| 369 | * The column name. Optional. Defaults to the field name. |
||
| 370 | * |
||
| 371 | * - <b>length</b> (integer, optional) |
||
| 372 | * The database length of the column. Optional. Default value taken from |
||
| 373 | * the type. |
||
| 374 | * |
||
| 375 | * - <b>id</b> (boolean, optional) |
||
| 376 | * Marks the field as the primary key of the entity. Multiple fields of an |
||
| 377 | * entity can have the id attribute, forming a composite key. |
||
| 378 | * |
||
| 379 | * - <b>nullable</b> (boolean, optional) |
||
| 380 | * Whether the column is nullable. Defaults to FALSE. |
||
| 381 | * |
||
| 382 | * - <b>columnDefinition</b> (string, optional, schema-only) |
||
| 383 | * The SQL fragment that is used when generating the DDL for the column. |
||
| 384 | * |
||
| 385 | * - <b>precision</b> (integer, optional, schema-only) |
||
| 386 | * The precision of a decimal column. Only valid if the column type is decimal. |
||
| 387 | * |
||
| 388 | * - <b>scale</b> (integer, optional, schema-only) |
||
| 389 | * The scale of a decimal column. Only valid if the column type is decimal. |
||
| 390 | * |
||
| 391 | * - <b>'unique'</b> (string, optional, schema-only) |
||
| 392 | * Whether a unique constraint should be generated for the column. |
||
| 393 | * |
||
| 394 | * @var array |
||
| 395 | */ |
||
| 396 | public $fieldMappings = []; |
||
| 397 | |||
| 398 | /** |
||
| 399 | * READ-ONLY: An array of field names. Used to look up field names from column names. |
||
| 400 | * Keys are column names and values are field names. |
||
| 401 | * |
||
| 402 | * @var array |
||
| 403 | */ |
||
| 404 | public $fieldNames = []; |
||
| 405 | |||
| 406 | /** |
||
| 407 | * READ-ONLY: A map of field names to column names. Keys are field names and values column names. |
||
| 408 | * Used to look up column names from field names. |
||
| 409 | * This is the reverse lookup map of $_fieldNames. |
||
| 410 | * |
||
| 411 | * @var array |
||
| 412 | * |
||
| 413 | * @deprecated 3.0 Remove this. |
||
| 414 | */ |
||
| 415 | public $columnNames = []; |
||
| 416 | |||
| 417 | /** |
||
| 418 | * READ-ONLY: The discriminator value of this class. |
||
| 419 | * |
||
| 420 | * <b>This does only apply to the JOINED and SINGLE_TABLE inheritance mapping strategies |
||
| 421 | * where a discriminator column is used.</b> |
||
| 422 | * |
||
| 423 | * @var mixed |
||
| 424 | * |
||
| 425 | * @see discriminatorColumn |
||
| 426 | */ |
||
| 427 | public $discriminatorValue; |
||
| 428 | |||
| 429 | /** |
||
| 430 | * READ-ONLY: The discriminator map of all mapped classes in the hierarchy. |
||
| 431 | * |
||
| 432 | * <b>This does only apply to the JOINED and SINGLE_TABLE inheritance mapping strategies |
||
| 433 | * where a discriminator column is used.</b> |
||
| 434 | * |
||
| 435 | * @var mixed |
||
| 436 | * |
||
| 437 | * @see discriminatorColumn |
||
| 438 | */ |
||
| 439 | public $discriminatorMap = []; |
||
| 440 | |||
| 441 | /** |
||
| 442 | * READ-ONLY: The definition of the discriminator column used in JOINED and SINGLE_TABLE |
||
| 443 | * inheritance mappings. |
||
| 444 | * |
||
| 445 | * @var array |
||
| 446 | */ |
||
| 447 | public $discriminatorColumn; |
||
| 448 | |||
| 449 | /** |
||
| 450 | * READ-ONLY: The primary table definition. The definition is an array with the |
||
| 451 | * following entries: |
||
| 452 | * |
||
| 453 | * name => <tableName> |
||
| 454 | * schema => <schemaName> |
||
| 455 | * indexes => array |
||
| 456 | * uniqueConstraints => array |
||
| 457 | * |
||
| 458 | * @var array |
||
| 459 | */ |
||
| 460 | public $table; |
||
| 461 | |||
| 462 | /** |
||
| 463 | * READ-ONLY: The registered lifecycle callbacks for entities of this class. |
||
| 464 | * |
||
| 465 | * @var array[] |
||
| 466 | */ |
||
| 467 | public $lifecycleCallbacks = []; |
||
| 468 | |||
| 469 | /** |
||
| 470 | * READ-ONLY: The registered entity listeners. |
||
| 471 | * |
||
| 472 | * @var array |
||
| 473 | */ |
||
| 474 | public $entityListeners = []; |
||
| 475 | |||
| 476 | /** |
||
| 477 | * READ-ONLY: The association mappings of this class. |
||
| 478 | * |
||
| 479 | * The mapping definition array supports the following keys: |
||
| 480 | * |
||
| 481 | * - <b>fieldName</b> (string) |
||
| 482 | * The name of the field in the entity the association is mapped to. |
||
| 483 | * |
||
| 484 | * - <b>targetEntity</b> (string) |
||
| 485 | * The class name of the target entity. If it is fully-qualified it is used as is. |
||
| 486 | * If it is a simple, unqualified class name the namespace is assumed to be the same |
||
| 487 | * as the namespace of the source entity. |
||
| 488 | * |
||
| 489 | * - <b>mappedBy</b> (string, required for bidirectional associations) |
||
| 490 | * The name of the field that completes the bidirectional association on the owning side. |
||
| 491 | * This key must be specified on the inverse side of a bidirectional association. |
||
| 492 | * |
||
| 493 | * - <b>inversedBy</b> (string, required for bidirectional associations) |
||
| 494 | * The name of the field that completes the bidirectional association on the inverse side. |
||
| 495 | * This key must be specified on the owning side of a bidirectional association. |
||
| 496 | * |
||
| 497 | * - <b>cascade</b> (array, optional) |
||
| 498 | * The names of persistence operations to cascade on the association. The set of possible |
||
| 499 | * values are: "persist", "remove", "detach", "merge", "refresh", "all" (implies all others). |
||
| 500 | * |
||
| 501 | * - <b>orderBy</b> (array, one-to-many/many-to-many only) |
||
| 502 | * A map of field names (of the target entity) to sorting directions (ASC/DESC). |
||
| 503 | * Example: array('priority' => 'desc') |
||
| 504 | * |
||
| 505 | * - <b>fetch</b> (integer, optional) |
||
| 506 | * The fetching strategy to use for the association, usually defaults to FETCH_LAZY. |
||
| 507 | * Possible values are: ClassMetadata::FETCH_EAGER, ClassMetadata::FETCH_LAZY. |
||
| 508 | * |
||
| 509 | * - <b>joinTable</b> (array, optional, many-to-many only) |
||
| 510 | * Specification of the join table and its join columns (foreign keys). |
||
| 511 | * Only valid for many-to-many mappings. Note that one-to-many associations can be mapped |
||
| 512 | * through a join table by simply mapping the association as many-to-many with a unique |
||
| 513 | * constraint on the join table. |
||
| 514 | * |
||
| 515 | * - <b>indexBy</b> (string, optional, to-many only) |
||
| 516 | * Specification of a field on target-entity that is used to index the collection by. |
||
| 517 | * This field HAS to be either the primary key or a unique column. Otherwise the collection |
||
| 518 | * does not contain all the entities that are actually related. |
||
| 519 | * |
||
| 520 | * A join table definition has the following structure: |
||
| 521 | * <pre> |
||
| 522 | * array( |
||
| 523 | * 'name' => <join table name>, |
||
| 524 | * 'joinColumns' => array(<join column mapping from join table to source table>), |
||
| 525 | * 'inverseJoinColumns' => array(<join column mapping from join table to target table>) |
||
| 526 | * ) |
||
| 527 | * </pre> |
||
| 528 | * |
||
| 529 | * @var array |
||
| 530 | */ |
||
| 531 | public $associationMappings = []; |
||
| 532 | |||
| 533 | /** |
||
| 534 | * READ-ONLY: Flag indicating whether the identifier/primary key of the class is composite. |
||
| 535 | * |
||
| 536 | * @var boolean |
||
| 537 | */ |
||
| 538 | public $isIdentifierComposite = false; |
||
| 539 | |||
| 540 | /** |
||
| 541 | * READ-ONLY: Flag indicating whether the identifier/primary key contains at least one foreign key association. |
||
| 542 | * |
||
| 543 | * This flag is necessary because some code blocks require special treatment of this cases. |
||
| 544 | * |
||
| 545 | * @var boolean |
||
| 546 | */ |
||
| 547 | public $containsForeignIdentifier = false; |
||
| 548 | |||
| 549 | /** |
||
| 550 | * READ-ONLY: The ID generator used for generating IDs for this class. |
||
| 551 | * |
||
| 552 | * @var \Doctrine\ORM\Id\AbstractIdGenerator |
||
| 553 | * |
||
| 554 | * @todo Remove! |
||
| 555 | */ |
||
| 556 | public $idGenerator; |
||
| 557 | |||
| 558 | /** |
||
| 559 | * READ-ONLY: The definition of the sequence generator of this class. Only used for the |
||
| 560 | * SEQUENCE generation strategy. |
||
| 561 | * |
||
| 562 | * The definition has the following structure: |
||
| 563 | * <code> |
||
| 564 | * array( |
||
| 565 | * 'sequenceName' => 'name', |
||
| 566 | * 'allocationSize' => 20, |
||
| 567 | * 'initialValue' => 1 |
||
| 568 | * ) |
||
| 569 | * </code> |
||
| 570 | * |
||
| 571 | * @var array |
||
| 572 | * |
||
| 573 | * @todo Merge with tableGeneratorDefinition into generic generatorDefinition |
||
| 574 | */ |
||
| 575 | public $sequenceGeneratorDefinition; |
||
| 576 | |||
| 577 | /** |
||
| 578 | * READ-ONLY: The definition of the table generator of this class. Only used for the |
||
| 579 | * TABLE generation strategy. |
||
| 580 | * |
||
| 581 | * @var array |
||
| 582 | * |
||
| 583 | * @todo Merge with tableGeneratorDefinition into generic generatorDefinition |
||
| 584 | */ |
||
| 585 | public $tableGeneratorDefinition; |
||
| 586 | |||
| 587 | /** |
||
| 588 | * READ-ONLY: The policy used for change-tracking on entities of this class. |
||
| 589 | * |
||
| 590 | * @var integer |
||
| 591 | */ |
||
| 592 | public $changeTrackingPolicy = self::CHANGETRACKING_DEFERRED_IMPLICIT; |
||
| 593 | |||
| 594 | /** |
||
| 595 | * READ-ONLY: A flag for whether or not instances of this class are to be versioned |
||
| 596 | * with optimistic locking. |
||
| 597 | * |
||
| 598 | * @var boolean |
||
| 599 | */ |
||
| 600 | public $isVersioned; |
||
| 601 | |||
| 602 | /** |
||
| 603 | * READ-ONLY: The name of the field which is used for versioning in optimistic locking (if any). |
||
| 604 | * |
||
| 605 | * @var mixed |
||
| 606 | */ |
||
| 607 | public $versionField; |
||
| 608 | |||
| 609 | /** |
||
| 610 | * @var array |
||
| 611 | */ |
||
| 612 | public $cache = null; |
||
| 613 | |||
| 614 | /** |
||
| 615 | * The ReflectionClass instance of the mapped class. |
||
| 616 | * |
||
| 617 | * @var ReflectionClass |
||
| 618 | */ |
||
| 619 | public $reflClass; |
||
| 620 | |||
| 621 | /** |
||
| 622 | * Is this entity marked as "read-only"? |
||
| 623 | * |
||
| 624 | * That means it is never considered for change-tracking in the UnitOfWork. It is a very helpful performance |
||
| 625 | * optimization for entities that are immutable, either in your domain or through the relation database |
||
| 626 | * (coming from a view, or a history table for example). |
||
| 627 | * |
||
| 628 | * @var bool |
||
| 629 | */ |
||
| 630 | public $isReadOnly = false; |
||
| 631 | |||
| 632 | /** |
||
| 633 | * NamingStrategy determining the default column and table names. |
||
| 634 | * |
||
| 635 | * @var \Doctrine\ORM\Mapping\NamingStrategy |
||
| 636 | */ |
||
| 637 | protected $namingStrategy; |
||
| 638 | |||
| 639 | /** |
||
| 640 | * The ReflectionProperty instances of the mapped class. |
||
| 641 | * |
||
| 642 | * @var \ReflectionProperty[] |
||
| 643 | */ |
||
| 644 | public $reflFields = []; |
||
| 645 | |||
| 646 | /** |
||
| 647 | * @var \Doctrine\Instantiator\InstantiatorInterface|null |
||
| 648 | */ |
||
| 649 | private $instantiator; |
||
| 650 | |||
| 651 | /** |
||
| 652 | * Initializes a new ClassMetadata instance that will hold the object-relational mapping |
||
| 653 | * metadata of the class with the given name. |
||
| 654 | * |
||
| 655 | * @param string $entityName The name of the entity class the new instance is used for. |
||
| 656 | * @param NamingStrategy|null $namingStrategy |
||
| 657 | */ |
||
| 658 | public function __construct($entityName, NamingStrategy $namingStrategy = null) |
||
| 659 | { |
||
| 660 | $this->name = $entityName; |
||
| 661 | $this->rootEntityName = $entityName; |
||
| 662 | $this->namingStrategy = $namingStrategy ?: new DefaultNamingStrategy(); |
||
| 663 | $this->instantiator = new Instantiator(); |
||
| 664 | } |
||
| 665 | |||
| 666 | /** |
||
| 667 | * Gets the ReflectionProperties of the mapped class. |
||
| 668 | * |
||
| 669 | * @return array An array of ReflectionProperty instances. |
||
| 670 | */ |
||
| 671 | public function getReflectionProperties() |
||
| 672 | { |
||
| 673 | return $this->reflFields; |
||
| 674 | } |
||
| 675 | |||
| 676 | /** |
||
| 677 | * Gets a ReflectionProperty for a specific field of the mapped class. |
||
| 678 | * |
||
| 679 | * @param string $name |
||
| 680 | * |
||
| 681 | * @return \ReflectionProperty |
||
| 682 | */ |
||
| 683 | public function getReflectionProperty($name) |
||
| 684 | { |
||
| 685 | return $this->reflFields[$name]; |
||
| 686 | } |
||
| 687 | |||
| 688 | /** |
||
| 689 | * Gets the ReflectionProperty for the single identifier field. |
||
| 690 | * |
||
| 691 | * @return \ReflectionProperty |
||
| 692 | * |
||
| 693 | * @throws BadMethodCallException If the class has a composite identifier. |
||
| 694 | */ |
||
| 695 | public function getSingleIdReflectionProperty() |
||
| 696 | { |
||
| 697 | if ($this->isIdentifierComposite) { |
||
| 698 | throw new BadMethodCallException("Class " . $this->name . " has a composite identifier."); |
||
| 699 | } |
||
| 700 | |||
| 701 | return $this->reflFields[$this->identifier[0]]; |
||
| 702 | } |
||
| 703 | |||
| 704 | /** |
||
| 705 | * Extracts the identifier values of an entity of this class. |
||
| 706 | * |
||
| 707 | * For composite identifiers, the identifier values are returned as an array |
||
| 708 | * with the same order as the field order in {@link identifier}. |
||
| 709 | * |
||
| 710 | * @param object $entity |
||
| 711 | * |
||
| 712 | * @return array |
||
| 713 | */ |
||
| 714 | public function getIdentifierValues($entity) |
||
| 715 | { |
||
| 716 | if ($this->isIdentifierComposite) { |
||
| 717 | $id = []; |
||
| 718 | |||
| 719 | foreach ($this->identifier as $idField) { |
||
| 720 | $value = $this->reflFields[$idField]->getValue($entity); |
||
| 721 | |||
| 722 | if (null !== $value) { |
||
| 723 | $id[$idField] = $value; |
||
| 724 | } |
||
| 725 | } |
||
| 726 | |||
| 727 | return $id; |
||
| 728 | } |
||
| 729 | |||
| 730 | $id = $this->identifier[0]; |
||
| 731 | $value = $this->reflFields[$id]->getValue($entity); |
||
| 732 | |||
| 733 | if (null === $value) { |
||
| 734 | return []; |
||
| 735 | } |
||
| 736 | |||
| 737 | return [$id => $value]; |
||
| 738 | } |
||
| 739 | |||
| 740 | /** |
||
| 741 | * Populates the entity identifier of an entity. |
||
| 742 | * |
||
| 743 | * @param object $entity |
||
| 744 | * @param array $id |
||
| 745 | * |
||
| 746 | * @return void |
||
| 747 | * |
||
| 748 | * @todo Rename to assignIdentifier() |
||
| 749 | */ |
||
| 750 | public function setIdentifierValues($entity, array $id) |
||
| 751 | { |
||
| 752 | foreach ($id as $idField => $idValue) { |
||
| 753 | $this->reflFields[$idField]->setValue($entity, $idValue); |
||
| 754 | } |
||
| 755 | } |
||
| 756 | |||
| 757 | /** |
||
| 758 | * Sets the specified field to the specified value on the given entity. |
||
| 759 | * |
||
| 760 | * @param object $entity |
||
| 761 | * @param string $field |
||
| 762 | * @param mixed $value |
||
| 763 | * |
||
| 764 | * @return void |
||
| 765 | */ |
||
| 766 | public function setFieldValue($entity, $field, $value) |
||
| 767 | { |
||
| 768 | $this->reflFields[$field]->setValue($entity, $value); |
||
| 769 | } |
||
| 770 | |||
| 771 | /** |
||
| 772 | * Gets the specified field's value off the given entity. |
||
| 773 | * |
||
| 774 | * @param object $entity |
||
| 775 | * @param string $field |
||
| 776 | * |
||
| 777 | * @return mixed |
||
| 778 | */ |
||
| 779 | public function getFieldValue($entity, $field) |
||
| 780 | { |
||
| 781 | return $this->reflFields[$field]->getValue($entity); |
||
| 782 | } |
||
| 783 | |||
| 784 | /** |
||
| 785 | * Creates a string representation of this instance. |
||
| 786 | * |
||
| 787 | * @return string The string representation of this instance. |
||
| 788 | * |
||
| 789 | * @todo Construct meaningful string representation. |
||
| 790 | */ |
||
| 791 | public function __toString() |
||
| 792 | { |
||
| 793 | return __CLASS__ . '@' . spl_object_hash($this); |
||
| 794 | } |
||
| 795 | |||
| 796 | /** |
||
| 797 | * Determines which fields get serialized. |
||
| 798 | * |
||
| 799 | * It is only serialized what is necessary for best unserialization performance. |
||
| 800 | * That means any metadata properties that are not set or empty or simply have |
||
| 801 | * their default value are NOT serialized. |
||
| 802 | * |
||
| 803 | * Parts that are also NOT serialized because they can not be properly unserialized: |
||
| 804 | * - reflClass (ReflectionClass) |
||
| 805 | * - reflFields (ReflectionProperty array) |
||
| 806 | * |
||
| 807 | * @return array The names of all the fields that should be serialized. |
||
| 808 | */ |
||
| 809 | public function __sleep() |
||
| 810 | { |
||
| 811 | // This metadata is always serialized/cached. |
||
| 812 | $serialized = [ |
||
| 813 | 'associationMappings', |
||
| 814 | 'columnNames', //TODO: 3.0 Remove this. Can use fieldMappings[$fieldName]['columnName'] |
||
| 815 | 'fieldMappings', |
||
| 816 | 'fieldNames', |
||
| 817 | 'embeddedClasses', |
||
| 818 | 'identifier', |
||
| 819 | 'isIdentifierComposite', // TODO: REMOVE |
||
| 820 | 'name', |
||
| 821 | 'namespace', // TODO: REMOVE |
||
| 822 | 'table', |
||
| 823 | 'rootEntityName', |
||
| 824 | 'idGenerator', //TODO: Does not really need to be serialized. Could be moved to runtime. |
||
| 825 | ]; |
||
| 826 | |||
| 827 | // The rest of the metadata is only serialized if necessary. |
||
| 828 | if ($this->changeTrackingPolicy != self::CHANGETRACKING_DEFERRED_IMPLICIT) { |
||
| 829 | $serialized[] = 'changeTrackingPolicy'; |
||
| 830 | } |
||
| 831 | |||
| 832 | if ($this->customRepositoryClassName) { |
||
| 833 | $serialized[] = 'customRepositoryClassName'; |
||
| 834 | } |
||
| 835 | |||
| 836 | if ($this->inheritanceType != self::INHERITANCE_TYPE_NONE) { |
||
| 837 | $serialized[] = 'inheritanceType'; |
||
| 838 | $serialized[] = 'discriminatorColumn'; |
||
| 839 | $serialized[] = 'discriminatorValue'; |
||
| 840 | $serialized[] = 'discriminatorMap'; |
||
| 841 | $serialized[] = 'parentClasses'; |
||
| 842 | $serialized[] = 'subClasses'; |
||
| 843 | } |
||
| 844 | |||
| 845 | if ($this->generatorType != self::GENERATOR_TYPE_NONE) { |
||
| 846 | $serialized[] = 'generatorType'; |
||
| 847 | if ($this->generatorType == self::GENERATOR_TYPE_SEQUENCE) { |
||
| 848 | $serialized[] = 'sequenceGeneratorDefinition'; |
||
| 849 | } |
||
| 850 | } |
||
| 851 | |||
| 852 | if ($this->isMappedSuperclass) { |
||
| 853 | $serialized[] = 'isMappedSuperclass'; |
||
| 854 | } |
||
| 855 | |||
| 856 | if ($this->isEmbeddedClass) { |
||
| 857 | $serialized[] = 'isEmbeddedClass'; |
||
| 858 | } |
||
| 859 | |||
| 860 | if ($this->containsForeignIdentifier) { |
||
| 861 | $serialized[] = 'containsForeignIdentifier'; |
||
| 862 | } |
||
| 863 | |||
| 864 | if ($this->isVersioned) { |
||
| 865 | $serialized[] = 'isVersioned'; |
||
| 866 | $serialized[] = 'versionField'; |
||
| 867 | } |
||
| 868 | |||
| 869 | if ($this->lifecycleCallbacks) { |
||
| 870 | $serialized[] = 'lifecycleCallbacks'; |
||
| 871 | } |
||
| 872 | |||
| 873 | if ($this->entityListeners) { |
||
| 874 | $serialized[] = 'entityListeners'; |
||
| 875 | } |
||
| 876 | |||
| 877 | if ($this->namedQueries) { |
||
| 878 | $serialized[] = 'namedQueries'; |
||
| 879 | } |
||
| 880 | |||
| 881 | if ($this->namedNativeQueries) { |
||
| 882 | $serialized[] = 'namedNativeQueries'; |
||
| 883 | } |
||
| 884 | |||
| 885 | if ($this->sqlResultSetMappings) { |
||
| 886 | $serialized[] = 'sqlResultSetMappings'; |
||
| 887 | } |
||
| 888 | |||
| 889 | if ($this->isReadOnly) { |
||
| 890 | $serialized[] = 'isReadOnly'; |
||
| 891 | } |
||
| 892 | |||
| 893 | if ($this->customGeneratorDefinition) { |
||
| 894 | $serialized[] = "customGeneratorDefinition"; |
||
| 895 | } |
||
| 896 | |||
| 897 | if ($this->cache) { |
||
| 898 | $serialized[] = 'cache'; |
||
| 899 | } |
||
| 900 | |||
| 901 | return $serialized; |
||
| 902 | } |
||
| 903 | |||
| 904 | /** |
||
| 905 | * Creates a new instance of the mapped class, without invoking the constructor. |
||
| 906 | * |
||
| 907 | * @return object |
||
| 908 | */ |
||
| 909 | public function newInstance() |
||
| 910 | { |
||
| 911 | return $this->instantiator->instantiate($this->name); |
||
| 912 | } |
||
| 913 | |||
| 914 | /** |
||
| 915 | * Restores some state that can not be serialized/unserialized. |
||
| 916 | * |
||
| 917 | * @param \Doctrine\Common\Persistence\Mapping\ReflectionService $reflService |
||
| 918 | * |
||
| 919 | * @return void |
||
| 920 | */ |
||
| 921 | public function wakeupReflection($reflService) |
||
| 922 | { |
||
| 923 | // Restore ReflectionClass and properties |
||
| 924 | $this->reflClass = $reflService->getClass($this->name); |
||
| 925 | $this->instantiator = $this->instantiator ?: new Instantiator(); |
||
| 926 | |||
| 927 | $parentReflFields = []; |
||
| 928 | |||
| 929 | foreach ($this->embeddedClasses as $property => $embeddedClass) { |
||
| 930 | if (isset($embeddedClass['declaredField'])) { |
||
| 931 | $parentReflFields[$property] = new ReflectionEmbeddedProperty( |
||
| 932 | $parentReflFields[$embeddedClass['declaredField']], |
||
| 933 | $reflService->getAccessibleProperty( |
||
| 934 | $this->embeddedClasses[$embeddedClass['declaredField']]['class'], |
||
| 935 | $embeddedClass['originalField'] |
||
| 936 | ), |
||
| 937 | $this->embeddedClasses[$embeddedClass['declaredField']]['class'] |
||
| 938 | ); |
||
| 939 | |||
| 940 | continue; |
||
| 941 | } |
||
| 942 | |||
| 943 | $fieldRefl = $reflService->getAccessibleProperty( |
||
| 944 | $embeddedClass['declared'] ?? $this->name, |
||
| 945 | $property |
||
| 946 | ); |
||
| 947 | |||
| 948 | $parentReflFields[$property] = $fieldRefl; |
||
| 949 | $this->reflFields[$property] = $fieldRefl; |
||
| 950 | } |
||
| 951 | |||
| 952 | foreach ($this->fieldMappings as $field => $mapping) { |
||
| 953 | if (isset($mapping['declaredField']) && isset($parentReflFields[$mapping['declaredField']])) { |
||
| 954 | $this->reflFields[$field] = new ReflectionEmbeddedProperty( |
||
| 955 | $parentReflFields[$mapping['declaredField']], |
||
| 956 | $reflService->getAccessibleProperty($mapping['originalClass'], $mapping['originalField']), |
||
| 957 | $mapping['originalClass'] |
||
| 958 | ); |
||
| 959 | continue; |
||
| 960 | } |
||
| 961 | |||
| 962 | $this->reflFields[$field] = isset($mapping['declared']) |
||
| 963 | ? $reflService->getAccessibleProperty($mapping['declared'], $field) |
||
| 964 | : $reflService->getAccessibleProperty($this->name, $field); |
||
| 965 | } |
||
| 966 | |||
| 967 | foreach ($this->associationMappings as $field => $mapping) { |
||
| 968 | $this->reflFields[$field] = isset($mapping['declared']) |
||
| 969 | ? $reflService->getAccessibleProperty($mapping['declared'], $field) |
||
| 970 | : $reflService->getAccessibleProperty($this->name, $field); |
||
| 971 | } |
||
| 972 | } |
||
| 973 | |||
| 974 | /** |
||
| 975 | * Initializes a new ClassMetadata instance that will hold the object-relational mapping |
||
| 976 | * metadata of the class with the given name. |
||
| 977 | * |
||
| 978 | * @param \Doctrine\Common\Persistence\Mapping\ReflectionService $reflService The reflection service. |
||
| 979 | * |
||
| 980 | * @return void |
||
| 981 | */ |
||
| 982 | public function initializeReflection($reflService) |
||
| 983 | { |
||
| 984 | $this->reflClass = $reflService->getClass($this->name); |
||
| 985 | $this->namespace = $reflService->getClassNamespace($this->name); |
||
| 986 | |||
| 987 | if ($this->reflClass) { |
||
| 988 | $this->name = $this->rootEntityName = $this->reflClass->getName(); |
||
| 989 | } |
||
| 990 | |||
| 991 | $this->table['name'] = $this->namingStrategy->classToTableName($this->name); |
||
| 992 | } |
||
| 993 | |||
| 994 | /** |
||
| 995 | * Validates Identifier. |
||
| 996 | * |
||
| 997 | * @return void |
||
| 998 | * |
||
| 999 | * @throws MappingException |
||
| 1000 | */ |
||
| 1001 | public function validateIdentifier() |
||
| 1002 | { |
||
| 1003 | if ($this->isMappedSuperclass || $this->isEmbeddedClass) { |
||
| 1004 | return; |
||
| 1005 | } |
||
| 1006 | |||
| 1007 | // Verify & complete identifier mapping |
||
| 1008 | if ( ! $this->identifier) { |
||
| 1009 | throw MappingException::identifierRequired($this->name); |
||
| 1010 | } |
||
| 1011 | |||
| 1012 | if ($this->usesIdGenerator() && $this->isIdentifierComposite) { |
||
| 1013 | throw MappingException::compositeKeyAssignedIdGeneratorRequired($this->name); |
||
| 1014 | } |
||
| 1015 | } |
||
| 1016 | |||
| 1017 | /** |
||
| 1018 | * Validates association targets actually exist. |
||
| 1019 | * |
||
| 1020 | * @return void |
||
| 1021 | * |
||
| 1022 | * @throws MappingException |
||
| 1023 | */ |
||
| 1024 | public function validateAssociations() |
||
| 1025 | { |
||
| 1026 | foreach ($this->associationMappings as $mapping) { |
||
| 1027 | if ( |
||
| 1028 | ! class_exists($mapping['targetEntity']) |
||
| 1029 | && ! interface_exists($mapping['targetEntity']) |
||
| 1030 | && ! trait_exists($mapping['targetEntity']) |
||
| 1031 | ) { |
||
| 1032 | throw MappingException::invalidTargetEntityClass($mapping['targetEntity'], $this->name, $mapping['fieldName']); |
||
| 1033 | } |
||
| 1034 | } |
||
| 1035 | } |
||
| 1036 | |||
| 1037 | /** |
||
| 1038 | * Validates lifecycle callbacks. |
||
| 1039 | * |
||
| 1040 | * @param \Doctrine\Common\Persistence\Mapping\ReflectionService $reflService |
||
| 1041 | * |
||
| 1042 | * @return void |
||
| 1043 | * |
||
| 1044 | * @throws MappingException |
||
| 1045 | */ |
||
| 1046 | public function validateLifecycleCallbacks($reflService) |
||
| 1047 | { |
||
| 1048 | foreach ($this->lifecycleCallbacks as $callbacks) { |
||
| 1049 | foreach ($callbacks as $callbackFuncName) { |
||
| 1050 | if ( ! $reflService->hasPublicMethod($this->name, $callbackFuncName)) { |
||
| 1051 | throw MappingException::lifecycleCallbackMethodNotFound($this->name, $callbackFuncName); |
||
| 1052 | } |
||
| 1053 | } |
||
| 1054 | } |
||
| 1055 | } |
||
| 1056 | |||
| 1057 | /** |
||
| 1058 | * {@inheritDoc} |
||
| 1059 | */ |
||
| 1060 | public function getReflectionClass() |
||
| 1061 | { |
||
| 1062 | return $this->reflClass; |
||
| 1063 | } |
||
| 1064 | |||
| 1065 | /** |
||
| 1066 | * @param array $cache |
||
| 1067 | * |
||
| 1068 | * @return void |
||
| 1069 | */ |
||
| 1070 | public function enableCache(array $cache) |
||
| 1071 | { |
||
| 1072 | if ( ! isset($cache['usage'])) { |
||
| 1073 | $cache['usage'] = self::CACHE_USAGE_READ_ONLY; |
||
| 1074 | } |
||
| 1075 | |||
| 1076 | if ( ! isset($cache['region'])) { |
||
| 1077 | $cache['region'] = strtolower(str_replace('\\', '_', $this->rootEntityName)); |
||
| 1078 | } |
||
| 1079 | |||
| 1080 | $this->cache = $cache; |
||
| 1081 | } |
||
| 1082 | |||
| 1083 | /** |
||
| 1084 | * @param string $fieldName |
||
| 1085 | * @param array $cache |
||
| 1086 | * |
||
| 1087 | * @return void |
||
| 1088 | */ |
||
| 1089 | public function enableAssociationCache($fieldName, array $cache) |
||
| 1090 | { |
||
| 1091 | $this->associationMappings[$fieldName]['cache'] = $this->getAssociationCacheDefaults($fieldName, $cache); |
||
| 1092 | } |
||
| 1093 | |||
| 1094 | /** |
||
| 1095 | * @param string $fieldName |
||
| 1096 | * @param array $cache |
||
| 1097 | * |
||
| 1098 | * @return array |
||
| 1099 | */ |
||
| 1100 | public function getAssociationCacheDefaults($fieldName, array $cache) |
||
| 1101 | { |
||
| 1102 | if ( ! isset($cache['usage'])) { |
||
| 1103 | $cache['usage'] = isset($this->cache['usage']) |
||
| 1104 | ? $this->cache['usage'] |
||
| 1105 | : self::CACHE_USAGE_READ_ONLY; |
||
| 1106 | } |
||
| 1107 | |||
| 1108 | if ( ! isset($cache['region'])) { |
||
| 1109 | $cache['region'] = strtolower(str_replace('\\', '_', $this->rootEntityName)) . '__' . $fieldName; |
||
| 1110 | } |
||
| 1111 | |||
| 1112 | return $cache; |
||
| 1113 | } |
||
| 1114 | |||
| 1115 | /** |
||
| 1116 | * Sets the change tracking policy used by this class. |
||
| 1117 | * |
||
| 1118 | * @param integer $policy |
||
| 1119 | * |
||
| 1120 | * @return void |
||
| 1121 | */ |
||
| 1122 | public function setChangeTrackingPolicy($policy) |
||
| 1123 | { |
||
| 1124 | $this->changeTrackingPolicy = $policy; |
||
| 1125 | } |
||
| 1126 | |||
| 1127 | /** |
||
| 1128 | * Whether the change tracking policy of this class is "deferred explicit". |
||
| 1129 | * |
||
| 1130 | * @return boolean |
||
| 1131 | */ |
||
| 1132 | public function isChangeTrackingDeferredExplicit() |
||
| 1133 | { |
||
| 1134 | return self::CHANGETRACKING_DEFERRED_EXPLICIT === $this->changeTrackingPolicy; |
||
| 1135 | } |
||
| 1136 | |||
| 1137 | /** |
||
| 1138 | * Whether the change tracking policy of this class is "deferred implicit". |
||
| 1139 | * |
||
| 1140 | * @return boolean |
||
| 1141 | */ |
||
| 1142 | public function isChangeTrackingDeferredImplicit() |
||
| 1143 | { |
||
| 1144 | return self::CHANGETRACKING_DEFERRED_IMPLICIT === $this->changeTrackingPolicy; |
||
| 1145 | } |
||
| 1146 | |||
| 1147 | /** |
||
| 1148 | * Whether the change tracking policy of this class is "notify". |
||
| 1149 | * |
||
| 1150 | * @return boolean |
||
| 1151 | */ |
||
| 1152 | public function isChangeTrackingNotify() |
||
| 1153 | { |
||
| 1154 | return self::CHANGETRACKING_NOTIFY === $this->changeTrackingPolicy; |
||
| 1155 | } |
||
| 1156 | |||
| 1157 | /** |
||
| 1158 | * Checks whether a field is part of the identifier/primary key field(s). |
||
| 1159 | * |
||
| 1160 | * @param string $fieldName The field name. |
||
| 1161 | * |
||
| 1162 | * @return boolean TRUE if the field is part of the table identifier/primary key field(s), |
||
| 1163 | * FALSE otherwise. |
||
| 1164 | */ |
||
| 1165 | public function isIdentifier($fieldName) |
||
| 1166 | { |
||
| 1167 | if ( ! $this->identifier) { |
||
| 1168 | return false; |
||
| 1169 | } |
||
| 1170 | |||
| 1171 | if ( ! $this->isIdentifierComposite) { |
||
| 1172 | return $fieldName === $this->identifier[0]; |
||
| 1173 | } |
||
| 1174 | |||
| 1175 | return in_array($fieldName, $this->identifier, true); |
||
| 1176 | } |
||
| 1177 | |||
| 1178 | /** |
||
| 1179 | * Checks if the field is unique. |
||
| 1180 | * |
||
| 1181 | * @param string $fieldName The field name. |
||
| 1182 | * |
||
| 1183 | * @return boolean TRUE if the field is unique, FALSE otherwise. |
||
| 1184 | */ |
||
| 1185 | public function isUniqueField($fieldName) |
||
| 1186 | { |
||
| 1187 | $mapping = $this->getFieldMapping($fieldName); |
||
| 1188 | |||
| 1189 | return false !== $mapping && isset($mapping['unique']) && $mapping['unique']; |
||
| 1190 | } |
||
| 1191 | |||
| 1192 | /** |
||
| 1193 | * Checks if the field is not null. |
||
| 1194 | * |
||
| 1195 | * @param string $fieldName The field name. |
||
| 1196 | * |
||
| 1197 | * @return boolean TRUE if the field is not null, FALSE otherwise. |
||
| 1198 | */ |
||
| 1199 | public function isNullable($fieldName) |
||
| 1200 | { |
||
| 1201 | $mapping = $this->getFieldMapping($fieldName); |
||
| 1202 | |||
| 1203 | return false !== $mapping && isset($mapping['nullable']) && $mapping['nullable']; |
||
| 1204 | } |
||
| 1205 | |||
| 1206 | /** |
||
| 1207 | * Gets a column name for a field name. |
||
| 1208 | * If the column name for the field cannot be found, the given field name |
||
| 1209 | * is returned. |
||
| 1210 | * |
||
| 1211 | * @param string $fieldName The field name. |
||
| 1212 | * |
||
| 1213 | * @return string The column name. |
||
| 1214 | */ |
||
| 1215 | public function getColumnName($fieldName) |
||
| 1216 | { |
||
| 1217 | return isset($this->columnNames[$fieldName]) |
||
| 1218 | ? $this->columnNames[$fieldName] |
||
| 1219 | : $fieldName; |
||
| 1220 | } |
||
| 1221 | |||
| 1222 | /** |
||
| 1223 | * Gets the mapping of a (regular) field that holds some data but not a |
||
| 1224 | * reference to another object. |
||
| 1225 | * |
||
| 1226 | * @param string $fieldName The field name. |
||
| 1227 | * |
||
| 1228 | * @return array The field mapping. |
||
| 1229 | * |
||
| 1230 | * @throws MappingException |
||
| 1231 | */ |
||
| 1232 | public function getFieldMapping($fieldName) |
||
| 1233 | { |
||
| 1234 | if ( ! isset($this->fieldMappings[$fieldName])) { |
||
| 1235 | throw MappingException::mappingNotFound($this->name, $fieldName); |
||
| 1236 | } |
||
| 1237 | |||
| 1238 | return $this->fieldMappings[$fieldName]; |
||
| 1239 | } |
||
| 1240 | |||
| 1241 | /** |
||
| 1242 | * Gets the mapping of an association. |
||
| 1243 | * |
||
| 1244 | * @see ClassMetadataInfo::$associationMappings |
||
| 1245 | * |
||
| 1246 | * @param string $fieldName The field name that represents the association in |
||
| 1247 | * the object model. |
||
| 1248 | * |
||
| 1249 | * @return array The mapping. |
||
| 1250 | * |
||
| 1251 | * @throws MappingException |
||
| 1252 | */ |
||
| 1253 | public function getAssociationMapping($fieldName) |
||
| 1254 | { |
||
| 1255 | if ( ! isset($this->associationMappings[$fieldName])) { |
||
| 1256 | throw MappingException::mappingNotFound($this->name, $fieldName); |
||
| 1257 | } |
||
| 1258 | |||
| 1259 | return $this->associationMappings[$fieldName]; |
||
| 1260 | } |
||
| 1261 | |||
| 1262 | /** |
||
| 1263 | * Gets all association mappings of the class. |
||
| 1264 | * |
||
| 1265 | * @return array |
||
| 1266 | */ |
||
| 1267 | public function getAssociationMappings() |
||
| 1268 | { |
||
| 1269 | return $this->associationMappings; |
||
| 1270 | } |
||
| 1271 | |||
| 1272 | /** |
||
| 1273 | * Gets the field name for a column name. |
||
| 1274 | * If no field name can be found the column name is returned. |
||
| 1275 | * |
||
| 1276 | * @param string $columnName The column name. |
||
| 1277 | * |
||
| 1278 | * @return string The column alias. |
||
| 1279 | */ |
||
| 1280 | public function getFieldName($columnName) |
||
| 1281 | { |
||
| 1282 | return isset($this->fieldNames[$columnName]) |
||
| 1283 | ? $this->fieldNames[$columnName] |
||
| 1284 | : $columnName; |
||
| 1285 | } |
||
| 1286 | |||
| 1287 | /** |
||
| 1288 | * Gets the named query. |
||
| 1289 | * |
||
| 1290 | * @see ClassMetadataInfo::$namedQueries |
||
| 1291 | * |
||
| 1292 | * @param string $queryName The query name. |
||
| 1293 | * |
||
| 1294 | * @return string |
||
| 1295 | * |
||
| 1296 | * @throws MappingException |
||
| 1297 | */ |
||
| 1298 | public function getNamedQuery($queryName) |
||
| 1299 | { |
||
| 1300 | if ( ! isset($this->namedQueries[$queryName])) { |
||
| 1301 | throw MappingException::queryNotFound($this->name, $queryName); |
||
| 1302 | } |
||
| 1303 | |||
| 1304 | return $this->namedQueries[$queryName]['dql']; |
||
| 1305 | } |
||
| 1306 | |||
| 1307 | /** |
||
| 1308 | * Gets all named queries of the class. |
||
| 1309 | * |
||
| 1310 | * @return array |
||
| 1311 | */ |
||
| 1312 | public function getNamedQueries() |
||
| 1313 | { |
||
| 1314 | return $this->namedQueries; |
||
| 1315 | } |
||
| 1316 | |||
| 1317 | /** |
||
| 1318 | * Gets the named native query. |
||
| 1319 | * |
||
| 1320 | * @see ClassMetadataInfo::$namedNativeQueries |
||
| 1321 | * |
||
| 1322 | * @param string $queryName The query name. |
||
| 1323 | * |
||
| 1324 | * @return array |
||
| 1325 | * |
||
| 1326 | * @throws MappingException |
||
| 1327 | */ |
||
| 1328 | public function getNamedNativeQuery($queryName) |
||
| 1329 | { |
||
| 1330 | if ( ! isset($this->namedNativeQueries[$queryName])) { |
||
| 1331 | throw MappingException::queryNotFound($this->name, $queryName); |
||
| 1332 | } |
||
| 1333 | |||
| 1334 | return $this->namedNativeQueries[$queryName]; |
||
| 1335 | } |
||
| 1336 | |||
| 1337 | /** |
||
| 1338 | * Gets all named native queries of the class. |
||
| 1339 | * |
||
| 1340 | * @return array |
||
| 1341 | */ |
||
| 1342 | public function getNamedNativeQueries() |
||
| 1343 | { |
||
| 1344 | return $this->namedNativeQueries; |
||
| 1345 | } |
||
| 1346 | |||
| 1347 | /** |
||
| 1348 | * Gets the result set mapping. |
||
| 1349 | * |
||
| 1350 | * @see ClassMetadataInfo::$sqlResultSetMappings |
||
| 1351 | * |
||
| 1352 | * @param string $name The result set mapping name. |
||
| 1353 | * |
||
| 1354 | * @return array |
||
| 1355 | * |
||
| 1356 | * @throws MappingException |
||
| 1357 | */ |
||
| 1358 | public function getSqlResultSetMapping($name) |
||
| 1359 | { |
||
| 1360 | if ( ! isset($this->sqlResultSetMappings[$name])) { |
||
| 1361 | throw MappingException::resultMappingNotFound($this->name, $name); |
||
| 1362 | } |
||
| 1363 | |||
| 1364 | return $this->sqlResultSetMappings[$name]; |
||
| 1365 | } |
||
| 1366 | |||
| 1367 | /** |
||
| 1368 | * Gets all sql result set mappings of the class. |
||
| 1369 | * |
||
| 1370 | * @return array |
||
| 1371 | */ |
||
| 1372 | public function getSqlResultSetMappings() |
||
| 1373 | { |
||
| 1374 | return $this->sqlResultSetMappings; |
||
| 1375 | } |
||
| 1376 | |||
| 1377 | /** |
||
| 1378 | * Validates & completes the given field mapping. |
||
| 1379 | * |
||
| 1380 | * @param array $mapping The field mapping to validate & complete. |
||
| 1381 | * |
||
| 1382 | * @return void |
||
| 1383 | * |
||
| 1384 | * @throws MappingException |
||
| 1385 | */ |
||
| 1386 | protected function _validateAndCompleteFieldMapping(array &$mapping) |
||
| 1387 | { |
||
| 1388 | // Check mandatory fields |
||
| 1389 | if ( ! isset($mapping['fieldName']) || !$mapping['fieldName']) { |
||
| 1390 | throw MappingException::missingFieldName($this->name); |
||
| 1391 | } |
||
| 1392 | |||
| 1393 | if ( ! isset($mapping['type'])) { |
||
| 1394 | // Default to string |
||
| 1395 | $mapping['type'] = 'string'; |
||
| 1396 | } |
||
| 1397 | |||
| 1398 | // Complete fieldName and columnName mapping |
||
| 1399 | if ( ! isset($mapping['columnName'])) { |
||
| 1400 | $mapping['columnName'] = $this->namingStrategy->propertyToColumnName($mapping['fieldName'], $this->name); |
||
| 1401 | } |
||
| 1402 | |||
| 1403 | if ('`' === $mapping['columnName'][0]) { |
||
| 1404 | $mapping['columnName'] = trim($mapping['columnName'], '`'); |
||
| 1405 | $mapping['quoted'] = true; |
||
| 1406 | } |
||
| 1407 | |||
| 1408 | $this->columnNames[$mapping['fieldName']] = $mapping['columnName']; |
||
| 1409 | |||
| 1410 | if (isset($this->fieldNames[$mapping['columnName']]) || ($this->discriminatorColumn && $this->discriminatorColumn['name'] === $mapping['columnName'])) { |
||
| 1411 | throw MappingException::duplicateColumnName($this->name, $mapping['columnName']); |
||
| 1412 | } |
||
| 1413 | |||
| 1414 | $this->fieldNames[$mapping['columnName']] = $mapping['fieldName']; |
||
| 1415 | |||
| 1416 | // Complete id mapping |
||
| 1417 | if (isset($mapping['id']) && true === $mapping['id']) { |
||
| 1418 | if ($this->versionField == $mapping['fieldName']) { |
||
| 1419 | throw MappingException::cannotVersionIdField($this->name, $mapping['fieldName']); |
||
| 1420 | } |
||
| 1421 | |||
| 1422 | if ( ! in_array($mapping['fieldName'], $this->identifier)) { |
||
| 1423 | $this->identifier[] = $mapping['fieldName']; |
||
| 1424 | } |
||
| 1425 | |||
| 1426 | // Check for composite key |
||
| 1427 | if ( ! $this->isIdentifierComposite && count($this->identifier) > 1) { |
||
| 1428 | $this->isIdentifierComposite = true; |
||
| 1429 | } |
||
| 1430 | } |
||
| 1431 | |||
| 1432 | if (Type::hasType($mapping['type']) && Type::getType($mapping['type'])->canRequireSQLConversion()) { |
||
| 1433 | if (isset($mapping['id']) && true === $mapping['id']) { |
||
| 1434 | throw MappingException::sqlConversionNotAllowedForIdentifiers($this->name, $mapping['fieldName'], $mapping['type']); |
||
| 1435 | } |
||
| 1436 | |||
| 1437 | $mapping['requireSQLConversion'] = true; |
||
| 1438 | } |
||
| 1439 | } |
||
| 1440 | |||
| 1441 | /** |
||
| 1442 | * Validates & completes the basic mapping information that is common to all |
||
| 1443 | * association mappings (one-to-one, many-ot-one, one-to-many, many-to-many). |
||
| 1444 | * |
||
| 1445 | * @param array $mapping The mapping. |
||
| 1446 | * |
||
| 1447 | * @return array The updated mapping. |
||
| 1448 | * |
||
| 1449 | * @throws MappingException If something is wrong with the mapping. |
||
| 1450 | */ |
||
| 1451 | protected function _validateAndCompleteAssociationMapping(array $mapping) |
||
| 1560 | } |
||
| 1561 | |||
| 1562 | /** |
||
| 1563 | * Validates & completes a one-to-one association mapping. |
||
| 1564 | * |
||
| 1565 | * @param array $mapping The mapping to validate & complete. |
||
| 1566 | * |
||
| 1567 | * @return array The validated & completed mapping. |
||
| 1568 | * |
||
| 1569 | * @throws RuntimeException |
||
| 1570 | * @throws MappingException |
||
| 1571 | */ |
||
| 1572 | protected function _validateAndCompleteOneToOneMapping(array $mapping) |
||
| 1573 | { |
||
| 1574 | $mapping = $this->_validateAndCompleteAssociationMapping($mapping); |
||
| 1575 | |||
| 1576 | if (isset($mapping['joinColumns']) && $mapping['joinColumns']) { |
||
| 1577 | $mapping['isOwningSide'] = true; |
||
| 1578 | } |
||
| 1579 | |||
| 1580 | if ($mapping['isOwningSide']) { |
||
| 1581 | if (empty($mapping['joinColumns'])) { |
||
| 1582 | // Apply default join column |
||
| 1583 | $mapping['joinColumns'] = [ |
||
| 1584 | [ |
||
| 1585 | 'name' => $this->namingStrategy->joinColumnName($mapping['fieldName'], $this->name), |
||
| 1586 | 'referencedColumnName' => $this->namingStrategy->referenceColumnName() |
||
| 1587 | ] |
||
| 1588 | ]; |
||
| 1589 | } |
||
| 1590 | |||
| 1591 | $uniqueConstraintColumns = []; |
||
| 1592 | |||
| 1593 | foreach ($mapping['joinColumns'] as &$joinColumn) { |
||
| 1594 | if ($mapping['type'] === self::ONE_TO_ONE && ! $this->isInheritanceTypeSingleTable()) { |
||
| 1595 | if (count($mapping['joinColumns']) === 1) { |
||
| 1596 | if (empty($mapping['id'])) { |
||
| 1597 | $joinColumn['unique'] = true; |
||
| 1598 | } |
||
| 1599 | } else { |
||
| 1600 | $uniqueConstraintColumns[] = $joinColumn['name']; |
||
| 1601 | } |
||
| 1602 | } |
||
| 1603 | |||
| 1604 | if (empty($joinColumn['name'])) { |
||
| 1605 | $joinColumn['name'] = $this->namingStrategy->joinColumnName($mapping['fieldName'], $this->name); |
||
| 1606 | } |
||
| 1607 | |||
| 1608 | if (empty($joinColumn['referencedColumnName'])) { |
||
| 1609 | $joinColumn['referencedColumnName'] = $this->namingStrategy->referenceColumnName(); |
||
| 1610 | } |
||
| 1611 | |||
| 1612 | if ($joinColumn['name'][0] === '`') { |
||
| 1613 | $joinColumn['name'] = trim($joinColumn['name'], '`'); |
||
| 1614 | $joinColumn['quoted'] = true; |
||
| 1615 | } |
||
| 1616 | |||
| 1617 | if ($joinColumn['referencedColumnName'][0] === '`') { |
||
| 1618 | $joinColumn['referencedColumnName'] = trim($joinColumn['referencedColumnName'], '`'); |
||
| 1619 | $joinColumn['quoted'] = true; |
||
| 1620 | } |
||
| 1621 | |||
| 1622 | $mapping['sourceToTargetKeyColumns'][$joinColumn['name']] = $joinColumn['referencedColumnName']; |
||
| 1623 | $mapping['joinColumnFieldNames'][$joinColumn['name']] = $joinColumn['fieldName'] ?? $joinColumn['name']; |
||
| 1624 | } |
||
| 1625 | |||
| 1626 | if ($uniqueConstraintColumns) { |
||
| 1627 | if ( ! $this->table) { |
||
| 1628 | throw new RuntimeException("ClassMetadataInfo::setTable() has to be called before defining a one to one relationship."); |
||
| 1629 | } |
||
| 1630 | |||
| 1631 | $this->table['uniqueConstraints'][$mapping['fieldName'] . "_uniq"] = [ |
||
| 1632 | 'columns' => $uniqueConstraintColumns |
||
| 1633 | ]; |
||
| 1634 | } |
||
| 1635 | |||
| 1636 | $mapping['targetToSourceKeyColumns'] = array_flip($mapping['sourceToTargetKeyColumns']); |
||
| 1637 | } |
||
| 1638 | |||
| 1639 | $mapping['orphanRemoval'] = isset($mapping['orphanRemoval']) && $mapping['orphanRemoval']; |
||
| 1640 | $mapping['isCascadeRemove'] = $mapping['orphanRemoval'] || $mapping['isCascadeRemove']; |
||
| 1641 | |||
| 1642 | if ($mapping['orphanRemoval']) { |
||
| 1643 | unset($mapping['unique']); |
||
| 1644 | } |
||
| 1645 | |||
| 1646 | if (isset($mapping['id']) && $mapping['id'] === true && !$mapping['isOwningSide']) { |
||
| 1647 | throw MappingException::illegalInverseIdentifierAssociation($this->name, $mapping['fieldName']); |
||
| 1648 | } |
||
| 1649 | |||
| 1650 | return $mapping; |
||
| 1651 | } |
||
| 1652 | |||
| 1653 | /** |
||
| 1654 | * Validates & completes a one-to-many association mapping. |
||
| 1655 | * |
||
| 1656 | * @param array $mapping The mapping to validate and complete. |
||
| 1657 | * |
||
| 1658 | * @return array The validated and completed mapping. |
||
| 1659 | * |
||
| 1660 | * @throws MappingException |
||
| 1661 | * @throws InvalidArgumentException |
||
| 1662 | */ |
||
| 1663 | protected function _validateAndCompleteOneToManyMapping(array $mapping) |
||
| 1664 | { |
||
| 1665 | $mapping = $this->_validateAndCompleteAssociationMapping($mapping); |
||
| 1666 | |||
| 1667 | // OneToMany-side MUST be inverse (must have mappedBy) |
||
| 1668 | if ( ! isset($mapping['mappedBy'])) { |
||
| 1669 | throw MappingException::oneToManyRequiresMappedBy($mapping['fieldName']); |
||
| 1670 | } |
||
| 1671 | |||
| 1672 | $mapping['orphanRemoval'] = isset($mapping['orphanRemoval']) && $mapping['orphanRemoval']; |
||
| 1673 | $mapping['isCascadeRemove'] = $mapping['orphanRemoval'] || $mapping['isCascadeRemove']; |
||
| 1674 | |||
| 1675 | $this->assertMappingOrderBy($mapping); |
||
| 1676 | |||
| 1677 | return $mapping; |
||
| 1678 | } |
||
| 1679 | |||
| 1680 | /** |
||
| 1681 | * Validates & completes a many-to-many association mapping. |
||
| 1682 | * |
||
| 1683 | * @param array $mapping The mapping to validate & complete. |
||
| 1684 | * |
||
| 1685 | * @return array The validated & completed mapping. |
||
| 1686 | * |
||
| 1687 | * @throws \InvalidArgumentException |
||
| 1688 | */ |
||
| 1689 | protected function _validateAndCompleteManyToManyMapping(array $mapping) |
||
| 1690 | { |
||
| 1691 | $mapping = $this->_validateAndCompleteAssociationMapping($mapping); |
||
| 1692 | |||
| 1693 | if ($mapping['isOwningSide']) { |
||
| 1694 | // owning side MUST have a join table |
||
| 1695 | if ( ! isset($mapping['joinTable']['name'])) { |
||
| 1696 | $mapping['joinTable']['name'] = $this->namingStrategy->joinTableName($mapping['sourceEntity'], $mapping['targetEntity'], $mapping['fieldName']); |
||
| 1697 | } |
||
| 1698 | |||
| 1699 | $selfReferencingEntityWithoutJoinColumns = $mapping['sourceEntity'] == $mapping['targetEntity'] |
||
| 1700 | && (! (isset($mapping['joinTable']['joinColumns']) || isset($mapping['joinTable']['inverseJoinColumns']))); |
||
| 1701 | |||
| 1702 | if ( ! isset($mapping['joinTable']['joinColumns'])) { |
||
| 1703 | $mapping['joinTable']['joinColumns'] = [ |
||
| 1704 | [ |
||
| 1705 | 'name' => $this->namingStrategy->joinKeyColumnName($mapping['sourceEntity'], $selfReferencingEntityWithoutJoinColumns ? 'source' : null), |
||
| 1706 | 'referencedColumnName' => $this->namingStrategy->referenceColumnName(), |
||
| 1707 | 'onDelete' => 'CASCADE' |
||
| 1708 | ] |
||
| 1709 | ]; |
||
| 1710 | } |
||
| 1711 | |||
| 1712 | if ( ! isset($mapping['joinTable']['inverseJoinColumns'])) { |
||
| 1713 | $mapping['joinTable']['inverseJoinColumns'] = [ |
||
| 1714 | [ |
||
| 1715 | 'name' => $this->namingStrategy->joinKeyColumnName($mapping['targetEntity'], $selfReferencingEntityWithoutJoinColumns ? 'target' : null), |
||
| 1716 | 'referencedColumnName' => $this->namingStrategy->referenceColumnName(), |
||
| 1717 | 'onDelete' => 'CASCADE' |
||
| 1718 | ] |
||
| 1719 | ]; |
||
| 1720 | } |
||
| 1721 | |||
| 1722 | $mapping['joinTableColumns'] = []; |
||
| 1723 | |||
| 1724 | foreach ($mapping['joinTable']['joinColumns'] as &$joinColumn) { |
||
| 1725 | if (empty($joinColumn['name'])) { |
||
| 1726 | $joinColumn['name'] = $this->namingStrategy->joinKeyColumnName($mapping['sourceEntity'], $joinColumn['referencedColumnName']); |
||
| 1727 | } |
||
| 1728 | |||
| 1729 | if (empty($joinColumn['referencedColumnName'])) { |
||
| 1730 | $joinColumn['referencedColumnName'] = $this->namingStrategy->referenceColumnName(); |
||
| 1731 | } |
||
| 1732 | |||
| 1733 | if ($joinColumn['name'][0] === '`') { |
||
| 1734 | $joinColumn['name'] = trim($joinColumn['name'], '`'); |
||
| 1735 | $joinColumn['quoted'] = true; |
||
| 1736 | } |
||
| 1737 | |||
| 1738 | if ($joinColumn['referencedColumnName'][0] === '`') { |
||
| 1739 | $joinColumn['referencedColumnName'] = trim($joinColumn['referencedColumnName'], '`'); |
||
| 1740 | $joinColumn['quoted'] = true; |
||
| 1741 | } |
||
| 1742 | |||
| 1743 | if (isset($joinColumn['onDelete']) && strtolower($joinColumn['onDelete']) == 'cascade') { |
||
| 1744 | $mapping['isOnDeleteCascade'] = true; |
||
| 1745 | } |
||
| 1746 | |||
| 1747 | $mapping['relationToSourceKeyColumns'][$joinColumn['name']] = $joinColumn['referencedColumnName']; |
||
| 1748 | $mapping['joinTableColumns'][] = $joinColumn['name']; |
||
| 1749 | } |
||
| 1750 | |||
| 1751 | foreach ($mapping['joinTable']['inverseJoinColumns'] as &$inverseJoinColumn) { |
||
| 1752 | if (empty($inverseJoinColumn['name'])) { |
||
| 1753 | $inverseJoinColumn['name'] = $this->namingStrategy->joinKeyColumnName($mapping['targetEntity'], $inverseJoinColumn['referencedColumnName']); |
||
| 1754 | } |
||
| 1755 | |||
| 1756 | if (empty($inverseJoinColumn['referencedColumnName'])) { |
||
| 1757 | $inverseJoinColumn['referencedColumnName'] = $this->namingStrategy->referenceColumnName(); |
||
| 1758 | } |
||
| 1759 | |||
| 1760 | if ($inverseJoinColumn['name'][0] === '`') { |
||
| 1761 | $inverseJoinColumn['name'] = trim($inverseJoinColumn['name'], '`'); |
||
| 1762 | $inverseJoinColumn['quoted'] = true; |
||
| 1763 | } |
||
| 1764 | |||
| 1765 | if ($inverseJoinColumn['referencedColumnName'][0] === '`') { |
||
| 1766 | $inverseJoinColumn['referencedColumnName'] = trim($inverseJoinColumn['referencedColumnName'], '`'); |
||
| 1767 | $inverseJoinColumn['quoted'] = true; |
||
| 1768 | } |
||
| 1769 | |||
| 1770 | if (isset($inverseJoinColumn['onDelete']) && strtolower($inverseJoinColumn['onDelete']) == 'cascade') { |
||
| 1771 | $mapping['isOnDeleteCascade'] = true; |
||
| 1772 | } |
||
| 1773 | |||
| 1774 | $mapping['relationToTargetKeyColumns'][$inverseJoinColumn['name']] = $inverseJoinColumn['referencedColumnName']; |
||
| 1775 | $mapping['joinTableColumns'][] = $inverseJoinColumn['name']; |
||
| 1776 | } |
||
| 1777 | } |
||
| 1778 | |||
| 1779 | $mapping['orphanRemoval'] = isset($mapping['orphanRemoval']) && $mapping['orphanRemoval']; |
||
| 1780 | |||
| 1781 | $this->assertMappingOrderBy($mapping); |
||
| 1782 | |||
| 1783 | return $mapping; |
||
| 1784 | } |
||
| 1785 | |||
| 1786 | /** |
||
| 1787 | * {@inheritDoc} |
||
| 1788 | */ |
||
| 1789 | public function getIdentifierFieldNames() |
||
| 1790 | { |
||
| 1791 | return $this->identifier; |
||
| 1792 | } |
||
| 1793 | |||
| 1794 | /** |
||
| 1795 | * Gets the name of the single id field. Note that this only works on |
||
| 1796 | * entity classes that have a single-field pk. |
||
| 1797 | * |
||
| 1798 | * @return string |
||
| 1799 | * |
||
| 1800 | * @throws MappingException If the class doesn't have an identifier or it has a composite primary key. |
||
| 1801 | */ |
||
| 1802 | public function getSingleIdentifierFieldName() |
||
| 1803 | { |
||
| 1804 | if ($this->isIdentifierComposite) { |
||
| 1805 | throw MappingException::singleIdNotAllowedOnCompositePrimaryKey($this->name); |
||
| 1806 | } |
||
| 1807 | |||
| 1808 | if ( ! isset($this->identifier[0])) { |
||
| 1809 | throw MappingException::noIdDefined($this->name); |
||
| 1810 | } |
||
| 1811 | |||
| 1812 | return $this->identifier[0]; |
||
| 1813 | } |
||
| 1814 | |||
| 1815 | /** |
||
| 1816 | * Gets the column name of the single id column. Note that this only works on |
||
| 1817 | * entity classes that have a single-field pk. |
||
| 1818 | * |
||
| 1819 | * @return string |
||
| 1820 | * |
||
| 1821 | * @throws MappingException If the class doesn't have an identifier or it has a composite primary key. |
||
| 1822 | */ |
||
| 1823 | public function getSingleIdentifierColumnName() |
||
| 1824 | { |
||
| 1825 | return $this->getColumnName($this->getSingleIdentifierFieldName()); |
||
| 1826 | } |
||
| 1827 | |||
| 1828 | /** |
||
| 1829 | * INTERNAL: |
||
| 1830 | * Sets the mapped identifier/primary key fields of this class. |
||
| 1831 | * Mainly used by the ClassMetadataFactory to assign inherited identifiers. |
||
| 1832 | * |
||
| 1833 | * @param array $identifier |
||
| 1834 | * |
||
| 1835 | * @return void |
||
| 1836 | */ |
||
| 1837 | public function setIdentifier(array $identifier) |
||
| 1838 | { |
||
| 1839 | $this->identifier = $identifier; |
||
| 1840 | $this->isIdentifierComposite = (count($this->identifier) > 1); |
||
| 1841 | } |
||
| 1842 | |||
| 1843 | /** |
||
| 1844 | * {@inheritDoc} |
||
| 1845 | */ |
||
| 1846 | public function getIdentifier() |
||
| 1847 | { |
||
| 1848 | return $this->identifier; |
||
| 1849 | } |
||
| 1850 | |||
| 1851 | /** |
||
| 1852 | * {@inheritDoc} |
||
| 1853 | */ |
||
| 1854 | public function hasField($fieldName) |
||
| 1855 | { |
||
| 1856 | return isset($this->fieldMappings[$fieldName]) || isset($this->embeddedClasses[$fieldName]); |
||
| 1857 | } |
||
| 1858 | |||
| 1859 | /** |
||
| 1860 | * Gets an array containing all the column names. |
||
| 1861 | * |
||
| 1862 | * @param array|null $fieldNames |
||
| 1863 | * |
||
| 1864 | * @return array |
||
| 1865 | */ |
||
| 1866 | public function getColumnNames(array $fieldNames = null) |
||
| 1867 | { |
||
| 1868 | if (null === $fieldNames) { |
||
| 1869 | return array_keys($this->fieldNames); |
||
| 1870 | } |
||
| 1871 | |||
| 1872 | return array_values(array_map([$this, 'getColumnName'], $fieldNames)); |
||
| 1873 | } |
||
| 1874 | |||
| 1875 | /** |
||
| 1876 | * Returns an array with all the identifier column names. |
||
| 1877 | * |
||
| 1878 | * @return array |
||
| 1879 | */ |
||
| 1880 | public function getIdentifierColumnNames() |
||
| 1881 | { |
||
| 1882 | $columnNames = []; |
||
| 1883 | |||
| 1884 | foreach ($this->identifier as $idProperty) { |
||
| 1885 | if (isset($this->fieldMappings[$idProperty])) { |
||
| 1886 | $columnNames[] = $this->fieldMappings[$idProperty]['columnName']; |
||
| 1887 | |||
| 1888 | continue; |
||
| 1889 | } |
||
| 1890 | |||
| 1891 | // Association defined as Id field |
||
| 1892 | $joinColumns = $this->associationMappings[$idProperty]['joinColumns']; |
||
| 1893 | $assocColumnNames = array_map(function ($joinColumn) { return $joinColumn['name']; }, $joinColumns); |
||
| 1894 | |||
| 1895 | $columnNames = array_merge($columnNames, $assocColumnNames); |
||
| 1896 | } |
||
| 1897 | |||
| 1898 | return $columnNames; |
||
| 1899 | } |
||
| 1900 | |||
| 1901 | /** |
||
| 1902 | * Sets the type of Id generator to use for the mapped class. |
||
| 1903 | * |
||
| 1904 | * @param int $generatorType |
||
| 1905 | * |
||
| 1906 | * @return void |
||
| 1907 | */ |
||
| 1908 | public function setIdGeneratorType($generatorType) |
||
| 1909 | { |
||
| 1910 | $this->generatorType = $generatorType; |
||
| 1911 | } |
||
| 1912 | |||
| 1913 | /** |
||
| 1914 | * Checks whether the mapped class uses an Id generator. |
||
| 1915 | * |
||
| 1916 | * @return boolean TRUE if the mapped class uses an Id generator, FALSE otherwise. |
||
| 1917 | */ |
||
| 1918 | public function usesIdGenerator() |
||
| 1919 | { |
||
| 1920 | return $this->generatorType != self::GENERATOR_TYPE_NONE; |
||
| 1921 | } |
||
| 1922 | |||
| 1923 | /** |
||
| 1924 | * @return boolean |
||
| 1925 | */ |
||
| 1926 | public function isInheritanceTypeNone() |
||
| 1927 | { |
||
| 1928 | return $this->inheritanceType == self::INHERITANCE_TYPE_NONE; |
||
| 1929 | } |
||
| 1930 | |||
| 1931 | /** |
||
| 1932 | * Checks whether the mapped class uses the JOINED inheritance mapping strategy. |
||
| 1933 | * |
||
| 1934 | * @return boolean TRUE if the class participates in a JOINED inheritance mapping, |
||
| 1935 | * FALSE otherwise. |
||
| 1936 | */ |
||
| 1937 | public function isInheritanceTypeJoined() |
||
| 1938 | { |
||
| 1939 | return $this->inheritanceType == self::INHERITANCE_TYPE_JOINED; |
||
| 1940 | } |
||
| 1941 | |||
| 1942 | /** |
||
| 1943 | * Checks whether the mapped class uses the SINGLE_TABLE inheritance mapping strategy. |
||
| 1944 | * |
||
| 1945 | * @return boolean TRUE if the class participates in a SINGLE_TABLE inheritance mapping, |
||
| 1946 | * FALSE otherwise. |
||
| 1947 | */ |
||
| 1948 | public function isInheritanceTypeSingleTable() |
||
| 1949 | { |
||
| 1950 | return $this->inheritanceType == self::INHERITANCE_TYPE_SINGLE_TABLE; |
||
| 1951 | } |
||
| 1952 | |||
| 1953 | /** |
||
| 1954 | * Checks whether the mapped class uses the TABLE_PER_CLASS inheritance mapping strategy. |
||
| 1955 | * |
||
| 1956 | * @return boolean TRUE if the class participates in a TABLE_PER_CLASS inheritance mapping, |
||
| 1957 | * FALSE otherwise. |
||
| 1958 | */ |
||
| 1959 | public function isInheritanceTypeTablePerClass() |
||
| 1960 | { |
||
| 1961 | return $this->inheritanceType == self::INHERITANCE_TYPE_TABLE_PER_CLASS; |
||
| 1962 | } |
||
| 1963 | |||
| 1964 | /** |
||
| 1965 | * Checks whether the class uses an identity column for the Id generation. |
||
| 1966 | * |
||
| 1967 | * @return boolean TRUE if the class uses the IDENTITY generator, FALSE otherwise. |
||
| 1968 | */ |
||
| 1969 | public function isIdGeneratorIdentity() |
||
| 1970 | { |
||
| 1971 | return $this->generatorType == self::GENERATOR_TYPE_IDENTITY; |
||
| 1972 | } |
||
| 1973 | |||
| 1974 | /** |
||
| 1975 | * Checks whether the class uses a sequence for id generation. |
||
| 1976 | * |
||
| 1977 | * @return boolean TRUE if the class uses the SEQUENCE generator, FALSE otherwise. |
||
| 1978 | */ |
||
| 1979 | public function isIdGeneratorSequence() |
||
| 1980 | { |
||
| 1981 | return $this->generatorType == self::GENERATOR_TYPE_SEQUENCE; |
||
| 1982 | } |
||
| 1983 | |||
| 1984 | /** |
||
| 1985 | * Checks whether the class uses a table for id generation. |
||
| 1986 | * |
||
| 1987 | * @return boolean TRUE if the class uses the TABLE generator, FALSE otherwise. |
||
| 1988 | */ |
||
| 1989 | public function isIdGeneratorTable() |
||
| 1990 | { |
||
| 1991 | return $this->generatorType == self::GENERATOR_TYPE_TABLE; |
||
| 1992 | } |
||
| 1993 | |||
| 1994 | /** |
||
| 1995 | * Checks whether the class has a natural identifier/pk (which means it does |
||
| 1996 | * not use any Id generator. |
||
| 1997 | * |
||
| 1998 | * @return boolean |
||
| 1999 | */ |
||
| 2000 | public function isIdentifierNatural() |
||
| 2001 | { |
||
| 2002 | return $this->generatorType == self::GENERATOR_TYPE_NONE; |
||
| 2003 | } |
||
| 2004 | |||
| 2005 | /** |
||
| 2006 | * Checks whether the class use a UUID for id generation. |
||
| 2007 | * |
||
| 2008 | * @return boolean |
||
| 2009 | */ |
||
| 2010 | public function isIdentifierUuid() |
||
| 2011 | { |
||
| 2012 | return $this->generatorType == self::GENERATOR_TYPE_UUID; |
||
| 2013 | } |
||
| 2014 | |||
| 2015 | /** |
||
| 2016 | * Gets the type of a field. |
||
| 2017 | * |
||
| 2018 | * @param string $fieldName |
||
| 2019 | * |
||
| 2020 | * @return string|null |
||
| 2021 | * |
||
| 2022 | * @todo 3.0 Remove this. PersisterHelper should fix it somehow |
||
| 2023 | */ |
||
| 2024 | public function getTypeOfField($fieldName) |
||
| 2025 | { |
||
| 2026 | return isset($this->fieldMappings[$fieldName]) |
||
| 2027 | ? $this->fieldMappings[$fieldName]['type'] |
||
| 2028 | : null; |
||
| 2029 | } |
||
| 2030 | |||
| 2031 | /** |
||
| 2032 | * Gets the type of a column. |
||
| 2033 | * |
||
| 2034 | * @param string $columnName |
||
| 2035 | * |
||
| 2036 | * @return string|null |
||
| 2037 | * |
||
| 2038 | * @deprecated 3.0 remove this. this method is bogus and unreliable, since it cannot resolve the type of a column |
||
| 2039 | * that is derived by a referenced field on a different entity. |
||
| 2040 | */ |
||
| 2041 | public function getTypeOfColumn($columnName) |
||
| 2044 | } |
||
| 2045 | |||
| 2046 | /** |
||
| 2047 | * Gets the name of the primary table. |
||
| 2048 | * |
||
| 2049 | * @return string |
||
| 2050 | */ |
||
| 2051 | public function getTableName() |
||
| 2052 | { |
||
| 2053 | return $this->table['name']; |
||
| 2054 | } |
||
| 2055 | |||
| 2056 | /** |
||
| 2057 | * Gets primary table's schema name. |
||
| 2058 | * |
||
| 2059 | * @return string|null |
||
| 2060 | */ |
||
| 2061 | public function getSchemaName() |
||
| 2062 | { |
||
| 2063 | return isset($this->table['schema']) ? $this->table['schema'] : null; |
||
| 2064 | } |
||
| 2065 | |||
| 2066 | /** |
||
| 2067 | * Gets the table name to use for temporary identifier tables of this class. |
||
| 2068 | * |
||
| 2069 | * @return string |
||
| 2070 | */ |
||
| 2071 | public function getTemporaryIdTableName() |
||
| 2072 | { |
||
| 2073 | // replace dots with underscores because PostgreSQL creates temporary tables in a special schema |
||
| 2074 | return str_replace('.', '_', $this->getTableName() . '_id_tmp'); |
||
| 2075 | } |
||
| 2076 | |||
| 2077 | /** |
||
| 2078 | * Sets the mapped subclasses of this class. |
||
| 2079 | * |
||
| 2080 | * @param array $subclasses The names of all mapped subclasses. |
||
| 2081 | * |
||
| 2082 | * @return void |
||
| 2083 | */ |
||
| 2084 | public function setSubclasses(array $subclasses) |
||
| 2088 | } |
||
| 2089 | } |
||
| 2090 | |||
| 2091 | /** |
||
| 2092 | * Sets the parent class names. |
||
| 2093 | * Assumes that the class names in the passed array are in the order: |
||
| 2094 | * directParent -> directParentParent -> directParentParentParent ... -> root. |
||
| 2095 | * |
||
| 2096 | * @param array $classNames |
||
| 2097 | * |
||
| 2098 | * @return void |
||
| 2099 | */ |
||
| 2100 | public function setParentClasses(array $classNames) |
||
| 2101 | { |
||
| 2102 | $this->parentClasses = $classNames; |
||
| 2103 | |||
| 2104 | if (count($classNames) > 0) { |
||
| 2105 | $this->rootEntityName = array_pop($classNames); |
||
| 2106 | } |
||
| 2107 | } |
||
| 2108 | |||
| 2109 | /** |
||
| 2110 | * Sets the inheritance type used by the class and its subclasses. |
||
| 2111 | * |
||
| 2112 | * @param integer $type |
||
| 2113 | * |
||
| 2114 | * @return void |
||
| 2115 | * |
||
| 2116 | * @throws MappingException |
||
| 2117 | */ |
||
| 2118 | public function setInheritanceType($type) |
||
| 2119 | { |
||
| 2120 | if ( ! $this->_isInheritanceType($type)) { |
||
| 2121 | throw MappingException::invalidInheritanceType($this->name, $type); |
||
| 2122 | } |
||
| 2123 | |||
| 2124 | $this->inheritanceType = $type; |
||
| 2125 | } |
||
| 2126 | |||
| 2127 | /** |
||
| 2128 | * Sets the association to override association mapping of property for an entity relationship. |
||
| 2129 | * |
||
| 2130 | * @param string $fieldName |
||
| 2131 | * @param array $overrideMapping |
||
| 2132 | * |
||
| 2133 | * @return void |
||
| 2134 | * |
||
| 2135 | * @throws MappingException |
||
| 2136 | */ |
||
| 2137 | public function setAssociationOverride($fieldName, array $overrideMapping) |
||
| 2138 | { |
||
| 2139 | if ( ! isset($this->associationMappings[$fieldName])) { |
||
| 2140 | throw MappingException::invalidOverrideFieldName($this->name, $fieldName); |
||
| 2141 | } |
||
| 2142 | |||
| 2143 | $mapping = $this->associationMappings[$fieldName]; |
||
| 2144 | |||
| 2145 | if (isset($overrideMapping['joinColumns'])) { |
||
| 2146 | $mapping['joinColumns'] = $overrideMapping['joinColumns']; |
||
| 2147 | } |
||
| 2148 | |||
| 2149 | if (isset($overrideMapping['inversedBy'])) { |
||
| 2150 | $mapping['inversedBy'] = $overrideMapping['inversedBy']; |
||
| 2151 | } |
||
| 2152 | |||
| 2153 | if (isset($overrideMapping['joinTable'])) { |
||
| 2154 | $mapping['joinTable'] = $overrideMapping['joinTable']; |
||
| 2155 | } |
||
| 2156 | |||
| 2157 | if (isset($overrideMapping['fetch'])) { |
||
| 2158 | $mapping['fetch'] = $overrideMapping['fetch']; |
||
| 2159 | } |
||
| 2160 | |||
| 2161 | $mapping['joinColumnFieldNames'] = null; |
||
| 2162 | $mapping['joinTableColumns'] = null; |
||
| 2163 | $mapping['sourceToTargetKeyColumns'] = null; |
||
| 2164 | $mapping['relationToSourceKeyColumns'] = null; |
||
| 2165 | $mapping['relationToTargetKeyColumns'] = null; |
||
| 2166 | |||
| 2167 | switch ($mapping['type']) { |
||
| 2168 | case self::ONE_TO_ONE: |
||
| 2169 | $mapping = $this->_validateAndCompleteOneToOneMapping($mapping); |
||
| 2170 | break; |
||
| 2171 | case self::ONE_TO_MANY: |
||
| 2172 | $mapping = $this->_validateAndCompleteOneToManyMapping($mapping); |
||
| 2173 | break; |
||
| 2174 | case self::MANY_TO_ONE: |
||
| 2175 | $mapping = $this->_validateAndCompleteOneToOneMapping($mapping); |
||
| 2176 | break; |
||
| 2177 | case self::MANY_TO_MANY: |
||
| 2178 | $mapping = $this->_validateAndCompleteManyToManyMapping($mapping); |
||
| 2179 | break; |
||
| 2180 | } |
||
| 2181 | |||
| 2182 | $this->associationMappings[$fieldName] = $mapping; |
||
| 2183 | } |
||
| 2184 | |||
| 2185 | /** |
||
| 2186 | * Sets the override for a mapped field. |
||
| 2187 | * |
||
| 2188 | * @param string $fieldName |
||
| 2189 | * @param array $overrideMapping |
||
| 2190 | * |
||
| 2191 | * @return void |
||
| 2192 | * |
||
| 2193 | * @throws MappingException |
||
| 2194 | */ |
||
| 2195 | public function setAttributeOverride($fieldName, array $overrideMapping) |
||
| 2226 | } |
||
| 2227 | |||
| 2228 | /** |
||
| 2229 | * Checks whether a mapped field is inherited from an entity superclass. |
||
| 2230 | * |
||
| 2231 | * @param string $fieldName |
||
| 2232 | * |
||
| 2233 | * @return bool TRUE if the field is inherited, FALSE otherwise. |
||
| 2234 | */ |
||
| 2235 | public function isInheritedField($fieldName) |
||
| 2236 | { |
||
| 2237 | return isset($this->fieldMappings[$fieldName]['inherited']); |
||
| 2238 | } |
||
| 2239 | |||
| 2240 | /** |
||
| 2241 | * Checks if this entity is the root in any entity-inheritance-hierarchy. |
||
| 2242 | * |
||
| 2243 | * @return bool |
||
| 2244 | */ |
||
| 2245 | public function isRootEntity() |
||
| 2246 | { |
||
| 2247 | return $this->name == $this->rootEntityName; |
||
| 2248 | } |
||
| 2249 | |||
| 2250 | /** |
||
| 2251 | * Checks whether a mapped association field is inherited from a superclass. |
||
| 2252 | * |
||
| 2253 | * @param string $fieldName |
||
| 2254 | * |
||
| 2255 | * @return boolean TRUE if the field is inherited, FALSE otherwise. |
||
| 2256 | */ |
||
| 2257 | public function isInheritedAssociation($fieldName) |
||
| 2258 | { |
||
| 2259 | return isset($this->associationMappings[$fieldName]['inherited']); |
||
| 2260 | } |
||
| 2261 | |||
| 2262 | public function isInheritedEmbeddedClass($fieldName) |
||
| 2263 | { |
||
| 2264 | return isset($this->embeddedClasses[$fieldName]['inherited']); |
||
| 2265 | } |
||
| 2266 | |||
| 2267 | /** |
||
| 2268 | * Sets the name of the primary table the class is mapped to. |
||
| 2269 | * |
||
| 2270 | * @param string $tableName The table name. |
||
| 2271 | * |
||
| 2272 | * @return void |
||
| 2273 | * |
||
| 2274 | * @deprecated Use {@link setPrimaryTable}. |
||
| 2275 | */ |
||
| 2276 | public function setTableName($tableName) |
||
| 2277 | { |
||
| 2278 | $this->table['name'] = $tableName; |
||
| 2279 | } |
||
| 2280 | |||
| 2281 | /** |
||
| 2282 | * Sets the primary table definition. The provided array supports the |
||
| 2283 | * following structure: |
||
| 2284 | * |
||
| 2285 | * name => <tableName> (optional, defaults to class name) |
||
| 2286 | * indexes => array of indexes (optional) |
||
| 2287 | * uniqueConstraints => array of constraints (optional) |
||
| 2288 | * |
||
| 2289 | * If a key is omitted, the current value is kept. |
||
| 2290 | * |
||
| 2291 | * @param array $table The table description. |
||
| 2292 | * |
||
| 2293 | * @return void |
||
| 2294 | */ |
||
| 2295 | public function setPrimaryTable(array $table) |
||
| 2296 | { |
||
| 2297 | if (isset($table['name'])) { |
||
| 2298 | // Split schema and table name from a table name like "myschema.mytable" |
||
| 2299 | if (strpos($table['name'], '.') !== false) { |
||
| 2300 | list($this->table['schema'], $table['name']) = explode('.', $table['name'], 2); |
||
| 2301 | } |
||
| 2302 | |||
| 2303 | if ($table['name'][0] === '`') { |
||
| 2304 | $table['name'] = trim($table['name'], '`'); |
||
| 2305 | $this->table['quoted'] = true; |
||
| 2306 | } |
||
| 2307 | |||
| 2308 | $this->table['name'] = $table['name']; |
||
| 2309 | } |
||
| 2310 | |||
| 2311 | if (isset($table['quoted'])) { |
||
| 2312 | $this->table['quoted'] = $table['quoted']; |
||
| 2313 | } |
||
| 2314 | |||
| 2315 | if (isset($table['schema'])) { |
||
| 2316 | $this->table['schema'] = $table['schema']; |
||
| 2317 | } |
||
| 2318 | |||
| 2319 | if (isset($table['indexes'])) { |
||
| 2320 | $this->table['indexes'] = $table['indexes']; |
||
| 2321 | } |
||
| 2322 | |||
| 2323 | if (isset($table['uniqueConstraints'])) { |
||
| 2324 | $this->table['uniqueConstraints'] = $table['uniqueConstraints']; |
||
| 2325 | } |
||
| 2326 | |||
| 2327 | if (isset($table['options'])) { |
||
| 2328 | $this->table['options'] = $table['options']; |
||
| 2329 | } |
||
| 2330 | } |
||
| 2331 | |||
| 2332 | /** |
||
| 2333 | * Checks whether the given type identifies an inheritance type. |
||
| 2334 | * |
||
| 2335 | * @param integer $type |
||
| 2336 | * |
||
| 2337 | * @return boolean TRUE if the given type identifies an inheritance type, FALSe otherwise. |
||
| 2338 | */ |
||
| 2339 | private function _isInheritanceType($type) |
||
| 2340 | { |
||
| 2341 | return $type == self::INHERITANCE_TYPE_NONE || |
||
| 2342 | $type == self::INHERITANCE_TYPE_SINGLE_TABLE || |
||
| 2343 | $type == self::INHERITANCE_TYPE_JOINED || |
||
| 2344 | $type == self::INHERITANCE_TYPE_TABLE_PER_CLASS; |
||
| 2345 | } |
||
| 2346 | |||
| 2347 | /** |
||
| 2348 | * Adds a mapped field to the class. |
||
| 2349 | * |
||
| 2350 | * @param array $mapping The field mapping. |
||
| 2351 | * |
||
| 2352 | * @return void |
||
| 2353 | * |
||
| 2354 | * @throws MappingException |
||
| 2355 | */ |
||
| 2356 | public function mapField(array $mapping) |
||
| 2357 | { |
||
| 2358 | $this->_validateAndCompleteFieldMapping($mapping); |
||
| 2359 | $this->assertFieldNotMapped($mapping['fieldName']); |
||
| 2360 | |||
| 2361 | $this->fieldMappings[$mapping['fieldName']] = $mapping; |
||
| 2362 | } |
||
| 2363 | |||
| 2364 | /** |
||
| 2365 | * INTERNAL: |
||
| 2366 | * Adds an association mapping without completing/validating it. |
||
| 2367 | * This is mainly used to add inherited association mappings to derived classes. |
||
| 2368 | * |
||
| 2369 | * @param array $mapping |
||
| 2370 | * |
||
| 2371 | * @return void |
||
| 2372 | * |
||
| 2373 | * @throws MappingException |
||
| 2374 | */ |
||
| 2375 | public function addInheritedAssociationMapping(array $mapping/*, $owningClassName = null*/) |
||
| 2376 | { |
||
| 2377 | if (isset($this->associationMappings[$mapping['fieldName']])) { |
||
| 2378 | throw MappingException::duplicateAssociationMapping($this->name, $mapping['fieldName']); |
||
| 2379 | } |
||
| 2380 | $this->associationMappings[$mapping['fieldName']] = $mapping; |
||
| 2381 | } |
||
| 2382 | |||
| 2383 | /** |
||
| 2384 | * INTERNAL: |
||
| 2385 | * Adds a field mapping without completing/validating it. |
||
| 2386 | * This is mainly used to add inherited field mappings to derived classes. |
||
| 2387 | * |
||
| 2388 | * @param array $fieldMapping |
||
| 2389 | * |
||
| 2390 | * @return void |
||
| 2391 | */ |
||
| 2392 | public function addInheritedFieldMapping(array $fieldMapping) |
||
| 2393 | { |
||
| 2394 | $this->fieldMappings[$fieldMapping['fieldName']] = $fieldMapping; |
||
| 2395 | $this->columnNames[$fieldMapping['fieldName']] = $fieldMapping['columnName']; |
||
| 2396 | $this->fieldNames[$fieldMapping['columnName']] = $fieldMapping['fieldName']; |
||
| 2397 | } |
||
| 2398 | |||
| 2399 | /** |
||
| 2400 | * INTERNAL: |
||
| 2401 | * Adds a named query to this class. |
||
| 2402 | * |
||
| 2403 | * @param array $queryMapping |
||
| 2404 | * |
||
| 2405 | * @return void |
||
| 2406 | * |
||
| 2407 | * @throws MappingException |
||
| 2408 | */ |
||
| 2409 | public function addNamedQuery(array $queryMapping) |
||
| 2410 | { |
||
| 2411 | if (!isset($queryMapping['name'])) { |
||
| 2412 | throw MappingException::nameIsMandatoryForQueryMapping($this->name); |
||
| 2413 | } |
||
| 2414 | |||
| 2415 | if (isset($this->namedQueries[$queryMapping['name']])) { |
||
| 2416 | throw MappingException::duplicateQueryMapping($this->name, $queryMapping['name']); |
||
| 2417 | } |
||
| 2418 | |||
| 2419 | if (!isset($queryMapping['query'])) { |
||
| 2420 | throw MappingException::emptyQueryMapping($this->name, $queryMapping['name']); |
||
| 2421 | } |
||
| 2422 | |||
| 2423 | $name = $queryMapping['name']; |
||
| 2424 | $query = $queryMapping['query']; |
||
| 2425 | $dql = str_replace('__CLASS__', $this->name, $query); |
||
| 2426 | |||
| 2427 | $this->namedQueries[$name] = [ |
||
| 2428 | 'name' => $name, |
||
| 2429 | 'query' => $query, |
||
| 2430 | 'dql' => $dql, |
||
| 2431 | ]; |
||
| 2432 | } |
||
| 2433 | |||
| 2434 | /** |
||
| 2435 | * INTERNAL: |
||
| 2436 | * Adds a named native query to this class. |
||
| 2437 | * |
||
| 2438 | * @param array $queryMapping |
||
| 2439 | * |
||
| 2440 | * @return void |
||
| 2441 | * |
||
| 2442 | * @throws MappingException |
||
| 2443 | */ |
||
| 2444 | public function addNamedNativeQuery(array $queryMapping) |
||
| 2445 | { |
||
| 2446 | if (!isset($queryMapping['name'])) { |
||
| 2447 | throw MappingException::nameIsMandatoryForQueryMapping($this->name); |
||
| 2448 | } |
||
| 2449 | |||
| 2450 | if (isset($this->namedNativeQueries[$queryMapping['name']])) { |
||
| 2451 | throw MappingException::duplicateQueryMapping($this->name, $queryMapping['name']); |
||
| 2452 | } |
||
| 2453 | |||
| 2454 | if (!isset($queryMapping['query'])) { |
||
| 2455 | throw MappingException::emptyQueryMapping($this->name, $queryMapping['name']); |
||
| 2456 | } |
||
| 2457 | |||
| 2458 | if (!isset($queryMapping['resultClass']) && !isset($queryMapping['resultSetMapping'])) { |
||
| 2459 | throw MappingException::missingQueryMapping($this->name, $queryMapping['name']); |
||
| 2460 | } |
||
| 2461 | |||
| 2462 | $queryMapping['isSelfClass'] = false; |
||
| 2463 | |||
| 2464 | if (isset($queryMapping['resultClass'])) { |
||
| 2465 | if ($queryMapping['resultClass'] === '__CLASS__') { |
||
| 2466 | |||
| 2467 | $queryMapping['isSelfClass'] = true; |
||
| 2468 | $queryMapping['resultClass'] = $this->name; |
||
| 2469 | } |
||
| 2470 | |||
| 2471 | $queryMapping['resultClass'] = $this->fullyQualifiedClassName($queryMapping['resultClass']); |
||
| 2472 | $queryMapping['resultClass'] = ltrim($queryMapping['resultClass'], '\\'); |
||
| 2473 | } |
||
| 2474 | |||
| 2475 | $this->namedNativeQueries[$queryMapping['name']] = $queryMapping; |
||
| 2476 | } |
||
| 2477 | |||
| 2478 | /** |
||
| 2479 | * INTERNAL: |
||
| 2480 | * Adds a sql result set mapping to this class. |
||
| 2481 | * |
||
| 2482 | * @param array $resultMapping |
||
| 2483 | * |
||
| 2484 | * @return void |
||
| 2485 | * |
||
| 2486 | * @throws MappingException |
||
| 2487 | */ |
||
| 2488 | public function addSqlResultSetMapping(array $resultMapping) |
||
| 2489 | { |
||
| 2490 | if (!isset($resultMapping['name'])) { |
||
| 2491 | throw MappingException::nameIsMandatoryForSqlResultSetMapping($this->name); |
||
| 2492 | } |
||
| 2493 | |||
| 2494 | if (isset($this->sqlResultSetMappings[$resultMapping['name']])) { |
||
| 2495 | throw MappingException::duplicateResultSetMapping($this->name, $resultMapping['name']); |
||
| 2496 | } |
||
| 2497 | |||
| 2498 | if (isset($resultMapping['entities'])) { |
||
| 2499 | foreach ($resultMapping['entities'] as $key => $entityResult) { |
||
| 2500 | if (!isset($entityResult['entityClass'])) { |
||
| 2501 | throw MappingException::missingResultSetMappingEntity($this->name, $resultMapping['name']); |
||
| 2502 | } |
||
| 2503 | |||
| 2504 | $entityResult['isSelfClass'] = false; |
||
| 2505 | if ($entityResult['entityClass'] === '__CLASS__') { |
||
| 2506 | |||
| 2507 | $entityResult['isSelfClass'] = true; |
||
| 2508 | $entityResult['entityClass'] = $this->name; |
||
| 2509 | |||
| 2510 | } |
||
| 2511 | |||
| 2512 | $entityResult['entityClass'] = $this->fullyQualifiedClassName($entityResult['entityClass']); |
||
| 2513 | |||
| 2514 | $resultMapping['entities'][$key]['entityClass'] = ltrim($entityResult['entityClass'], '\\'); |
||
| 2515 | $resultMapping['entities'][$key]['isSelfClass'] = $entityResult['isSelfClass']; |
||
| 2516 | |||
| 2517 | if (isset($entityResult['fields'])) { |
||
| 2518 | foreach ($entityResult['fields'] as $k => $field) { |
||
| 2519 | if (!isset($field['name'])) { |
||
| 2520 | throw MappingException::missingResultSetMappingFieldName($this->name, $resultMapping['name']); |
||
| 2521 | } |
||
| 2522 | |||
| 2523 | if (!isset($field['column'])) { |
||
| 2524 | $fieldName = $field['name']; |
||
| 2525 | if (strpos($fieldName, '.')) { |
||
| 2526 | list(, $fieldName) = explode('.', $fieldName); |
||
| 2527 | } |
||
| 2528 | |||
| 2529 | $resultMapping['entities'][$key]['fields'][$k]['column'] = $fieldName; |
||
| 2530 | } |
||
| 2531 | } |
||
| 2532 | } |
||
| 2533 | } |
||
| 2534 | } |
||
| 2535 | |||
| 2536 | $this->sqlResultSetMappings[$resultMapping['name']] = $resultMapping; |
||
| 2537 | } |
||
| 2538 | |||
| 2539 | /** |
||
| 2540 | * Adds a one-to-one mapping. |
||
| 2541 | * |
||
| 2542 | * @param array $mapping The mapping. |
||
| 2543 | * |
||
| 2544 | * @return void |
||
| 2545 | */ |
||
| 2546 | public function mapOneToOne(array $mapping) |
||
| 2547 | { |
||
| 2548 | $mapping['type'] = self::ONE_TO_ONE; |
||
| 2549 | |||
| 2550 | $mapping = $this->_validateAndCompleteOneToOneMapping($mapping); |
||
| 2551 | |||
| 2552 | $this->_storeAssociationMapping($mapping); |
||
| 2553 | } |
||
| 2554 | |||
| 2555 | /** |
||
| 2556 | * Adds a one-to-many mapping. |
||
| 2557 | * |
||
| 2558 | * @param array $mapping The mapping. |
||
| 2559 | * |
||
| 2560 | * @return void |
||
| 2561 | */ |
||
| 2562 | public function mapOneToMany(array $mapping) |
||
| 2563 | { |
||
| 2564 | $mapping['type'] = self::ONE_TO_MANY; |
||
| 2565 | |||
| 2566 | $mapping = $this->_validateAndCompleteOneToManyMapping($mapping); |
||
| 2567 | |||
| 2568 | $this->_storeAssociationMapping($mapping); |
||
| 2569 | } |
||
| 2570 | |||
| 2571 | /** |
||
| 2572 | * Adds a many-to-one mapping. |
||
| 2573 | * |
||
| 2574 | * @param array $mapping The mapping. |
||
| 2575 | * |
||
| 2576 | * @return void |
||
| 2577 | */ |
||
| 2578 | public function mapManyToOne(array $mapping) |
||
| 2579 | { |
||
| 2580 | $mapping['type'] = self::MANY_TO_ONE; |
||
| 2581 | |||
| 2582 | // A many-to-one mapping is essentially a one-one backreference |
||
| 2583 | $mapping = $this->_validateAndCompleteOneToOneMapping($mapping); |
||
| 2584 | |||
| 2585 | $this->_storeAssociationMapping($mapping); |
||
| 2586 | } |
||
| 2587 | |||
| 2588 | /** |
||
| 2589 | * Adds a many-to-many mapping. |
||
| 2590 | * |
||
| 2591 | * @param array $mapping The mapping. |
||
| 2592 | * |
||
| 2593 | * @return void |
||
| 2594 | */ |
||
| 2595 | public function mapManyToMany(array $mapping) |
||
| 2596 | { |
||
| 2597 | $mapping['type'] = self::MANY_TO_MANY; |
||
| 2598 | |||
| 2599 | $mapping = $this->_validateAndCompleteManyToManyMapping($mapping); |
||
| 2600 | |||
| 2601 | $this->_storeAssociationMapping($mapping); |
||
| 2602 | } |
||
| 2603 | |||
| 2604 | /** |
||
| 2605 | * Stores the association mapping. |
||
| 2606 | * |
||
| 2607 | * @param array $assocMapping |
||
| 2608 | * |
||
| 2609 | * @return void |
||
| 2610 | * |
||
| 2611 | * @throws MappingException |
||
| 2612 | */ |
||
| 2613 | protected function _storeAssociationMapping(array $assocMapping) |
||
| 2614 | { |
||
| 2615 | $sourceFieldName = $assocMapping['fieldName']; |
||
| 2616 | |||
| 2617 | $this->assertFieldNotMapped($sourceFieldName); |
||
| 2618 | |||
| 2619 | $this->associationMappings[$sourceFieldName] = $assocMapping; |
||
| 2620 | } |
||
| 2621 | |||
| 2622 | /** |
||
| 2623 | * Registers a custom repository class for the entity class. |
||
| 2624 | * |
||
| 2625 | * @param string $repositoryClassName The class name of the custom mapper. |
||
| 2626 | * |
||
| 2627 | * @return void |
||
| 2628 | */ |
||
| 2629 | public function setCustomRepositoryClass($repositoryClassName) |
||
| 2632 | } |
||
| 2633 | |||
| 2634 | /** |
||
| 2635 | * Dispatches the lifecycle event of the given entity to the registered |
||
| 2636 | * lifecycle callbacks and lifecycle listeners. |
||
| 2637 | * |
||
| 2638 | * @deprecated Deprecated since version 2.4 in favor of \Doctrine\ORM\Event\ListenersInvoker |
||
| 2639 | * |
||
| 2640 | * @param string $lifecycleEvent The lifecycle event. |
||
| 2641 | * @param object $entity The Entity on which the event occurred. |
||
| 2642 | * |
||
| 2643 | * @return void |
||
| 2644 | */ |
||
| 2645 | public function invokeLifecycleCallbacks($lifecycleEvent, $entity) |
||
| 2646 | { |
||
| 2647 | foreach ($this->lifecycleCallbacks[$lifecycleEvent] as $callback) { |
||
| 2648 | $entity->$callback(); |
||
| 2649 | } |
||
| 2650 | } |
||
| 2651 | |||
| 2652 | /** |
||
| 2653 | * Whether the class has any attached lifecycle listeners or callbacks for a lifecycle event. |
||
| 2654 | * |
||
| 2655 | * @param string $lifecycleEvent |
||
| 2656 | * |
||
| 2657 | * @return boolean |
||
| 2658 | */ |
||
| 2659 | public function hasLifecycleCallbacks($lifecycleEvent) |
||
| 2660 | { |
||
| 2661 | return isset($this->lifecycleCallbacks[$lifecycleEvent]); |
||
| 2662 | } |
||
| 2663 | |||
| 2664 | /** |
||
| 2665 | * Gets the registered lifecycle callbacks for an event. |
||
| 2666 | * |
||
| 2667 | * @param string $event |
||
| 2668 | * |
||
| 2669 | * @return array |
||
| 2670 | */ |
||
| 2671 | public function getLifecycleCallbacks($event) |
||
| 2672 | { |
||
| 2673 | return isset($this->lifecycleCallbacks[$event]) ? $this->lifecycleCallbacks[$event] : []; |
||
| 2674 | } |
||
| 2675 | |||
| 2676 | /** |
||
| 2677 | * Adds a lifecycle callback for entities of this class. |
||
| 2678 | * |
||
| 2679 | * @param string $callback |
||
| 2680 | * @param string $event |
||
| 2681 | * |
||
| 2682 | * @return void |
||
| 2683 | */ |
||
| 2684 | public function addLifecycleCallback($callback, $event) |
||
| 2685 | { |
||
| 2686 | if (isset($this->lifecycleCallbacks[$event]) && in_array($callback, $this->lifecycleCallbacks[$event])) { |
||
| 2687 | return; |
||
| 2688 | } |
||
| 2689 | |||
| 2690 | $this->lifecycleCallbacks[$event][] = $callback; |
||
| 2691 | } |
||
| 2692 | |||
| 2693 | /** |
||
| 2694 | * Sets the lifecycle callbacks for entities of this class. |
||
| 2695 | * Any previously registered callbacks are overwritten. |
||
| 2696 | * |
||
| 2697 | * @param array $callbacks |
||
| 2698 | * |
||
| 2699 | * @return void |
||
| 2700 | */ |
||
| 2701 | public function setLifecycleCallbacks(array $callbacks) |
||
| 2702 | { |
||
| 2703 | $this->lifecycleCallbacks = $callbacks; |
||
| 2704 | } |
||
| 2705 | |||
| 2706 | /** |
||
| 2707 | * Adds a entity listener for entities of this class. |
||
| 2708 | * |
||
| 2709 | * @param string $eventName The entity lifecycle event. |
||
| 2710 | * @param string $class The listener class. |
||
| 2711 | * @param string $method The listener callback method. |
||
| 2712 | * |
||
| 2713 | * @throws \Doctrine\ORM\Mapping\MappingException |
||
| 2714 | */ |
||
| 2715 | public function addEntityListener($eventName, $class, $method) |
||
| 2716 | { |
||
| 2717 | $class = $this->fullyQualifiedClassName($class); |
||
| 2718 | |||
| 2719 | $listener = [ |
||
| 2720 | 'class' => $class, |
||
| 2721 | 'method' => $method, |
||
| 2722 | ]; |
||
| 2723 | |||
| 2724 | if ( ! class_exists($class)) { |
||
| 2725 | throw MappingException::entityListenerClassNotFound($class, $this->name); |
||
| 2726 | } |
||
| 2727 | |||
| 2728 | if ( ! method_exists($class, $method)) { |
||
| 2729 | throw MappingException::entityListenerMethodNotFound($class, $method, $this->name); |
||
| 2730 | } |
||
| 2731 | |||
| 2732 | if (isset($this->entityListeners[$eventName]) && in_array($listener, $this->entityListeners[$eventName])) { |
||
| 2733 | throw MappingException::duplicateEntityListener($class, $method, $this->name); |
||
| 2734 | } |
||
| 2735 | |||
| 2736 | $this->entityListeners[$eventName][] = $listener; |
||
| 2737 | } |
||
| 2738 | |||
| 2739 | /** |
||
| 2740 | * Sets the discriminator column definition. |
||
| 2741 | * |
||
| 2742 | * @param array $columnDef |
||
| 2743 | * |
||
| 2744 | * @return void |
||
| 2745 | * |
||
| 2746 | * @throws MappingException |
||
| 2747 | * |
||
| 2748 | * @see getDiscriminatorColumn() |
||
| 2749 | */ |
||
| 2750 | public function setDiscriminatorColumn($columnDef) |
||
| 2751 | { |
||
| 2752 | if ($columnDef !== null) { |
||
| 2753 | if ( ! isset($columnDef['name'])) { |
||
| 2754 | throw MappingException::nameIsMandatoryForDiscriminatorColumns($this->name); |
||
| 2755 | } |
||
| 2756 | |||
| 2757 | if (isset($this->fieldNames[$columnDef['name']])) { |
||
| 2758 | throw MappingException::duplicateColumnName($this->name, $columnDef['name']); |
||
| 2759 | } |
||
| 2760 | |||
| 2761 | if ( ! isset($columnDef['fieldName'])) { |
||
| 2762 | $columnDef['fieldName'] = $columnDef['name']; |
||
| 2763 | } |
||
| 2764 | |||
| 2765 | if ( ! isset($columnDef['type'])) { |
||
| 2766 | $columnDef['type'] = "string"; |
||
| 2767 | } |
||
| 2768 | |||
| 2769 | if (in_array($columnDef['type'], ["boolean", "array", "object", "datetime", "time", "date"])) { |
||
| 2770 | throw MappingException::invalidDiscriminatorColumnType($this->name, $columnDef['type']); |
||
| 2771 | } |
||
| 2772 | |||
| 2773 | $this->discriminatorColumn = $columnDef; |
||
| 2774 | } |
||
| 2775 | } |
||
| 2776 | |||
| 2777 | /** |
||
| 2778 | * Sets the discriminator values used by this class. |
||
| 2779 | * Used for JOINED and SINGLE_TABLE inheritance mapping strategies. |
||
| 2780 | * |
||
| 2781 | * @param array $map |
||
| 2782 | * |
||
| 2783 | * @return void |
||
| 2784 | */ |
||
| 2785 | public function setDiscriminatorMap(array $map) |
||
| 2789 | } |
||
| 2790 | } |
||
| 2791 | |||
| 2792 | /** |
||
| 2793 | * Adds one entry of the discriminator map with a new class and corresponding name. |
||
| 2794 | * |
||
| 2795 | * @param string $name |
||
| 2796 | * @param string $className |
||
| 2797 | * |
||
| 2798 | * @return void |
||
| 2799 | * |
||
| 2800 | * @throws MappingException |
||
| 2801 | */ |
||
| 2802 | public function addDiscriminatorMapClass($name, $className) |
||
| 2803 | { |
||
| 2804 | $className = $this->fullyQualifiedClassName($className); |
||
| 2805 | $className = ltrim($className, '\\'); |
||
| 2806 | |||
| 2807 | $this->discriminatorMap[$name] = $className; |
||
| 2808 | |||
| 2809 | if ($this->name === $className) { |
||
| 2810 | $this->discriminatorValue = $name; |
||
| 2811 | |||
| 2812 | return; |
||
| 2813 | } |
||
| 2814 | |||
| 2815 | if ( ! (class_exists($className) || interface_exists($className))) { |
||
| 2816 | throw MappingException::invalidClassInDiscriminatorMap($className, $this->name); |
||
| 2817 | } |
||
| 2818 | |||
| 2819 | $refl = new ReflectionClass($className); |
||
| 2820 | if ($refl->name !== $className) { |
||
| 2821 | throw MappingException::invalidClassInDiscriminatorMap($className, $this->name); |
||
| 2822 | } |
||
| 2823 | |||
| 2824 | if (is_subclass_of($className, $this->name) && ! in_array($className, $this->subClasses)) { |
||
| 2825 | $this->subClasses[] = $className; |
||
| 2826 | } |
||
| 2827 | } |
||
| 2828 | |||
| 2829 | /** |
||
| 2830 | * Checks whether the class has a named query with the given query name. |
||
| 2831 | * |
||
| 2832 | * @param string $queryName |
||
| 2833 | * |
||
| 2834 | * @return boolean |
||
| 2835 | */ |
||
| 2836 | public function hasNamedQuery($queryName) |
||
| 2837 | { |
||
| 2838 | return isset($this->namedQueries[$queryName]); |
||
| 2839 | } |
||
| 2840 | |||
| 2841 | /** |
||
| 2842 | * Checks whether the class has a named native query with the given query name. |
||
| 2843 | * |
||
| 2844 | * @param string $queryName |
||
| 2845 | * |
||
| 2846 | * @return boolean |
||
| 2847 | */ |
||
| 2848 | public function hasNamedNativeQuery($queryName) |
||
| 2849 | { |
||
| 2850 | return isset($this->namedNativeQueries[$queryName]); |
||
| 2851 | } |
||
| 2852 | |||
| 2853 | /** |
||
| 2854 | * Checks whether the class has a named native query with the given query name. |
||
| 2855 | * |
||
| 2856 | * @param string $name |
||
| 2857 | * |
||
| 2858 | * @return boolean |
||
| 2859 | */ |
||
| 2860 | public function hasSqlResultSetMapping($name) |
||
| 2861 | { |
||
| 2862 | return isset($this->sqlResultSetMappings[$name]); |
||
| 2863 | } |
||
| 2864 | |||
| 2865 | /** |
||
| 2866 | * {@inheritDoc} |
||
| 2867 | */ |
||
| 2868 | public function hasAssociation($fieldName) |
||
| 2869 | { |
||
| 2870 | return isset($this->associationMappings[$fieldName]); |
||
| 2871 | } |
||
| 2872 | |||
| 2873 | /** |
||
| 2874 | * {@inheritDoc} |
||
| 2875 | */ |
||
| 2876 | public function isSingleValuedAssociation($fieldName) |
||
| 2877 | { |
||
| 2878 | return isset($this->associationMappings[$fieldName]) |
||
| 2879 | && ($this->associationMappings[$fieldName]['type'] & self::TO_ONE); |
||
| 2880 | } |
||
| 2881 | |||
| 2882 | /** |
||
| 2883 | * {@inheritDoc} |
||
| 2884 | */ |
||
| 2885 | public function isCollectionValuedAssociation($fieldName) |
||
| 2886 | { |
||
| 2887 | return isset($this->associationMappings[$fieldName]) |
||
| 2888 | && ! ($this->associationMappings[$fieldName]['type'] & self::TO_ONE); |
||
| 2889 | } |
||
| 2890 | |||
| 2891 | /** |
||
| 2892 | * Is this an association that only has a single join column? |
||
| 2893 | * |
||
| 2894 | * @param string $fieldName |
||
| 2895 | * |
||
| 2896 | * @return bool |
||
| 2897 | */ |
||
| 2898 | public function isAssociationWithSingleJoinColumn($fieldName) |
||
| 2899 | { |
||
| 2900 | return isset($this->associationMappings[$fieldName]) |
||
| 2901 | && isset($this->associationMappings[$fieldName]['joinColumns'][0]) |
||
| 2902 | && ! isset($this->associationMappings[$fieldName]['joinColumns'][1]); |
||
| 2903 | } |
||
| 2904 | |||
| 2905 | /** |
||
| 2906 | * Returns the single association join column (if any). |
||
| 2907 | * |
||
| 2908 | * @param string $fieldName |
||
| 2909 | * |
||
| 2910 | * @return string |
||
| 2911 | * |
||
| 2912 | * @throws MappingException |
||
| 2913 | */ |
||
| 2914 | public function getSingleAssociationJoinColumnName($fieldName) |
||
| 2915 | { |
||
| 2916 | if ( ! $this->isAssociationWithSingleJoinColumn($fieldName)) { |
||
| 2917 | throw MappingException::noSingleAssociationJoinColumnFound($this->name, $fieldName); |
||
| 2918 | } |
||
| 2919 | |||
| 2920 | return $this->associationMappings[$fieldName]['joinColumns'][0]['name']; |
||
| 2921 | } |
||
| 2922 | |||
| 2923 | /** |
||
| 2924 | * Returns the single association referenced join column name (if any). |
||
| 2925 | * |
||
| 2926 | * @param string $fieldName |
||
| 2927 | * |
||
| 2928 | * @return string |
||
| 2929 | * |
||
| 2930 | * @throws MappingException |
||
| 2931 | */ |
||
| 2932 | public function getSingleAssociationReferencedJoinColumnName($fieldName) |
||
| 2933 | { |
||
| 2934 | if ( ! $this->isAssociationWithSingleJoinColumn($fieldName)) { |
||
| 2935 | throw MappingException::noSingleAssociationJoinColumnFound($this->name, $fieldName); |
||
| 2936 | } |
||
| 2937 | |||
| 2938 | return $this->associationMappings[$fieldName]['joinColumns'][0]['referencedColumnName']; |
||
| 2939 | } |
||
| 2940 | |||
| 2941 | /** |
||
| 2942 | * Used to retrieve a fieldname for either field or association from a given column. |
||
| 2943 | * |
||
| 2944 | * This method is used in foreign-key as primary-key contexts. |
||
| 2945 | * |
||
| 2946 | * @param string $columnName |
||
| 2947 | * |
||
| 2948 | * @return string |
||
| 2949 | * |
||
| 2950 | * @throws MappingException |
||
| 2951 | */ |
||
| 2952 | public function getFieldForColumn($columnName) |
||
| 2953 | { |
||
| 2954 | if (isset($this->fieldNames[$columnName])) { |
||
| 2955 | return $this->fieldNames[$columnName]; |
||
| 2956 | } |
||
| 2957 | |||
| 2958 | foreach ($this->associationMappings as $assocName => $mapping) { |
||
| 2959 | if ($this->isAssociationWithSingleJoinColumn($assocName) && |
||
| 2960 | $this->associationMappings[$assocName]['joinColumns'][0]['name'] == $columnName) { |
||
| 2961 | |||
| 2962 | return $assocName; |
||
| 2963 | } |
||
| 2964 | } |
||
| 2965 | |||
| 2966 | throw MappingException::noFieldNameFoundForColumn($this->name, $columnName); |
||
| 2967 | } |
||
| 2968 | |||
| 2969 | /** |
||
| 2970 | * Sets the ID generator used to generate IDs for instances of this class. |
||
| 2971 | * |
||
| 2972 | * @param \Doctrine\ORM\Id\AbstractIdGenerator $generator |
||
| 2973 | * |
||
| 2974 | * @return void |
||
| 2975 | */ |
||
| 2976 | public function setIdGenerator($generator) |
||
| 2977 | { |
||
| 2978 | $this->idGenerator = $generator; |
||
| 2979 | } |
||
| 2980 | |||
| 2981 | /** |
||
| 2982 | * Sets definition. |
||
| 2983 | * |
||
| 2984 | * @param array $definition |
||
| 2985 | * |
||
| 2986 | * @return void |
||
| 2987 | */ |
||
| 2988 | public function setCustomGeneratorDefinition(array $definition) |
||
| 2989 | { |
||
| 2990 | $this->customGeneratorDefinition = $definition; |
||
| 2991 | } |
||
| 2992 | |||
| 2993 | /** |
||
| 2994 | * Sets the definition of the sequence ID generator for this class. |
||
| 2995 | * |
||
| 2996 | * The definition must have the following structure: |
||
| 2997 | * <code> |
||
| 2998 | * array( |
||
| 2999 | * 'sequenceName' => 'name', |
||
| 3000 | * 'allocationSize' => 20, |
||
| 3001 | * 'initialValue' => 1 |
||
| 3002 | * 'quoted' => 1 |
||
| 3003 | * ) |
||
| 3004 | * </code> |
||
| 3005 | * |
||
| 3006 | * @param array $definition |
||
| 3007 | * |
||
| 3008 | * @return void |
||
| 3009 | * |
||
| 3010 | * @throws MappingException |
||
| 3011 | */ |
||
| 3012 | public function setSequenceGeneratorDefinition(array $definition) |
||
| 3013 | { |
||
| 3014 | if ( ! isset($definition['sequenceName']) || trim($definition['sequenceName']) === '') { |
||
| 3015 | throw MappingException::missingSequenceName($this->name); |
||
| 3016 | } |
||
| 3017 | |||
| 3018 | if ($definition['sequenceName'][0] == '`') { |
||
| 3019 | $definition['sequenceName'] = trim($definition['sequenceName'], '`'); |
||
| 3020 | $definition['quoted'] = true; |
||
| 3021 | } |
||
| 3022 | |||
| 3023 | if ( ! isset($definition['allocationSize']) || trim($definition['allocationSize']) === '') { |
||
| 3024 | $definition['allocationSize'] = '1'; |
||
| 3025 | } |
||
| 3026 | |||
| 3027 | if ( ! isset($definition['initialValue']) || trim($definition['initialValue']) === '') { |
||
| 3028 | $definition['initialValue'] = '1'; |
||
| 3029 | } |
||
| 3030 | |||
| 3031 | $this->sequenceGeneratorDefinition = $definition; |
||
| 3032 | } |
||
| 3033 | |||
| 3034 | /** |
||
| 3035 | * Sets the version field mapping used for versioning. Sets the default |
||
| 3036 | * value to use depending on the column type. |
||
| 3037 | * |
||
| 3038 | * @param array $mapping The version field mapping array. |
||
| 3039 | * |
||
| 3040 | * @return void |
||
| 3041 | * |
||
| 3042 | * @throws MappingException |
||
| 3043 | */ |
||
| 3044 | public function setVersionMapping(array &$mapping) |
||
| 3045 | { |
||
| 3046 | $this->isVersioned = true; |
||
| 3047 | $this->versionField = $mapping['fieldName']; |
||
| 3048 | |||
| 3049 | if ( ! isset($mapping['default'])) { |
||
| 3050 | if (in_array($mapping['type'], ['integer', 'bigint', 'smallint'])) { |
||
| 3051 | $mapping['default'] = 1; |
||
| 3052 | } else if ($mapping['type'] == 'datetime') { |
||
| 3053 | $mapping['default'] = 'CURRENT_TIMESTAMP'; |
||
| 3054 | } else { |
||
| 3055 | throw MappingException::unsupportedOptimisticLockingType($this->name, $mapping['fieldName'], $mapping['type']); |
||
| 3056 | } |
||
| 3057 | } |
||
| 3058 | } |
||
| 3059 | |||
| 3060 | /** |
||
| 3061 | * Sets whether this class is to be versioned for optimistic locking. |
||
| 3062 | * |
||
| 3063 | * @param boolean $bool |
||
| 3064 | * |
||
| 3065 | * @return void |
||
| 3066 | */ |
||
| 3067 | public function setVersioned($bool) |
||
| 3068 | { |
||
| 3069 | $this->isVersioned = $bool; |
||
| 3070 | } |
||
| 3071 | |||
| 3072 | /** |
||
| 3073 | * Sets the name of the field that is to be used for versioning if this class is |
||
| 3074 | * versioned for optimistic locking. |
||
| 3075 | * |
||
| 3076 | * @param string $versionField |
||
| 3077 | * |
||
| 3078 | * @return void |
||
| 3079 | */ |
||
| 3080 | public function setVersionField($versionField) |
||
| 3081 | { |
||
| 3082 | $this->versionField = $versionField; |
||
| 3083 | } |
||
| 3084 | |||
| 3085 | /** |
||
| 3086 | * Marks this class as read only, no change tracking is applied to it. |
||
| 3087 | * |
||
| 3088 | * @return void |
||
| 3089 | */ |
||
| 3090 | public function markReadOnly() |
||
| 3093 | } |
||
| 3094 | |||
| 3095 | /** |
||
| 3096 | * {@inheritDoc} |
||
| 3097 | */ |
||
| 3098 | public function getFieldNames() |
||
| 3099 | { |
||
| 3100 | return array_keys($this->fieldMappings); |
||
| 3101 | } |
||
| 3102 | |||
| 3103 | /** |
||
| 3104 | * {@inheritDoc} |
||
| 3105 | */ |
||
| 3106 | public function getAssociationNames() |
||
| 3107 | { |
||
| 3108 | return array_keys($this->associationMappings); |
||
| 3109 | } |
||
| 3110 | |||
| 3111 | /** |
||
| 3112 | * {@inheritDoc} |
||
| 3113 | * |
||
| 3114 | * @throws InvalidArgumentException |
||
| 3115 | */ |
||
| 3116 | public function getAssociationTargetClass($assocName) |
||
| 3117 | { |
||
| 3118 | if ( ! isset($this->associationMappings[$assocName])) { |
||
| 3119 | throw new InvalidArgumentException("Association name expected, '" . $assocName ."' is not an association."); |
||
| 3120 | } |
||
| 3121 | |||
| 3122 | return $this->associationMappings[$assocName]['targetEntity']; |
||
| 3123 | } |
||
| 3124 | |||
| 3125 | /** |
||
| 3126 | * {@inheritDoc} |
||
| 3127 | */ |
||
| 3128 | public function getName() |
||
| 3129 | { |
||
| 3130 | return $this->name; |
||
| 3131 | } |
||
| 3132 | |||
| 3133 | /** |
||
| 3134 | * Gets the (possibly quoted) identifier column names for safe use in an SQL statement. |
||
| 3135 | * |
||
| 3136 | * @deprecated Deprecated since version 2.3 in favor of \Doctrine\ORM\Mapping\QuoteStrategy |
||
| 3137 | * |
||
| 3138 | * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform |
||
| 3139 | * |
||
| 3140 | * @return array |
||
| 3141 | */ |
||
| 3142 | public function getQuotedIdentifierColumnNames($platform) |
||
| 3143 | { |
||
| 3144 | $quotedColumnNames = []; |
||
| 3145 | |||
| 3146 | foreach ($this->identifier as $idProperty) { |
||
| 3147 | if (isset($this->fieldMappings[$idProperty])) { |
||
| 3148 | $quotedColumnNames[] = isset($this->fieldMappings[$idProperty]['quoted']) |
||
| 3149 | ? $platform->quoteIdentifier($this->fieldMappings[$idProperty]['columnName']) |
||
| 3150 | : $this->fieldMappings[$idProperty]['columnName']; |
||
| 3151 | |||
| 3152 | continue; |
||
| 3153 | } |
||
| 3154 | |||
| 3155 | // Association defined as Id field |
||
| 3156 | $joinColumns = $this->associationMappings[$idProperty]['joinColumns']; |
||
| 3157 | $assocQuotedColumnNames = array_map( |
||
| 3158 | function ($joinColumn) use ($platform) { |
||
| 3159 | return isset($joinColumn['quoted']) |
||
| 3160 | ? $platform->quoteIdentifier($joinColumn['name']) |
||
| 3161 | : $joinColumn['name']; |
||
| 3162 | }, |
||
| 3163 | $joinColumns |
||
| 3164 | ); |
||
| 3165 | |||
| 3166 | $quotedColumnNames = array_merge($quotedColumnNames, $assocQuotedColumnNames); |
||
| 3167 | } |
||
| 3168 | |||
| 3169 | return $quotedColumnNames; |
||
| 3170 | } |
||
| 3171 | |||
| 3172 | /** |
||
| 3173 | * Gets the (possibly quoted) column name of a mapped field for safe use in an SQL statement. |
||
| 3174 | * |
||
| 3175 | * @deprecated Deprecated since version 2.3 in favor of \Doctrine\ORM\Mapping\QuoteStrategy |
||
| 3176 | * |
||
| 3177 | * @param string $field |
||
| 3178 | * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform |
||
| 3179 | * |
||
| 3180 | * @return string |
||
| 3181 | */ |
||
| 3182 | public function getQuotedColumnName($field, $platform) |
||
| 3183 | { |
||
| 3184 | return isset($this->fieldMappings[$field]['quoted']) |
||
| 3185 | ? $platform->quoteIdentifier($this->fieldMappings[$field]['columnName']) |
||
| 3186 | : $this->fieldMappings[$field]['columnName']; |
||
| 3187 | } |
||
| 3188 | |||
| 3189 | /** |
||
| 3190 | * Gets the (possibly quoted) primary table name of this class for safe use in an SQL statement. |
||
| 3191 | * |
||
| 3192 | * @deprecated Deprecated since version 2.3 in favor of \Doctrine\ORM\Mapping\QuoteStrategy |
||
| 3193 | * |
||
| 3194 | * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform |
||
| 3195 | * |
||
| 3196 | * @return string |
||
| 3197 | */ |
||
| 3198 | public function getQuotedTableName($platform) |
||
| 3199 | { |
||
| 3200 | return isset($this->table['quoted']) |
||
| 3201 | ? $platform->quoteIdentifier($this->table['name']) |
||
| 3202 | : $this->table['name']; |
||
| 3203 | } |
||
| 3204 | |||
| 3205 | /** |
||
| 3206 | * Gets the (possibly quoted) name of the join table. |
||
| 3207 | * |
||
| 3208 | * @deprecated Deprecated since version 2.3 in favor of \Doctrine\ORM\Mapping\QuoteStrategy |
||
| 3209 | * |
||
| 3210 | * @param array $assoc |
||
| 3211 | * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform |
||
| 3212 | * |
||
| 3213 | * @return string |
||
| 3214 | */ |
||
| 3215 | public function getQuotedJoinTableName(array $assoc, $platform) |
||
| 3220 | } |
||
| 3221 | |||
| 3222 | /** |
||
| 3223 | * {@inheritDoc} |
||
| 3224 | */ |
||
| 3225 | public function isAssociationInverseSide($fieldName) |
||
| 3226 | { |
||
| 3227 | return isset($this->associationMappings[$fieldName]) |
||
| 3228 | && ! $this->associationMappings[$fieldName]['isOwningSide']; |
||
| 3229 | } |
||
| 3230 | |||
| 3231 | /** |
||
| 3232 | * {@inheritDoc} |
||
| 3233 | */ |
||
| 3234 | public function getAssociationMappedByTargetField($fieldName) |
||
| 3235 | { |
||
| 3236 | return $this->associationMappings[$fieldName]['mappedBy']; |
||
| 3237 | } |
||
| 3238 | |||
| 3239 | /** |
||
| 3240 | * @param string $targetClass |
||
| 3241 | * |
||
| 3242 | * @return array |
||
| 3243 | */ |
||
| 3244 | public function getAssociationsByTargetClass($targetClass) |
||
| 3245 | { |
||
| 3246 | $relations = []; |
||
| 3247 | |||
| 3248 | foreach ($this->associationMappings as $mapping) { |
||
| 3249 | if ($mapping['targetEntity'] == $targetClass) { |
||
| 3250 | $relations[$mapping['fieldName']] = $mapping; |
||
| 3251 | } |
||
| 3252 | } |
||
| 3253 | |||
| 3254 | return $relations; |
||
| 3255 | } |
||
| 3256 | |||
| 3257 | /** |
||
| 3258 | * @param string|null $className |
||
| 3259 | * |
||
| 3260 | * @return string|null null if the input value is null |
||
| 3261 | */ |
||
| 3262 | public function fullyQualifiedClassName($className) |
||
| 3263 | { |
||
| 3264 | if (empty($className)) { |
||
| 3265 | return $className; |
||
| 3266 | } |
||
| 3267 | |||
| 3268 | if ($className !== null && strpos($className, '\\') === false && $this->namespace) { |
||
| 3269 | return $this->namespace . '\\' . $className; |
||
| 3270 | } |
||
| 3271 | |||
| 3272 | return $className; |
||
| 3273 | } |
||
| 3274 | |||
| 3275 | /** |
||
| 3276 | * @param string $name |
||
| 3277 | * |
||
| 3278 | * @return mixed |
||
| 3279 | */ |
||
| 3280 | public function getMetadataValue($name) |
||
| 3288 | } |
||
| 3289 | |||
| 3290 | /** |
||
| 3291 | * Map Embedded Class |
||
| 3292 | * |
||
| 3293 | * @param array $mapping |
||
| 3294 | * |
||
| 3295 | * @throws MappingException |
||
| 3296 | * @return void |
||
| 3297 | */ |
||
| 3298 | public function mapEmbedded(array $mapping) |
||
| 3299 | { |
||
| 3300 | $this->assertFieldNotMapped($mapping['fieldName']); |
||
| 3301 | |||
| 3302 | $this->embeddedClasses[$mapping['fieldName']] = [ |
||
| 3303 | 'class' => $this->fullyQualifiedClassName($mapping['class']), |
||
| 3304 | 'columnPrefix' => $mapping['columnPrefix'], |
||
| 3305 | 'declaredField' => $mapping['declaredField'] ?? null, |
||
| 3306 | 'originalField' => $mapping['originalField'] ?? null, |
||
| 3307 | ]; |
||
| 3308 | } |
||
| 3309 | |||
| 3310 | /** |
||
| 3311 | * Inline the embeddable class |
||
| 3312 | * |
||
| 3313 | * @param string $property |
||
| 3314 | * @param ClassMetadataInfo $embeddable |
||
| 3315 | */ |
||
| 3316 | public function inlineEmbeddable($property, ClassMetadataInfo $embeddable) |
||
| 3317 | { |
||
| 3318 | foreach ($embeddable->fieldMappings as $fieldMapping) { |
||
| 3319 | $fieldMapping['originalClass'] = $fieldMapping['originalClass'] ?? $embeddable->name; |
||
| 3320 | $fieldMapping['declaredField'] = isset($fieldMapping['declaredField']) |
||
| 3321 | ? $property . '.' . $fieldMapping['declaredField'] |
||
| 3322 | : $property; |
||
| 3323 | $fieldMapping['originalField'] = $fieldMapping['originalField'] ?? $fieldMapping['fieldName']; |
||
| 3324 | $fieldMapping['fieldName'] = $property . "." . $fieldMapping['fieldName']; |
||
| 3325 | |||
| 3326 | if (! empty($this->embeddedClasses[$property]['columnPrefix'])) { |
||
| 3327 | $fieldMapping['columnName'] = $this->embeddedClasses[$property]['columnPrefix'] . $fieldMapping['columnName']; |
||
| 3328 | } elseif ($this->embeddedClasses[$property]['columnPrefix'] !== false) { |
||
| 3329 | $fieldMapping['columnName'] = $this->namingStrategy |
||
| 3330 | ->embeddedFieldToColumnName( |
||
| 3331 | $property, |
||
| 3332 | $fieldMapping['columnName'], |
||
| 3333 | $this->reflClass->name, |
||
| 3334 | $embeddable->reflClass->name |
||
| 3335 | ); |
||
| 3336 | } |
||
| 3337 | |||
| 3338 | $this->mapField($fieldMapping); |
||
| 3339 | } |
||
| 3340 | } |
||
| 3341 | |||
| 3342 | /** |
||
| 3343 | * @param string $fieldName |
||
| 3344 | * @throws MappingException |
||
| 3345 | */ |
||
| 3346 | private function assertFieldNotMapped($fieldName) |
||
| 3347 | { |
||
| 3348 | if (isset($this->fieldMappings[$fieldName]) || |
||
| 3349 | isset($this->associationMappings[$fieldName]) || |
||
| 3350 | isset($this->embeddedClasses[$fieldName])) { |
||
| 3351 | |||
| 3352 | throw MappingException::duplicateFieldMapping($this->name, $fieldName); |
||
| 3353 | } |
||
| 3354 | } |
||
| 3355 | |||
| 3356 | /** |
||
| 3357 | * Gets the sequence name based on class metadata. |
||
| 3358 | * |
||
| 3359 | * @param AbstractPlatform $platform |
||
| 3360 | * @return string |
||
| 3361 | * |
||
| 3362 | * @todo Sequence names should be computed in DBAL depending on the platform |
||
| 3363 | */ |
||
| 3364 | public function getSequenceName(AbstractPlatform $platform) |
||
| 3365 | { |
||
| 3366 | $sequencePrefix = $this->getSequencePrefix($platform); |
||
| 3367 | $columnName = $this->getSingleIdentifierColumnName(); |
||
| 3368 | $sequenceName = $sequencePrefix . '_' . $columnName . '_seq'; |
||
| 3369 | |||
| 3370 | return $sequenceName; |
||
| 3371 | } |
||
| 3372 | |||
| 3373 | /** |
||
| 3374 | * Gets the sequence name prefix based on class metadata. |
||
| 3375 | * |
||
| 3376 | * @param AbstractPlatform $platform |
||
| 3377 | * @return string |
||
| 3378 | * |
||
| 3379 | * @todo Sequence names should be computed in DBAL depending on the platform |
||
| 3380 | */ |
||
| 3381 | public function getSequencePrefix(AbstractPlatform $platform) |
||
| 3382 | { |
||
| 3383 | $tableName = $this->getTableName(); |
||
| 3384 | $sequencePrefix = $tableName; |
||
| 3385 | |||
| 3386 | // Prepend the schema name to the table name if there is one |
||
| 3387 | if ($schemaName = $this->getSchemaName()) { |
||
| 3388 | $sequencePrefix = $schemaName . '.' . $tableName; |
||
| 3389 | |||
| 3390 | if ( ! $platform->supportsSchemas() && $platform->canEmulateSchemas()) { |
||
| 3391 | $sequencePrefix = $schemaName . '__' . $tableName; |
||
| 3392 | } |
||
| 3393 | } |
||
| 3394 | |||
| 3395 | return $sequencePrefix; |
||
| 3396 | } |
||
| 3397 | |||
| 3398 | /** |
||
| 3399 | * @param array $mapping |
||
| 3400 | */ |
||
| 3401 | private function assertMappingOrderBy(array $mapping) |
||
| 3405 | } |
||
| 3406 | } |
||
| 3407 | } |
||
| 3408 |
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: