-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathInternalEntryBase.InternalComplexCollectionEntry.cs
More file actions
743 lines (664 loc) · 28.7 KB
/
Copy pathInternalEntryBase.InternalComplexCollectionEntry.cs
File metadata and controls
743 lines (664 loc) · 28.7 KB
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections;
using System.Text;
using Microsoft.EntityFrameworkCore.Metadata.Internal;
namespace Microsoft.EntityFrameworkCore.ChangeTracking.Internal;
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
public partial class InternalEntryBase
{
internal static readonly bool UseOldBehavior37724 =
AppContext.TryGetSwitch("Microsoft.EntityFrameworkCore.Issue37724", out var enabled) && enabled;
internal static readonly bool UseOldBehavior38299 =
AppContext.TryGetSwitch("Microsoft.EntityFrameworkCore.Issue38299", out var enabled) && enabled;
private struct InternalComplexCollectionEntry(InternalEntryBase entry, IComplexProperty complexCollection)
{
private static readonly bool UseOldBehavior37585 =
AppContext.TryGetSwitch("Microsoft.EntityFrameworkCore.Issue37585", out var enabled) && enabled;
private static readonly bool UseOldBehavior38632 =
AppContext.TryGetSwitch("Microsoft.EntityFrameworkCore.Issue38632", out var enabled) && enabled;
private List<InternalComplexEntry?>? _entries;
private List<InternalComplexEntry?>? _originalEntries;
private bool _isModified;
private readonly InternalEntryBase _containingEntry = entry;
private readonly IComplexProperty _complexCollection = complexCollection;
public List<InternalComplexEntry?> GetOrCreateEntries(
bool original,
EntityState defaultState = EntityState.Detached)
{
var collection = GetCollection(original);
var entries = EnsureCapacity(collection?.Count ?? 0, original, trim: false);
if (collection != null
&& defaultState != EntityState.Detached
&& (defaultState != EntityState.Deleted || original)
&& (defaultState != EntityState.Added || !original))
{
for (var i = 0; i < entries.Count; i++)
{
if (entries[i] != null)
{
continue;
}
var targetState = defaultState;
var newEntry = new InternalComplexEntry((IRuntimeComplexType)_complexCollection.ComplexType, _containingEntry, i);
if (original)
{
var otherEntries = _entries;
if (defaultState != EntityState.Deleted
&& otherEntries != null)
{
if (otherEntries.Count <= i || otherEntries[i] != null)
{
var nullIndex = otherEntries.FindIndex(e => e == null);
if (nullIndex >= 0)
{
newEntry.Ordinal = nullIndex;
}
else
{
targetState = EntityState.Deleted;
newEntry.Ordinal = -1;
}
}
else
{
newEntry.Ordinal = i;
}
}
}
else
{
var otherEntries = _originalEntries;
if (defaultState != EntityState.Added
&& otherEntries != null)
{
if (otherEntries.Count <= i || otherEntries[i] != null)
{
var nullIndex = otherEntries.FindIndex(e => e == null);
if (nullIndex >= 0)
{
newEntry.OriginalOrdinal = nullIndex;
}
else
{
targetState = EntityState.Added;
newEntry.OriginalOrdinal = -1;
}
}
else
{
newEntry.OriginalOrdinal = i;
}
}
}
newEntry.SetEntityState(targetState, acceptChanges: true, modifyProperties: false);
}
}
return entries;
}
public List<InternalComplexEntry?> EnsureCapacity(int capacity, bool original, bool trim = true)
{
if (original)
{
_originalEntries ??= new List<InternalComplexEntry?>(capacity);
for (var i = _originalEntries.Count; i < capacity; i++)
{
_originalEntries.Add(null);
}
if (trim)
{
for (var i = _originalEntries.Count - 1; i >= capacity; i--)
{
_originalEntries.RemoveAt(i);
}
}
return _originalEntries;
}
_entries ??= new List<InternalComplexEntry?>(capacity);
for (var i = _entries.Count; i < capacity; i++)
{
_entries.Add(null);
}
if (trim)
{
for (var i = _entries.Count - 1; i >= capacity; i--)
{
_entries.RemoveAt(i);
}
}
return _entries;
}
private IList? GetCollection(bool original)
{
if (!UseOldBehavior37585
&& _containingEntry is InternalComplexEntry complexEntry)
{
var ordinal = original ? complexEntry.OriginalOrdinal : complexEntry.Ordinal;
if (ordinal < 0)
{
// Ordinal is -1 (entry is deleted/added), so the collection doesn't exist.
return null;
}
}
return original
? (IList?)_containingEntry.GetOriginalValue(_complexCollection)
: (IList?)_containingEntry[_complexCollection];
}
public void AcceptChanges()
{
_isModified = false;
if (_originalEntries != null)
{
for (var i = 0; i < _originalEntries.Count; i++)
{
var entry = _originalEntries[i];
if (entry == null
|| entry.EntityState != EntityState.Deleted)
{
continue;
}
entry.AcceptChanges();
// The entry was deleted, so AcceptChanges removed it from the list
i--;
}
}
if (_entries != null)
{
_originalEntries ??= new List<InternalComplexEntry?>(_entries.Count);
_originalEntries.Clear();
for (var i = 0; i < _entries.Count; i++)
{
_originalEntries.Add(_entries[i]);
}
for (var i = 0; i < _originalEntries.Count; i++)
{
_originalEntries[i]?.AcceptChanges();
}
}
else
{
_originalEntries = null;
}
}
public void RejectChanges()
{
_isModified = false;
if (_entries != null)
{
foreach (var entry in _entries)
{
if (entry == null
|| entry.EntityState != EntityState.Added)
{
continue;
}
entry.SetEntityState(EntityState.Detached, acceptChanges: false, modifyProperties: false);
}
}
if (_originalEntries != null)
{
_entries ??= new List<InternalComplexEntry?>(_originalEntries.Count);
_entries.Clear();
// ReSharper disable once ForCanBeConvertedToForeach
for (var i = 0; i < _originalEntries.Count; i++)
{
_entries.Add(_originalEntries[i]);
}
foreach (var entry in _entries)
{
entry?.Ordinal = entry.OriginalOrdinal;
}
}
else
{
_entries = null;
}
}
public InternalComplexEntry GetEntry(int ordinal, bool original = false)
{
if (original)
{
if (_containingEntry.EntityState == EntityState.Added)
{
throw new InvalidOperationException(
CoreStrings.ComplexCollectionOriginalEntryAddedEntity(
ordinal, _complexCollection.DeclaringType.ShortNameChain(), _complexCollection.Name));
}
}
else
{
if (_containingEntry.EntityState == EntityState.Deleted)
{
throw new InvalidOperationException(
CoreStrings.ComplexCollectionEntryDeletedEntity(
ordinal, _complexCollection.DeclaringType.ShortNameChain(), _complexCollection.Name));
}
}
// Must check tracked entries first to allow reindexing during cleanup when the parent is null.
var existingEntries = original ? _originalEntries : _entries;
if (!UseOldBehavior38632
&& existingEntries != null
&& (uint)ordinal < (uint)existingEntries.Count
&& existingEntries[ordinal] is { } existingEntry)
{
return existingEntry;
}
if (original)
{
if (_containingEntry.GetOriginalValue(_complexCollection) == null)
{
throw new InvalidOperationException(
CoreStrings.ComplexCollectionEntryOriginalNull(
_complexCollection.DeclaringType.ShortNameChain(), _complexCollection.Name));
}
}
else
{
if (_containingEntry[_complexCollection] == null)
{
throw new InvalidOperationException(
CoreStrings.ComplexCollectionNotInitialized(
_complexCollection.DeclaringType.ShortNameChain(), _complexCollection.Name));
}
}
var entries = GetOrCreateEntries(original);
if (ordinal < 0 || ordinal >= entries.Count)
{
throw new InvalidOperationException(
original
? CoreStrings.ComplexCollectionEntryOriginalOrdinalInvalid(
ordinal, _complexCollection.DeclaringType.ShortNameChain(), _complexCollection.Name, entries.Count)
: CoreStrings.ComplexCollectionEntryOrdinalInvalid(
ordinal, _complexCollection.DeclaringType.ShortNameChain(), _complexCollection.Name, entries.Count));
}
if (UseOldBehavior38632
&& entries[ordinal] is { } existingEntryAfterValidation)
{
return existingEntryAfterValidation;
}
// The currentEntry is created in Detached state, so it's not added to the entries list yet.
// HandleStateChange will add it when the state changes.
return new InternalComplexEntry((IRuntimeComplexType)_complexCollection.ComplexType, _containingEntry, ordinal);
}
public readonly void MoveEntry(int fromOrdinal, int toOrdinal, bool original = false)
{
if (fromOrdinal == toOrdinal)
{
return;
}
var entries = original ? _originalEntries : _entries;
Check.DebugAssert(
entries != null, $"Property {_complexCollection.Name} should have{(original ? " original" : "")} entries initialized.");
if (fromOrdinal < 0
|| fromOrdinal >= entries.Count
|| toOrdinal < 0
|| toOrdinal >= entries.Count)
{
throw new ArgumentOutOfRangeException(
CoreStrings.ComplexCollectionMoveInvalidOrdinals(fromOrdinal, toOrdinal, entries.Count));
}
var entry = entries[fromOrdinal];
entries.RemoveAt(fromOrdinal);
entries.Insert(toOrdinal, entry);
var start = Math.Min(fromOrdinal, toOrdinal);
var end = Math.Max(fromOrdinal, toOrdinal);
for (var i = start; i <= end; i++)
{
if (original)
{
entries[i]?.OriginalOrdinal = i;
}
else
{
entries[i]?.Ordinal = i;
}
}
}
public readonly bool IsModified()
{
Check.DebugAssert(_complexCollection.IsCollection, $"Property {_complexCollection.Name} should be a collection");
return _isModified;
}
public void SetIsModified(bool isModified)
{
Check.DebugAssert(_complexCollection.IsCollection, $"Property {_complexCollection.Name} should be a collection");
_isModified = isModified;
}
public void SetState(EntityState oldState, EntityState newState, bool acceptChanges, bool modifyProperties)
{
var setOriginalState = false;
var setCurrentState = false;
if (oldState == EntityState.Detached)
{
if (newState == EntityState.Deleted)
{
setOriginalState = true;
}
else
{
setCurrentState = true;
}
}
else if (oldState == EntityState.Deleted)
{
setOriginalState = true;
}
else if (oldState == EntityState.Added)
{
setCurrentState = true;
}
else if (newState is EntityState.Modified or EntityState.Unchanged or EntityState.Added)
{
setCurrentState = true;
}
else if (newState is EntityState.Deleted or EntityState.Detached)
{
setOriginalState = true;
}
EnsureCapacity(GetCollection(original: true)?.Count ?? 0, original: true, trim: false);
EnsureCapacity(GetCollection(original: false)?.Count ?? 0, original: false, trim: false);
var defaultState = newState == EntityState.Modified && !modifyProperties
? EntityState.Unchanged
: newState;
var originalEntries = GetOrCreateEntries(original: true, defaultState).ToArray();
var currentEntries = GetOrCreateEntries(original: false, defaultState).ToArray();
if (setOriginalState)
{
foreach (var originalEntry in originalEntries)
{
if (originalEntry?.EntityState is EntityState.Deleted && newState is EntityState.Unchanged or EntityState.Modified)
{
continue;
}
originalEntry?.SetEntityState(newState, acceptChanges, modifyProperties);
}
}
if (setCurrentState)
{
foreach (var currentEntry in currentEntries)
{
if ((currentEntry?.EntityState is EntityState.Unchanged && newState is EntityState.Modified && !modifyProperties)
|| (currentEntry?.EntityState is EntityState.Added && newState is EntityState.Unchanged or EntityState.Modified))
{
continue;
}
currentEntry?.SetEntityState(newState, acceptChanges, modifyProperties);
}
}
}
public int ValidateOrdinal(InternalComplexEntry entry, bool original)
=> ValidateOrdinal(entry, original, GetOrCreateEntries(original));
public readonly int ValidateOrdinal(InternalComplexEntry entry, bool original, List<InternalComplexEntry?> entries)
{
var ordinal = original ? entry.OriginalOrdinal : entry.Ordinal;
if (ordinal < 0 || ordinal >= entries.Count)
{
var property = entry.ComplexProperty;
throw new InvalidOperationException(
original
? CoreStrings.ComplexCollectionEntryOriginalOrdinalInvalid(
ordinal, property.ComplexType.ShortNameChain(), property.Name,
((IList?)_containingEntry.GetOriginalValue(_complexCollection))?.Count ?? 0)
: CoreStrings.ComplexCollectionEntryOrdinalInvalid(
ordinal, property.ComplexType.ShortNameChain(), property.Name,
((IList?)_containingEntry.GetCurrentValue(_complexCollection))?.Count ?? 0));
}
return ordinal;
}
public void HandleStateChange(InternalComplexEntry entry, EntityState oldState, EntityState newState)
{
Check.DebugAssert(oldState != newState, "State didn't change");
var property = entry.ComplexProperty;
Check.DebugAssert(property == _complexCollection, $"Expected {_complexCollection.Name}, got {property.Name}");
if (oldState is EntityState.Detached)
{
if (newState is not EntityState.Deleted)
{
InsertEntry(entry, original: false);
}
if (newState is not EntityState.Added)
{
InsertEntry(entry, original: true);
}
}
else if (oldState is EntityState.Deleted)
{
if (newState is not EntityState.Detached)
{
InsertEntry(entry, original: false);
}
// When going from Deleted to Unchanged, restore the currentEntry to the original collection
if (UseOldBehavior37724 && newState == EntityState.Unchanged)
{
InsertEntry(entry, original: true);
}
}
else if (oldState == EntityState.Added
&& newState is not EntityState.Detached)
{
InsertEntry(entry, original: true);
}
switch (newState)
{
case EntityState.Detached:
if (oldState is not EntityState.Deleted)
{
_entries?[entry.Ordinal] = null;
}
if (oldState is not EntityState.Added)
{
_originalEntries?[entry.OriginalOrdinal] = null;
}
var currentEntries = GetOrCreateEntries(original: false);
var originalEntries = GetOrCreateEntries(original: true);
if (originalEntries.All(e => e == null || (e.EntityState == EntityState.Unchanged && e.Ordinal == e.OriginalOrdinal))
&& currentEntries.All(e => e == null || (e.EntityState == EntityState.Unchanged && e.Ordinal == e.OriginalOrdinal)))
{
_containingEntry.SetPropertyModified(property, false);
}
break;
case EntityState.Deleted:
if (oldState is not EntityState.Detached
&& _containingEntry.EntityState != EntityState.Deleted)
{
RemoveEntry(entry, original: false);
}
entry.Ordinal = -1;
_containingEntry.SetPropertyModified(property);
break;
case EntityState.Added:
if (oldState is not EntityState.Detached
&& _containingEntry.EntityState != EntityState.Added)
{
RemoveEntry(entry, original: true);
}
entry.OriginalOrdinal = -1;
_containingEntry.SetPropertyModified(property);
break;
case EntityState.Modified:
_containingEntry.SetPropertyModified(property);
break;
case EntityState.Unchanged:
if (GetOrCreateEntries(original: false).All(e
=> e == null || (e.EntityState == EntityState.Unchanged && e.Ordinal == e.OriginalOrdinal))
&& GetOrCreateEntries(original: true).All(e
=> e == null || (e.EntityState == EntityState.Unchanged && e.Ordinal == e.OriginalOrdinal)))
{
_containingEntry.SetPropertyModified(property, false);
}
break;
}
#if DEBUG
{
var currentEntries = GetOrCreateEntries(original: false);
if (newState is not EntityState.Detached and not EntityState.Deleted)
{
var currentOrdinal = entry.Ordinal;
Check.DebugAssert(
currentOrdinal >= 0 && currentOrdinal < currentEntries.Count,
$"ComplexEntry ordinal {currentOrdinal} is invalid for property {property.Name}.");
Check.DebugAssert(
currentEntries[currentOrdinal] == entry,
$"ComplexEntry at ordinal {currentOrdinal} does not match the provided entry for property {property.Name}.");
}
var originalEntries = GetOrCreateEntries(original: true);
if (newState is not EntityState.Detached and not EntityState.Added)
{
var originalOrdinal = entry.OriginalOrdinal;
Check.DebugAssert(
originalOrdinal >= 0 && originalOrdinal < originalEntries.Count,
$"ComplexEntry original ordinal {originalOrdinal} is invalid for property {property.Name}.");
Check.DebugAssert(
originalEntries[originalOrdinal] == entry,
$"ComplexEntry at OriginalOrdinal {originalOrdinal} does not match the provided entry for property {property.Name}.");
}
}
#endif
}
private readonly void RemoveEntry(InternalComplexEntry entry, bool original = false)
{
var property = entry.ComplexProperty;
IList? collection;
List<InternalComplexEntry?>? entries;
if (original)
{
collection = (IList?)_containingEntry.GetOriginalValue(property);
entries = _originalEntries;
}
else
{
collection = (IList?)_containingEntry[property];
entries = _entries;
}
if (entries == null)
{
return;
}
var ordinal = ValidateOrdinal(entry, original, entries);
if ((collection?.Count ?? 0) < entries.Count
&& (entries[ordinal] == entry
|| entries[ordinal] == null))
{
entries.RemoveAt(ordinal);
for (var i = ordinal; i < entries.Count; i++)
{
if (original)
{
entries[i]?.OriginalOrdinal = i;
}
else
{
entries[i]?.Ordinal = i;
}
}
}
else
{
entries[ordinal] = null;
}
}
public readonly void InsertEntry(InternalComplexEntry entry, bool original = false)
{
var property = entry.ComplexProperty;
IList? collection;
List<InternalComplexEntry?>? entries;
if (original)
{
collection = (IList?)_containingEntry.GetOriginalValue(property);
entries = _originalEntries;
}
else
{
collection = (IList?)_containingEntry[property];
entries = _entries;
}
if (collection == null
|| entries == null)
{
return;
}
var ordinal = ValidateOrdinal(entry, original, entries);
if (entries[ordinal] == entry)
{
return;
}
if (entries[ordinal] == null)
{
entries[ordinal] = entry;
return;
}
var firstNullIndex = entries.FindIndex(e => e == null || e == entry);
if (firstNullIndex != -1)
{
entries[firstNullIndex] = entry;
if (firstNullIndex != ordinal)
{
MoveEntry(firstNullIndex, ordinal, original);
}
}
else
{
entries.Insert(ordinal, entry);
for (var i = ordinal + 1; i < entries.Count; i++)
{
if (original)
{
entries[i]?.OriginalOrdinal = i;
}
else
{
entries[i]?.Ordinal = i;
}
}
}
}
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
public override readonly string ToString()
=> ToDebugString(ChangeTrackerDebugStringOptions.ShortDefault);
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
// ReSharper disable once UnusedMember.Local
public readonly DebugView DebugView
{
get
{
var instance = this;
return new DebugView(
() => instance.ToDebugString(ChangeTrackerDebugStringOptions.ShortDefault),
() => instance.ToDebugString());
}
}
private readonly string ToDebugString(
ChangeTrackerDebugStringOptions options = ChangeTrackerDebugStringOptions.LongDefault)
{
var builder = new StringBuilder();
try
{
builder.Append(_complexCollection.ToDebugString(MetadataDebugStringOptions.SingleLineDefault));
if (IsModified())
{
builder.Append(" Modified");
}
}
catch (Exception exception)
{
builder.AppendLine().AppendLine(CoreStrings.DebugViewError(exception.Message));
}
return builder.ToString();
}
}
}