forked from doctrine/mongodb-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPersistentCollection.php
783 lines (684 loc) · 17.8 KB
/
PersistentCollection.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
<?php
/*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the MIT license. For more information, see
* <http://www.doctrine-project.org>.
*/
namespace Doctrine\ODM\MongoDB;
use Doctrine\Common\Collections\Collection as BaseCollection;
use Doctrine\ODM\MongoDB\Mapping\ClassMetadata;
use Doctrine\ODM\MongoDB\Utility\CollectionHelper;
/**
* A PersistentCollection represents a collection of elements that have persistent state.
*
* @since 1.0
* @author Jonathan H. Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/
class PersistentCollection implements BaseCollection
{
/**
* A snapshot of the collection at the moment it was fetched from the database.
* This is used to create a diff of the collection at commit time.
*
* @var array
*/
private $snapshot = array();
/**
* Collection's owning entity
*
* @var object
*/
private $owner;
/**
* @var array
*/
private $mapping;
/**
* Whether the collection is dirty and needs to be synchronized with the database
* when the UnitOfWork that manages its persistent state commits.
*
* @var boolean
*/
private $isDirty = false;
/**
* Whether the collection has already been initialized.
*
* @var boolean
*/
private $initialized = true;
/**
* The wrapped Collection instance.
*
* @var BaseCollection
*/
private $coll;
/**
* The DocumentManager that manages the persistence of the collection.
*
* @var DocumentManager
*/
private $dm;
/**
* The UnitOfWork that manages the persistence of the collection.
*
* @var UnitOfWork
*/
private $uow;
/**
* The raw mongo data that will be used to initialize this collection.
*
* @var array
*/
private $mongoData = array();
/**
* Any hints to account for during reconstitution/lookup of the documents.
*
* @var array
*/
private $hints = array();
/**
* @var ClassMetadata
*/
private $typeClass;
/**
* @param BaseCollection $coll
* @param DocumentManager $dm
* @param UnitOfWork $uow
*/
public function __construct(BaseCollection $coll, DocumentManager $dm, UnitOfWork $uow)
{
$this->coll = $coll;
$this->dm = $dm;
$this->uow = $uow;
}
/**
* Sets the document manager and unit of work (used during merge operations).
*
* @param DocumentManager $dm
*/
public function setDocumentManager(DocumentManager $dm)
{
$this->dm = $dm;
$this->uow = $dm->getUnitOfWork();
}
/**
* Sets the array of raw mongo data that will be used to initialize this collection.
*
* @param array $mongoData
*/
public function setMongoData(array $mongoData)
{
$this->mongoData = $mongoData;
}
/**
* Gets the array of raw mongo data that will be used to initialize this collection.
*
* @return array $mongoData
*/
public function getMongoData()
{
return $this->mongoData;
}
/**
* Set hints to account for during reconstitution/lookup of the documents.
*
* @param array $hints
*/
public function setHints(array $hints)
{
$this->hints = $hints;
}
/**
* Get hints to account for during reconstitution/lookup of the documents.
*
* @return array $hints
*/
public function getHints()
{
return $this->hints;
}
/**
* Initializes the collection by loading its contents from the database
* if the collection is not yet initialized.
*/
public function initialize()
{
if ($this->initialized || ! $this->mapping) {
return;
}
$newObjects = array();
if ($this->isDirty) {
// Remember any NEW objects added through add()
$newObjects = $this->coll->toArray();
}
$this->coll->clear();
$this->uow->loadCollection($this);
$this->takeSnapshot();
// Reattach any NEW objects added through add()
if ($newObjects) {
foreach ($newObjects as $key => $obj) {
if (CollectionHelper::isHash($this->mapping['strategy'])) {
$this->coll->set($key, $obj);
} else {
$this->coll->add($obj);
}
}
$this->isDirty = true;
}
$this->mongoData = array();
$this->initialized = true;
}
/**
* Marks this collection as changed/dirty.
*/
private function changed()
{
if ($this->isDirty) {
return;
}
$this->isDirty = true;
if ($this->dm &&
$this->mapping !== null &&
$this->mapping['isOwningSide'] &&
$this->owner &&
$this->dm->getClassMetadata(get_class($this->owner))->isChangeTrackingNotify()) {
$this->uow->scheduleForDirtyCheck($this->owner);
}
}
/**
* Gets a boolean flag indicating whether this collection is dirty which means
* its state needs to be synchronized with the database.
*
* @return boolean TRUE if the collection is dirty, FALSE otherwise.
*/
public function isDirty()
{
return $this->isDirty;
}
/**
* Sets a boolean flag, indicating whether this collection is dirty.
*
* @param boolean $dirty Whether the collection should be marked dirty or not.
*/
public function setDirty($dirty)
{
$this->isDirty = $dirty;
}
/**
* INTERNAL:
* Sets the collection's owning entity together with the AssociationMapping that
* describes the association between the owner and the elements of the collection.
*
* @param object $document
* @param array $mapping
*/
public function setOwner($document, array $mapping)
{
$this->owner = $document;
$this->mapping = $mapping;
if ( ! empty($this->mapping['targetDocument'])) {
$this->typeClass = $this->dm->getClassMetadata($this->mapping['targetDocument']);
}
}
/**
* INTERNAL:
* Tells this collection to take a snapshot of its current state reindexing
* itself numerically if using save strategy that is enforcing BSON array.
* Reindexing is safe as snapshot is taken only after synchronizing collection
* with database or clearing it.
*/
public function takeSnapshot()
{
if (CollectionHelper::isList($this->mapping['strategy'])) {
$array = $this->coll->toArray();
$this->coll->clear();
foreach ($array as $document) {
$this->coll->add($document);
}
}
$this->snapshot = $this->coll->toArray();
$this->isDirty = false;
}
/**
* INTERNAL:
* Clears the internal snapshot information and sets isDirty to true if the collection
* has elements.
*/
public function clearSnapshot()
{
$this->snapshot = array();
$this->isDirty = $this->count() ? true : false;
}
/**
* INTERNAL:
* Returns the last snapshot of the elements in the collection.
*
* @return array The last snapshot of the elements.
*/
public function getSnapshot()
{
return $this->snapshot;
}
/**
* INTERNAL:
* getDeleteDiff
*
* @return array
*/
public function getDeleteDiff()
{
return array_udiff_assoc(
$this->snapshot,
$this->coll->toArray(),
function ($a, $b) { return $a === $b ? 0 : 1; }
);
}
/**
* INTERNAL:
* getInsertDiff
*
* @return array
*/
public function getInsertDiff()
{
return array_udiff_assoc(
$this->coll->toArray(),
$this->snapshot,
function ($a, $b) { return $a === $b ? 0 : 1; }
);
}
/**
* INTERNAL:
* Gets the collection owner.
*
* @return object
*/
public function getOwner()
{
return $this->owner;
}
/**
* @return array
*/
public function getMapping()
{
return $this->mapping;
}
/**
* @return ClassMetadata
* @throws MongoDBException
*/
public function getTypeClass()
{
if (empty($this->typeClass)) {
throw new MongoDBException('Specifying targetDocument is required for the ClassMetadata to be obtained.');
}
return $this->typeClass;
}
/**
* Sets the initialized flag of the collection, forcing it into that state.
*
* @param boolean $bool
*/
public function setInitialized($bool)
{
$this->initialized = $bool;
}
/**
* Checks whether this collection has been initialized.
*
* @return boolean
*/
public function isInitialized()
{
return $this->initialized;
}
/** {@inheritdoc} */
public function first()
{
$this->initialize();
return $this->coll->first();
}
/** {@inheritdoc} */
public function last()
{
$this->initialize();
return $this->coll->last();
}
/**
* {@inheritdoc}
*/
public function remove($key)
{
$this->initialize();
$removed = $this->coll->remove($key);
if ( ! $removed) {
return $removed;
}
$this->changed();
if ($this->isOrphanRemovalEnabled()) {
$this->uow->scheduleOrphanRemoval($removed);
}
return $removed;
}
/**
* {@inheritdoc}
*/
public function removeElement($element)
{
$this->initialize();
$removed = $this->coll->removeElement($element);
if ( ! $removed) {
return $removed;
}
$this->changed();
if ($this->isOrphanRemovalEnabled()) {
$this->uow->scheduleOrphanRemoval($element);
}
return $removed;
}
/**
* {@inheritdoc}
*/
public function containsKey($key)
{
$this->initialize();
return $this->coll->containsKey($key);
}
/**
* {@inheritdoc}
*/
public function contains($element)
{
$this->initialize();
return $this->coll->contains($element);
}
/**
* {@inheritdoc}
*/
public function exists(\Closure $p)
{
$this->initialize();
return $this->coll->exists($p);
}
/**
* {@inheritdoc}
*/
public function indexOf($element)
{
$this->initialize();
return $this->coll->indexOf($element);
}
/**
* {@inheritdoc}
*/
public function get($key)
{
$this->initialize();
return $this->coll->get($key);
}
/**
* {@inheritdoc}
*/
public function getKeys()
{
$this->initialize();
return $this->coll->getKeys();
}
/**
* {@inheritdoc}
*/
public function getValues()
{
$this->initialize();
return $this->coll->getValues();
}
/**
* {@inheritdoc}
*/
public function count()
{
if ($this->mapping['isInverseSide']) {
$this->initialize();
}
return count($this->mongoData) + $this->coll->count();
}
/**
* {@inheritdoc}
*/
public function set($key, $value)
{
$this->coll->set($key, $value);
$this->changed();
}
/**
* {@inheritdoc}
*/
public function add($value)
{
/* Initialize the collection before calling add() so this append operation
* uses the appropriate key. Otherwise, we risk overwriting original data
* when $newObjects are re-added in a later call to initialize().
*/
if (isset($this->mapping['strategy']) && CollectionHelper::isHash($this->mapping['strategy'])) {
$this->initialize();
}
$this->coll->add($value);
$this->changed();
return true;
}
/**
* {@inheritdoc}
*/
public function isEmpty()
{
return $this->count() === 0;
}
/**
* {@inheritdoc}
*/
public function getIterator()
{
$this->initialize();
return $this->coll->getIterator();
}
/**
* {@inheritdoc}
*/
public function map(\Closure $func)
{
$this->initialize();
return $this->coll->map($func);
}
/**
* {@inheritdoc}
*/
public function filter(\Closure $p)
{
$this->initialize();
return $this->coll->filter($p);
}
/**
* {@inheritdoc}
*/
public function forAll(\Closure $p)
{
$this->initialize();
return $this->coll->forAll($p);
}
/**
* {@inheritdoc}
*/
public function partition(\Closure $p)
{
$this->initialize();
return $this->coll->partition($p);
}
/**
* {@inheritdoc}
*/
public function toArray()
{
$this->initialize();
return $this->coll->toArray();
}
/**
* {@inheritdoc}
*/
public function clear()
{
if ($this->initialized && $this->isEmpty()) {
return;
}
if ($this->isOrphanRemovalEnabled()) {
foreach ($this->coll as $element) {
$this->uow->scheduleOrphanRemoval($element);
}
}
$this->mongoData = array();
$this->coll->clear();
// Nothing to do for inverse-side collections
if ( ! $this->mapping['isOwningSide']) {
return;
}
// Nothing to do if the collection was initialized but contained no data
if ($this->initialized && empty($this->snapshot)) {
return;
}
$this->changed();
$this->uow->scheduleCollectionDeletion($this);
$this->takeSnapshot();
}
/**
* {@inheritdoc}
*/
public function slice($offset, $length = null)
{
$this->initialize();
return $this->coll->slice($offset, $length);
}
/**
* Called by PHP when this collection is serialized. Ensures that only the
* elements are properly serialized.
*
* @internal Tried to implement Serializable first but that did not work well
* with circular references. This solution seems simpler and works well.
*/
public function __sleep()
{
return array('coll', 'initialized');
}
/* ArrayAccess implementation */
/**
* @see containsKey()
*/
public function offsetExists($offset)
{
return $this->containsKey($offset);
}
/**
* @see get()
*/
public function offsetGet($offset)
{
return $this->get($offset);
}
/**
* @see add()
* @see set()
*/
public function offsetSet($offset, $value)
{
if ( ! isset($offset)) {
return $this->add($value);
}
return $this->set($offset, $value);
}
/**
* @see remove()
*/
public function offsetUnset($offset)
{
return $this->remove($offset);
}
public function key()
{
return $this->coll->key();
}
/**
* Gets the element of the collection at the current iterator position.
*/
public function current()
{
return $this->coll->current();
}
/**
* Moves the internal iterator position to the next element.
*/
public function next()
{
return $this->coll->next();
}
/**
* Retrieves the wrapped Collection instance.
*/
public function unwrap()
{
return $this->coll;
}
/**
* Cleanup internal state of cloned persistent collection.
*
* The following problems have to be prevented:
* 1. Added documents are added to old PersistentCollection
* 2. New collection is not dirty, if reused on other document nothing
* changes.
* 3. Snapshot leads to invalid diffs being generated.
* 4. Lazy loading grabs entities from old owner object.
* 5. New collection is connected to old owner and leads to duplicate keys.
*/
public function __clone()
{
if (is_object($this->coll)) {
$this->coll = clone $this->coll;
}
$this->initialize();
$this->owner = null;
$this->snapshot = array();
$this->changed();
}
/**
* Returns whether or not this collection has orphan removal enabled.
*
* Embedded documents are automatically considered as "orphan removal enabled" because they might have references
* that require to trigger cascade remove operations.
*
* @return boolean
*/
private function isOrphanRemovalEnabled()
{
if ($this->mapping === null) {
return false;
}
if (isset($this->mapping['embedded'])) {
return true;
}
if (isset($this->mapping['reference']) && $this->mapping['isOwningSide'] && $this->mapping['orphanRemoval']) {
return true;
}
return false;
}
}