Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like UnitOfWork often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use UnitOfWork, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 45 | class UnitOfWork implements PropertyChangedListener |
||
| 46 | { |
||
| 47 | /** |
||
| 48 | * A document is in MANAGED state when its persistence is managed by a DocumentManager. |
||
| 49 | */ |
||
| 50 | const STATE_MANAGED = 1; |
||
| 51 | |||
| 52 | /** |
||
| 53 | * A document is new if it has just been instantiated (i.e. using the "new" operator) |
||
| 54 | * and is not (yet) managed by a DocumentManager. |
||
| 55 | */ |
||
| 56 | const STATE_NEW = 2; |
||
| 57 | |||
| 58 | /** |
||
| 59 | * A detached document is an instance with a persistent identity that is not |
||
| 60 | * (or no longer) associated with a DocumentManager (and a UnitOfWork). |
||
| 61 | */ |
||
| 62 | const STATE_DETACHED = 3; |
||
| 63 | |||
| 64 | /** |
||
| 65 | * A removed document instance is an instance with a persistent identity, |
||
| 66 | * associated with a DocumentManager, whose persistent state has been |
||
| 67 | * deleted (or is scheduled for deletion). |
||
| 68 | */ |
||
| 69 | const STATE_REMOVED = 4; |
||
| 70 | |||
| 71 | /** |
||
| 72 | * The identity map holds references to all managed documents. |
||
| 73 | * |
||
| 74 | * Documents are grouped by their class name, and then indexed by the |
||
| 75 | * serialized string of their database identifier field or, if the class |
||
| 76 | * has no identifier, the SPL object hash. Serializing the identifier allows |
||
| 77 | * differentiation of values that may be equal (via type juggling) but not |
||
| 78 | * identical. |
||
| 79 | * |
||
| 80 | * Since all classes in a hierarchy must share the same identifier set, |
||
| 81 | * we always take the root class name of the hierarchy. |
||
| 82 | * |
||
| 83 | * @var array |
||
| 84 | */ |
||
| 85 | private $identityMap = array(); |
||
| 86 | |||
| 87 | /** |
||
| 88 | * Map of all identifiers of managed documents. |
||
| 89 | * Keys are object ids (spl_object_hash). |
||
| 90 | * |
||
| 91 | * @var array |
||
| 92 | */ |
||
| 93 | private $documentIdentifiers = array(); |
||
| 94 | |||
| 95 | /** |
||
| 96 | * Map of the original document data of managed documents. |
||
| 97 | * Keys are object ids (spl_object_hash). This is used for calculating changesets |
||
| 98 | * at commit time. |
||
| 99 | * |
||
| 100 | * @var array |
||
| 101 | * @internal Note that PHPs "copy-on-write" behavior helps a lot with memory usage. |
||
| 102 | * A value will only really be copied if the value in the document is modified |
||
| 103 | * by the user. |
||
| 104 | */ |
||
| 105 | private $originalDocumentData = array(); |
||
| 106 | |||
| 107 | /** |
||
| 108 | * Map of document changes. Keys are object ids (spl_object_hash). |
||
| 109 | * Filled at the beginning of a commit of the UnitOfWork and cleaned at the end. |
||
| 110 | * |
||
| 111 | * @var array |
||
| 112 | */ |
||
| 113 | private $documentChangeSets = array(); |
||
| 114 | |||
| 115 | /** |
||
| 116 | * The (cached) states of any known documents. |
||
| 117 | * Keys are object ids (spl_object_hash). |
||
| 118 | * |
||
| 119 | * @var array |
||
| 120 | */ |
||
| 121 | private $documentStates = array(); |
||
| 122 | |||
| 123 | /** |
||
| 124 | * Map of documents that are scheduled for dirty checking at commit time. |
||
| 125 | * |
||
| 126 | * Documents are grouped by their class name, and then indexed by their SPL |
||
| 127 | * object hash. This is only used for documents with a change tracking |
||
| 128 | * policy of DEFERRED_EXPLICIT. |
||
| 129 | * |
||
| 130 | * @var array |
||
| 131 | * @todo rename: scheduledForSynchronization |
||
| 132 | */ |
||
| 133 | private $scheduledForDirtyCheck = array(); |
||
| 134 | |||
| 135 | /** |
||
| 136 | * A list of all pending document insertions. |
||
| 137 | * |
||
| 138 | * @var array |
||
| 139 | */ |
||
| 140 | private $documentInsertions = array(); |
||
| 141 | |||
| 142 | /** |
||
| 143 | * A list of all pending document updates. |
||
| 144 | * |
||
| 145 | * @var array |
||
| 146 | */ |
||
| 147 | private $documentUpdates = array(); |
||
| 148 | |||
| 149 | /** |
||
| 150 | * A list of all pending document upserts. |
||
| 151 | * |
||
| 152 | * @var array |
||
| 153 | */ |
||
| 154 | private $documentUpserts = array(); |
||
| 155 | |||
| 156 | /** |
||
| 157 | * A list of all pending document deletions. |
||
| 158 | * |
||
| 159 | * @var array |
||
| 160 | */ |
||
| 161 | private $documentDeletions = array(); |
||
| 162 | |||
| 163 | /** |
||
| 164 | * All pending collection deletions. |
||
| 165 | * |
||
| 166 | * @var array |
||
| 167 | */ |
||
| 168 | private $collectionDeletions = array(); |
||
| 169 | |||
| 170 | /** |
||
| 171 | * All pending collection updates. |
||
| 172 | * |
||
| 173 | * @var array |
||
| 174 | */ |
||
| 175 | private $collectionUpdates = array(); |
||
| 176 | |||
| 177 | /** |
||
| 178 | * A list of documents related to collections scheduled for update or deletion |
||
| 179 | * |
||
| 180 | * @var array |
||
| 181 | */ |
||
| 182 | private $hasScheduledCollections = array(); |
||
| 183 | |||
| 184 | /** |
||
| 185 | * List of collections visited during changeset calculation on a commit-phase of a UnitOfWork. |
||
| 186 | * At the end of the UnitOfWork all these collections will make new snapshots |
||
| 187 | * of their data. |
||
| 188 | * |
||
| 189 | * @var array |
||
| 190 | */ |
||
| 191 | private $visitedCollections = array(); |
||
| 192 | |||
| 193 | /** |
||
| 194 | * The DocumentManager that "owns" this UnitOfWork instance. |
||
| 195 | * |
||
| 196 | * @var DocumentManager |
||
| 197 | */ |
||
| 198 | private $dm; |
||
| 199 | |||
| 200 | /** |
||
| 201 | * The EventManager used for dispatching events. |
||
| 202 | * |
||
| 203 | * @var EventManager |
||
| 204 | */ |
||
| 205 | private $evm; |
||
| 206 | |||
| 207 | /** |
||
| 208 | * Additional documents that are scheduled for removal. |
||
| 209 | * |
||
| 210 | * @var array |
||
| 211 | */ |
||
| 212 | private $orphanRemovals = array(); |
||
| 213 | |||
| 214 | /** |
||
| 215 | * The HydratorFactory used for hydrating array Mongo documents to Doctrine object documents. |
||
| 216 | * |
||
| 217 | * @var HydratorFactory |
||
| 218 | */ |
||
| 219 | private $hydratorFactory; |
||
| 220 | |||
| 221 | /** |
||
| 222 | * The document persister instances used to persist document instances. |
||
| 223 | * |
||
| 224 | * @var array |
||
| 225 | */ |
||
| 226 | private $persisters = array(); |
||
| 227 | |||
| 228 | /** |
||
| 229 | * The collection persister instance used to persist changes to collections. |
||
| 230 | * |
||
| 231 | * @var Persisters\CollectionPersister |
||
| 232 | */ |
||
| 233 | private $collectionPersister; |
||
| 234 | |||
| 235 | /** |
||
| 236 | * The persistence builder instance used in DocumentPersisters. |
||
| 237 | * |
||
| 238 | * @var PersistenceBuilder |
||
| 239 | */ |
||
| 240 | private $persistenceBuilder; |
||
| 241 | |||
| 242 | /** |
||
| 243 | * Array of parent associations between embedded documents |
||
| 244 | * |
||
| 245 | * @todo We might need to clean up this array in clear(), doDetach(), etc. |
||
| 246 | * @var array |
||
| 247 | */ |
||
| 248 | private $parentAssociations = array(); |
||
| 249 | |||
| 250 | /** |
||
| 251 | * @var LifecycleEventManager |
||
| 252 | */ |
||
| 253 | private $lifecycleEventManager; |
||
| 254 | |||
| 255 | /** |
||
| 256 | * Initializes a new UnitOfWork instance, bound to the given DocumentManager. |
||
| 257 | * |
||
| 258 | * @param DocumentManager $dm |
||
| 259 | * @param EventManager $evm |
||
| 260 | * @param HydratorFactory $hydratorFactory |
||
| 261 | */ |
||
| 262 | 958 | public function __construct(DocumentManager $dm, EventManager $evm, HydratorFactory $hydratorFactory) |
|
| 263 | { |
||
| 264 | 958 | $this->dm = $dm; |
|
| 265 | 958 | $this->evm = $evm; |
|
| 266 | 958 | $this->hydratorFactory = $hydratorFactory; |
|
| 267 | 958 | $this->lifecycleEventManager = new LifecycleEventManager($dm, $this, $evm); |
|
| 268 | 958 | } |
|
| 269 | |||
| 270 | /** |
||
| 271 | * Factory for returning new PersistenceBuilder instances used for preparing data into |
||
| 272 | * queries for insert persistence. |
||
| 273 | * |
||
| 274 | * @return PersistenceBuilder $pb |
||
| 275 | */ |
||
| 276 | 691 | public function getPersistenceBuilder() |
|
| 277 | { |
||
| 278 | 691 | if ( ! $this->persistenceBuilder) { |
|
| 279 | 691 | $this->persistenceBuilder = new PersistenceBuilder($this->dm, $this); |
|
| 280 | 691 | } |
|
| 281 | 691 | return $this->persistenceBuilder; |
|
| 282 | } |
||
| 283 | |||
| 284 | /** |
||
| 285 | * Sets the parent association for a given embedded document. |
||
| 286 | * |
||
| 287 | * @param object $document |
||
| 288 | * @param array $mapping |
||
| 289 | * @param object $parent |
||
| 290 | * @param string $propertyPath |
||
| 291 | */ |
||
| 292 | 187 | public function setParentAssociation($document, $mapping, $parent, $propertyPath) |
|
| 293 | { |
||
| 294 | 187 | $oid = spl_object_hash($document); |
|
| 295 | 187 | $this->parentAssociations[$oid] = array($mapping, $parent, $propertyPath); |
|
| 296 | 187 | } |
|
| 297 | |||
| 298 | /** |
||
| 299 | * Gets the parent association for a given embedded document. |
||
| 300 | * |
||
| 301 | * <code> |
||
| 302 | * list($mapping, $parent, $propertyPath) = $this->getParentAssociation($embeddedDocument); |
||
| 303 | * </code> |
||
| 304 | * |
||
| 305 | * @param object $document |
||
| 306 | * @return array $association |
||
| 307 | */ |
||
| 308 | 214 | public function getParentAssociation($document) |
|
| 309 | { |
||
| 310 | 214 | $oid = spl_object_hash($document); |
|
| 311 | 214 | if ( ! isset($this->parentAssociations[$oid])) { |
|
| 312 | 210 | return null; |
|
| 313 | } |
||
| 314 | 170 | return $this->parentAssociations[$oid]; |
|
| 315 | } |
||
| 316 | |||
| 317 | /** |
||
| 318 | * Get the document persister instance for the given document name |
||
| 319 | * |
||
| 320 | * @param string $documentName |
||
| 321 | * @return Persisters\DocumentPersister |
||
| 322 | */ |
||
| 323 | 689 | public function getDocumentPersister($documentName) |
|
| 324 | { |
||
| 325 | 689 | if ( ! isset($this->persisters[$documentName])) { |
|
| 326 | 675 | $class = $this->dm->getClassMetadata($documentName); |
|
| 327 | 675 | $pb = $this->getPersistenceBuilder(); |
|
| 328 | 675 | $this->persisters[$documentName] = new Persisters\DocumentPersister($pb, $this->dm, $this->evm, $this, $this->hydratorFactory, $class); |
|
| 329 | 675 | } |
|
| 330 | 689 | return $this->persisters[$documentName]; |
|
| 331 | } |
||
| 332 | |||
| 333 | /** |
||
| 334 | * Get the collection persister instance. |
||
| 335 | * |
||
| 336 | * @return \Doctrine\ODM\MongoDB\Persisters\CollectionPersister |
||
| 337 | */ |
||
| 338 | 689 | public function getCollectionPersister() |
|
| 339 | { |
||
| 340 | 689 | if ( ! isset($this->collectionPersister)) { |
|
| 341 | 689 | $pb = $this->getPersistenceBuilder(); |
|
| 342 | 689 | $this->collectionPersister = new Persisters\CollectionPersister($this->dm, $pb, $this); |
|
| 343 | 689 | } |
|
| 344 | 689 | return $this->collectionPersister; |
|
| 345 | } |
||
| 346 | |||
| 347 | /** |
||
| 348 | * Set the document persister instance to use for the given document name |
||
| 349 | * |
||
| 350 | * @param string $documentName |
||
| 351 | * @param Persisters\DocumentPersister $persister |
||
| 352 | */ |
||
| 353 | 14 | public function setDocumentPersister($documentName, Persisters\DocumentPersister $persister) |
|
| 354 | { |
||
| 355 | 14 | $this->persisters[$documentName] = $persister; |
|
| 356 | 14 | } |
|
| 357 | |||
| 358 | /** |
||
| 359 | * Commits the UnitOfWork, executing all operations that have been postponed |
||
| 360 | * up to this point. The state of all managed documents will be synchronized with |
||
| 361 | * the database. |
||
| 362 | * |
||
| 363 | * The operations are executed in the following order: |
||
| 364 | * |
||
| 365 | * 1) All document insertions |
||
| 366 | * 2) All document updates |
||
| 367 | * 3) All document deletions |
||
| 368 | * |
||
| 369 | * @param object $document |
||
| 370 | * @param array $options Array of options to be used with batchInsert(), update() and remove() |
||
| 371 | */ |
||
| 372 | 573 | public function commit($document = null, array $options = array()) |
|
| 373 | { |
||
| 374 | // Raise preFlush |
||
| 375 | 573 | if ($this->evm->hasListeners(Events::preFlush)) { |
|
| 376 | $this->evm->dispatchEvent(Events::preFlush, new Event\PreFlushEventArgs($this->dm)); |
||
| 377 | } |
||
| 378 | |||
| 379 | 573 | $defaultOptions = $this->dm->getConfiguration()->getDefaultCommitOptions(); |
|
| 380 | 573 | if ($options) { |
|
|
|
|||
| 381 | $options = array_merge($defaultOptions, $options); |
||
| 382 | } else { |
||
| 383 | 573 | $options = $defaultOptions; |
|
| 384 | } |
||
| 385 | // Compute changes done since last commit. |
||
| 386 | 573 | if ($document === null) { |
|
| 387 | 567 | $this->computeChangeSets(); |
|
| 388 | 572 | } elseif (is_object($document)) { |
|
| 389 | 12 | $this->computeSingleDocumentChangeSet($document); |
|
| 390 | 12 | } elseif (is_array($document)) { |
|
| 391 | 1 | foreach ($document as $object) { |
|
| 392 | 1 | $this->computeSingleDocumentChangeSet($object); |
|
| 393 | 1 | } |
|
| 394 | 1 | } |
|
| 395 | |||
| 396 | 571 | if ( ! ($this->documentInsertions || |
|
| 397 | 241 | $this->documentUpserts || |
|
| 398 | 204 | $this->documentDeletions || |
|
| 399 | 194 | $this->documentUpdates || |
|
| 400 | 24 | $this->collectionUpdates || |
|
| 401 | 24 | $this->collectionDeletions || |
|
| 402 | 24 | $this->orphanRemovals) |
|
| 403 | 571 | ) { |
|
| 404 | 24 | return; // Nothing to do. |
|
| 405 | } |
||
| 406 | |||
| 407 | 568 | if ($this->orphanRemovals) { |
|
| 408 | 47 | foreach ($this->orphanRemovals as $removal) { |
|
| 409 | 47 | $this->remove($removal); |
|
| 410 | 48 | } |
|
| 411 | 47 | } |
|
| 412 | |||
| 413 | // Raise onFlush |
||
| 414 | 568 | if ($this->evm->hasListeners(Events::onFlush)) { |
|
| 415 | 7 | $this->evm->dispatchEvent(Events::onFlush, new Event\OnFlushEventArgs($this->dm)); |
|
| 416 | 7 | } |
|
| 417 | |||
| 418 | 568 | foreach ($this->getClassesForCommitAction($this->documentUpserts) as $classAndDocuments) { |
|
| 419 | 78 | list($class, $documents) = $classAndDocuments; |
|
| 420 | 78 | $this->executeUpserts($class, $documents, $options); |
|
| 421 | 568 | } |
|
| 422 | |||
| 423 | 568 | foreach ($this->getClassesForCommitAction($this->documentInsertions) as $classAndDocuments) { |
|
| 424 | 501 | list($class, $documents) = $classAndDocuments; |
|
| 425 | 501 | $this->executeInserts($class, $documents, $options); |
|
| 426 | 567 | } |
|
| 427 | |||
| 428 | 567 | foreach ($this->getClassesForCommitAction($this->documentUpdates) as $classAndDocuments) { |
|
| 429 | 222 | list($class, $documents) = $classAndDocuments; |
|
| 430 | 222 | $this->executeUpdates($class, $documents, $options); |
|
| 431 | 567 | } |
|
| 432 | |||
| 433 | 567 | foreach ($this->getClassesForCommitAction($this->documentDeletions, true) as $classAndDocuments) { |
|
| 434 | 64 | list($class, $documents) = $classAndDocuments; |
|
| 435 | 64 | $this->executeDeletions($class, $documents, $options); |
|
| 436 | 567 | } |
|
| 437 | |||
| 438 | // Raise postFlush |
||
| 439 | 567 | if ($this->evm->hasListeners(Events::postFlush)) { |
|
| 440 | $this->evm->dispatchEvent(Events::postFlush, new Event\PostFlushEventArgs($this->dm)); |
||
| 441 | } |
||
| 442 | |||
| 443 | // Clear up |
||
| 444 | 567 | $this->documentInsertions = |
|
| 445 | 567 | $this->documentUpserts = |
|
| 446 | 567 | $this->documentUpdates = |
|
| 447 | 567 | $this->documentDeletions = |
|
| 448 | 567 | $this->documentChangeSets = |
|
| 449 | 567 | $this->collectionUpdates = |
|
| 450 | 567 | $this->collectionDeletions = |
|
| 451 | 567 | $this->visitedCollections = |
|
| 452 | 567 | $this->scheduledForDirtyCheck = |
|
| 453 | 567 | $this->orphanRemovals = |
|
| 454 | 567 | $this->hasScheduledCollections = array(); |
|
| 455 | 567 | } |
|
| 456 | |||
| 457 | /** |
||
| 458 | * Groups a list of scheduled documents by their class. |
||
| 459 | * |
||
| 460 | * @param array $documents Scheduled documents (e.g. $this->documentInsertions) |
||
| 461 | * @param bool $includeEmbedded |
||
| 462 | * @return array Tuples of ClassMetadata and a corresponding array of objects |
||
| 463 | */ |
||
| 464 | 568 | private function getClassesForCommitAction($documents, $includeEmbedded = false) |
|
| 465 | { |
||
| 466 | 568 | if (empty($documents)) { |
|
| 467 | 568 | return array(); |
|
| 468 | } |
||
| 469 | 567 | $divided = array(); |
|
| 470 | 567 | $embeds = array(); |
|
| 471 | 567 | foreach ($documents as $oid => $d) { |
|
| 472 | 567 | $className = get_class($d); |
|
| 473 | 567 | if (isset($embeds[$className])) { |
|
| 474 | 70 | continue; |
|
| 475 | } |
||
| 476 | 567 | if (isset($divided[$className])) { |
|
| 477 | 139 | $divided[$className][1][$oid] = $d; |
|
| 478 | 139 | continue; |
|
| 479 | } |
||
| 480 | 567 | $class = $this->dm->getClassMetadata($className); |
|
| 481 | 567 | if ($class->isEmbeddedDocument && ! $includeEmbedded) { |
|
| 482 | 172 | $embeds[$className] = true; |
|
| 483 | 172 | continue; |
|
| 484 | } |
||
| 485 | 567 | if (empty($divided[$class->name])) { |
|
| 486 | 567 | $divided[$class->name] = array($class, array($oid => $d)); |
|
| 487 | 567 | } else { |
|
| 488 | 4 | $divided[$class->name][1][$oid] = $d; |
|
| 489 | } |
||
| 490 | 567 | } |
|
| 491 | 567 | return $divided; |
|
| 492 | } |
||
| 493 | |||
| 494 | /** |
||
| 495 | * Compute changesets of all documents scheduled for insertion. |
||
| 496 | * |
||
| 497 | * Embedded documents will not be processed. |
||
| 498 | */ |
||
| 499 | 575 | View Code Duplication | private function computeScheduleInsertsChangeSets() |
| 500 | { |
||
| 501 | 575 | foreach ($this->documentInsertions as $document) { |
|
| 502 | 509 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 503 | 509 | if ( ! $class->isEmbeddedDocument) { |
|
| 504 | 506 | $this->computeChangeSet($class, $document); |
|
| 505 | 505 | } |
|
| 506 | 574 | } |
|
| 507 | 574 | } |
|
| 508 | |||
| 509 | /** |
||
| 510 | * Compute changesets of all documents scheduled for upsert. |
||
| 511 | * |
||
| 512 | * Embedded documents will not be processed. |
||
| 513 | */ |
||
| 514 | 574 | View Code Duplication | private function computeScheduleUpsertsChangeSets() |
| 515 | { |
||
| 516 | 574 | foreach ($this->documentUpserts as $document) { |
|
| 517 | 77 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 518 | 77 | if ( ! $class->isEmbeddedDocument) { |
|
| 519 | 77 | $this->computeChangeSet($class, $document); |
|
| 520 | 77 | } |
|
| 521 | 574 | } |
|
| 522 | 574 | } |
|
| 523 | |||
| 524 | /** |
||
| 525 | * Only flush the given document according to a ruleset that keeps the UoW consistent. |
||
| 526 | * |
||
| 527 | * 1. All documents scheduled for insertion and (orphan) removals are processed as well! |
||
| 528 | * 2. Proxies are skipped. |
||
| 529 | * 3. Only if document is properly managed. |
||
| 530 | * |
||
| 531 | * @param object $document |
||
| 532 | * @throws \InvalidArgumentException If the document is not STATE_MANAGED |
||
| 533 | * @return void |
||
| 534 | */ |
||
| 535 | 13 | private function computeSingleDocumentChangeSet($document) |
|
| 536 | { |
||
| 537 | 13 | $state = $this->getDocumentState($document); |
|
| 538 | |||
| 539 | 13 | if ($state !== self::STATE_MANAGED && $state !== self::STATE_REMOVED) { |
|
| 540 | 1 | throw new \InvalidArgumentException('Document has to be managed or scheduled for removal for single computation ' . $this->objToStr($document)); |
|
| 541 | } |
||
| 542 | |||
| 543 | 12 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 544 | |||
| 545 | 12 | if ($state === self::STATE_MANAGED && $class->isChangeTrackingDeferredImplicit()) { |
|
| 546 | 9 | $this->persist($document); |
|
| 547 | 9 | } |
|
| 548 | |||
| 549 | // Compute changes for INSERTed and UPSERTed documents first. This must always happen even in this case. |
||
| 550 | 12 | $this->computeScheduleInsertsChangeSets(); |
|
| 551 | 12 | $this->computeScheduleUpsertsChangeSets(); |
|
| 552 | |||
| 553 | // Ignore uninitialized proxy objects |
||
| 554 | 12 | if ($document instanceof Proxy && ! $document->__isInitialized__) { |
|
| 555 | return; |
||
| 556 | } |
||
| 557 | |||
| 558 | // Only MANAGED documents that are NOT SCHEDULED FOR INSERTION, UPSERT OR DELETION are processed here. |
||
| 559 | 12 | $oid = spl_object_hash($document); |
|
| 560 | |||
| 561 | 12 | View Code Duplication | if ( ! isset($this->documentInsertions[$oid]) |
| 562 | 12 | && ! isset($this->documentUpserts[$oid]) |
|
| 563 | 12 | && ! isset($this->documentDeletions[$oid]) |
|
| 564 | 12 | && isset($this->documentStates[$oid]) |
|
| 565 | 12 | ) { |
|
| 566 | 8 | $this->computeChangeSet($class, $document); |
|
| 567 | 8 | } |
|
| 568 | 12 | } |
|
| 569 | |||
| 570 | /** |
||
| 571 | * Gets the changeset for a document. |
||
| 572 | * |
||
| 573 | * @param object $document |
||
| 574 | * @return array array('property' => array(0 => mixed|null, 1 => mixed|null)) |
||
| 575 | */ |
||
| 576 | 565 | public function getDocumentChangeSet($document) |
|
| 577 | { |
||
| 578 | 565 | $oid = spl_object_hash($document); |
|
| 579 | 565 | if (isset($this->documentChangeSets[$oid])) { |
|
| 580 | 565 | return $this->documentChangeSets[$oid]; |
|
| 581 | } |
||
| 582 | 54 | return array(); |
|
| 583 | } |
||
| 584 | |||
| 585 | /** |
||
| 586 | * INTERNAL: |
||
| 587 | * Sets the changeset for a document. |
||
| 588 | * |
||
| 589 | * @param object $document |
||
| 590 | * @param array $changeset |
||
| 591 | */ |
||
| 592 | 1 | public function setDocumentChangeSet($document, $changeset) |
|
| 593 | { |
||
| 594 | 1 | $this->documentChangeSets[spl_object_hash($document)] = $changeset; |
|
| 595 | 1 | } |
|
| 596 | |||
| 597 | /** |
||
| 598 | * Get a documents actual data, flattening all the objects to arrays. |
||
| 599 | * |
||
| 600 | * @param object $document |
||
| 601 | * @return array |
||
| 602 | */ |
||
| 603 | 572 | public function getDocumentActualData($document) |
|
| 604 | { |
||
| 605 | 572 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 606 | 572 | $actualData = array(); |
|
| 607 | 572 | foreach ($class->reflFields as $name => $refProp) { |
|
| 608 | 572 | $mapping = $class->fieldMappings[$name]; |
|
| 609 | // skip not saved fields |
||
| 610 | 572 | if (isset($mapping['notSaved']) && $mapping['notSaved'] === true) { |
|
| 611 | 50 | continue; |
|
| 612 | } |
||
| 613 | 572 | $value = $refProp->getValue($document); |
|
| 614 | 572 | if (isset($mapping['file']) && ! $value instanceof GridFSFile) { |
|
| 615 | 5 | $value = new GridFSFile($value); |
|
| 616 | 5 | $class->reflFields[$name]->setValue($document, $value); |
|
| 617 | 5 | $actualData[$name] = $value; |
|
| 618 | 572 | } elseif ((isset($mapping['association']) && $mapping['type'] === 'many') |
|
| 619 | 572 | && $value !== null && ! ($value instanceof PersistentCollectionInterface)) { |
|
| 620 | // If $actualData[$name] is not a Collection then use an ArrayCollection. |
||
| 621 | 378 | if ( ! $value instanceof Collection) { |
|
| 622 | 119 | $value = new ArrayCollection($value); |
|
| 623 | 119 | } |
|
| 624 | |||
| 625 | // Inject PersistentCollection |
||
| 626 | 378 | $coll = $this->dm->getConfiguration()->getPersistentCollectionFactory()->create($this->dm, $mapping, $value); |
|
| 627 | 378 | $coll->setOwner($document, $mapping); |
|
| 628 | 378 | $coll->setDirty( ! $value->isEmpty()); |
|
| 629 | 378 | $class->reflFields[$name]->setValue($document, $coll); |
|
| 630 | 378 | $actualData[$name] = $coll; |
|
| 631 | 378 | } else { |
|
| 632 | 572 | $actualData[$name] = $value; |
|
| 633 | } |
||
| 634 | 572 | } |
|
| 635 | 572 | return $actualData; |
|
| 636 | } |
||
| 637 | |||
| 638 | /** |
||
| 639 | * Computes the changes that happened to a single document. |
||
| 640 | * |
||
| 641 | * Modifies/populates the following properties: |
||
| 642 | * |
||
| 643 | * {@link originalDocumentData} |
||
| 644 | * If the document is NEW or MANAGED but not yet fully persisted (only has an id) |
||
| 645 | * then it was not fetched from the database and therefore we have no original |
||
| 646 | * document data yet. All of the current document data is stored as the original document data. |
||
| 647 | * |
||
| 648 | * {@link documentChangeSets} |
||
| 649 | * The changes detected on all properties of the document are stored there. |
||
| 650 | * A change is a tuple array where the first entry is the old value and the second |
||
| 651 | * entry is the new value of the property. Changesets are used by persisters |
||
| 652 | * to INSERT/UPDATE the persistent document state. |
||
| 653 | * |
||
| 654 | * {@link documentUpdates} |
||
| 655 | * If the document is already fully MANAGED (has been fetched from the database before) |
||
| 656 | * and any changes to its properties are detected, then a reference to the document is stored |
||
| 657 | * there to mark it for an update. |
||
| 658 | * |
||
| 659 | * @param ClassMetadata $class The class descriptor of the document. |
||
| 660 | * @param object $document The document for which to compute the changes. |
||
| 661 | */ |
||
| 662 | 572 | public function computeChangeSet(ClassMetadata $class, $document) |
|
| 663 | { |
||
| 664 | 572 | if ( ! $class->isInheritanceTypeNone()) { |
|
| 665 | 179 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 666 | 179 | } |
|
| 667 | |||
| 668 | // Fire PreFlush lifecycle callbacks |
||
| 669 | 572 | View Code Duplication | if ( ! empty($class->lifecycleCallbacks[Events::preFlush])) { |
| 670 | 11 | $class->invokeLifecycleCallbacks(Events::preFlush, $document, array(new Event\PreFlushEventArgs($this->dm))); |
|
| 671 | 11 | } |
|
| 672 | |||
| 673 | 572 | $this->computeOrRecomputeChangeSet($class, $document); |
|
| 674 | 571 | } |
|
| 675 | |||
| 676 | /** |
||
| 677 | * Used to do the common work of computeChangeSet and recomputeSingleDocumentChangeSet |
||
| 678 | * |
||
| 679 | * @param \Doctrine\ODM\MongoDB\Mapping\ClassMetadata $class |
||
| 680 | * @param object $document |
||
| 681 | * @param boolean $recompute |
||
| 682 | */ |
||
| 683 | 572 | private function computeOrRecomputeChangeSet(ClassMetadata $class, $document, $recompute = false) |
|
| 684 | { |
||
| 685 | 572 | $oid = spl_object_hash($document); |
|
| 686 | 572 | $actualData = $this->getDocumentActualData($document); |
|
| 687 | 572 | $isNewDocument = ! isset($this->originalDocumentData[$oid]); |
|
| 688 | 572 | if ($isNewDocument) { |
|
| 689 | // Document is either NEW or MANAGED but not yet fully persisted (only has an id). |
||
| 690 | // These result in an INSERT. |
||
| 691 | 572 | $this->originalDocumentData[$oid] = $actualData; |
|
| 692 | 572 | $changeSet = array(); |
|
| 693 | 572 | foreach ($actualData as $propName => $actualValue) { |
|
| 694 | /* At this PersistentCollection shouldn't be here, probably it |
||
| 695 | * was cloned and its ownership must be fixed |
||
| 696 | */ |
||
| 697 | 572 | if ($actualValue instanceof PersistentCollectionInterface && $actualValue->getOwner() !== $document) { |
|
| 698 | $actualData[$propName] = $this->fixPersistentCollectionOwnership($actualValue, $document, $class, $propName); |
||
| 699 | $actualValue = $actualData[$propName]; |
||
| 700 | } |
||
| 701 | // ignore inverse side of reference relationship |
||
| 702 | 572 | View Code Duplication | if (isset($class->fieldMappings[$propName]['reference']) && $class->fieldMappings[$propName]['isInverseSide']) { |
| 703 | 182 | continue; |
|
| 704 | } |
||
| 705 | 572 | $changeSet[$propName] = array(null, $actualValue); |
|
| 706 | 572 | } |
|
| 707 | 572 | $this->documentChangeSets[$oid] = $changeSet; |
|
| 708 | 572 | } else { |
|
| 709 | // Document is "fully" MANAGED: it was already fully persisted before |
||
| 710 | // and we have a copy of the original data |
||
| 711 | 282 | $originalData = $this->originalDocumentData[$oid]; |
|
| 712 | 282 | $isChangeTrackingNotify = $class->isChangeTrackingNotify(); |
|
| 713 | 282 | if ($isChangeTrackingNotify && ! $recompute && isset($this->documentChangeSets[$oid])) { |
|
| 714 | 2 | $changeSet = $this->documentChangeSets[$oid]; |
|
| 715 | 2 | } else { |
|
| 716 | 282 | $changeSet = array(); |
|
| 717 | } |
||
| 718 | |||
| 719 | 282 | foreach ($actualData as $propName => $actualValue) { |
|
| 720 | // skip not saved fields |
||
| 721 | 282 | if (isset($class->fieldMappings[$propName]['notSaved']) && $class->fieldMappings[$propName]['notSaved'] === true) { |
|
| 722 | continue; |
||
| 723 | } |
||
| 724 | |||
| 725 | 282 | $orgValue = isset($originalData[$propName]) ? $originalData[$propName] : null; |
|
| 726 | |||
| 727 | // skip if value has not changed |
||
| 728 | 282 | if ($orgValue === $actualValue) { |
|
| 729 | 281 | if ($actualValue instanceof PersistentCollectionInterface) { |
|
| 730 | 196 | if (! $actualValue->isDirty() && ! $this->isCollectionScheduledForDeletion($actualValue)) { |
|
| 731 | // consider dirty collections as changed as well |
||
| 732 | 173 | continue; |
|
| 733 | } |
||
| 734 | 281 | } elseif ( ! (isset($class->fieldMappings[$propName]['file']) && $actualValue->isDirty())) { |
|
| 735 | // but consider dirty GridFSFile instances as changed |
||
| 736 | 281 | continue; |
|
| 737 | } |
||
| 738 | 96 | } |
|
| 739 | |||
| 740 | // if relationship is a embed-one, schedule orphan removal to trigger cascade remove operations |
||
| 741 | 241 | if (isset($class->fieldMappings[$propName]['embedded']) && $class->fieldMappings[$propName]['type'] === 'one') { |
|
| 742 | 11 | if ($orgValue !== null) { |
|
| 743 | 6 | $this->scheduleOrphanRemoval($orgValue); |
|
| 744 | 6 | } |
|
| 745 | |||
| 746 | 11 | $changeSet[$propName] = array($orgValue, $actualValue); |
|
| 747 | 11 | continue; |
|
| 748 | } |
||
| 749 | |||
| 750 | // if owning side of reference-one relationship |
||
| 751 | 234 | if (isset($class->fieldMappings[$propName]['reference']) && $class->fieldMappings[$propName]['type'] === 'one' && $class->fieldMappings[$propName]['isOwningSide']) { |
|
| 752 | 11 | if ($orgValue !== null && $class->fieldMappings[$propName]['orphanRemoval']) { |
|
| 753 | 1 | $this->scheduleOrphanRemoval($orgValue); |
|
| 754 | 1 | } |
|
| 755 | |||
| 756 | 11 | $changeSet[$propName] = array($orgValue, $actualValue); |
|
| 757 | 11 | continue; |
|
| 758 | } |
||
| 759 | |||
| 760 | 229 | if ($isChangeTrackingNotify) { |
|
| 761 | 2 | continue; |
|
| 762 | } |
||
| 763 | |||
| 764 | // ignore inverse side of reference relationship |
||
| 765 | 228 | View Code Duplication | if (isset($class->fieldMappings[$propName]['reference']) && $class->fieldMappings[$propName]['isInverseSide']) { |
| 766 | 6 | continue; |
|
| 767 | } |
||
| 768 | |||
| 769 | // Persistent collection was exchanged with the "originally" |
||
| 770 | // created one. This can only mean it was cloned and replaced |
||
| 771 | // on another document. |
||
| 772 | 226 | if ($actualValue instanceof PersistentCollectionInterface && $actualValue->getOwner() !== $document) { |
|
| 773 | 6 | $actualValue = $this->fixPersistentCollectionOwnership($actualValue, $document, $class, $propName); |
|
| 774 | 6 | } |
|
| 775 | |||
| 776 | // if embed-many or reference-many relationship |
||
| 777 | 226 | if (isset($class->fieldMappings[$propName]['type']) && $class->fieldMappings[$propName]['type'] === 'many') { |
|
| 778 | 113 | $changeSet[$propName] = array($orgValue, $actualValue); |
|
| 779 | /* If original collection was exchanged with a non-empty value |
||
| 780 | * and $set will be issued, there is no need to $unset it first |
||
| 781 | */ |
||
| 782 | 113 | if ($actualValue && $actualValue->isDirty() && CollectionHelper::usesSet($class->fieldMappings[$propName]['strategy'])) { |
|
| 783 | 28 | continue; |
|
| 784 | } |
||
| 785 | 93 | if ($orgValue !== $actualValue && $orgValue instanceof PersistentCollectionInterface) { |
|
| 786 | 17 | $this->scheduleCollectionDeletion($orgValue); |
|
| 787 | 17 | } |
|
| 788 | 93 | continue; |
|
| 789 | } |
||
| 790 | |||
| 791 | // skip equivalent date values |
||
| 792 | 150 | if (isset($class->fieldMappings[$propName]['type']) && $class->fieldMappings[$propName]['type'] === 'date') { |
|
| 793 | 36 | $dateType = Type::getType('date'); |
|
| 794 | 36 | $dbOrgValue = $dateType->convertToDatabaseValue($orgValue); |
|
| 795 | 36 | $dbActualValue = $dateType->convertToDatabaseValue($actualValue); |
|
| 796 | |||
| 797 | 36 | if ($dbOrgValue instanceof \MongoDate && $dbActualValue instanceof \MongoDate && $dbOrgValue == $dbActualValue) { |
|
| 798 | 29 | continue; |
|
| 799 | } |
||
| 800 | 10 | } |
|
| 801 | |||
| 802 | // regular field |
||
| 803 | 134 | $changeSet[$propName] = array($orgValue, $actualValue); |
|
| 804 | 282 | } |
|
| 805 | 282 | if ($changeSet) { |
|
| 806 | 231 | $this->documentChangeSets[$oid] = isset($this->documentChangeSets[$oid]) |
|
| 807 | 231 | ? $changeSet + $this->documentChangeSets[$oid] |
|
| 808 | 21 | : $changeSet; |
|
| 809 | |||
| 810 | 231 | $this->originalDocumentData[$oid] = $actualData; |
|
| 811 | 231 | $this->scheduleForUpdate($document); |
|
| 812 | 231 | } |
|
| 813 | } |
||
| 814 | |||
| 815 | // Look for changes in associations of the document |
||
| 816 | 572 | $associationMappings = array_filter( |
|
| 817 | 572 | $class->associationMappings, |
|
| 818 | function ($assoc) { return empty($assoc['notSaved']); } |
||
| 819 | 572 | ); |
|
| 820 | |||
| 821 | 572 | foreach ($associationMappings as $mapping) { |
|
| 822 | 443 | $value = $class->reflFields[$mapping['fieldName']]->getValue($document); |
|
| 823 | |||
| 824 | 443 | if ($value === null) { |
|
| 825 | 298 | continue; |
|
| 826 | } |
||
| 827 | |||
| 828 | 434 | $this->computeAssociationChanges($document, $mapping, $value); |
|
| 829 | |||
| 830 | 433 | if (isset($mapping['reference'])) { |
|
| 831 | 328 | continue; |
|
| 832 | } |
||
| 833 | |||
| 834 | 340 | $values = $mapping['type'] === ClassMetadata::ONE ? array($value) : $value->unwrap(); |
|
| 835 | |||
| 836 | 340 | foreach ($values as $obj) { |
|
| 837 | 176 | $oid2 = spl_object_hash($obj); |
|
| 838 | |||
| 839 | 176 | if (isset($this->documentChangeSets[$oid2])) { |
|
| 840 | 174 | $this->documentChangeSets[$oid][$mapping['fieldName']] = array($value, $value); |
|
| 841 | |||
| 842 | 174 | if ( ! $isNewDocument) { |
|
| 843 | 78 | $this->scheduleForUpdate($document); |
|
| 844 | 78 | } |
|
| 845 | |||
| 846 | 174 | break; |
|
| 847 | } |
||
| 848 | 340 | } |
|
| 849 | 571 | } |
|
| 850 | 571 | } |
|
| 851 | |||
| 852 | /** |
||
| 853 | * Computes all the changes that have been done to documents and collections |
||
| 854 | * since the last commit and stores these changes in the _documentChangeSet map |
||
| 855 | * temporarily for access by the persisters, until the UoW commit is finished. |
||
| 856 | */ |
||
| 857 | 570 | public function computeChangeSets() |
|
| 858 | { |
||
| 859 | 570 | $this->computeScheduleInsertsChangeSets(); |
|
| 860 | 569 | $this->computeScheduleUpsertsChangeSets(); |
|
| 861 | |||
| 862 | // Compute changes for other MANAGED documents. Change tracking policies take effect here. |
||
| 863 | 569 | foreach ($this->identityMap as $className => $documents) { |
|
| 864 | 569 | $class = $this->dm->getClassMetadata($className); |
|
| 865 | 569 | if ($class->isEmbeddedDocument) { |
|
| 866 | /* we do not want to compute changes to embedded documents up front |
||
| 867 | * in case embedded document was replaced and its changeset |
||
| 868 | * would corrupt data. Embedded documents' change set will |
||
| 869 | * be calculated by reachability from owning document. |
||
| 870 | */ |
||
| 871 | 164 | continue; |
|
| 872 | } |
||
| 873 | |||
| 874 | // If change tracking is explicit or happens through notification, then only compute |
||
| 875 | // changes on document of that type that are explicitly marked for synchronization. |
||
| 876 | 569 | switch (true) { |
|
| 877 | 569 | case ($class->isChangeTrackingDeferredImplicit()): |
|
| 878 | 568 | $documentsToProcess = $documents; |
|
| 879 | 568 | break; |
|
| 880 | |||
| 881 | 3 | case (isset($this->scheduledForDirtyCheck[$className])): |
|
| 882 | 2 | $documentsToProcess = $this->scheduledForDirtyCheck[$className]; |
|
| 883 | 2 | break; |
|
| 884 | |||
| 885 | 3 | default: |
|
| 886 | 3 | $documentsToProcess = array(); |
|
| 887 | |||
| 888 | 3 | } |
|
| 889 | |||
| 890 | 569 | foreach ($documentsToProcess as $document) { |
|
| 891 | // Ignore uninitialized proxy objects |
||
| 892 | 565 | if ($document instanceof Proxy && ! $document->__isInitialized__) { |
|
| 893 | 10 | continue; |
|
| 894 | } |
||
| 895 | // Only MANAGED documents that are NOT SCHEDULED FOR INSERTION, UPSERT OR DELETION are processed here. |
||
| 896 | 565 | $oid = spl_object_hash($document); |
|
| 897 | 565 | View Code Duplication | if ( ! isset($this->documentInsertions[$oid]) |
| 898 | 565 | && ! isset($this->documentUpserts[$oid]) |
|
| 899 | 565 | && ! isset($this->documentDeletions[$oid]) |
|
| 900 | 565 | && isset($this->documentStates[$oid]) |
|
| 901 | 565 | ) { |
|
| 902 | 267 | $this->computeChangeSet($class, $document); |
|
| 903 | 267 | } |
|
| 904 | 569 | } |
|
| 905 | 569 | } |
|
| 906 | 569 | } |
|
| 907 | |||
| 908 | /** |
||
| 909 | * Computes the changes of an association. |
||
| 910 | * |
||
| 911 | * @param object $parentDocument |
||
| 912 | * @param array $assoc |
||
| 913 | * @param mixed $value The value of the association. |
||
| 914 | * @throws \InvalidArgumentException |
||
| 915 | */ |
||
| 916 | 434 | private function computeAssociationChanges($parentDocument, array $assoc, $value) |
|
| 917 | { |
||
| 918 | 434 | $isNewParentDocument = isset($this->documentInsertions[spl_object_hash($parentDocument)]); |
|
| 919 | 434 | $class = $this->dm->getClassMetadata(get_class($parentDocument)); |
|
| 920 | 434 | $topOrExistingDocument = ( ! $isNewParentDocument || ! $class->isEmbeddedDocument); |
|
| 921 | |||
| 922 | 434 | if ($value instanceof Proxy && ! $value->__isInitialized__) { |
|
| 923 | 8 | return; |
|
| 924 | } |
||
| 925 | |||
| 926 | 433 | if ($value instanceof PersistentCollectionInterface && $value->isDirty() && ($assoc['isOwningSide'] || isset($assoc['embedded']))) { |
|
| 927 | 235 | if ($topOrExistingDocument || CollectionHelper::usesSet($assoc['strategy'])) { |
|
| 928 | 231 | $this->scheduleCollectionUpdate($value); |
|
| 929 | 231 | } |
|
| 930 | 235 | $topmostOwner = $this->getOwningDocument($value->getOwner()); |
|
| 931 | 235 | $this->visitedCollections[spl_object_hash($topmostOwner)][] = $value; |
|
| 932 | 235 | if ( ! empty($assoc['orphanRemoval']) || isset($assoc['embedded'])) { |
|
| 933 | 138 | $value->initialize(); |
|
| 934 | 138 | foreach ($value->getDeletedDocuments() as $orphan) { |
|
| 935 | 22 | $this->scheduleOrphanRemoval($orphan); |
|
| 936 | 138 | } |
|
| 937 | 138 | } |
|
| 938 | 235 | } |
|
| 939 | |||
| 940 | // Look through the documents, and in any of their associations, |
||
| 941 | // for transient (new) documents, recursively. ("Persistence by reachability") |
||
| 942 | // Unwrap. Uninitialized collections will simply be empty. |
||
| 943 | 433 | $unwrappedValue = ($assoc['type'] === ClassMetadata::ONE) ? array($value) : $value->unwrap(); |
|
| 944 | |||
| 945 | 433 | $count = 0; |
|
| 946 | 433 | foreach ($unwrappedValue as $key => $entry) { |
|
| 947 | 338 | if ( ! is_object($entry)) { |
|
| 948 | 1 | throw new \InvalidArgumentException( |
|
| 949 | 1 | sprintf('Expected object, found "%s" in %s::%s', $entry, get_class($parentDocument), $assoc['name']) |
|
| 950 | 1 | ); |
|
| 951 | } |
||
| 952 | |||
| 953 | 337 | $targetClass = $this->dm->getClassMetadata(get_class($entry)); |
|
| 954 | |||
| 955 | 337 | $state = $this->getDocumentState($entry, self::STATE_NEW); |
|
| 956 | |||
| 957 | // Handle "set" strategy for multi-level hierarchy |
||
| 958 | 337 | $pathKey = ! isset($assoc['strategy']) || CollectionHelper::isList($assoc['strategy']) ? $count : $key; |
|
| 959 | 337 | $path = $assoc['type'] === 'many' ? $assoc['name'] . '.' . $pathKey : $assoc['name']; |
|
| 960 | |||
| 961 | 337 | $count++; |
|
| 962 | |||
| 963 | switch ($state) { |
||
| 964 | 337 | case self::STATE_NEW: |
|
| 965 | 59 | if ( ! $assoc['isCascadePersist']) { |
|
| 966 | throw new \InvalidArgumentException('A new document was found through a relationship that was not' |
||
| 967 | . ' configured to cascade persist operations: ' . $this->objToStr($entry) . '.' |
||
| 968 | . ' Explicitly persist the new document or configure cascading persist operations' |
||
| 969 | . ' on the relationship.'); |
||
| 970 | } |
||
| 971 | |||
| 972 | 59 | $this->persistNew($targetClass, $entry); |
|
| 973 | 59 | $this->setParentAssociation($entry, $assoc, $parentDocument, $path); |
|
| 974 | 59 | $this->computeChangeSet($targetClass, $entry); |
|
| 975 | 59 | break; |
|
| 976 | |||
| 977 | 331 | case self::STATE_MANAGED: |
|
| 978 | 331 | if ($targetClass->isEmbeddedDocument) { |
|
| 979 | 166 | list(, $knownParent, ) = $this->getParentAssociation($entry); |
|
| 980 | 166 | if ($knownParent && $knownParent !== $parentDocument) { |
|
| 981 | 6 | $entry = clone $entry; |
|
| 982 | 6 | if ($assoc['type'] === ClassMetadata::ONE) { |
|
| 983 | 3 | $class->setFieldValue($parentDocument, $assoc['name'], $entry); |
|
| 984 | 3 | $this->setOriginalDocumentProperty(spl_object_hash($parentDocument), $assoc['name'], $entry); |
|
| 985 | 3 | } else { |
|
| 986 | // must use unwrapped value to not trigger orphan removal |
||
| 987 | 6 | $unwrappedValue[$key] = $entry; |
|
| 988 | } |
||
| 989 | 6 | $this->persistNew($targetClass, $entry); |
|
| 990 | 6 | } |
|
| 991 | 166 | $this->setParentAssociation($entry, $assoc, $parentDocument, $path); |
|
| 992 | 166 | $this->computeChangeSet($targetClass, $entry); |
|
| 993 | 166 | } |
|
| 994 | 331 | break; |
|
| 995 | |||
| 996 | 1 | case self::STATE_REMOVED: |
|
| 997 | // Consume the $value as array (it's either an array or an ArrayAccess) |
||
| 998 | // and remove the element from Collection. |
||
| 999 | 1 | if ($assoc['type'] === ClassMetadata::MANY) { |
|
| 1000 | unset($value[$key]); |
||
| 1001 | } |
||
| 1002 | 1 | break; |
|
| 1003 | |||
| 1004 | case self::STATE_DETACHED: |
||
| 1005 | // Can actually not happen right now as we assume STATE_NEW, |
||
| 1006 | // so the exception will be raised from the DBAL layer (constraint violation). |
||
| 1007 | throw new \InvalidArgumentException('A detached document was found through a ' |
||
| 1008 | . 'relationship during cascading a persist operation.'); |
||
| 1009 | |||
| 1010 | default: |
||
| 1011 | // MANAGED associated documents are already taken into account |
||
| 1012 | // during changeset calculation anyway, since they are in the identity map. |
||
| 1013 | |||
| 1014 | } |
||
| 1015 | 432 | } |
|
| 1016 | 432 | } |
|
| 1017 | |||
| 1018 | /** |
||
| 1019 | * INTERNAL: |
||
| 1020 | * Computes the changeset of an individual document, independently of the |
||
| 1021 | * computeChangeSets() routine that is used at the beginning of a UnitOfWork#commit(). |
||
| 1022 | * |
||
| 1023 | * The passed document must be a managed document. If the document already has a change set |
||
| 1024 | * because this method is invoked during a commit cycle then the change sets are added. |
||
| 1025 | * whereby changes detected in this method prevail. |
||
| 1026 | * |
||
| 1027 | * @ignore |
||
| 1028 | * @param ClassMetadata $class The class descriptor of the document. |
||
| 1029 | * @param object $document The document for which to (re)calculate the change set. |
||
| 1030 | * @throws \InvalidArgumentException If the passed document is not MANAGED. |
||
| 1031 | */ |
||
| 1032 | 20 | public function recomputeSingleDocumentChangeSet(ClassMetadata $class, $document) |
|
| 1033 | { |
||
| 1034 | // Ignore uninitialized proxy objects |
||
| 1035 | 20 | if ($document instanceof Proxy && ! $document->__isInitialized__) { |
|
| 1036 | 1 | return; |
|
| 1037 | } |
||
| 1038 | |||
| 1039 | 19 | $oid = spl_object_hash($document); |
|
| 1040 | |||
| 1041 | 19 | if ( ! isset($this->documentStates[$oid]) || $this->documentStates[$oid] != self::STATE_MANAGED) { |
|
| 1042 | throw new \InvalidArgumentException('Document must be managed.'); |
||
| 1043 | } |
||
| 1044 | |||
| 1045 | 19 | if ( ! $class->isInheritanceTypeNone()) { |
|
| 1046 | 2 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 1047 | 2 | } |
|
| 1048 | |||
| 1049 | 19 | $this->computeOrRecomputeChangeSet($class, $document, true); |
|
| 1050 | 19 | } |
|
| 1051 | |||
| 1052 | /** |
||
| 1053 | * @param ClassMetadata $class |
||
| 1054 | * @param object $document |
||
| 1055 | * @throws \InvalidArgumentException If there is something wrong with document's identifier. |
||
| 1056 | */ |
||
| 1057 | 596 | private function persistNew(ClassMetadata $class, $document) |
|
| 1058 | { |
||
| 1059 | 596 | $this->lifecycleEventManager->prePersist($class, $document); |
|
| 1060 | 596 | $oid = spl_object_hash($document); |
|
| 1061 | 596 | $upsert = false; |
|
| 1062 | 596 | if ($class->identifier) { |
|
| 1063 | 596 | $idValue = $class->getIdentifierValue($document); |
|
| 1064 | 596 | $upsert = ! $class->isEmbeddedDocument && $idValue !== null; |
|
| 1065 | |||
| 1066 | 596 | if ($class->generatorType === ClassMetadata::GENERATOR_TYPE_NONE && $idValue === null) { |
|
| 1067 | 3 | throw new \InvalidArgumentException(sprintf( |
|
| 1068 | 3 | '%s uses NONE identifier generation strategy but no identifier was provided when persisting.', |
|
| 1069 | 3 | get_class($document) |
|
| 1070 | 3 | )); |
|
| 1071 | } |
||
| 1072 | |||
| 1073 | 595 | if ($class->generatorType === ClassMetadata::GENERATOR_TYPE_AUTO && $idValue !== null && ! \MongoId::isValid($idValue)) { |
|
| 1074 | 1 | throw new \InvalidArgumentException(sprintf( |
|
| 1075 | 1 | '%s uses AUTO identifier generation strategy but provided identifier is not valid MongoId.', |
|
| 1076 | 1 | get_class($document) |
|
| 1077 | 1 | )); |
|
| 1078 | } |
||
| 1079 | |||
| 1080 | 594 | if ($class->generatorType !== ClassMetadata::GENERATOR_TYPE_NONE && $idValue === null) { |
|
| 1081 | 523 | $idValue = $class->idGenerator->generate($this->dm, $document); |
|
| 1082 | 523 | $idValue = $class->getPHPIdentifierValue($class->getDatabaseIdentifierValue($idValue)); |
|
| 1083 | 523 | $class->setIdentifierValue($document, $idValue); |
|
| 1084 | 523 | } |
|
| 1085 | |||
| 1086 | 594 | $this->documentIdentifiers[$oid] = $idValue; |
|
| 1087 | 594 | } else { |
|
| 1088 | // this is for embedded documents without identifiers |
||
| 1089 | 149 | $this->documentIdentifiers[$oid] = $oid; |
|
| 1090 | } |
||
| 1091 | |||
| 1092 | 594 | $this->documentStates[$oid] = self::STATE_MANAGED; |
|
| 1093 | |||
| 1094 | 594 | if ($upsert) { |
|
| 1095 | 81 | $this->scheduleForUpsert($class, $document); |
|
| 1096 | 81 | } else { |
|
| 1097 | 528 | $this->scheduleForInsert($class, $document); |
|
| 1098 | } |
||
| 1099 | 594 | } |
|
| 1100 | |||
| 1101 | /** |
||
| 1102 | * Executes all document insertions for documents of the specified type. |
||
| 1103 | * |
||
| 1104 | * @param ClassMetadata $class |
||
| 1105 | * @param array $documents Array of documents to insert |
||
| 1106 | * @param array $options Array of options to be used with batchInsert() |
||
| 1107 | */ |
||
| 1108 | 501 | View Code Duplication | private function executeInserts(ClassMetadata $class, array $documents, array $options = array()) |
| 1109 | { |
||
| 1110 | 501 | $persister = $this->getDocumentPersister($class->name); |
|
| 1111 | |||
| 1112 | 501 | foreach ($documents as $oid => $document) { |
|
| 1113 | 501 | $persister->addInsert($document); |
|
| 1114 | 501 | unset($this->documentInsertions[$oid]); |
|
| 1115 | 501 | } |
|
| 1116 | |||
| 1117 | 501 | $persister->executeInserts($options); |
|
| 1118 | |||
| 1119 | 500 | foreach ($documents as $document) { |
|
| 1120 | 500 | $this->lifecycleEventManager->postPersist($class, $document); |
|
| 1121 | 500 | } |
|
| 1122 | 500 | } |
|
| 1123 | |||
| 1124 | /** |
||
| 1125 | * Executes all document upserts for documents of the specified type. |
||
| 1126 | * |
||
| 1127 | * @param ClassMetadata $class |
||
| 1128 | * @param array $documents Array of documents to upsert |
||
| 1129 | * @param array $options Array of options to be used with batchInsert() |
||
| 1130 | */ |
||
| 1131 | 78 | View Code Duplication | private function executeUpserts(ClassMetadata $class, array $documents, array $options = array()) |
| 1132 | { |
||
| 1133 | 78 | $persister = $this->getDocumentPersister($class->name); |
|
| 1134 | |||
| 1135 | |||
| 1136 | 78 | foreach ($documents as $oid => $document) { |
|
| 1137 | 78 | $persister->addUpsert($document); |
|
| 1138 | 78 | unset($this->documentUpserts[$oid]); |
|
| 1139 | 78 | } |
|
| 1140 | |||
| 1141 | 78 | $persister->executeUpserts($options); |
|
| 1142 | |||
| 1143 | 78 | foreach ($documents as $document) { |
|
| 1144 | 78 | $this->lifecycleEventManager->postPersist($class, $document); |
|
| 1145 | 78 | } |
|
| 1146 | 78 | } |
|
| 1147 | |||
| 1148 | /** |
||
| 1149 | * Executes all document updates for documents of the specified type. |
||
| 1150 | * |
||
| 1151 | * @param Mapping\ClassMetadata $class |
||
| 1152 | * @param array $documents Array of documents to update |
||
| 1153 | * @param array $options Array of options to be used with update() |
||
| 1154 | */ |
||
| 1155 | 222 | private function executeUpdates(ClassMetadata $class, array $documents, array $options = array()) |
|
| 1156 | { |
||
| 1157 | 222 | $className = $class->name; |
|
| 1158 | 222 | $persister = $this->getDocumentPersister($className); |
|
| 1159 | |||
| 1160 | 222 | foreach ($documents as $oid => $document) { |
|
| 1161 | 222 | $this->lifecycleEventManager->preUpdate($class, $document); |
|
| 1162 | |||
| 1163 | 222 | if ( ! empty($this->documentChangeSets[$oid]) || $this->hasScheduledCollections($document)) { |
|
| 1164 | 220 | $persister->update($document, $options); |
|
| 1165 | 216 | } |
|
| 1166 | |||
| 1167 | 218 | unset($this->documentUpdates[$oid]); |
|
| 1168 | |||
| 1169 | 218 | $this->lifecycleEventManager->postUpdate($class, $document); |
|
| 1170 | 218 | } |
|
| 1171 | 217 | } |
|
| 1172 | |||
| 1173 | /** |
||
| 1174 | * Executes all document deletions for documents of the specified type. |
||
| 1175 | * |
||
| 1176 | * @param ClassMetadata $class |
||
| 1177 | * @param array $documents Array of documents to delete |
||
| 1178 | * @param array $options Array of options to be used with remove() |
||
| 1179 | */ |
||
| 1180 | 64 | private function executeDeletions(ClassMetadata $class, array $documents, array $options = array()) |
|
| 1181 | { |
||
| 1182 | 64 | $persister = $this->getDocumentPersister($class->name); |
|
| 1183 | |||
| 1184 | 64 | foreach ($documents as $oid => $document) { |
|
| 1185 | 64 | if ( ! $class->isEmbeddedDocument) { |
|
| 1186 | 28 | $persister->delete($document, $options); |
|
| 1187 | 26 | } |
|
| 1188 | unset( |
||
| 1189 | 62 | $this->documentDeletions[$oid], |
|
| 1190 | 62 | $this->documentIdentifiers[$oid], |
|
| 1191 | 62 | $this->originalDocumentData[$oid] |
|
| 1192 | ); |
||
| 1193 | |||
| 1194 | // Clear snapshot information for any referenced PersistentCollection |
||
| 1195 | // http://www.doctrine-project.org/jira/browse/MODM-95 |
||
| 1196 | 62 | foreach ($class->associationMappings as $fieldMapping) { |
|
| 1197 | 42 | if (isset($fieldMapping['type']) && $fieldMapping['type'] === ClassMetadata::MANY) { |
|
| 1198 | 27 | $value = $class->reflFields[$fieldMapping['fieldName']]->getValue($document); |
|
| 1199 | 27 | if ($value instanceof PersistentCollectionInterface) { |
|
| 1200 | 23 | $value->clearSnapshot(); |
|
| 1201 | 23 | } |
|
| 1202 | 27 | } |
|
| 1203 | 62 | } |
|
| 1204 | |||
| 1205 | // Document with this $oid after deletion treated as NEW, even if the $oid |
||
| 1206 | // is obtained by a new document because the old one went out of scope. |
||
| 1207 | 62 | $this->documentStates[$oid] = self::STATE_NEW; |
|
| 1208 | |||
| 1209 | 62 | $this->lifecycleEventManager->postRemove($class, $document); |
|
| 1210 | 62 | } |
|
| 1211 | 62 | } |
|
| 1212 | |||
| 1213 | /** |
||
| 1214 | * Schedules a document for insertion into the database. |
||
| 1215 | * If the document already has an identifier, it will be added to the |
||
| 1216 | * identity map. |
||
| 1217 | * |
||
| 1218 | * @param ClassMetadata $class |
||
| 1219 | * @param object $document The document to schedule for insertion. |
||
| 1220 | * @throws \InvalidArgumentException |
||
| 1221 | */ |
||
| 1222 | 531 | public function scheduleForInsert(ClassMetadata $class, $document) |
|
| 1223 | { |
||
| 1224 | 531 | $oid = spl_object_hash($document); |
|
| 1225 | |||
| 1226 | 531 | if (isset($this->documentUpdates[$oid])) { |
|
| 1227 | throw new \InvalidArgumentException('Dirty document can not be scheduled for insertion.'); |
||
| 1228 | } |
||
| 1229 | 531 | if (isset($this->documentDeletions[$oid])) { |
|
| 1230 | throw new \InvalidArgumentException('Removed document can not be scheduled for insertion.'); |
||
| 1231 | } |
||
| 1232 | 531 | if (isset($this->documentInsertions[$oid])) { |
|
| 1233 | throw new \InvalidArgumentException('Document can not be scheduled for insertion twice.'); |
||
| 1234 | } |
||
| 1235 | |||
| 1236 | 531 | $this->documentInsertions[$oid] = $document; |
|
| 1237 | |||
| 1238 | 531 | if (isset($this->documentIdentifiers[$oid])) { |
|
| 1239 | 528 | $this->addToIdentityMap($document); |
|
| 1240 | 528 | } |
|
| 1241 | 531 | } |
|
| 1242 | |||
| 1243 | /** |
||
| 1244 | * Schedules a document for upsert into the database and adds it to the |
||
| 1245 | * identity map |
||
| 1246 | * |
||
| 1247 | * @param ClassMetadata $class |
||
| 1248 | * @param object $document The document to schedule for upsert. |
||
| 1249 | * @throws \InvalidArgumentException |
||
| 1250 | */ |
||
| 1251 | 84 | public function scheduleForUpsert(ClassMetadata $class, $document) |
|
| 1252 | { |
||
| 1253 | 84 | $oid = spl_object_hash($document); |
|
| 1254 | |||
| 1255 | 84 | if ($class->isEmbeddedDocument) { |
|
| 1256 | throw new \InvalidArgumentException('Embedded document can not be scheduled for upsert.'); |
||
| 1257 | } |
||
| 1258 | 84 | if (isset($this->documentUpdates[$oid])) { |
|
| 1259 | throw new \InvalidArgumentException('Dirty document can not be scheduled for upsert.'); |
||
| 1260 | } |
||
| 1261 | 84 | if (isset($this->documentDeletions[$oid])) { |
|
| 1262 | throw new \InvalidArgumentException('Removed document can not be scheduled for upsert.'); |
||
| 1263 | } |
||
| 1264 | 84 | if (isset($this->documentUpserts[$oid])) { |
|
| 1265 | throw new \InvalidArgumentException('Document can not be scheduled for upsert twice.'); |
||
| 1266 | } |
||
| 1267 | |||
| 1268 | 84 | $this->documentUpserts[$oid] = $document; |
|
| 1269 | 84 | $this->documentIdentifiers[$oid] = $class->getIdentifierValue($document); |
|
| 1270 | 84 | $this->addToIdentityMap($document); |
|
| 1271 | 84 | } |
|
| 1272 | |||
| 1273 | /** |
||
| 1274 | * Checks whether a document is scheduled for insertion. |
||
| 1275 | * |
||
| 1276 | * @param object $document |
||
| 1277 | * @return boolean |
||
| 1278 | */ |
||
| 1279 | 102 | public function isScheduledForInsert($document) |
|
| 1280 | { |
||
| 1281 | 102 | return isset($this->documentInsertions[spl_object_hash($document)]); |
|
| 1282 | } |
||
| 1283 | |||
| 1284 | /** |
||
| 1285 | * Checks whether a document is scheduled for upsert. |
||
| 1286 | * |
||
| 1287 | * @param object $document |
||
| 1288 | * @return boolean |
||
| 1289 | */ |
||
| 1290 | 5 | public function isScheduledForUpsert($document) |
|
| 1291 | { |
||
| 1292 | 5 | return isset($this->documentUpserts[spl_object_hash($document)]); |
|
| 1293 | } |
||
| 1294 | |||
| 1295 | /** |
||
| 1296 | * Schedules a document for being updated. |
||
| 1297 | * |
||
| 1298 | * @param object $document The document to schedule for being updated. |
||
| 1299 | * @throws \InvalidArgumentException |
||
| 1300 | */ |
||
| 1301 | 231 | public function scheduleForUpdate($document) |
|
| 1302 | { |
||
| 1303 | 231 | $oid = spl_object_hash($document); |
|
| 1304 | 231 | if ( ! isset($this->documentIdentifiers[$oid])) { |
|
| 1305 | throw new \InvalidArgumentException('Document has no identity.'); |
||
| 1306 | } |
||
| 1307 | |||
| 1308 | 231 | if (isset($this->documentDeletions[$oid])) { |
|
| 1309 | throw new \InvalidArgumentException('Document is removed.'); |
||
| 1310 | } |
||
| 1311 | |||
| 1312 | 231 | if ( ! isset($this->documentUpdates[$oid]) |
|
| 1313 | 231 | && ! isset($this->documentInsertions[$oid]) |
|
| 1314 | 231 | && ! isset($this->documentUpserts[$oid])) { |
|
| 1315 | 227 | $this->documentUpdates[$oid] = $document; |
|
| 1316 | 227 | } |
|
| 1317 | 231 | } |
|
| 1318 | |||
| 1319 | /** |
||
| 1320 | * Checks whether a document is registered as dirty in the unit of work. |
||
| 1321 | * Note: Is not very useful currently as dirty documents are only registered |
||
| 1322 | * at commit time. |
||
| 1323 | * |
||
| 1324 | * @param object $document |
||
| 1325 | * @return boolean |
||
| 1326 | */ |
||
| 1327 | 13 | public function isScheduledForUpdate($document) |
|
| 1328 | { |
||
| 1329 | 13 | return isset($this->documentUpdates[spl_object_hash($document)]); |
|
| 1330 | } |
||
| 1331 | |||
| 1332 | 1 | public function isScheduledForDirtyCheck($document) |
|
| 1333 | { |
||
| 1334 | 1 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 1335 | 1 | return isset($this->scheduledForDirtyCheck[$class->name][spl_object_hash($document)]); |
|
| 1336 | } |
||
| 1337 | |||
| 1338 | /** |
||
| 1339 | * INTERNAL: |
||
| 1340 | * Schedules a document for deletion. |
||
| 1341 | * |
||
| 1342 | * @param object $document |
||
| 1343 | */ |
||
| 1344 | 69 | public function scheduleForDelete($document) |
|
| 1345 | { |
||
| 1346 | 69 | $oid = spl_object_hash($document); |
|
| 1347 | |||
| 1348 | 69 | if (isset($this->documentInsertions[$oid])) { |
|
| 1349 | 2 | if ($this->isInIdentityMap($document)) { |
|
| 1350 | 2 | $this->removeFromIdentityMap($document); |
|
| 1351 | 2 | } |
|
| 1352 | 2 | unset($this->documentInsertions[$oid]); |
|
| 1353 | 2 | return; // document has not been persisted yet, so nothing more to do. |
|
| 1354 | } |
||
| 1355 | |||
| 1356 | 68 | if ( ! $this->isInIdentityMap($document)) { |
|
| 1357 | 1 | return; // ignore |
|
| 1358 | } |
||
| 1359 | |||
| 1360 | 67 | $this->removeFromIdentityMap($document); |
|
| 1361 | 67 | $this->documentStates[$oid] = self::STATE_REMOVED; |
|
| 1362 | |||
| 1363 | 67 | if (isset($this->documentUpdates[$oid])) { |
|
| 1364 | unset($this->documentUpdates[$oid]); |
||
| 1365 | } |
||
| 1366 | 67 | if ( ! isset($this->documentDeletions[$oid])) { |
|
| 1367 | 67 | $this->documentDeletions[$oid] = $document; |
|
| 1368 | 67 | } |
|
| 1369 | 67 | } |
|
| 1370 | |||
| 1371 | /** |
||
| 1372 | * Checks whether a document is registered as removed/deleted with the unit |
||
| 1373 | * of work. |
||
| 1374 | * |
||
| 1375 | * @param object $document |
||
| 1376 | * @return boolean |
||
| 1377 | */ |
||
| 1378 | 8 | public function isScheduledForDelete($document) |
|
| 1379 | { |
||
| 1380 | 8 | return isset($this->documentDeletions[spl_object_hash($document)]); |
|
| 1381 | } |
||
| 1382 | |||
| 1383 | /** |
||
| 1384 | * Checks whether a document is scheduled for insertion, update or deletion. |
||
| 1385 | * |
||
| 1386 | * @param $document |
||
| 1387 | * @return boolean |
||
| 1388 | */ |
||
| 1389 | 234 | public function isDocumentScheduled($document) |
|
| 1390 | { |
||
| 1391 | 234 | $oid = spl_object_hash($document); |
|
| 1392 | 234 | return isset($this->documentInsertions[$oid]) || |
|
| 1393 | 124 | isset($this->documentUpserts[$oid]) || |
|
| 1394 | 115 | isset($this->documentUpdates[$oid]) || |
|
| 1395 | 234 | isset($this->documentDeletions[$oid]); |
|
| 1396 | } |
||
| 1397 | |||
| 1398 | /** |
||
| 1399 | * INTERNAL: |
||
| 1400 | * Registers a document in the identity map. |
||
| 1401 | * |
||
| 1402 | * Note that documents in a hierarchy are registered with the class name of |
||
| 1403 | * the root document. Identifiers are serialized before being used as array |
||
| 1404 | * keys to allow differentiation of equal, but not identical, values. |
||
| 1405 | * |
||
| 1406 | * @ignore |
||
| 1407 | * @param object $document The document to register. |
||
| 1408 | * @return boolean TRUE if the registration was successful, FALSE if the identity of |
||
| 1409 | * the document in question is already managed. |
||
| 1410 | */ |
||
| 1411 | 625 | public function addToIdentityMap($document) |
|
| 1412 | { |
||
| 1413 | 625 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 1414 | 625 | $id = $this->getIdForIdentityMap($document); |
|
| 1415 | |||
| 1416 | 625 | if (isset($this->identityMap[$class->name][$id])) { |
|
| 1417 | 54 | return false; |
|
| 1418 | } |
||
| 1419 | |||
| 1420 | 625 | $this->identityMap[$class->name][$id] = $document; |
|
| 1421 | |||
| 1422 | 625 | if ($document instanceof NotifyPropertyChanged && |
|
| 1423 | 625 | ( ! $document instanceof Proxy || $document->__isInitialized())) { |
|
| 1424 | 3 | $document->addPropertyChangedListener($this); |
|
| 1425 | 3 | } |
|
| 1426 | |||
| 1427 | 625 | return true; |
|
| 1428 | } |
||
| 1429 | |||
| 1430 | /** |
||
| 1431 | * Gets the state of a document with regard to the current unit of work. |
||
| 1432 | * |
||
| 1433 | * @param object $document |
||
| 1434 | * @param int|null $assume The state to assume if the state is not yet known (not MANAGED or REMOVED). |
||
| 1435 | * This parameter can be set to improve performance of document state detection |
||
| 1436 | * by potentially avoiding a database lookup if the distinction between NEW and DETACHED |
||
| 1437 | * is either known or does not matter for the caller of the method. |
||
| 1438 | * @return int The document state. |
||
| 1439 | */ |
||
| 1440 | 599 | public function getDocumentState($document, $assume = null) |
|
| 1441 | { |
||
| 1442 | 599 | $oid = spl_object_hash($document); |
|
| 1443 | |||
| 1444 | 599 | if (isset($this->documentStates[$oid])) { |
|
| 1445 | 367 | return $this->documentStates[$oid]; |
|
| 1446 | } |
||
| 1447 | |||
| 1448 | 599 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 1449 | |||
| 1450 | 599 | if ($class->isEmbeddedDocument) { |
|
| 1451 | 182 | return self::STATE_NEW; |
|
| 1452 | } |
||
| 1453 | |||
| 1454 | 596 | if ($assume !== null) { |
|
| 1455 | 593 | return $assume; |
|
| 1456 | } |
||
| 1457 | |||
| 1458 | /* State can only be NEW or DETACHED, because MANAGED/REMOVED states are |
||
| 1459 | * known. Note that you cannot remember the NEW or DETACHED state in |
||
| 1460 | * _documentStates since the UoW does not hold references to such |
||
| 1461 | * objects and the object hash can be reused. More generally, because |
||
| 1462 | * the state may "change" between NEW/DETACHED without the UoW being |
||
| 1463 | * aware of it. |
||
| 1464 | */ |
||
| 1465 | 4 | $id = $class->getIdentifierObject($document); |
|
| 1466 | |||
| 1467 | 4 | if ($id === null) { |
|
| 1468 | 2 | return self::STATE_NEW; |
|
| 1469 | } |
||
| 1470 | |||
| 1471 | // Check for a version field, if available, to avoid a DB lookup. |
||
| 1472 | 2 | if ($class->isVersioned) { |
|
| 1473 | return $class->getFieldValue($document, $class->versionField) |
||
| 1474 | ? self::STATE_DETACHED |
||
| 1475 | : self::STATE_NEW; |
||
| 1476 | } |
||
| 1477 | |||
| 1478 | // Last try before DB lookup: check the identity map. |
||
| 1479 | 2 | if ($this->tryGetById($id, $class)) { |
|
| 1480 | 1 | return self::STATE_DETACHED; |
|
| 1481 | } |
||
| 1482 | |||
| 1483 | // DB lookup |
||
| 1484 | 2 | if ($this->getDocumentPersister($class->name)->exists($document)) { |
|
| 1485 | 1 | return self::STATE_DETACHED; |
|
| 1486 | } |
||
| 1487 | |||
| 1488 | 1 | return self::STATE_NEW; |
|
| 1489 | } |
||
| 1490 | |||
| 1491 | /** |
||
| 1492 | * INTERNAL: |
||
| 1493 | * Removes a document from the identity map. This effectively detaches the |
||
| 1494 | * document from the persistence management of Doctrine. |
||
| 1495 | * |
||
| 1496 | * @ignore |
||
| 1497 | * @param object $document |
||
| 1498 | * @throws \InvalidArgumentException |
||
| 1499 | * @return boolean |
||
| 1500 | */ |
||
| 1501 | 78 | public function removeFromIdentityMap($document) |
|
| 1502 | { |
||
| 1503 | 78 | $oid = spl_object_hash($document); |
|
| 1504 | |||
| 1505 | // Check if id is registered first |
||
| 1506 | 78 | if ( ! isset($this->documentIdentifiers[$oid])) { |
|
| 1507 | return false; |
||
| 1508 | } |
||
| 1509 | |||
| 1510 | 78 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 1511 | 78 | $id = $this->getIdForIdentityMap($document); |
|
| 1512 | |||
| 1513 | 78 | if (isset($this->identityMap[$class->name][$id])) { |
|
| 1514 | 78 | unset($this->identityMap[$class->name][$id]); |
|
| 1515 | 78 | $this->documentStates[$oid] = self::STATE_DETACHED; |
|
| 1516 | 78 | return true; |
|
| 1517 | } |
||
| 1518 | |||
| 1519 | return false; |
||
| 1520 | } |
||
| 1521 | |||
| 1522 | /** |
||
| 1523 | * INTERNAL: |
||
| 1524 | * Gets a document in the identity map by its identifier hash. |
||
| 1525 | * |
||
| 1526 | * @ignore |
||
| 1527 | * @param mixed $id Document identifier |
||
| 1528 | * @param ClassMetadata $class Document class |
||
| 1529 | * @return object |
||
| 1530 | * @throws InvalidArgumentException if the class does not have an identifier |
||
| 1531 | */ |
||
| 1532 | 33 | public function getById($id, ClassMetadata $class) |
|
| 1533 | { |
||
| 1534 | 33 | if ( ! $class->identifier) { |
|
| 1535 | throw new \InvalidArgumentException(sprintf('Class "%s" does not have an identifier', $class->name)); |
||
| 1536 | } |
||
| 1537 | |||
| 1538 | 33 | $serializedId = serialize($class->getDatabaseIdentifierValue($id)); |
|
| 1539 | |||
| 1540 | 33 | return $this->identityMap[$class->name][$serializedId]; |
|
| 1541 | } |
||
| 1542 | |||
| 1543 | /** |
||
| 1544 | * INTERNAL: |
||
| 1545 | * Tries to get a document by its identifier hash. If no document is found |
||
| 1546 | * for the given hash, FALSE is returned. |
||
| 1547 | * |
||
| 1548 | * @ignore |
||
| 1549 | * @param mixed $id Document identifier |
||
| 1550 | * @param ClassMetadata $class Document class |
||
| 1551 | * @return mixed The found document or FALSE. |
||
| 1552 | * @throws InvalidArgumentException if the class does not have an identifier |
||
| 1553 | */ |
||
| 1554 | 297 | public function tryGetById($id, ClassMetadata $class) |
|
| 1555 | { |
||
| 1556 | 297 | if ( ! $class->identifier) { |
|
| 1557 | throw new \InvalidArgumentException(sprintf('Class "%s" does not have an identifier', $class->name)); |
||
| 1558 | } |
||
| 1559 | |||
| 1560 | 297 | $serializedId = serialize($class->getDatabaseIdentifierValue($id)); |
|
| 1561 | |||
| 1562 | 297 | return isset($this->identityMap[$class->name][$serializedId]) ? |
|
| 1563 | 297 | $this->identityMap[$class->name][$serializedId] : false; |
|
| 1564 | } |
||
| 1565 | |||
| 1566 | /** |
||
| 1567 | * Schedules a document for dirty-checking at commit-time. |
||
| 1568 | * |
||
| 1569 | * @param object $document The document to schedule for dirty-checking. |
||
| 1570 | * @todo Rename: scheduleForSynchronization |
||
| 1571 | */ |
||
| 1572 | 2 | public function scheduleForDirtyCheck($document) |
|
| 1573 | { |
||
| 1574 | 2 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 1575 | 2 | $this->scheduledForDirtyCheck[$class->name][spl_object_hash($document)] = $document; |
|
| 1576 | 2 | } |
|
| 1577 | |||
| 1578 | /** |
||
| 1579 | * Checks whether a document is registered in the identity map. |
||
| 1580 | * |
||
| 1581 | * @param object $document |
||
| 1582 | * @return boolean |
||
| 1583 | */ |
||
| 1584 | 78 | public function isInIdentityMap($document) |
|
| 1585 | { |
||
| 1586 | 78 | $oid = spl_object_hash($document); |
|
| 1587 | |||
| 1588 | 78 | if ( ! isset($this->documentIdentifiers[$oid])) { |
|
| 1589 | 4 | return false; |
|
| 1590 | } |
||
| 1591 | |||
| 1592 | 77 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 1593 | 77 | $id = $this->getIdForIdentityMap($document); |
|
| 1594 | |||
| 1595 | 77 | return isset($this->identityMap[$class->name][$id]); |
|
| 1596 | } |
||
| 1597 | |||
| 1598 | /** |
||
| 1599 | * @param object $document |
||
| 1600 | * @return string |
||
| 1601 | */ |
||
| 1602 | 625 | private function getIdForIdentityMap($document) |
|
| 1603 | { |
||
| 1604 | 625 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 1605 | |||
| 1606 | 625 | if ( ! $class->identifier) { |
|
| 1607 | 152 | $id = spl_object_hash($document); |
|
| 1608 | 152 | } else { |
|
| 1609 | 624 | $id = $this->documentIdentifiers[spl_object_hash($document)]; |
|
| 1610 | 624 | $id = serialize($class->getDatabaseIdentifierValue($id)); |
|
| 1611 | } |
||
| 1612 | |||
| 1613 | 625 | return $id; |
|
| 1614 | } |
||
| 1615 | |||
| 1616 | /** |
||
| 1617 | * INTERNAL: |
||
| 1618 | * Checks whether an identifier exists in the identity map. |
||
| 1619 | * |
||
| 1620 | * @ignore |
||
| 1621 | * @param string $id |
||
| 1622 | * @param string $rootClassName |
||
| 1623 | * @return boolean |
||
| 1624 | */ |
||
| 1625 | public function containsId($id, $rootClassName) |
||
| 1626 | { |
||
| 1627 | return isset($this->identityMap[$rootClassName][serialize($id)]); |
||
| 1628 | } |
||
| 1629 | |||
| 1630 | /** |
||
| 1631 | * Persists a document as part of the current unit of work. |
||
| 1632 | * |
||
| 1633 | * @param object $document The document to persist. |
||
| 1634 | * @throws MongoDBException If trying to persist MappedSuperclass. |
||
| 1635 | * @throws \InvalidArgumentException If there is something wrong with document's identifier. |
||
| 1636 | */ |
||
| 1637 | 594 | public function persist($document) |
|
| 1638 | { |
||
| 1639 | 594 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 1640 | 594 | if ($class->isMappedSuperclass) { |
|
| 1641 | 1 | throw MongoDBException::cannotPersistMappedSuperclass($class->name); |
|
| 1642 | } |
||
| 1643 | 593 | $visited = array(); |
|
| 1644 | 593 | $this->doPersist($document, $visited); |
|
| 1645 | 589 | } |
|
| 1646 | |||
| 1647 | /** |
||
| 1648 | * Saves a document as part of the current unit of work. |
||
| 1649 | * This method is internally called during save() cascades as it tracks |
||
| 1650 | * the already visited documents to prevent infinite recursions. |
||
| 1651 | * |
||
| 1652 | * NOTE: This method always considers documents that are not yet known to |
||
| 1653 | * this UnitOfWork as NEW. |
||
| 1654 | * |
||
| 1655 | * @param object $document The document to persist. |
||
| 1656 | * @param array $visited The already visited documents. |
||
| 1657 | * @throws \InvalidArgumentException |
||
| 1658 | * @throws MongoDBException |
||
| 1659 | */ |
||
| 1660 | 593 | private function doPersist($document, array &$visited) |
|
| 1661 | { |
||
| 1662 | 593 | $oid = spl_object_hash($document); |
|
| 1663 | 593 | if (isset($visited[$oid])) { |
|
| 1664 | 24 | return; // Prevent infinite recursion |
|
| 1665 | } |
||
| 1666 | |||
| 1667 | 593 | $visited[$oid] = $document; // Mark visited |
|
| 1668 | |||
| 1669 | 593 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 1670 | |||
| 1671 | 593 | $documentState = $this->getDocumentState($document, self::STATE_NEW); |
|
| 1672 | switch ($documentState) { |
||
| 1673 | 593 | case self::STATE_MANAGED: |
|
| 1674 | // Nothing to do, except if policy is "deferred explicit" |
||
| 1675 | 50 | if ($class->isChangeTrackingDeferredExplicit()) { |
|
| 1676 | $this->scheduleForDirtyCheck($document); |
||
| 1677 | } |
||
| 1678 | 50 | break; |
|
| 1679 | 593 | case self::STATE_NEW: |
|
| 1680 | 593 | $this->persistNew($class, $document); |
|
| 1681 | 591 | break; |
|
| 1682 | |||
| 1683 | 2 | case self::STATE_REMOVED: |
|
| 1684 | // Document becomes managed again |
||
| 1685 | 2 | unset($this->documentDeletions[$oid]); |
|
| 1686 | |||
| 1687 | 2 | $this->documentStates[$oid] = self::STATE_MANAGED; |
|
| 1688 | 2 | break; |
|
| 1689 | |||
| 1690 | case self::STATE_DETACHED: |
||
| 1691 | throw new \InvalidArgumentException( |
||
| 1692 | 'Behavior of persist() for a detached document is not yet defined.'); |
||
| 1693 | |||
| 1694 | default: |
||
| 1695 | throw MongoDBException::invalidDocumentState($documentState); |
||
| 1696 | } |
||
| 1697 | |||
| 1698 | 591 | $this->cascadePersist($document, $visited); |
|
| 1699 | 589 | } |
|
| 1700 | |||
| 1701 | /** |
||
| 1702 | * Deletes a document as part of the current unit of work. |
||
| 1703 | * |
||
| 1704 | * @param object $document The document to remove. |
||
| 1705 | */ |
||
| 1706 | 68 | public function remove($document) |
|
| 1707 | { |
||
| 1708 | 68 | $visited = array(); |
|
| 1709 | 68 | $this->doRemove($document, $visited); |
|
| 1710 | 68 | } |
|
| 1711 | |||
| 1712 | /** |
||
| 1713 | * Deletes a document as part of the current unit of work. |
||
| 1714 | * |
||
| 1715 | * This method is internally called during delete() cascades as it tracks |
||
| 1716 | * the already visited documents to prevent infinite recursions. |
||
| 1717 | * |
||
| 1718 | * @param object $document The document to delete. |
||
| 1719 | * @param array $visited The map of the already visited documents. |
||
| 1720 | * @throws MongoDBException |
||
| 1721 | */ |
||
| 1722 | 68 | private function doRemove($document, array &$visited) |
|
| 1723 | { |
||
| 1724 | 68 | $oid = spl_object_hash($document); |
|
| 1725 | 68 | if (isset($visited[$oid])) { |
|
| 1726 | 1 | return; // Prevent infinite recursion |
|
| 1727 | } |
||
| 1728 | |||
| 1729 | 68 | $visited[$oid] = $document; // mark visited |
|
| 1730 | |||
| 1731 | /* Cascade first, because scheduleForDelete() removes the entity from |
||
| 1732 | * the identity map, which can cause problems when a lazy Proxy has to |
||
| 1733 | * be initialized for the cascade operation. |
||
| 1734 | */ |
||
| 1735 | 68 | $this->cascadeRemove($document, $visited); |
|
| 1736 | |||
| 1737 | 68 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 1738 | 68 | $documentState = $this->getDocumentState($document); |
|
| 1739 | switch ($documentState) { |
||
| 1740 | 68 | case self::STATE_NEW: |
|
| 1741 | 68 | case self::STATE_REMOVED: |
|
| 1742 | // nothing to do |
||
| 1743 | 1 | break; |
|
| 1744 | 68 | case self::STATE_MANAGED: |
|
| 1745 | 68 | $this->lifecycleEventManager->preRemove($class, $document); |
|
| 1746 | 68 | $this->scheduleForDelete($document); |
|
| 1747 | 68 | break; |
|
| 1748 | case self::STATE_DETACHED: |
||
| 1749 | throw MongoDBException::detachedDocumentCannotBeRemoved(); |
||
| 1750 | default: |
||
| 1751 | throw MongoDBException::invalidDocumentState($documentState); |
||
| 1752 | } |
||
| 1753 | 68 | } |
|
| 1754 | |||
| 1755 | /** |
||
| 1756 | * Merges the state of the given detached document into this UnitOfWork. |
||
| 1757 | * |
||
| 1758 | * @param object $document |
||
| 1759 | * @return object The managed copy of the document. |
||
| 1760 | */ |
||
| 1761 | 13 | public function merge($document) |
|
| 1762 | { |
||
| 1763 | 13 | $visited = array(); |
|
| 1764 | |||
| 1765 | 13 | return $this->doMerge($document, $visited); |
|
| 1766 | } |
||
| 1767 | |||
| 1768 | /** |
||
| 1769 | * Executes a merge operation on a document. |
||
| 1770 | * |
||
| 1771 | * @param object $document |
||
| 1772 | * @param array $visited |
||
| 1773 | * @param object|null $prevManagedCopy |
||
| 1774 | * @param array|null $assoc |
||
| 1775 | * |
||
| 1776 | * @return object The managed copy of the document. |
||
| 1777 | * |
||
| 1778 | * @throws InvalidArgumentException If the entity instance is NEW. |
||
| 1779 | * @throws LockException If the document uses optimistic locking through a |
||
| 1780 | * version attribute and the version check against the |
||
| 1781 | * managed copy fails. |
||
| 1782 | */ |
||
| 1783 | 13 | private function doMerge($document, array &$visited, $prevManagedCopy = null, $assoc = null) |
|
| 1784 | { |
||
| 1785 | 13 | $oid = spl_object_hash($document); |
|
| 1786 | |||
| 1787 | 13 | if (isset($visited[$oid])) { |
|
| 1788 | 1 | return $visited[$oid]; // Prevent infinite recursion |
|
| 1789 | } |
||
| 1790 | |||
| 1791 | 13 | $visited[$oid] = $document; // mark visited |
|
| 1792 | |||
| 1793 | 13 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 1794 | |||
| 1795 | /* First we assume DETACHED, although it can still be NEW but we can |
||
| 1796 | * avoid an extra DB round trip this way. If it is not MANAGED but has |
||
| 1797 | * an identity, we need to fetch it from the DB anyway in order to |
||
| 1798 | * merge. MANAGED documents are ignored by the merge operation. |
||
| 1799 | */ |
||
| 1800 | 13 | $managedCopy = $document; |
|
| 1801 | |||
| 1802 | 13 | if ($this->getDocumentState($document, self::STATE_DETACHED) !== self::STATE_MANAGED) { |
|
| 1803 | 13 | if ($document instanceof Proxy && ! $document->__isInitialized()) { |
|
| 1804 | $document->__load(); |
||
| 1805 | } |
||
| 1806 | |||
| 1807 | // Try to look the document up in the identity map. |
||
| 1808 | 13 | $id = $class->isEmbeddedDocument ? null : $class->getIdentifierObject($document); |
|
| 1809 | |||
| 1810 | 13 | if ($id === null) { |
|
| 1811 | // If there is no identifier, it is actually NEW. |
||
| 1812 | 5 | $managedCopy = $class->newInstance(); |
|
| 1813 | 5 | $this->persistNew($class, $managedCopy); |
|
| 1814 | 5 | } else { |
|
| 1815 | 10 | $managedCopy = $this->tryGetById($id, $class); |
|
| 1816 | |||
| 1817 | 10 | if ($managedCopy) { |
|
| 1818 | // We have the document in memory already, just make sure it is not removed. |
||
| 1819 | 5 | if ($this->getDocumentState($managedCopy) === self::STATE_REMOVED) { |
|
| 1820 | throw new \InvalidArgumentException('Removed entity detected during merge. Cannot merge with a removed entity.'); |
||
| 1821 | } |
||
| 1822 | 5 | } else { |
|
| 1823 | // We need to fetch the managed copy in order to merge. |
||
| 1824 | 7 | $managedCopy = $this->dm->find($class->name, $id); |
|
| 1825 | } |
||
| 1826 | |||
| 1827 | 10 | if ($managedCopy === null) { |
|
| 1828 | // If the identifier is ASSIGNED, it is NEW |
||
| 1829 | $managedCopy = $class->newInstance(); |
||
| 1830 | $class->setIdentifierValue($managedCopy, $id); |
||
| 1831 | $this->persistNew($class, $managedCopy); |
||
| 1832 | } else { |
||
| 1833 | 10 | if ($managedCopy instanceof Proxy && ! $managedCopy->__isInitialized__) { |
|
| 1834 | $managedCopy->__load(); |
||
| 1835 | } |
||
| 1836 | } |
||
| 1837 | } |
||
| 1838 | |||
| 1839 | 13 | if ($class->isVersioned) { |
|
| 1840 | $managedCopyVersion = $class->reflFields[$class->versionField]->getValue($managedCopy); |
||
| 1841 | $documentVersion = $class->reflFields[$class->versionField]->getValue($document); |
||
| 1842 | |||
| 1843 | // Throw exception if versions don't match |
||
| 1844 | if ($managedCopyVersion != $documentVersion) { |
||
| 1845 | throw LockException::lockFailedVersionMissmatch($document, $documentVersion, $managedCopyVersion); |
||
| 1846 | } |
||
| 1847 | } |
||
| 1848 | |||
| 1849 | // Merge state of $document into existing (managed) document |
||
| 1850 | 13 | foreach ($class->reflClass->getProperties() as $prop) { |
|
| 1851 | 13 | $name = $prop->name; |
|
| 1852 | 13 | $prop->setAccessible(true); |
|
| 1853 | 13 | if ( ! isset($class->associationMappings[$name])) { |
|
| 1854 | 13 | if ( ! $class->isIdentifier($name)) { |
|
| 1855 | 13 | $prop->setValue($managedCopy, $prop->getValue($document)); |
|
| 1856 | 13 | } |
|
| 1857 | 13 | } else { |
|
| 1858 | 13 | $assoc2 = $class->associationMappings[$name]; |
|
| 1859 | |||
| 1860 | 13 | if ($assoc2['type'] === 'one') { |
|
| 1861 | 5 | $other = $prop->getValue($document); |
|
| 1862 | |||
| 1863 | 5 | if ($other === null) { |
|
| 1864 | 2 | $prop->setValue($managedCopy, null); |
|
| 1865 | 5 | } elseif ($other instanceof Proxy && ! $other->__isInitialized__) { |
|
| 1866 | // Do not merge fields marked lazy that have not been fetched |
||
| 1867 | 1 | continue; |
|
| 1868 | 3 | } elseif ( ! $assoc2['isCascadeMerge']) { |
|
| 1869 | if ($this->getDocumentState($other) === self::STATE_DETACHED) { |
||
| 1870 | $targetDocument = isset($assoc2['targetDocument']) ? $assoc2['targetDocument'] : get_class($other); |
||
| 1871 | /* @var $targetClass \Doctrine\ODM\MongoDB\Mapping\ClassMetadataInfo */ |
||
| 1872 | $targetClass = $this->dm->getClassMetadata($targetDocument); |
||
| 1873 | $relatedId = $targetClass->getIdentifierObject($other); |
||
| 1874 | |||
| 1875 | if ($targetClass->subClasses) { |
||
| 1876 | $other = $this->dm->find($targetClass->name, $relatedId); |
||
| 1877 | } else { |
||
| 1878 | $other = $this |
||
| 1879 | ->dm |
||
| 1880 | ->getProxyFactory() |
||
| 1881 | ->getProxy($assoc2['targetDocument'], array($targetClass->identifier => $relatedId)); |
||
| 1882 | $this->registerManaged($other, $relatedId, array()); |
||
| 1883 | } |
||
| 1884 | } |
||
| 1885 | |||
| 1886 | $prop->setValue($managedCopy, $other); |
||
| 1887 | } |
||
| 1888 | 4 | } else { |
|
| 1889 | 10 | $mergeCol = $prop->getValue($document); |
|
| 1890 | |||
| 1891 | 10 | if ($mergeCol instanceof PersistentCollectionInterface && ! $mergeCol->isInitialized()) { |
|
| 1892 | /* Do not merge fields marked lazy that have not |
||
| 1893 | * been fetched. Keep the lazy persistent collection |
||
| 1894 | * of the managed copy. |
||
| 1895 | */ |
||
| 1896 | 3 | continue; |
|
| 1897 | } |
||
| 1898 | |||
| 1899 | 7 | $managedCol = $prop->getValue($managedCopy); |
|
| 1900 | |||
| 1901 | 7 | if ( ! $managedCol) { |
|
| 1902 | 2 | $managedCol = $this->dm->getConfiguration()->getPersistentCollectionFactory()->create($this->dm, $assoc2, null); |
|
| 1903 | 2 | $managedCol->setOwner($managedCopy, $assoc2); |
|
| 1904 | 2 | $prop->setValue($managedCopy, $managedCol); |
|
| 1905 | 2 | $this->originalDocumentData[$oid][$name] = $managedCol; |
|
| 1906 | 2 | } |
|
| 1907 | |||
| 1908 | /* Note: do not process association's target documents. |
||
| 1909 | * They will be handled during the cascade. Initialize |
||
| 1910 | * and, if necessary, clear $managedCol for now. |
||
| 1911 | */ |
||
| 1912 | 7 | if ($assoc2['isCascadeMerge']) { |
|
| 1913 | 7 | $managedCol->initialize(); |
|
| 1914 | |||
| 1915 | // If $managedCol differs from the merged collection, clear and set dirty |
||
| 1916 | 7 | if ( ! $managedCol->isEmpty() && $managedCol !== $mergeCol) { |
|
| 1917 | 2 | $managedCol->unwrap()->clear(); |
|
| 1918 | 2 | $managedCol->setDirty(true); |
|
| 1919 | |||
| 1920 | 2 | if ($assoc2['isOwningSide'] && $class->isChangeTrackingNotify()) { |
|
| 1921 | $this->scheduleForDirtyCheck($managedCopy); |
||
| 1922 | } |
||
| 1923 | 2 | } |
|
| 1924 | 7 | } |
|
| 1925 | } |
||
| 1926 | } |
||
| 1927 | |||
| 1928 | 13 | if ($class->isChangeTrackingNotify()) { |
|
| 1929 | // Just treat all properties as changed, there is no other choice. |
||
| 1930 | $this->propertyChanged($managedCopy, $name, null, $prop->getValue($managedCopy)); |
||
| 1931 | } |
||
| 1932 | 13 | } |
|
| 1933 | |||
| 1934 | 13 | if ($class->isChangeTrackingDeferredExplicit()) { |
|
| 1935 | $this->scheduleForDirtyCheck($document); |
||
| 1936 | } |
||
| 1937 | 13 | } |
|
| 1938 | |||
| 1939 | 13 | if ($prevManagedCopy !== null) { |
|
| 1940 | 6 | $assocField = $assoc['fieldName']; |
|
| 1941 | 6 | $prevClass = $this->dm->getClassMetadata(get_class($prevManagedCopy)); |
|
| 1942 | |||
| 1943 | 6 | if ($assoc['type'] === 'one') { |
|
| 1944 | 2 | $prevClass->reflFields[$assocField]->setValue($prevManagedCopy, $managedCopy); |
|
| 1945 | 2 | } else { |
|
| 1946 | 4 | $prevClass->reflFields[$assocField]->getValue($prevManagedCopy)->add($managedCopy); |
|
| 1947 | |||
| 1948 | 4 | if ($assoc['type'] === 'many' && isset($assoc['mappedBy'])) { |
|
| 1949 | 1 | $class->reflFields[$assoc['mappedBy']]->setValue($managedCopy, $prevManagedCopy); |
|
| 1950 | 1 | } |
|
| 1951 | } |
||
| 1952 | 6 | } |
|
| 1953 | |||
| 1954 | // Mark the managed copy visited as well |
||
| 1955 | 13 | $visited[spl_object_hash($managedCopy)] = true; |
|
| 1956 | |||
| 1957 | 13 | $this->cascadeMerge($document, $managedCopy, $visited); |
|
| 1958 | |||
| 1959 | 13 | return $managedCopy; |
|
| 1960 | } |
||
| 1961 | |||
| 1962 | /** |
||
| 1963 | * Detaches a document from the persistence management. It's persistence will |
||
| 1964 | * no longer be managed by Doctrine. |
||
| 1965 | * |
||
| 1966 | * @param object $document The document to detach. |
||
| 1967 | */ |
||
| 1968 | 9 | public function detach($document) |
|
| 1969 | { |
||
| 1970 | 9 | $visited = array(); |
|
| 1971 | 9 | $this->doDetach($document, $visited); |
|
| 1972 | 9 | } |
|
| 1973 | |||
| 1974 | /** |
||
| 1975 | * Executes a detach operation on the given document. |
||
| 1976 | * |
||
| 1977 | * @param object $document |
||
| 1978 | * @param array $visited |
||
| 1979 | * @internal This method always considers documents with an assigned identifier as DETACHED. |
||
| 1980 | */ |
||
| 1981 | 12 | private function doDetach($document, array &$visited) |
|
| 1982 | { |
||
| 1983 | 12 | $oid = spl_object_hash($document); |
|
| 1984 | 12 | if (isset($visited[$oid])) { |
|
| 1985 | 4 | return; // Prevent infinite recursion |
|
| 1986 | } |
||
| 1987 | |||
| 1988 | 12 | $visited[$oid] = $document; // mark visited |
|
| 1989 | |||
| 1990 | 12 | switch ($this->getDocumentState($document, self::STATE_DETACHED)) { |
|
| 1991 | 12 | case self::STATE_MANAGED: |
|
| 1992 | 12 | $this->removeFromIdentityMap($document); |
|
| 1993 | 12 | unset($this->documentInsertions[$oid], $this->documentUpdates[$oid], |
|
| 1994 | 12 | $this->documentDeletions[$oid], $this->documentIdentifiers[$oid], |
|
| 1995 | 12 | $this->documentStates[$oid], $this->originalDocumentData[$oid], |
|
| 1996 | 12 | $this->parentAssociations[$oid], $this->documentUpserts[$oid], |
|
| 1997 | 12 | $this->hasScheduledCollections[$oid]); |
|
| 1998 | 12 | break; |
|
| 1999 | 4 | case self::STATE_NEW: |
|
| 2000 | 4 | case self::STATE_DETACHED: |
|
| 2001 | 4 | return; |
|
| 2002 | 12 | } |
|
| 2003 | |||
| 2004 | 12 | $this->cascadeDetach($document, $visited); |
|
| 2005 | 12 | } |
|
| 2006 | |||
| 2007 | /** |
||
| 2008 | * Refreshes the state of the given document from the database, overwriting |
||
| 2009 | * any local, unpersisted changes. |
||
| 2010 | * |
||
| 2011 | * @param object $document The document to refresh. |
||
| 2012 | * @throws \InvalidArgumentException If the document is not MANAGED. |
||
| 2013 | */ |
||
| 2014 | 21 | public function refresh($document) |
|
| 2015 | { |
||
| 2016 | 21 | $visited = array(); |
|
| 2017 | 21 | $this->doRefresh($document, $visited); |
|
| 2018 | 20 | } |
|
| 2019 | |||
| 2020 | /** |
||
| 2021 | * Executes a refresh operation on a document. |
||
| 2022 | * |
||
| 2023 | * @param object $document The document to refresh. |
||
| 2024 | * @param array $visited The already visited documents during cascades. |
||
| 2025 | * @throws \InvalidArgumentException If the document is not MANAGED. |
||
| 2026 | */ |
||
| 2027 | 21 | private function doRefresh($document, array &$visited) |
|
| 2028 | { |
||
| 2029 | 21 | $oid = spl_object_hash($document); |
|
| 2030 | 21 | if (isset($visited[$oid])) { |
|
| 2031 | return; // Prevent infinite recursion |
||
| 2032 | } |
||
| 2033 | |||
| 2034 | 21 | $visited[$oid] = $document; // mark visited |
|
| 2035 | |||
| 2036 | 21 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 2037 | |||
| 2038 | 21 | if ( ! $class->isEmbeddedDocument) { |
|
| 2039 | 21 | if ($this->getDocumentState($document) == self::STATE_MANAGED) { |
|
| 2040 | 20 | $id = $class->getDatabaseIdentifierValue($this->documentIdentifiers[$oid]); |
|
| 2041 | 20 | $this->getDocumentPersister($class->name)->refresh($id, $document); |
|
| 2042 | 20 | } else { |
|
| 2043 | 1 | throw new \InvalidArgumentException('Document is not MANAGED.'); |
|
| 2044 | } |
||
| 2045 | 20 | } |
|
| 2046 | |||
| 2047 | 20 | $this->cascadeRefresh($document, $visited); |
|
| 2048 | 20 | } |
|
| 2049 | |||
| 2050 | /** |
||
| 2051 | * Cascades a refresh operation to associated documents. |
||
| 2052 | * |
||
| 2053 | * @param object $document |
||
| 2054 | * @param array $visited |
||
| 2055 | */ |
||
| 2056 | 20 | private function cascadeRefresh($document, array &$visited) |
|
| 2057 | { |
||
| 2058 | 20 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 2059 | |||
| 2060 | 20 | $associationMappings = array_filter( |
|
| 2061 | 20 | $class->associationMappings, |
|
| 2062 | function ($assoc) { return $assoc['isCascadeRefresh']; } |
||
| 2063 | 20 | ); |
|
| 2064 | |||
| 2065 | 20 | foreach ($associationMappings as $mapping) { |
|
| 2066 | 15 | $relatedDocuments = $class->reflFields[$mapping['fieldName']]->getValue($document); |
|
| 2067 | 15 | if ($relatedDocuments instanceof Collection || is_array($relatedDocuments)) { |
|
| 2068 | 15 | if ($relatedDocuments instanceof PersistentCollectionInterface) { |
|
| 2069 | // Unwrap so that foreach() does not initialize |
||
| 2070 | 15 | $relatedDocuments = $relatedDocuments->unwrap(); |
|
| 2071 | 15 | } |
|
| 2072 | 15 | foreach ($relatedDocuments as $relatedDocument) { |
|
| 2073 | $this->doRefresh($relatedDocument, $visited); |
||
| 2074 | 15 | } |
|
| 2075 | 15 | } elseif ($relatedDocuments !== null) { |
|
| 2076 | 2 | $this->doRefresh($relatedDocuments, $visited); |
|
| 2077 | 2 | } |
|
| 2078 | 20 | } |
|
| 2079 | 20 | } |
|
| 2080 | |||
| 2081 | /** |
||
| 2082 | * Cascades a detach operation to associated documents. |
||
| 2083 | * |
||
| 2084 | * @param object $document |
||
| 2085 | * @param array $visited |
||
| 2086 | */ |
||
| 2087 | 12 | View Code Duplication | private function cascadeDetach($document, array &$visited) |
| 2088 | { |
||
| 2089 | 12 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 2090 | 12 | foreach ($class->fieldMappings as $mapping) { |
|
| 2091 | 12 | if ( ! $mapping['isCascadeDetach']) { |
|
| 2092 | 12 | continue; |
|
| 2093 | } |
||
| 2094 | 7 | $relatedDocuments = $class->reflFields[$mapping['fieldName']]->getValue($document); |
|
| 2095 | 7 | if (($relatedDocuments instanceof Collection || is_array($relatedDocuments))) { |
|
| 2096 | 7 | if ($relatedDocuments instanceof PersistentCollectionInterface) { |
|
| 2097 | // Unwrap so that foreach() does not initialize |
||
| 2098 | 6 | $relatedDocuments = $relatedDocuments->unwrap(); |
|
| 2099 | 6 | } |
|
| 2100 | 7 | foreach ($relatedDocuments as $relatedDocument) { |
|
| 2101 | 5 | $this->doDetach($relatedDocument, $visited); |
|
| 2102 | 7 | } |
|
| 2103 | 7 | } elseif ($relatedDocuments !== null) { |
|
| 2104 | 5 | $this->doDetach($relatedDocuments, $visited); |
|
| 2105 | 5 | } |
|
| 2106 | 12 | } |
|
| 2107 | 12 | } |
|
| 2108 | /** |
||
| 2109 | * Cascades a merge operation to associated documents. |
||
| 2110 | * |
||
| 2111 | * @param object $document |
||
| 2112 | * @param object $managedCopy |
||
| 2113 | * @param array $visited |
||
| 2114 | */ |
||
| 2115 | 13 | private function cascadeMerge($document, $managedCopy, array &$visited) |
|
| 2116 | { |
||
| 2117 | 13 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 2118 | |||
| 2119 | 13 | $associationMappings = array_filter( |
|
| 2120 | 13 | $class->associationMappings, |
|
| 2121 | function ($assoc) { return $assoc['isCascadeMerge']; } |
||
| 2122 | 13 | ); |
|
| 2123 | |||
| 2124 | 13 | foreach ($associationMappings as $assoc) { |
|
| 2125 | 12 | $relatedDocuments = $class->reflFields[$assoc['fieldName']]->getValue($document); |
|
| 2126 | |||
| 2127 | 12 | if ($relatedDocuments instanceof Collection || is_array($relatedDocuments)) { |
|
| 2128 | 8 | if ($relatedDocuments === $class->reflFields[$assoc['fieldName']]->getValue($managedCopy)) { |
|
| 2129 | // Collections are the same, so there is nothing to do |
||
| 2130 | continue; |
||
| 2131 | } |
||
| 2132 | |||
| 2133 | 8 | if ($relatedDocuments instanceof PersistentCollectionInterface) { |
|
| 2134 | // Unwrap so that foreach() does not initialize |
||
| 2135 | 6 | $relatedDocuments = $relatedDocuments->unwrap(); |
|
| 2136 | 6 | } |
|
| 2137 | |||
| 2138 | 8 | foreach ($relatedDocuments as $relatedDocument) { |
|
| 2139 | 4 | $this->doMerge($relatedDocument, $visited, $managedCopy, $assoc); |
|
| 2140 | 8 | } |
|
| 2141 | 12 | } elseif ($relatedDocuments !== null) { |
|
| 2142 | 3 | $this->doMerge($relatedDocuments, $visited, $managedCopy, $assoc); |
|
| 2143 | 3 | } |
|
| 2144 | 13 | } |
|
| 2145 | 13 | } |
|
| 2146 | |||
| 2147 | /** |
||
| 2148 | * Cascades the save operation to associated documents. |
||
| 2149 | * |
||
| 2150 | * @param object $document |
||
| 2151 | * @param array $visited |
||
| 2152 | */ |
||
| 2153 | 591 | private function cascadePersist($document, array &$visited) |
|
| 2154 | { |
||
| 2155 | 591 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 2156 | |||
| 2157 | 591 | $associationMappings = array_filter( |
|
| 2158 | 591 | $class->associationMappings, |
|
| 2159 | function ($assoc) { return $assoc['isCascadePersist']; } |
||
| 2160 | 591 | ); |
|
| 2161 | |||
| 2162 | 591 | foreach ($associationMappings as $fieldName => $mapping) { |
|
| 2163 | 409 | $relatedDocuments = $class->reflFields[$fieldName]->getValue($document); |
|
| 2164 | |||
| 2165 | 409 | if ($relatedDocuments instanceof Collection || is_array($relatedDocuments)) { |
|
| 2166 | 351 | if ($relatedDocuments instanceof PersistentCollectionInterface) { |
|
| 2167 | 17 | if ($relatedDocuments->getOwner() !== $document) { |
|
| 2168 | 2 | $relatedDocuments = $this->fixPersistentCollectionOwnership($relatedDocuments, $document, $class, $mapping['fieldName']); |
|
| 2169 | 2 | } |
|
| 2170 | // Unwrap so that foreach() does not initialize |
||
| 2171 | 17 | $relatedDocuments = $relatedDocuments->unwrap(); |
|
| 2172 | 17 | } |
|
| 2173 | |||
| 2174 | 351 | $count = 0; |
|
| 2175 | 351 | foreach ($relatedDocuments as $relatedKey => $relatedDocument) { |
|
| 2176 | 193 | if ( ! empty($mapping['embedded'])) { |
|
| 2177 | 117 | list(, $knownParent, ) = $this->getParentAssociation($relatedDocument); |
|
| 2178 | 117 | if ($knownParent && $knownParent !== $document) { |
|
| 2179 | 4 | $relatedDocument = clone $relatedDocument; |
|
| 2180 | 4 | $relatedDocuments[$relatedKey] = $relatedDocument; |
|
| 2181 | 4 | } |
|
| 2182 | 117 | $pathKey = CollectionHelper::isList($mapping['strategy']) ? $count++ : $relatedKey; |
|
| 2183 | 117 | $this->setParentAssociation($relatedDocument, $mapping, $document, $mapping['fieldName'] . '.' . $pathKey); |
|
| 2184 | 117 | } |
|
| 2185 | 193 | $this->doPersist($relatedDocument, $visited); |
|
| 2186 | 350 | } |
|
| 2187 | 409 | } elseif ($relatedDocuments !== null) { |
|
| 2188 | 124 | if ( ! empty($mapping['embedded'])) { |
|
| 2189 | 67 | list(, $knownParent, ) = $this->getParentAssociation($relatedDocuments); |
|
| 2190 | 67 | if ($knownParent && $knownParent !== $document) { |
|
| 2191 | 5 | $relatedDocuments = clone $relatedDocuments; |
|
| 2192 | 5 | $class->setFieldValue($document, $mapping['fieldName'], $relatedDocuments); |
|
| 2193 | 5 | } |
|
| 2194 | 67 | $this->setParentAssociation($relatedDocuments, $mapping, $document, $mapping['fieldName']); |
|
| 2195 | 67 | } |
|
| 2196 | 124 | $this->doPersist($relatedDocuments, $visited); |
|
| 2197 | 123 | } |
|
| 2198 | 590 | } |
|
| 2199 | 589 | } |
|
| 2200 | |||
| 2201 | /** |
||
| 2202 | * Cascades the delete operation to associated documents. |
||
| 2203 | * |
||
| 2204 | * @param object $document |
||
| 2205 | * @param array $visited |
||
| 2206 | */ |
||
| 2207 | 68 | View Code Duplication | private function cascadeRemove($document, array &$visited) |
| 2208 | { |
||
| 2209 | 68 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 2210 | 68 | foreach ($class->fieldMappings as $mapping) { |
|
| 2211 | 67 | if ( ! $mapping['isCascadeRemove']) { |
|
| 2212 | 67 | continue; |
|
| 2213 | } |
||
| 2214 | 34 | if ($document instanceof Proxy && ! $document->__isInitialized__) { |
|
| 2215 | 2 | $document->__load(); |
|
| 2216 | 2 | } |
|
| 2217 | |||
| 2218 | 34 | $relatedDocuments = $class->reflFields[$mapping['fieldName']]->getValue($document); |
|
| 2219 | 34 | if ($relatedDocuments instanceof Collection || is_array($relatedDocuments)) { |
|
| 2220 | // If its a PersistentCollection initialization is intended! No unwrap! |
||
| 2221 | 25 | foreach ($relatedDocuments as $relatedDocument) { |
|
| 2222 | 14 | $this->doRemove($relatedDocument, $visited); |
|
| 2223 | 25 | } |
|
| 2224 | 34 | } elseif ($relatedDocuments !== null) { |
|
| 2225 | 12 | $this->doRemove($relatedDocuments, $visited); |
|
| 2226 | 12 | } |
|
| 2227 | 68 | } |
|
| 2228 | 68 | } |
|
| 2229 | |||
| 2230 | /** |
||
| 2231 | * Acquire a lock on the given document. |
||
| 2232 | * |
||
| 2233 | * @param object $document |
||
| 2234 | * @param int $lockMode |
||
| 2235 | * @param int $lockVersion |
||
| 2236 | * @throws LockException |
||
| 2237 | * @throws \InvalidArgumentException |
||
| 2238 | */ |
||
| 2239 | 9 | public function lock($document, $lockMode, $lockVersion = null) |
|
| 2240 | { |
||
| 2241 | 9 | if ($this->getDocumentState($document) != self::STATE_MANAGED) { |
|
| 2242 | 1 | throw new \InvalidArgumentException('Document is not MANAGED.'); |
|
| 2243 | } |
||
| 2244 | |||
| 2245 | 8 | $documentName = get_class($document); |
|
| 2246 | 8 | $class = $this->dm->getClassMetadata($documentName); |
|
| 2247 | |||
| 2248 | 8 | if ($lockMode == LockMode::OPTIMISTIC) { |
|
| 2249 | 3 | if ( ! $class->isVersioned) { |
|
| 2250 | 1 | throw LockException::notVersioned($documentName); |
|
| 2251 | } |
||
| 2252 | |||
| 2253 | 2 | if ($lockVersion != null) { |
|
| 2254 | 2 | $documentVersion = $class->reflFields[$class->versionField]->getValue($document); |
|
| 2255 | 2 | if ($documentVersion != $lockVersion) { |
|
| 2256 | 1 | throw LockException::lockFailedVersionMissmatch($document, $lockVersion, $documentVersion); |
|
| 2257 | } |
||
| 2258 | 1 | } |
|
| 2259 | 6 | } elseif (in_array($lockMode, array(LockMode::PESSIMISTIC_READ, LockMode::PESSIMISTIC_WRITE))) { |
|
| 2260 | 5 | $this->getDocumentPersister($class->name)->lock($document, $lockMode); |
|
| 2261 | 5 | } |
|
| 2262 | 6 | } |
|
| 2263 | |||
| 2264 | /** |
||
| 2265 | * Releases a lock on the given document. |
||
| 2266 | * |
||
| 2267 | * @param object $document |
||
| 2268 | * @throws \InvalidArgumentException |
||
| 2269 | */ |
||
| 2270 | 1 | public function unlock($document) |
|
| 2271 | { |
||
| 2272 | 1 | if ($this->getDocumentState($document) != self::STATE_MANAGED) { |
|
| 2273 | throw new \InvalidArgumentException("Document is not MANAGED."); |
||
| 2274 | } |
||
| 2275 | 1 | $documentName = get_class($document); |
|
| 2276 | 1 | $this->getDocumentPersister($documentName)->unlock($document); |
|
| 2277 | 1 | } |
|
| 2278 | |||
| 2279 | /** |
||
| 2280 | * Clears the UnitOfWork. |
||
| 2281 | * |
||
| 2282 | * @param string|null $documentName if given, only documents of this type will get detached. |
||
| 2283 | */ |
||
| 2284 | 396 | public function clear($documentName = null) |
|
| 2285 | { |
||
| 2286 | 396 | if ($documentName === null) { |
|
| 2287 | 390 | $this->identityMap = |
|
| 2288 | 390 | $this->documentIdentifiers = |
|
| 2289 | 390 | $this->originalDocumentData = |
|
| 2290 | 390 | $this->documentChangeSets = |
|
| 2291 | 390 | $this->documentStates = |
|
| 2292 | 390 | $this->scheduledForDirtyCheck = |
|
| 2293 | 390 | $this->documentInsertions = |
|
| 2294 | 390 | $this->documentUpserts = |
|
| 2295 | 390 | $this->documentUpdates = |
|
| 2296 | 390 | $this->documentDeletions = |
|
| 2297 | 390 | $this->collectionUpdates = |
|
| 2298 | 390 | $this->collectionDeletions = |
|
| 2299 | 390 | $this->parentAssociations = |
|
| 2300 | 390 | $this->orphanRemovals = |
|
| 2301 | 390 | $this->hasScheduledCollections = array(); |
|
| 2302 | 390 | } else { |
|
| 2303 | 6 | $visited = array(); |
|
| 2304 | 6 | foreach ($this->identityMap as $className => $documents) { |
|
| 2305 | 6 | if ($className === $documentName) { |
|
| 2306 | 3 | foreach ($documents as $document) { |
|
| 2307 | 3 | $this->doDetach($document, $visited); |
|
| 2308 | 3 | } |
|
| 2309 | 3 | } |
|
| 2310 | 6 | } |
|
| 2311 | } |
||
| 2312 | |||
| 2313 | 396 | View Code Duplication | if ($this->evm->hasListeners(Events::onClear)) { |
| 2314 | $this->evm->dispatchEvent(Events::onClear, new Event\OnClearEventArgs($this->dm, $documentName)); |
||
| 2315 | } |
||
| 2316 | 396 | } |
|
| 2317 | |||
| 2318 | /** |
||
| 2319 | * INTERNAL: |
||
| 2320 | * Schedules an embedded document for removal. The remove() operation will be |
||
| 2321 | * invoked on that document at the beginning of the next commit of this |
||
| 2322 | * UnitOfWork. |
||
| 2323 | * |
||
| 2324 | * @ignore |
||
| 2325 | * @param object $document |
||
| 2326 | */ |
||
| 2327 | 49 | public function scheduleOrphanRemoval($document) |
|
| 2328 | { |
||
| 2329 | 49 | $this->orphanRemovals[spl_object_hash($document)] = $document; |
|
| 2330 | 49 | } |
|
| 2331 | |||
| 2332 | /** |
||
| 2333 | * INTERNAL: |
||
| 2334 | * Unschedules an embedded or referenced object for removal. |
||
| 2335 | * |
||
| 2336 | * @ignore |
||
| 2337 | * @param object $document |
||
| 2338 | */ |
||
| 2339 | 107 | public function unscheduleOrphanRemoval($document) |
|
| 2340 | { |
||
| 2341 | 107 | $oid = spl_object_hash($document); |
|
| 2342 | 107 | if (isset($this->orphanRemovals[$oid])) { |
|
| 2343 | 1 | unset($this->orphanRemovals[$oid]); |
|
| 2344 | 1 | } |
|
| 2345 | 107 | } |
|
| 2346 | |||
| 2347 | /** |
||
| 2348 | * Fixes PersistentCollection state if it wasn't used exactly as we had in mind: |
||
| 2349 | * 1) sets owner if it was cloned |
||
| 2350 | * 2) clones collection, sets owner, updates document's property and, if necessary, updates originalData |
||
| 2351 | * 3) NOP if state is OK |
||
| 2352 | * Returned collection should be used from now on (only important with 2nd point) |
||
| 2353 | * |
||
| 2354 | * @param PersistentCollectionInterface $coll |
||
| 2355 | * @param object $document |
||
| 2356 | * @param ClassMetadata $class |
||
| 2357 | * @param string $propName |
||
| 2358 | * @return PersistentCollectionInterface |
||
| 2359 | */ |
||
| 2360 | 8 | private function fixPersistentCollectionOwnership(PersistentCollectionInterface $coll, $document, ClassMetadata $class, $propName) |
|
| 2361 | { |
||
| 2362 | 8 | $owner = $coll->getOwner(); |
|
| 2363 | 8 | if ($owner === null) { // cloned |
|
| 2364 | 6 | $coll->setOwner($document, $class->fieldMappings[$propName]); |
|
| 2365 | 8 | } elseif ($owner !== $document) { // no clone, we have to fix |
|
| 2366 | 2 | if ( ! $coll->isInitialized()) { |
|
| 2367 | 1 | $coll->initialize(); // we have to do this otherwise the cols share state |
|
| 2368 | 1 | } |
|
| 2369 | 2 | $newValue = clone $coll; |
|
| 2370 | 2 | $newValue->setOwner($document, $class->fieldMappings[$propName]); |
|
| 2371 | 2 | $class->reflFields[$propName]->setValue($document, $newValue); |
|
| 2372 | 2 | if ($this->isScheduledForUpdate($document)) { |
|
| 2373 | // @todo following line should be superfluous once collections are stored in change sets |
||
| 2374 | $this->setOriginalDocumentProperty(spl_object_hash($document), $propName, $newValue); |
||
| 2375 | } |
||
| 2376 | 2 | return $newValue; |
|
| 2377 | } |
||
| 2378 | 6 | return $coll; |
|
| 2379 | } |
||
| 2380 | |||
| 2381 | /** |
||
| 2382 | * INTERNAL: |
||
| 2383 | * Schedules a complete collection for removal when this UnitOfWork commits. |
||
| 2384 | * |
||
| 2385 | * @param PersistentCollectionInterface $coll |
||
| 2386 | */ |
||
| 2387 | 42 | public function scheduleCollectionDeletion(PersistentCollectionInterface $coll) |
|
| 2388 | { |
||
| 2389 | 42 | $oid = spl_object_hash($coll); |
|
| 2390 | 42 | unset($this->collectionUpdates[$oid]); |
|
| 2391 | 42 | if ( ! isset($this->collectionDeletions[$oid])) { |
|
| 2392 | 42 | $this->collectionDeletions[$oid] = $coll; |
|
| 2393 | 42 | $this->scheduleCollectionOwner($coll); |
|
| 2394 | 42 | } |
|
| 2395 | 42 | } |
|
| 2396 | |||
| 2397 | /** |
||
| 2398 | * Checks whether a PersistentCollection is scheduled for deletion. |
||
| 2399 | * |
||
| 2400 | * @param PersistentCollectionInterface $coll |
||
| 2401 | * @return boolean |
||
| 2402 | */ |
||
| 2403 | 209 | public function isCollectionScheduledForDeletion(PersistentCollectionInterface $coll) |
|
| 2404 | { |
||
| 2405 | 209 | return isset($this->collectionDeletions[spl_object_hash($coll)]); |
|
| 2406 | } |
||
| 2407 | |||
| 2408 | /** |
||
| 2409 | * INTERNAL: |
||
| 2410 | * Unschedules a collection from being deleted when this UnitOfWork commits. |
||
| 2411 | <<<<<<< HEAD |
||
| 2412 | * |
||
| 2413 | * @param \Doctrine\ODM\MongoDB\PersistentCollection $coll |
||
| 2414 | ======= |
||
| 2415 | * |
||
| 2416 | * @param \Doctrine\ODM\MongoDB\PersistentCollectionInterface $coll |
||
| 2417 | >>>>>>> Start using PersistentCollectionInterface |
||
| 2418 | */ |
||
| 2419 | 214 | View Code Duplication | public function unscheduleCollectionDeletion(PersistentCollectionInterface $coll) |
| 2420 | { |
||
| 2421 | 214 | $oid = spl_object_hash($coll); |
|
| 2422 | 214 | if (isset($this->collectionDeletions[$oid])) { |
|
| 2423 | 12 | $topmostOwner = $this->getOwningDocument($coll->getOwner()); |
|
| 2424 | 12 | unset($this->collectionDeletions[$oid]); |
|
| 2425 | 12 | unset($this->hasScheduledCollections[spl_object_hash($topmostOwner)][$oid]); |
|
| 2426 | 12 | } |
|
| 2427 | 214 | } |
|
| 2428 | |||
| 2429 | /** |
||
| 2430 | * INTERNAL: |
||
| 2431 | * Schedules a collection for update when this UnitOfWork commits. |
||
| 2432 | * |
||
| 2433 | * @param PersistentCollectionInterface $coll |
||
| 2434 | */ |
||
| 2435 | 231 | public function scheduleCollectionUpdate(PersistentCollectionInterface $coll) |
|
| 2436 | { |
||
| 2437 | 231 | $mapping = $coll->getMapping(); |
|
| 2438 | 231 | if (CollectionHelper::usesSet($mapping['strategy'])) { |
|
| 2439 | /* There is no need to $unset collection if it will be $set later |
||
| 2440 | * This is NOP if collection is not scheduled for deletion |
||
| 2441 | */ |
||
| 2442 | 41 | $this->unscheduleCollectionDeletion($coll); |
|
| 2443 | 41 | } |
|
| 2444 | 231 | $oid = spl_object_hash($coll); |
|
| 2445 | 231 | if ( ! isset($this->collectionUpdates[$oid])) { |
|
| 2446 | 231 | $this->collectionUpdates[$oid] = $coll; |
|
| 2447 | 231 | $this->scheduleCollectionOwner($coll); |
|
| 2448 | 231 | } |
|
| 2449 | 231 | } |
|
| 2450 | |||
| 2451 | /** |
||
| 2452 | * INTERNAL: |
||
| 2453 | * Unschedules a collection from being updated when this UnitOfWork commits. |
||
| 2454 | <<<<<<< HEAD |
||
| 2455 | * |
||
| 2456 | * @param \Doctrine\ODM\MongoDB\PersistentCollection $coll |
||
| 2457 | ======= |
||
| 2458 | * |
||
| 2459 | * @param \Doctrine\ODM\MongoDB\PersistentCollectionInterface $coll |
||
| 2460 | >>>>>>> Start using PersistentCollectionInterface |
||
| 2461 | */ |
||
| 2462 | 214 | View Code Duplication | public function unscheduleCollectionUpdate(PersistentCollectionInterface $coll) |
| 2463 | { |
||
| 2464 | 214 | $oid = spl_object_hash($coll); |
|
| 2465 | 214 | if (isset($this->collectionUpdates[$oid])) { |
|
| 2466 | 204 | $topmostOwner = $this->getOwningDocument($coll->getOwner()); |
|
| 2467 | 204 | unset($this->collectionUpdates[$oid]); |
|
| 2468 | 204 | unset($this->hasScheduledCollections[spl_object_hash($topmostOwner)][$oid]); |
|
| 2469 | 204 | } |
|
| 2470 | 214 | } |
|
| 2471 | |||
| 2472 | /** |
||
| 2473 | * Checks whether a PersistentCollection is scheduled for update. |
||
| 2474 | * |
||
| 2475 | * @param PersistentCollectionInterface $coll |
||
| 2476 | * @return boolean |
||
| 2477 | */ |
||
| 2478 | 125 | public function isCollectionScheduledForUpdate(PersistentCollectionInterface $coll) |
|
| 2479 | { |
||
| 2480 | 125 | return isset($this->collectionUpdates[spl_object_hash($coll)]); |
|
| 2481 | } |
||
| 2482 | |||
| 2483 | /** |
||
| 2484 | * INTERNAL: |
||
| 2485 | * Gets PersistentCollections that have been visited during computing change |
||
| 2486 | * set of $document |
||
| 2487 | * |
||
| 2488 | * @param object $document |
||
| 2489 | * @return PersistentCollectionInterface[] |
||
| 2490 | */ |
||
| 2491 | 553 | public function getVisitedCollections($document) |
|
| 2492 | { |
||
| 2493 | 553 | $oid = spl_object_hash($document); |
|
| 2494 | 553 | return isset($this->visitedCollections[$oid]) |
|
| 2495 | 553 | ? $this->visitedCollections[$oid] |
|
| 2496 | 553 | : array(); |
|
| 2497 | } |
||
| 2498 | |||
| 2499 | /** |
||
| 2500 | * INTERNAL: |
||
| 2501 | * Gets PersistentCollections that are scheduled to update and related to $document |
||
| 2502 | * |
||
| 2503 | * @param object $document |
||
| 2504 | * @return array |
||
| 2505 | */ |
||
| 2506 | 553 | public function getScheduledCollections($document) |
|
| 2507 | { |
||
| 2508 | 553 | $oid = spl_object_hash($document); |
|
| 2509 | 553 | return isset($this->hasScheduledCollections[$oid]) |
|
| 2510 | 553 | ? $this->hasScheduledCollections[$oid] |
|
| 2511 | 553 | : array(); |
|
| 2512 | } |
||
| 2513 | |||
| 2514 | /** |
||
| 2515 | * Checks whether the document is related to a PersistentCollection |
||
| 2516 | * scheduled for update or deletion. |
||
| 2517 | * |
||
| 2518 | * @param object $document |
||
| 2519 | * @return boolean |
||
| 2520 | */ |
||
| 2521 | 49 | public function hasScheduledCollections($document) |
|
| 2522 | { |
||
| 2523 | 49 | return isset($this->hasScheduledCollections[spl_object_hash($document)]); |
|
| 2524 | } |
||
| 2525 | |||
| 2526 | /** |
||
| 2527 | * Marks the PersistentCollection's top-level owner as having a relation to |
||
| 2528 | * a collection scheduled for update or deletion. |
||
| 2529 | * |
||
| 2530 | * If the owner is not scheduled for any lifecycle action, it will be |
||
| 2531 | * scheduled for update to ensure that versioning takes place if necessary. |
||
| 2532 | * |
||
| 2533 | * If the collection is nested within atomic collection, it is immediately |
||
| 2534 | * unscheduled and atomic one is scheduled for update instead. This makes |
||
| 2535 | * calculating update data way easier. |
||
| 2536 | <<<<<<< HEAD |
||
| 2537 | * |
||
| 2538 | * @param PersistentCollection $coll |
||
| 2539 | ======= |
||
| 2540 | * |
||
| 2541 | * @param PersistentCollectionInterface $coll |
||
| 2542 | >>>>>>> Start using PersistentCollectionInterface |
||
| 2543 | */ |
||
| 2544 | 233 | private function scheduleCollectionOwner(PersistentCollectionInterface $coll) |
|
| 2545 | { |
||
| 2546 | 233 | $document = $this->getOwningDocument($coll->getOwner()); |
|
| 2547 | 233 | $this->hasScheduledCollections[spl_object_hash($document)][spl_object_hash($coll)] = $coll; |
|
| 2548 | |||
| 2549 | 233 | if ($document !== $coll->getOwner()) { |
|
| 2550 | 25 | $parent = $coll->getOwner(); |
|
| 2551 | 25 | while (null !== ($parentAssoc = $this->getParentAssociation($parent))) { |
|
| 2552 | 25 | list($mapping, $parent, ) = $parentAssoc; |
|
| 2553 | 25 | } |
|
| 2554 | 25 | if (CollectionHelper::isAtomic($mapping['strategy'])) { |
|
| 2555 | 8 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 2556 | 8 | $atomicCollection = $class->getFieldValue($document, $mapping['fieldName']); |
|
| 2557 | 8 | $this->scheduleCollectionUpdate($atomicCollection); |
|
| 2558 | 8 | $this->unscheduleCollectionDeletion($coll); |
|
| 2559 | 8 | $this->unscheduleCollectionUpdate($coll); |
|
| 2560 | 8 | } |
|
| 2561 | 25 | } |
|
| 2562 | |||
| 2563 | 233 | if ( ! $this->isDocumentScheduled($document)) { |
|
| 2564 | 48 | $this->scheduleForUpdate($document); |
|
| 2565 | 48 | } |
|
| 2566 | 233 | } |
|
| 2567 | |||
| 2568 | /** |
||
| 2569 | * Get the top-most owning document of a given document |
||
| 2570 | * |
||
| 2571 | * If a top-level document is provided, that same document will be returned. |
||
| 2572 | * For an embedded document, we will walk through parent associations until |
||
| 2573 | * we find a top-level document. |
||
| 2574 | * |
||
| 2575 | * @param object $document |
||
| 2576 | * @throws \UnexpectedValueException when a top-level document could not be found |
||
| 2577 | * @return object |
||
| 2578 | */ |
||
| 2579 | 235 | public function getOwningDocument($document) |
|
| 2580 | { |
||
| 2581 | 235 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 2582 | 235 | while ($class->isEmbeddedDocument) { |
|
| 2583 | 39 | $parentAssociation = $this->getParentAssociation($document); |
|
| 2584 | |||
| 2585 | 39 | if ( ! $parentAssociation) { |
|
| 2586 | throw new \UnexpectedValueException('Could not determine parent association for ' . get_class($document)); |
||
| 2587 | } |
||
| 2588 | |||
| 2589 | 39 | list(, $document, ) = $parentAssociation; |
|
| 2590 | 39 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 2591 | 39 | } |
|
| 2592 | |||
| 2593 | 235 | return $document; |
|
| 2594 | } |
||
| 2595 | |||
| 2596 | /** |
||
| 2597 | * Gets the class name for an association (embed or reference) with respect |
||
| 2598 | * to any discriminator value. |
||
| 2599 | * |
||
| 2600 | * @param array $mapping Field mapping for the association |
||
| 2601 | * @param array|null $data Data for the embedded document or reference |
||
| 2602 | * @return string Class name. |
||
| 2603 | */ |
||
| 2604 | 212 | public function getClassNameForAssociation(array $mapping, $data) |
|
| 2605 | { |
||
| 2606 | 212 | $discriminatorField = isset($mapping['discriminatorField']) ? $mapping['discriminatorField'] : null; |
|
| 2607 | |||
| 2608 | 212 | $discriminatorValue = null; |
|
| 2609 | 212 | if (isset($discriminatorField, $data[$discriminatorField])) { |
|
| 2610 | 21 | $discriminatorValue = $data[$discriminatorField]; |
|
| 2611 | 212 | } elseif (isset($mapping['defaultDiscriminatorValue'])) { |
|
| 2612 | $discriminatorValue = $mapping['defaultDiscriminatorValue']; |
||
| 2613 | } |
||
| 2614 | |||
| 2615 | 212 | if ($discriminatorValue !== null) { |
|
| 2616 | 21 | return isset($mapping['discriminatorMap'][$discriminatorValue]) |
|
| 2617 | 21 | ? $mapping['discriminatorMap'][$discriminatorValue] |
|
| 2618 | 21 | : $discriminatorValue; |
|
| 2619 | } |
||
| 2620 | |||
| 2621 | 192 | $class = $this->dm->getClassMetadata($mapping['targetDocument']); |
|
| 2622 | |||
| 2623 | 192 | View Code Duplication | if (isset($class->discriminatorField, $data[$class->discriminatorField])) { |
| 2624 | 15 | $discriminatorValue = $data[$class->discriminatorField]; |
|
| 2625 | 192 | } elseif ($class->defaultDiscriminatorValue !== null) { |
|
| 2626 | 1 | $discriminatorValue = $class->defaultDiscriminatorValue; |
|
| 2627 | 1 | } |
|
| 2628 | |||
| 2629 | 192 | if ($discriminatorValue !== null) { |
|
| 2630 | 16 | return isset($class->discriminatorMap[$discriminatorValue]) |
|
| 2631 | 16 | ? $class->discriminatorMap[$discriminatorValue] |
|
| 2632 | 16 | : $discriminatorValue; |
|
| 2633 | } |
||
| 2634 | |||
| 2635 | 176 | return $mapping['targetDocument']; |
|
| 2636 | } |
||
| 2637 | |||
| 2638 | /** |
||
| 2639 | * INTERNAL: |
||
| 2640 | * Creates a document. Used for reconstitution of documents during hydration. |
||
| 2641 | * |
||
| 2642 | * @ignore |
||
| 2643 | * @param string $className The name of the document class. |
||
| 2644 | * @param array $data The data for the document. |
||
| 2645 | * @param array $hints Any hints to account for during reconstitution/lookup of the document. |
||
| 2646 | * @param object $document The document to be hydrated into in case of creation |
||
| 2647 | * @return object The document instance. |
||
| 2648 | * @internal Highly performance-sensitive method. |
||
| 2649 | */ |
||
| 2650 | 397 | public function getOrCreateDocument($className, $data, &$hints = array(), $document = null) |
|
| 2651 | { |
||
| 2652 | 397 | $class = $this->dm->getClassMetadata($className); |
|
| 2653 | |||
| 2654 | // @TODO figure out how to remove this |
||
| 2655 | 397 | $discriminatorValue = null; |
|
| 2656 | 397 | View Code Duplication | if (isset($class->discriminatorField, $data[$class->discriminatorField])) { |
| 2657 | 19 | $discriminatorValue = $data[$class->discriminatorField]; |
|
| 2658 | 397 | } elseif (isset($class->defaultDiscriminatorValue)) { |
|
| 2659 | 2 | $discriminatorValue = $class->defaultDiscriminatorValue; |
|
| 2660 | 2 | } |
|
| 2661 | |||
| 2662 | 397 | if ($discriminatorValue !== null) { |
|
| 2663 | 20 | $className = isset($class->discriminatorMap[$discriminatorValue]) |
|
| 2664 | 20 | ? $class->discriminatorMap[$discriminatorValue] |
|
| 2665 | 20 | : $discriminatorValue; |
|
| 2666 | |||
| 2667 | 20 | $class = $this->dm->getClassMetadata($className); |
|
| 2668 | |||
| 2669 | 20 | unset($data[$class->discriminatorField]); |
|
| 2670 | 20 | } |
|
| 2671 | |||
| 2672 | 397 | $id = $class->getDatabaseIdentifierValue($data['_id']); |
|
| 2673 | 397 | $serializedId = serialize($id); |
|
| 2674 | |||
| 2675 | 397 | if (isset($this->identityMap[$class->name][$serializedId])) { |
|
| 2676 | 97 | $document = $this->identityMap[$class->name][$serializedId]; |
|
| 2677 | 97 | $oid = spl_object_hash($document); |
|
| 2678 | 97 | if ($document instanceof Proxy && ! $document->__isInitialized__) { |
|
| 2679 | 10 | $document->__isInitialized__ = true; |
|
| 2680 | 10 | $overrideLocalValues = true; |
|
| 2681 | 10 | if ($document instanceof NotifyPropertyChanged) { |
|
| 2682 | $document->addPropertyChangedListener($this); |
||
| 2683 | } |
||
| 2684 | 10 | } else { |
|
| 2685 | 93 | $overrideLocalValues = ! empty($hints[Query::HINT_REFRESH]); |
|
| 2686 | } |
||
| 2687 | 97 | if ($overrideLocalValues) { |
|
| 2688 | 47 | $data = $this->hydratorFactory->hydrate($document, $data, $hints); |
|
| 2689 | 47 | $this->originalDocumentData[$oid] = $data; |
|
| 2690 | 47 | } |
|
| 2691 | 97 | } else { |
|
| 2692 | 363 | if ($document === null) { |
|
| 2693 | 363 | $document = $class->newInstance(); |
|
| 2694 | 363 | } |
|
| 2695 | 363 | $this->registerManaged($document, $id, $data); |
|
| 2696 | 363 | $oid = spl_object_hash($document); |
|
| 2697 | 363 | $this->documentStates[$oid] = self::STATE_MANAGED; |
|
| 2698 | 363 | $this->identityMap[$class->name][$serializedId] = $document; |
|
| 2699 | 363 | $data = $this->hydratorFactory->hydrate($document, $data, $hints); |
|
| 2700 | 363 | $this->originalDocumentData[$oid] = $data; |
|
| 2701 | } |
||
| 2702 | 397 | return $document; |
|
| 2703 | } |
||
| 2704 | |||
| 2705 | /** |
||
| 2706 | * Initializes (loads) an uninitialized persistent collection of a document. |
||
| 2707 | * |
||
| 2708 | * @param PersistentCollectionInterface $collection The collection to initialize. |
||
| 2709 | */ |
||
| 2710 | 161 | public function loadCollection(PersistentCollectionInterface $collection) |
|
| 2711 | { |
||
| 2712 | 161 | $this->getDocumentPersister(get_class($collection->getOwner()))->loadCollection($collection); |
|
| 2713 | 161 | $this->lifecycleEventManager->postCollectionLoad($collection); |
|
| 2714 | 161 | } |
|
| 2715 | |||
| 2716 | /** |
||
| 2717 | * Gets the identity map of the UnitOfWork. |
||
| 2718 | * |
||
| 2719 | * @return array |
||
| 2720 | */ |
||
| 2721 | public function getIdentityMap() |
||
| 2722 | { |
||
| 2723 | return $this->identityMap; |
||
| 2724 | } |
||
| 2725 | |||
| 2726 | /** |
||
| 2727 | * Gets the original data of a document. The original data is the data that was |
||
| 2728 | * present at the time the document was reconstituted from the database. |
||
| 2729 | * |
||
| 2730 | * @param object $document |
||
| 2731 | * @return array |
||
| 2732 | */ |
||
| 2733 | 1 | public function getOriginalDocumentData($document) |
|
| 2734 | { |
||
| 2735 | 1 | $oid = spl_object_hash($document); |
|
| 2736 | 1 | if (isset($this->originalDocumentData[$oid])) { |
|
| 2737 | 1 | return $this->originalDocumentData[$oid]; |
|
| 2738 | } |
||
| 2739 | return array(); |
||
| 2740 | } |
||
| 2741 | |||
| 2742 | /** |
||
| 2743 | * @ignore |
||
| 2744 | */ |
||
| 2745 | 53 | public function setOriginalDocumentData($document, array $data) |
|
| 2746 | { |
||
| 2747 | 53 | $oid = spl_object_hash($document); |
|
| 2748 | 53 | $this->originalDocumentData[$oid] = $data; |
|
| 2749 | 53 | unset($this->documentChangeSets[$oid]); |
|
| 2750 | 53 | } |
|
| 2751 | |||
| 2752 | /** |
||
| 2753 | * INTERNAL: |
||
| 2754 | * Sets a property value of the original data array of a document. |
||
| 2755 | * |
||
| 2756 | * @ignore |
||
| 2757 | * @param string $oid |
||
| 2758 | * @param string $property |
||
| 2759 | * @param mixed $value |
||
| 2760 | */ |
||
| 2761 | 3 | public function setOriginalDocumentProperty($oid, $property, $value) |
|
| 2762 | { |
||
| 2763 | 3 | $this->originalDocumentData[$oid][$property] = $value; |
|
| 2764 | 3 | } |
|
| 2765 | |||
| 2766 | /** |
||
| 2767 | * Gets the identifier of a document. |
||
| 2768 | * |
||
| 2769 | * @param object $document |
||
| 2770 | * @return mixed The identifier value |
||
| 2771 | */ |
||
| 2772 | 370 | public function getDocumentIdentifier($document) |
|
| 2773 | { |
||
| 2774 | 370 | return isset($this->documentIdentifiers[spl_object_hash($document)]) ? |
|
| 2775 | 370 | $this->documentIdentifiers[spl_object_hash($document)] : null; |
|
| 2776 | } |
||
| 2777 | |||
| 2778 | /** |
||
| 2779 | * Checks whether the UnitOfWork has any pending insertions. |
||
| 2780 | * |
||
| 2781 | * @return boolean TRUE if this UnitOfWork has pending insertions, FALSE otherwise. |
||
| 2782 | */ |
||
| 2783 | public function hasPendingInsertions() |
||
| 2784 | { |
||
| 2785 | return ! empty($this->documentInsertions); |
||
| 2786 | } |
||
| 2787 | |||
| 2788 | /** |
||
| 2789 | * Calculates the size of the UnitOfWork. The size of the UnitOfWork is the |
||
| 2790 | * number of documents in the identity map. |
||
| 2791 | * |
||
| 2792 | * @return integer |
||
| 2793 | */ |
||
| 2794 | 2 | public function size() |
|
| 2795 | { |
||
| 2796 | 2 | $count = 0; |
|
| 2797 | 2 | foreach ($this->identityMap as $documentSet) { |
|
| 2798 | 2 | $count += count($documentSet); |
|
| 2799 | 2 | } |
|
| 2800 | 2 | return $count; |
|
| 2801 | } |
||
| 2802 | |||
| 2803 | /** |
||
| 2804 | * INTERNAL: |
||
| 2805 | * Registers a document as managed. |
||
| 2806 | * |
||
| 2807 | * TODO: This method assumes that $id is a valid PHP identifier for the |
||
| 2808 | * document class. If the class expects its database identifier to be a |
||
| 2809 | * MongoId, and an incompatible $id is registered (e.g. an integer), the |
||
| 2810 | * document identifiers map will become inconsistent with the identity map. |
||
| 2811 | * In the future, we may want to round-trip $id through a PHP and database |
||
| 2812 | * conversion and throw an exception if it's inconsistent. |
||
| 2813 | * |
||
| 2814 | * @param object $document The document. |
||
| 2815 | * @param array $id The identifier values. |
||
| 2816 | * @param array $data The original document data. |
||
| 2817 | */ |
||
| 2818 | 385 | public function registerManaged($document, $id, array $data) |
|
| 2819 | { |
||
| 2820 | 385 | $oid = spl_object_hash($document); |
|
| 2821 | 385 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 2822 | |||
| 2823 | 385 | if ( ! $class->identifier || $id === null) { |
|
| 2824 | 104 | $this->documentIdentifiers[$oid] = $oid; |
|
| 2825 | 104 | } else { |
|
| 2826 | 379 | $this->documentIdentifiers[$oid] = $class->getPHPIdentifierValue($id); |
|
| 2827 | } |
||
| 2828 | |||
| 2829 | 385 | $this->documentStates[$oid] = self::STATE_MANAGED; |
|
| 2830 | 385 | $this->originalDocumentData[$oid] = $data; |
|
| 2831 | 385 | $this->addToIdentityMap($document); |
|
| 2832 | 385 | } |
|
| 2833 | |||
| 2834 | /** |
||
| 2835 | * INTERNAL: |
||
| 2836 | * Clears the property changeset of the document with the given OID. |
||
| 2837 | * |
||
| 2838 | * @param string $oid The document's OID. |
||
| 2839 | */ |
||
| 2840 | 1 | public function clearDocumentChangeSet($oid) |
|
| 2844 | |||
| 2845 | /* PropertyChangedListener implementation */ |
||
| 2846 | |||
| 2847 | /** |
||
| 2848 | * Notifies this UnitOfWork of a property change in a document. |
||
| 2849 | * |
||
| 2850 | * @param object $document The document that owns the property. |
||
| 2851 | * @param string $propertyName The name of the property that changed. |
||
| 2852 | * @param mixed $oldValue The old value of the property. |
||
| 2853 | * @param mixed $newValue The new value of the property. |
||
| 2854 | */ |
||
| 2855 | 2 | public function propertyChanged($document, $propertyName, $oldValue, $newValue) |
|
| 2856 | { |
||
| 2857 | 2 | $oid = spl_object_hash($document); |
|
| 2858 | 2 | $class = $this->dm->getClassMetadata(get_class($document)); |
|
| 2859 | |||
| 2860 | 2 | if ( ! isset($class->fieldMappings[$propertyName])) { |
|
| 2861 | 1 | return; // ignore non-persistent fields |
|
| 2862 | } |
||
| 2863 | |||
| 2864 | // Update changeset and mark document for synchronization |
||
| 2865 | 2 | $this->documentChangeSets[$oid][$propertyName] = array($oldValue, $newValue); |
|
| 2866 | 2 | if ( ! isset($this->scheduledForDirtyCheck[$class->name][$oid])) { |
|
| 2867 | 2 | $this->scheduleForDirtyCheck($document); |
|
| 2868 | 2 | } |
|
| 2869 | 2 | } |
|
| 2870 | |||
| 2871 | /** |
||
| 2872 | * Gets the currently scheduled document insertions in this UnitOfWork. |
||
| 2873 | * |
||
| 2874 | * @return array |
||
| 2875 | */ |
||
| 2876 | 5 | public function getScheduledDocumentInsertions() |
|
| 2877 | { |
||
| 2878 | 5 | return $this->documentInsertions; |
|
| 2879 | } |
||
| 2880 | |||
| 2881 | /** |
||
| 2882 | * Gets the currently scheduled document upserts in this UnitOfWork. |
||
| 2883 | * |
||
| 2884 | * @return array |
||
| 2885 | */ |
||
| 2886 | 3 | public function getScheduledDocumentUpserts() |
|
| 2887 | { |
||
| 2888 | 3 | return $this->documentUpserts; |
|
| 2889 | } |
||
| 2890 | |||
| 2891 | /** |
||
| 2892 | * Gets the currently scheduled document updates in this UnitOfWork. |
||
| 2893 | * |
||
| 2894 | * @return array |
||
| 2895 | */ |
||
| 2896 | 3 | public function getScheduledDocumentUpdates() |
|
| 2897 | { |
||
| 2898 | 3 | return $this->documentUpdates; |
|
| 2899 | } |
||
| 2900 | |||
| 2901 | /** |
||
| 2902 | * Gets the currently scheduled document deletions in this UnitOfWork. |
||
| 2903 | * |
||
| 2904 | * @return array |
||
| 2905 | */ |
||
| 2906 | public function getScheduledDocumentDeletions() |
||
| 2907 | { |
||
| 2908 | return $this->documentDeletions; |
||
| 2909 | } |
||
| 2910 | |||
| 2911 | /** |
||
| 2912 | * Get the currently scheduled complete collection deletions |
||
| 2913 | * |
||
| 2914 | * @return array |
||
| 2915 | */ |
||
| 2916 | public function getScheduledCollectionDeletions() |
||
| 2917 | { |
||
| 2918 | return $this->collectionDeletions; |
||
| 2919 | } |
||
| 2920 | |||
| 2921 | /** |
||
| 2922 | * Gets the currently scheduled collection inserts, updates and deletes. |
||
| 2923 | * |
||
| 2924 | * @return array |
||
| 2925 | */ |
||
| 2926 | public function getScheduledCollectionUpdates() |
||
| 2927 | { |
||
| 2928 | return $this->collectionUpdates; |
||
| 2929 | } |
||
| 2930 | |||
| 2931 | /** |
||
| 2932 | * Helper method to initialize a lazy loading proxy or persistent collection. |
||
| 2933 | * |
||
| 2934 | * @param object |
||
| 2935 | * @return void |
||
| 2936 | */ |
||
| 2937 | public function initializeObject($obj) |
||
| 2938 | { |
||
| 2945 | |||
| 2946 | 1 | private function objToStr($obj) |
|
| 2950 | } |
||
| 2951 |
This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.
Consider making the comparison explicit by using
empty(..)or! empty(...)instead.