-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathEnoDbUtil.cs
87 lines (79 loc) · 3.16 KB
/
EnoDbUtil.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
namespace EnoDatabase;
public class EnoDbUtil
{
private readonly ILogger<EnoDbUtil> logger;
private readonly IServiceProvider serviceProvider;
public EnoDbUtil(IServiceProvider serviceProvider, ILogger<EnoDbUtil> logger)
{
this.logger = logger;
this.serviceProvider = serviceProvider;
}
public async Task ExecuteScopedDatabaseActionIgnoreErrors(Func<EnoDb, Task> function)
{
try
{
using var scope = this.serviceProvider.CreateScope();
var db = scope.ServiceProvider.GetRequiredService<EnoDb>();
await function(db);
}
catch (Exception e)
{
this.logger.LogError($"ExecuteScopedDatabaseActionIgnoreErrors ignoring Exception:\n{e}");
}
}
public async Task<T> ExecuteScopedDatabaseAction<T>(Func<EnoDb, Task<T>> function)
{
using var scope = this.serviceProvider.CreateScope();
var db = scope.ServiceProvider.GetRequiredService<EnoDb>();
return await function(db);
}
public async Task RetryScopedDatabaseAction(Func<EnoDb, Task> function)
{
Exception? lastException = null;
for (int i = 0; i < EnoDbContext.DatabaseRetries; i++)
{
try
{
using var scope = this.serviceProvider.CreateScope();
var db = scope.ServiceProvider.GetRequiredService<EnoDb>();
await function(db);
return;
}
catch (SocketException e)
{
this.logger.LogError($"{nameof(this.RetryScopedDatabaseAction)} caught an exception: {e.ToFancyString()}");
lastException = e;
}
catch (IOException e)
{
this.logger.LogError($"{nameof(this.RetryScopedDatabaseAction)} caught an exception: {e.ToFancyString()}");
lastException = e;
}
}
throw new Exception($"{nameof(this.RetryScopedDatabaseAction)} giving up after {EnoDbContext.DatabaseRetries} retries", lastException);
}
public async Task<T> RetryScopedDatabaseAction<T>(Func<EnoDb, Task<T>> function)
{
Exception? lastException = null;
for (int i = 0; i < EnoDbContext.DatabaseRetries; i++)
{
try
{
using var scope = this.serviceProvider.CreateScope();
var db = scope.ServiceProvider.GetRequiredService<EnoDb>();
return await function(db);
}
catch (SocketException e)
{
this.logger.LogError($"{nameof(this.RetryScopedDatabaseAction)} caught an exception: {e.ToFancyString()}");
lastException = e;
}
catch (IOException e)
{
this.logger.LogError($"{nameof(this.RetryScopedDatabaseAction)} caught an exception: {e.ToFancyString()}");
lastException = e;
}
}
throw new Exception($"{nameof(this.RetryScopedDatabaseAction)} giving up after {EnoDbContext.DatabaseRetries} retries", lastException);
}
}