forked from borisdj/EFCore.BulkExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDbContextBulkTransactionSaveChanges.cs
427 lines (363 loc) · 16.7 KB
/
DbContextBulkTransactionSaveChanges.cs
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
#if NET8_0
using Medallion.Collections; // uses StrongNamer nuget to sign ref. with Strong Name
#endif
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.ChangeTracking;
using Microsoft.EntityFrameworkCore.Metadata;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
using System.Transactions;
namespace EFCore.BulkExtensions;
internal static class DbContextBulkTransactionSaveChanges
{
#region SaveChanges
public static void SaveChanges(DbContext context, BulkConfig? bulkConfig, Action<decimal>? progress)
{
SaveChangesAsync(context, bulkConfig, progress, isAsync: false, CancellationToken.None).GetAwaiter().GetResult();
}
public static async Task SaveChangesAsync(DbContext context, BulkConfig? bulkConfig, Action<decimal>? progress, CancellationToken cancellationToken)
{
await SaveChangesAsync(context, bulkConfig, progress, isAsync: true, cancellationToken).ConfigureAwait(false);
}
private static async Task SaveChangesAsync(DbContext context, BulkConfig? bulkConfig, Action<decimal>? progress, bool isAsync, CancellationToken cancellationToken)
{
// 2 ways:
// OPTION 1) iteration with Dic and Fast member
// OPTION 2) using Node model (here setting FK still not implemented)
int option = 1;
if (bulkConfig == null)
{
bulkConfig = new BulkConfig { };
}
if (bulkConfig.OnSaveChangesSetFK && bulkConfig.SetOutputIdentity == false) // When FK is set by DB then SetOutput is required
{
bulkConfig.SetOutputIdentity = true;
}
var entries = context.ChangeTracker.Entries().Where(x => x.State != EntityState.Unchanged);
var entriesGroupedByEntity = entries.GroupBy(a => new { EntityType = GetNonProxyType(a.Entity.GetType()), a.State },
(entry, group) => new
{
entry.State,
Entities = group.Select(a => a.Entity).ToList(),
EntryType = entry.EntityType,
EntityType = context.Model.FindEntityType(entry.EntityType)!,
})
.ToList();
// Function to get FKs of an entity type, except self-referencies
Func<IEntityType, IEnumerable<IEntityType>> getFks = e => e.GetForeignKeys()
.Where(x => x.PrincipalEntityType != e)
.Select(x => x.PrincipalEntityType);
// Topoligicaly sort insert operations by FK
var added = entriesGroupedByEntity.Where(x => x.State == EntityState.Added);
var addedLookup = added.ToLookup(x => x.EntityType);
#if NET8_0
var sortedAdded = added.OrderTopologicallyBy(g => getFks(g.EntityType).SelectMany(x => addedLookup[x]));
#else
var sortedAdded = added;
#endif
// Topoligicaly sort delete operations by reverse FK
var deleted = entriesGroupedByEntity.Where(x => x.State == EntityState.Deleted);
var deletedLookup = deleted.ToLookup(x => x.EntityType);
#if NET8_0
var sortedDeleted = deleted.OrderTopologicallyBy(g => getFks(g.EntityType).SelectMany(x => deletedLookup[x])).Reverse();
#else
var sortedDeleted = deleted;
#endif
var sortedGroups = sortedAdded
.Concat(entriesGroupedByEntity.Where(x => x.State == EntityState.Modified))
.Concat(sortedDeleted)
.ToList();
if (isAsync)
{
await context.Database.OpenConnectionAsync(cancellationToken).ConfigureAwait(false);
}
else
{
context.Database.OpenConnection();
}
var connection = context.GetUnderlyingConnection(bulkConfig);
var hasExistingTransaction = context.Database.CurrentTransaction != null || Transaction.Current != null;
try
{
var transaction = hasExistingTransaction ? null : context.Database.CurrentTransaction ?? context.Database.BeginTransaction();
if (option == 1)
{
Dictionary<string, Dictionary<string, FastProperty>> fastPropertyDicts = new();
foreach (var entryGroup in sortedGroups)
{
Type entityType = entryGroup.EntryType;
entityType = (entityType.Namespace == "Castle.Proxies") ? entityType.BaseType! : entityType;
var entityModelType = context.Model.FindEntityType(entityType) ??
throw new ArgumentNullException($"Unable to determine EntityType from given type with name {entityType.Name}");
var entityPropertyDict = new Dictionary<string, FastProperty>();
if (!fastPropertyDicts.ContainsKey(entityType.Name))
{
var properties = entityModelType.GetProperties();
var navigationPropertiesInfo = entityModelType.GetNavigations().Select(x => x.PropertyInfo);
foreach (var property in properties)
{
if (property.PropertyInfo != null) // skip Shadow Property
{
entityPropertyDict.Add(property.Name, FastProperty.GetOrCreate(property.PropertyInfo));
}
}
foreach (var navigationPropertyInfo in navigationPropertiesInfo)
{
if (navigationPropertyInfo != null)
{
entityPropertyDict.Add(navigationPropertyInfo.Name, FastProperty.GetOrCreate(navigationPropertyInfo));
}
}
fastPropertyDicts.Add(entityType.Name, entityPropertyDict);
}
else
{
entityPropertyDict = fastPropertyDicts[entityType.Name];
}
if (bulkConfig.OnSaveChangesSetFK)
{
var navigations = entityModelType.GetNavigations().Where(x => !x.IsCollection && !x.TargetEntityType.IsOwned());
if (navigations.Any())
{
foreach (var navigation in navigations)
{
// when FK entity was not modified it will not be in Dict, but also FK is auto set so no need here
if (fastPropertyDicts.ContainsKey(navigation.ClrType.Name)) // otherwise set it:
{
var parentPropertyDict = fastPropertyDicts[navigation.ClrType.Name];
var fkName = navigation.ForeignKey.Properties.Count > 0
? navigation.ForeignKey.Properties[0].Name
: null;
var pkName = navigation.ForeignKey.PrincipalKey.Properties.Count > 0
? navigation.ForeignKey.PrincipalKey.Properties[0].Name
: null;
if (pkName is not null && fkName is not null)
{
foreach (var entity in entryGroup.Entities)
{
var parentEntity = entityPropertyDict[navigation.Name].Get(entity);
if (parentEntity is not null)
{
var pkValue = parentPropertyDict[pkName].Get(parentEntity);
if (pkValue is not null)
{
entityPropertyDict[fkName].Set(entity, pkValue);
}
}
}
}
}
}
}
}
string methodName = EntityStateBulkMethodDict[entryGroup.State].Key;
if (isAsync)
{
await InvokeBulkMethod(context, entryGroup.Entities, entityType, methodName, bulkConfig, progress, isAsync: true, cancellationToken).ConfigureAwait(false);
}
else
{
InvokeBulkMethod(context, entryGroup.Entities, entityType, methodName, bulkConfig, progress, isAsync: false, cancellationToken).GetAwaiter().GetResult();
}
}
}
else if (option == 2)
{
List<BulkMethodEntries> bulkMethodEntriesList = GetBulkMethodEntries(entries);
foreach (var bulkMethod in bulkMethodEntriesList)
{
if (isAsync)
{
await InvokeBulkMethod(context, bulkMethod.Entries, bulkMethod.Type, bulkMethod.MethodName, bulkConfig, progress, isAsync: true, cancellationToken).ConfigureAwait(false);
}
else
{
InvokeBulkMethod(context, bulkMethod.Entries, bulkMethod.Type, bulkMethod.MethodName, bulkConfig, progress, isAsync: false, cancellationToken).GetAwaiter().GetResult();
}
}
}
if (!hasExistingTransaction)
{
transaction!.Commit();
context.ChangeTracker.AcceptAllChanges();
}
}
finally
{
if (!hasExistingTransaction)
{
if (isAsync)
{
await context.Database.CloseConnectionAsync().ConfigureAwait(false);
}
else
{
context.Database.CloseConnection();
}
}
}
}
private static async Task InvokeBulkMethod(DbContext context, List<object> entities, Type entityType, string methodName, BulkConfig bulkConfig, Action<decimal>? progress, bool isAsync, CancellationToken cancellationToken)
{
methodName += isAsync ? "Async" : "";
MethodInfo? bulkMethod = typeof(DbContextBulkExtensions)
.GetMethods()
.Where(a => a.Name == methodName)
.FirstOrDefault();
bulkMethod = bulkMethod?.MakeGenericMethod(typeof(object));
var arguments = new List<object?> { context, entities, bulkConfig, progress, entityType, cancellationToken };
if (isAsync)
{
var methodArguments = arguments.ToArray();
if (bulkMethod is not null)
{
var task = (Task?)bulkMethod.Invoke(null, methodArguments);
if (task != null)
{
await task.ConfigureAwait(false);
}
}
}
else
{
arguments.RemoveAt(arguments.Count - 1); // removes cancellationToken
var methodArguments = arguments.ToArray();
bulkMethod?.Invoke(null, methodArguments);
}
}
private static Dictionary<EntityState, KeyValuePair<string, int>> EntityStateBulkMethodDict => new()
{
{ EntityState.Deleted, new KeyValuePair<string, int>(nameof(DbContextBulkExtensions.BulkDelete), 1) },
{ EntityState.Modified, new KeyValuePair<string, int>(nameof(DbContextBulkExtensions.BulkUpdate), 2) },
{ EntityState.Added, new KeyValuePair<string, int>(nameof(DbContextBulkExtensions.BulkInsert), 3)},
};
#endregion
private static List<BulkMethodEntries> GetBulkMethodEntries(IEnumerable<EntityEntry> entries)
{
EntityEntry[] entryList = entries.ToArray();
var tree = new Dictionary<Type, DbNode>();
for (int i = 0; i < entryList.Length; i++)
{
EntityEntry entry = entryList[i];
Type type = GetNonProxyType(entry.Entity.GetType());
if (!tree.TryGetValue(type, out DbNode? node))
{
node = new DbNode() { Type = type };
tree.TryAdd(type, node);
}
node.AddEntry(entry);
var navigations = entry.Navigations.Where(a => a.IsLoaded);
foreach (var n in navigations.Where(a => a.Metadata.IsCollection))
{
Type navType = GetNonProxyType(n.Metadata.ClrType.GenericTypeArguments.Single());
if (!tree.TryGetValue(navType, out DbNode? childNode))
{
childNode = new DbNode() { Type = navType };
tree.TryAdd(navType, childNode);
};
if (!childNode.Parents.Any(a => a.Type == node.Type))
{
childNode.Parents.Add(node);
}
if (!node.Children.Any(a => a.Type == navType))
{
node.Children.Add(childNode);
}
}
foreach (var n in navigations.Where(a => !a.Metadata.IsCollection))
{
Type navType = GetNonProxyType(n.Metadata.ClrType);
if (!tree.TryGetValue(navType, out DbNode? parentNode))
{
parentNode = new DbNode() { Type = navType };
tree.TryAdd(navType, parentNode);
};
if (!parentNode.Children.Any(a => a.Type == node.Type))
{
parentNode.Children.Add(node);
}
if (!node.Parents.Any(a => a.Type == parentNode.Type))
{
node.Parents.Add(parentNode);
}
}
}
var rootNodes = tree.Where(a => a.Value.Parents.Count == 0);
var handledTypes = new Dictionary<Type, bool>();
var bulkMehodEntriesList = new List<BulkMethodEntries>();
bool TryAddNode(DbNode node)
{
if (node.Parents.All(a => handledTypes.TryGetValue(a.Type, out bool exists)))
{
if (!handledTypes.TryGetValue(node.Type, out bool exists))
{
handledTypes.Add(node.Type, true);
foreach (var me in node.MethodEntries)
{
if (me.Value != null && me.Value.Count > 0)
{
bulkMehodEntriesList.Add(new BulkMethodEntries()
{
Type = node.Type,
MethodName = me.Key,
Entries = me.Value,
});
}
}
}
foreach (var p in node.Children)
{
TryAddNode(p);
}
return exists;
}
return false;
}
foreach (var r in rootNodes)
{
TryAddNode(r.Value);
}
return bulkMehodEntriesList;
}
private static Type GetNonProxyType(Type type) => type.Namespace == "Castle.Proxies" ? type.BaseType! : type;
internal class BulkMethodEntries
{
public BulkMethodEntries()
{
Entries = new List<object>();
}
public string MethodName { get; set; } = null!;
public Type Type { get; set; } = null!;
public List<object> Entries { get; set; }
}
internal class DbNode
{
public DbNode()
{
Parents = new List<DbNode>();
Children = new List<DbNode>();
MethodEntries = new KeyValuePair<string, List<object>>[EntityStateBulkMethodDict.Count];
}
public Type Type { get; set; } = null!;
public List<DbNode> Parents { get; set; }
public List<DbNode> Children { get; set; }
public KeyValuePair<string, List<object>>[] MethodEntries { get; private set; }
public void AddEntry(EntityEntry entry)
{
if (EntityStateBulkMethodDict.TryGetValue(entry.State, out KeyValuePair<string, int> method))
{
var methodEntry = MethodEntries.FirstOrDefault(a => a.Key == method.Key);
if (methodEntry.Key == null)
{
methodEntry = new KeyValuePair<string, List<object>>(method.Key, new List<object>());
MethodEntries[method.Value - 1] = methodEntry;
}
methodEntry.Value.Add(entry.Entity);
}
}
}
}