forked from open-telemetry/opentelemetry-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CompositeProcessor.cs
192 lines (160 loc) · 5.06 KB
/
CompositeProcessor.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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
using System.Diagnostics;
using OpenTelemetry.Internal;
namespace OpenTelemetry;
/// <summary>
/// Represents a chain of <see cref="BaseProcessor{T}"/>s.
/// </summary>
/// <typeparam name="T">The type of object to be processed.</typeparam>
public class CompositeProcessor<T> : BaseProcessor<T>
{
internal readonly DoublyLinkedListNode Head;
private DoublyLinkedListNode tail;
private bool disposed;
/// <summary>
/// Initializes a new instance of the <see cref="CompositeProcessor{T}"/> class.
/// </summary>
/// <param name="processors">Processors to add to the composite processor chain.</param>
public CompositeProcessor(IEnumerable<BaseProcessor<T>> processors)
{
Guard.ThrowIfNull(processors);
using var iter = processors.GetEnumerator();
if (!iter.MoveNext())
{
throw new ArgumentException($"'{iter}' is null or empty", nameof(iter));
}
this.Head = new DoublyLinkedListNode(iter.Current);
this.tail = this.Head;
while (iter.MoveNext())
{
this.AddProcessor(iter.Current);
}
}
/// <summary>
/// Adds a processor to the composite processor chain.
/// </summary>
/// <param name="processor"><see cref="BaseProcessor{T}"/>.</param>
/// <returns>The current instance to support call chaining.</returns>
public CompositeProcessor<T> AddProcessor(BaseProcessor<T> processor)
{
Guard.ThrowIfNull(processor);
var node = new DoublyLinkedListNode(processor)
{
Previous = this.tail,
};
this.tail.Next = node;
this.tail = node;
return this;
}
/// <inheritdoc/>
public override void OnEnd(T data)
{
for (var cur = this.Head; cur != null; cur = cur.Next)
{
cur.Value.OnEnd(data);
}
}
/// <inheritdoc/>
public override void OnStart(T data)
{
for (var cur = this.Head; cur != null; cur = cur.Next)
{
cur.Value.OnStart(data);
}
}
internal override void SetParentProvider(BaseProvider parentProvider)
{
base.SetParentProvider(parentProvider);
for (var cur = this.Head; cur != null; cur = cur.Next)
{
cur.Value.SetParentProvider(parentProvider);
}
}
internal IReadOnlyList<BaseProcessor<T>> ToReadOnlyList()
{
var list = new List<BaseProcessor<T>>();
for (var cur = this.Head; cur != null; cur = cur.Next)
{
list.Add(cur.Value);
}
return list;
}
/// <inheritdoc/>
protected override bool OnForceFlush(int timeoutMilliseconds)
{
var result = true;
var sw = timeoutMilliseconds == Timeout.Infinite
? null
: Stopwatch.StartNew();
for (var cur = this.Head; cur != null; cur = cur.Next)
{
if (sw == null)
{
result = cur.Value.ForceFlush() && result;
}
else
{
var timeout = timeoutMilliseconds - sw.ElapsedMilliseconds;
// notify all the processors, even if we run overtime
result = cur.Value.ForceFlush((int)Math.Max(timeout, 0)) && result;
}
}
return result;
}
/// <inheritdoc/>
protected override bool OnShutdown(int timeoutMilliseconds)
{
var result = true;
var sw = timeoutMilliseconds == Timeout.Infinite
? null
: Stopwatch.StartNew();
for (var cur = this.Head; cur != null; cur = cur.Next)
{
if (sw == null)
{
result = cur.Value.Shutdown() && result;
}
else
{
var timeout = timeoutMilliseconds - sw.ElapsedMilliseconds;
// notify all the processors, even if we run overtime
result = cur.Value.Shutdown((int)Math.Max(timeout, 0)) && result;
}
}
return result;
}
/// <inheritdoc/>
protected override void Dispose(bool disposing)
{
if (!this.disposed)
{
if (disposing)
{
for (var cur = this.Head; cur != null; cur = cur.Next)
{
try
{
cur.Value.Dispose();
}
catch (Exception ex)
{
OpenTelemetrySdkEventSource.Log.SpanProcessorException(nameof(this.Dispose), ex);
}
}
}
this.disposed = true;
}
base.Dispose(disposing);
}
internal sealed class DoublyLinkedListNode
{
public readonly BaseProcessor<T> Value;
public DoublyLinkedListNode(BaseProcessor<T> value)
{
this.Value = value;
}
public DoublyLinkedListNode? Previous { get; set; }
public DoublyLinkedListNode? Next { get; set; }
}
}