-
-
Notifications
You must be signed in to change notification settings - Fork 210
/
SentryScopeManager.cs
163 lines (128 loc) · 5.45 KB
/
SentryScopeManager.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
using Sentry.Extensibility;
using Sentry.Internal.ScopeStack;
namespace Sentry.Internal;
internal sealed class SentryScopeManager : IInternalScopeManager
{
public IScopeStackContainer ScopeStackContainer { get; }
private readonly SentryOptions _options;
private KeyValuePair<Scope, ISentryClient>[] ScopeAndClientStack
{
get => ScopeStackContainer.Stack ??= NewStack();
set => ScopeStackContainer.Stack = value;
}
private Func<KeyValuePair<Scope, ISentryClient>[]> NewStack { get; }
private bool IsGlobalMode => ScopeStackContainer is GlobalScopeStackContainer;
public SentryScopeManager(SentryOptions options, ISentryClient rootClient)
{
ScopeStackContainer = options.ScopeStackContainer ?? (
options.IsGlobalModeEnabled
? new GlobalScopeStackContainer()
: new AsyncLocalScopeStackContainer());
_options = options;
NewStack = () => new[] { new KeyValuePair<Scope, ISentryClient>(new Scope(options), rootClient) };
}
public KeyValuePair<Scope, ISentryClient> GetCurrent() => ScopeAndClientStack[^1];
public void ConfigureScope(Action<Scope>? configureScope)
{
var (scope, _) = GetCurrent();
configureScope?.Invoke(scope);
}
public Task ConfigureScopeAsync(Func<Scope, Task>? configureScope)
{
var (scope, _) = GetCurrent();
return configureScope?.Invoke(scope) ?? Task.CompletedTask;
}
public IDisposable PushScope() => PushScope<object>(null);
public IDisposable PushScope<TState>(TState? state)
{
if (IsGlobalMode)
{
_options.LogWarning("Push scope called in global mode, returning.");
return DisabledHub.Instance;
}
var currentScopeAndClientStack = ScopeAndClientStack;
var scope = currentScopeAndClientStack[^1];
if (scope.Key.Locked)
{
_options.LogDebug("Locked scope. No new scope pushed.");
// Apply to current scope
if (state != null)
{
scope.Key.Apply(state);
}
return DisabledHub.Instance;
}
var clonedScope = scope.Key.Clone();
if (state != null)
{
clonedScope.Apply(state);
}
var scopeSnapshot = new ScopeSnapshot(_options, currentScopeAndClientStack, this);
_options.LogDebug("New scope pushed.");
var newScopeAndClientStack = new KeyValuePair<Scope, ISentryClient>[currentScopeAndClientStack.Length + 1];
Array.Copy(currentScopeAndClientStack, newScopeAndClientStack, currentScopeAndClientStack.Length);
newScopeAndClientStack[^1] = new KeyValuePair<Scope, ISentryClient>(clonedScope, scope.Value);
ScopeAndClientStack = newScopeAndClientStack;
return scopeSnapshot;
}
public void RestoreScope(Scope savedScope)
{
if (IsGlobalMode)
{
_options.LogWarning("RestoreScope called in global mode, returning.");
return;
}
var currentScopeAndClientStack = ScopeAndClientStack;
var (previousScope, client) = currentScopeAndClientStack[^1];
_options.LogDebug("Scope restored");
var newScopeAndClientStack = new KeyValuePair<Scope, ISentryClient>[currentScopeAndClientStack.Length + 1];
Array.Copy(currentScopeAndClientStack, newScopeAndClientStack, currentScopeAndClientStack.Length);
newScopeAndClientStack[^1] = new KeyValuePair<Scope, ISentryClient>(savedScope, client);
ScopeAndClientStack = newScopeAndClientStack;
}
public void BindClient(ISentryClient? client)
{
_options.LogDebug("Binding a new client to the current scope.");
var currentScopeAndClientStack = ScopeAndClientStack;
var top = currentScopeAndClientStack[^1];
var newScopeAndClientStack = new KeyValuePair<Scope, ISentryClient>[currentScopeAndClientStack.Length];
Array.Copy(currentScopeAndClientStack, newScopeAndClientStack, currentScopeAndClientStack.Length);
newScopeAndClientStack[^1] = new KeyValuePair<Scope, ISentryClient>(top.Key, client ?? DisabledHub.Instance);
ScopeAndClientStack = newScopeAndClientStack;
}
private sealed class ScopeSnapshot : IDisposable
{
private readonly SentryOptions _options;
private readonly KeyValuePair<Scope, ISentryClient>[] _snapshot;
private readonly SentryScopeManager _scopeManager;
public ScopeSnapshot(
SentryOptions options,
KeyValuePair<Scope, ISentryClient>[] snapshot,
SentryScopeManager scopeManager)
{
_options = options;
_snapshot = snapshot;
_scopeManager = scopeManager;
}
public void Dispose()
{
_options.LogDebug("Disposing scope.");
var previousScopeKey = _snapshot[^1].Key;
var currentScope = _scopeManager.ScopeAndClientStack;
// Only reset the parent if this is still the current scope
for (var i = currentScope.Length - 1; i >= 0; --i)
{
if (ReferenceEquals(currentScope[i].Key, previousScopeKey))
{
_scopeManager.ScopeAndClientStack = _snapshot;
break;
}
}
}
}
public void Dispose()
{
_options.LogDebug($"Disposing {nameof(SentryScopeManager)}.");
ScopeStackContainer.Stack = null;
}
}