-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTimeoutObservingStream.cs
277 lines (239 loc) · 10 KB
/
TimeoutObservingStream.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
// Copyright (C) 2025, The Duplicati Team
// https://duplicati.com, [email protected]
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
namespace Duplicati.StreamUtil;
/// <summary>
/// A stream that can observe timeouts for read and write operations.
/// </summary>
public sealed class TimeoutObservingStream : WrappingAsyncStream
{
/// <summary>
/// The read timeout.
/// </summary>
private int _readTimeout = Timeout.Infinite;
/// <summary>
/// The write timeout.
/// </summary>
private int _writeTimeout = Timeout.Infinite;
/// <summary>
/// A timeout used as grace period for the other timeouts.
///
/// Once the first transfer happens (read or write), this timeout is ignored.
/// </summary>
private int _startTimeout = Timeout.Infinite;
/// <summary>
/// The cancellation token source for the timeout.
/// </summary>
private readonly CancellationTokenSource _timeoutCts = new();
/// <summary>
/// The timer for the read timeout.
/// </summary>
private readonly Timer _readTimer;
/// <summary>
/// The timer for the write timeout.
/// </summary>
private readonly Timer _writeTimer;
/// <summary>
/// The time for the start timeout (grace period).
/// </summary>
private readonly Timer _startTimer;
/// <summary>
/// Initializes a new instance of the <see cref="TimeoutObservingStream"/> class.
/// </summary>
/// <param name="stream">The stream to wrap.</param>
public TimeoutObservingStream(Stream stream)
: this(stream, true) { }
/// <summary>
/// Initializes a new instance of the <see cref="TimeoutObservingStream"/> class.
/// </summary>
/// <param name="stream">The stream to wrap.</param>
/// <param name="disposeBaseStream">Whether to dispose the base stream when this stream is disposed.</param>
public TimeoutObservingStream(Stream stream, bool disposeBaseStream)
: base(stream, disposeBaseStream)
{
_readTimer = new(_ => _timeoutCts.Cancel());
_writeTimer = new(_ => _timeoutCts.Cancel());
_startTimer = new(_ => _timeoutCts.Cancel());
}
/// <summary>
/// The cancellation token for the timeout.
/// </summary>
public CancellationToken TimeoutToken => _timeoutCts.Token;
/// <inheritdoc/>
override public bool CanTimeout => true;
/// <inheritdoc/>
public override int ReadTimeout
{
get => _readTimeout;
set
{
if (value <= 0 && value != Timeout.Infinite)
throw new ArgumentOutOfRangeException(nameof(value));
_readTimeout = value;
_readTimer.Change(value, Timeout.Infinite);
}
}
/// <inheritdoc/>
public override int WriteTimeout
{
get => _writeTimeout;
set
{
if (value <= 0 && value != Timeout.Infinite)
throw new ArgumentOutOfRangeException(nameof(value));
_writeTimeout = value;
_writeTimer.Change(value, Timeout.Infinite);
}
}
/// <summary>
/// Configure value for the start timeout.
/// </summary>
/// <exception cref="ArgumentOutOfRangeException"></exception>
public int StartTimeout
{
get => _startTimeout;
set
{
if (value <= 0 && value != Timeout.Infinite)
throw new ArgumentOutOfRangeException(nameof(value));
_startTimeout = value;
}
}
/// <summary>
/// Sets the timeout for both read and write operations to infinite as well as startTimeout
/// </summary>
public void CancelTimeout()
=> StartTimeout = WriteTimeout = ReadTimeout = Timeout.Infinite;
private void CancelStartTimeout()
{
_hasCompletedOperation = true;
_startTimer.Change(Timeout.Infinite, Timeout.Infinite);
}
private volatile bool _hasCompletedOperation;
/// <inheritdoc/>
protected override async Task<int> ReadImplAsync(byte[] buffer, int offset, int count,
CancellationToken cancellationToken)
{
try
{
// Start the grace period timer if this is the first operation and timeout is set
if (!_hasCompletedOperation && _startTimeout != Timeout.Infinite)
_startTimer.Change(_startTimeout, Timeout.Infinite);
// If the read timer is enabled, restart it
if (_readTimeout != Timeout.Infinite) _readTimer.Change(_readTimeout, Timeout.Infinite);
// If there is no timeout and no cancellation token, we can just call the base stream
if (_readTimeout == Timeout.Infinite &&
_startTimeout == Timeout.Infinite &&
_startTimeout == Timeout.Infinite &&
!cancellationToken.CanBeCanceled)
{
var readResult = await BaseStream.ReadAsync(buffer, offset, count, cancellationToken)
.ConfigureAwait(false);
CancelStartTimeout();
return readResult;
}
// We need a cts here to handle cancellation when not handled by the callee
using var cts = cancellationToken.CanBeCanceled && cancellationToken != TimeoutToken
? CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, _timeoutCts.Token)
: null;
var tk = cts?.Token ?? _timeoutCts.Token;
var task = BaseStream.ReadAsync(buffer, offset, count, tk);
// If the task is already completed, we can await it without a timeout
if (task.IsCompleted)
{
var completedResult = await task.ConfigureAwait(false);
CancelStartTimeout();
return completedResult;
}
// Run the task and observe the cancellation token
var res = await Task.WhenAny(Task.Run(() => task, tk)).ConfigureAwait(false);
// Check if we should throw a timeout exception
if (!cancellationToken.IsCancellationRequested && _timeoutCts.IsCancellationRequested)
throw new TimeoutException();
// Any exceptions from the task are rethrown here
var finalResult = await res.ConfigureAwait(false);
CancelStartTimeout();
return finalResult;
}
catch (OperationCanceledException)
{
throw new TimeoutException();
}
}
/// <inheritdoc/>
protected override async Task WriteImplAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
{
try
{
// Start the grace period timer if this is the first operation and timeout is set
if (!_hasCompletedOperation && _startTimeout != Timeout.Infinite) _startTimer.Change(_startTimeout, Timeout.Infinite);
// If the write timer is enabled, restart it
if (_writeTimeout != Timeout.Infinite) _writeTimer.Change(_writeTimeout, Timeout.Infinite);
// If there is no timeout and no cancellation token, we can just call the base stream
if (_writeTimeout == Timeout.Infinite &&
_startTimeout == Timeout.Infinite &&
_startTimeout == Timeout.Infinite &&
!cancellationToken.CanBeCanceled)
{
await BaseStream.WriteAsync(buffer, offset, count, cancellationToken)
.ConfigureAwait(false);
CancelStartTimeout();
return;
}
// We need a cts here to handle cancellation when not handled by the callee
using var cts = cancellationToken.CanBeCanceled && cancellationToken != TimeoutToken
? CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, _timeoutCts.Token)
: null;
var tk = cts?.Token ?? _timeoutCts.Token;
var task = BaseStream.WriteAsync(buffer, offset, count, tk);
// If the task is already completed, we can await it without a timeout
if (task.IsCompleted)
{
await task.ConfigureAwait(false);
CancelStartTimeout();
return;
}
// Run the task and observe the cancellation token
var res = await Task.WhenAny(Task.Run(() => task, tk)).ConfigureAwait(false);
// Check if we should throw a timeout exception
if (!cancellationToken.IsCancellationRequested && _timeoutCts.IsCancellationRequested)
throw new TimeoutException();
// Any exceptions from the task are rethrown here
await res.ConfigureAwait(false);
CancelStartTimeout();
}
catch (OperationCanceledException)
{
throw new TimeoutException();
}
}
/// <inheritdoc/>
protected override void Dispose(bool disposing)
{
if (disposing)
{
_readTimer.Dispose();
_writeTimer.Dispose();
_timeoutCts.Dispose();
_startTimer.Dispose();
}
base.Dispose(disposing);
}
}