-
Notifications
You must be signed in to change notification settings - Fork 753
/
Observable.Extensions.cs
362 lines (324 loc) · 19.2 KB
/
Observable.Extensions.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
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System.ComponentModel;
using System.Reactive;
using System.Reactive.Disposables;
using System.Threading;
namespace System
{
/// <summary>
/// Provides a set of static methods for subscribing delegates to observables.
/// </summary>
public static class ObservableExtensions
{
#region Subscribe delegate-based overloads
/// <summary>
/// Subscribes to the observable sequence without specifying any handlers.
/// This method can be used to evaluate the observable sequence for its side-effects only.
/// </summary>
/// <typeparam name="T">The type of the elements in the source sequence.</typeparam>
/// <param name="source">Observable sequence to subscribe to.</param>
/// <returns>IDisposable object used to unsubscribe from the observable sequence.</returns>
/// <exception cref="ArgumentNullException"><paramref name="source"/> is null.</exception>
public static IDisposable Subscribe<T>(this IObservable<T> source)
{
if (source == null)
throw new ArgumentNullException("source");
//
// [OK] Use of unsafe Subscribe: non-pretentious constructor for an observer; this overload is not to be used internally.
//
return source.Subscribe/*Unsafe*/(new AnonymousObserver<T>(Stubs<T>.Ignore, Stubs.Throw, Stubs.Nop));
}
/// <summary>
/// Subscribes an element handler to an observable sequence.
/// </summary>
/// <typeparam name="T">The type of the elements in the source sequence.</typeparam>
/// <param name="source">Observable sequence to subscribe to.</param>
/// <param name="onNext">Action to invoke for each element in the observable sequence.</param>
/// <returns>IDisposable object used to unsubscribe from the observable sequence.</returns>
/// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="onNext"/> is null.</exception>
public static IDisposable Subscribe<T>(this IObservable<T> source, Action<T> onNext)
{
if (source == null)
throw new ArgumentNullException("source");
if (onNext == null)
throw new ArgumentNullException("onNext");
//
// [OK] Use of unsafe Subscribe: non-pretentious constructor for an observer; this overload is not to be used internally.
//
return source.Subscribe/*Unsafe*/(new AnonymousObserver<T>(onNext, Stubs.Throw, Stubs.Nop));
}
/// <summary>
/// Subscribes an element handler and an exception handler to an observable sequence.
/// </summary>
/// <typeparam name="T">The type of the elements in the source sequence.</typeparam>
/// <param name="source">Observable sequence to subscribe to.</param>
/// <param name="onNext">Action to invoke for each element in the observable sequence.</param>
/// <param name="onError">Action to invoke upon exceptional termination of the observable sequence.</param>
/// <returns>IDisposable object used to unsubscribe from the observable sequence.</returns>
/// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="onNext"/> or <paramref name="onError"/> is null.</exception>
public static IDisposable Subscribe<T>(this IObservable<T> source, Action<T> onNext, Action<Exception> onError)
{
if (source == null)
throw new ArgumentNullException("source");
if (onNext == null)
throw new ArgumentNullException("onNext");
if (onError == null)
throw new ArgumentNullException("onError");
//
// [OK] Use of unsafe Subscribe: non-pretentious constructor for an observer; this overload is not to be used internally.
//
return source.Subscribe/*Unsafe*/(new AnonymousObserver<T>(onNext, onError, Stubs.Nop));
}
/// <summary>
/// Subscribes an element handler and a completion handler to an observable sequence.
/// </summary>
/// <typeparam name="T">The type of the elements in the source sequence.</typeparam>
/// <param name="source">Observable sequence to subscribe to.</param>
/// <param name="onNext">Action to invoke for each element in the observable sequence.</param>
/// <param name="onCompleted">Action to invoke upon graceful termination of the observable sequence.</param>
/// <returns>IDisposable object used to unsubscribe from the observable sequence.</returns>
/// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="onNext"/> or <paramref name="onCompleted"/> is null.</exception>
public static IDisposable Subscribe<T>(this IObservable<T> source, Action<T> onNext, Action onCompleted)
{
if (source == null)
throw new ArgumentNullException("source");
if (onNext == null)
throw new ArgumentNullException("onNext");
if (onCompleted == null)
throw new ArgumentNullException("onCompleted");
//
// [OK] Use of unsafe Subscribe: non-pretentious constructor for an observer; this overload is not to be used internally.
//
return source.Subscribe/*Unsafe*/(new AnonymousObserver<T>(onNext, Stubs.Throw, onCompleted));
}
/// <summary>
/// Subscribes an element handler, an exception handler, and a completion handler to an observable sequence.
/// </summary>
/// <typeparam name="T">The type of the elements in the source sequence.</typeparam>
/// <param name="source">Observable sequence to subscribe to.</param>
/// <param name="onNext">Action to invoke for each element in the observable sequence.</param>
/// <param name="onError">Action to invoke upon exceptional termination of the observable sequence.</param>
/// <param name="onCompleted">Action to invoke upon graceful termination of the observable sequence.</param>
/// <returns>IDisposable object used to unsubscribe from the observable sequence.</returns>
/// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="onNext"/> or <paramref name="onError"/> or <paramref name="onCompleted"/> is null.</exception>
public static IDisposable Subscribe<T>(this IObservable<T> source, Action<T> onNext, Action<Exception> onError, Action onCompleted)
{
if (source == null)
throw new ArgumentNullException("source");
if (onNext == null)
throw new ArgumentNullException("onNext");
if (onError == null)
throw new ArgumentNullException("onError");
if (onCompleted == null)
throw new ArgumentNullException("onCompleted");
//
// [OK] Use of unsafe Subscribe: non-pretentious constructor for an observer; this overload is not to be used internally.
//
return source.Subscribe/*Unsafe*/(new AnonymousObserver<T>(onNext, onError, onCompleted));
}
#endregion
#region Subscribe overloads with CancellationToken
#if !NO_TPL
/// <summary>
/// Subscribes an observer to an observable sequence, using a CancellationToken to support unsubscription.
/// </summary>
/// <typeparam name="T">The type of the elements in the source sequence.</typeparam>
/// <param name="source">Observable sequence to subscribe to.</param>
/// <param name="observer">Observer to subscribe to the sequence.</param>
/// <param name="token">CancellationToken that can be signaled to unsubscribe from the source sequence.</param>
/// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="observer"/> is null.</exception>
public static void Subscribe<T>(this IObservable<T> source, IObserver<T> observer, CancellationToken token)
{
if (source == null)
throw new ArgumentNullException("source");
if (observer == null)
throw new ArgumentNullException("observer");
source.Subscribe_(observer, token);
}
/// <summary>
/// Subscribes to the observable sequence without specifying any handlers, using a CancellationToken to support unsubscription.
/// This method can be used to evaluate the observable sequence for its side-effects only.
/// </summary>
/// <typeparam name="T">The type of the elements in the source sequence.</typeparam>
/// <param name="source">Observable sequence to subscribe to.</param>
/// <param name="token">CancellationToken that can be signaled to unsubscribe from the source sequence.</param>
/// <exception cref="ArgumentNullException"><paramref name="source"/> is null.</exception>
public static void Subscribe<T>(this IObservable<T> source, CancellationToken token)
{
if (source == null)
throw new ArgumentNullException("source");
source.Subscribe_(new AnonymousObserver<T>(Stubs<T>.Ignore, Stubs.Throw, Stubs.Nop), token);
}
/// <summary>
/// Subscribes an element handler to an observable sequence, using a CancellationToken to support unsubscription.
/// </summary>
/// <typeparam name="T">The type of the elements in the source sequence.</typeparam>
/// <param name="source">Observable sequence to subscribe to.</param>
/// <param name="onNext">Action to invoke for each element in the observable sequence.</param>
/// <param name="token">CancellationToken that can be signaled to unsubscribe from the source sequence.</param>
/// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="onNext"/> is null.</exception>
public static void Subscribe<T>(this IObservable<T> source, Action<T> onNext, CancellationToken token)
{
if (source == null)
throw new ArgumentNullException("source");
if (onNext == null)
throw new ArgumentNullException("onNext");
source.Subscribe_(new AnonymousObserver<T>(onNext, Stubs.Throw, Stubs.Nop), token);
}
/// <summary>
/// Subscribes an element handler and an exception handler to an observable sequence, using a CancellationToken to support unsubscription.
/// </summary>
/// <typeparam name="T">The type of the elements in the source sequence.</typeparam>
/// <param name="source">Observable sequence to subscribe to.</param>
/// <param name="onNext">Action to invoke for each element in the observable sequence.</param>
/// <param name="onError">Action to invoke upon exceptional termination of the observable sequence.</param>
/// <param name="token">CancellationToken that can be signaled to unsubscribe from the source sequence.</param>
/// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="onNext"/> or <paramref name="onError"/> is null.</exception>
public static void Subscribe<T>(this IObservable<T> source, Action<T> onNext, Action<Exception> onError, CancellationToken token)
{
if (source == null)
throw new ArgumentNullException("source");
if (onNext == null)
throw new ArgumentNullException("onNext");
if (onError == null)
throw new ArgumentNullException("onError");
source.Subscribe_(new AnonymousObserver<T>(onNext, onError, Stubs.Nop), token);
}
/// <summary>
/// Subscribes an element handler and a completion handler to an observable sequence, using a CancellationToken to support unsubscription.
/// </summary>
/// <typeparam name="T">The type of the elements in the source sequence.</typeparam>
/// <param name="source">Observable sequence to subscribe to.</param>
/// <param name="onNext">Action to invoke for each element in the observable sequence.</param>
/// <param name="onCompleted">Action to invoke upon graceful termination of the observable sequence.</param>
/// <param name="token">CancellationToken that can be signaled to unsubscribe from the source sequence.</param>
/// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="onNext"/> or <paramref name="onCompleted"/> is null.</exception>
public static void Subscribe<T>(this IObservable<T> source, Action<T> onNext, Action onCompleted, CancellationToken token)
{
if (source == null)
throw new ArgumentNullException("source");
if (onNext == null)
throw new ArgumentNullException("onNext");
if (onCompleted == null)
throw new ArgumentNullException("onCompleted");
source.Subscribe_(new AnonymousObserver<T>(onNext, Stubs.Throw, onCompleted), token);
}
/// <summary>
/// Subscribes an element handler, an exception handler, and a completion handler to an observable sequence, using a CancellationToken to support unsubscription.
/// </summary>
/// <typeparam name="T">The type of the elements in the source sequence.</typeparam>
/// <param name="source">Observable sequence to subscribe to.</param>
/// <param name="onNext">Action to invoke for each element in the observable sequence.</param>
/// <param name="onError">Action to invoke upon exceptional termination of the observable sequence.</param>
/// <param name="onCompleted">Action to invoke upon graceful termination of the observable sequence.</param>
/// <param name="token">CancellationToken that can be signaled to unsubscribe from the source sequence.</param>
/// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="onNext"/> or <paramref name="onError"/> or <paramref name="onCompleted"/> is null.</exception>
public static void Subscribe<T>(this IObservable<T> source, Action<T> onNext, Action<Exception> onError, Action onCompleted, CancellationToken token)
{
if (source == null)
throw new ArgumentNullException("source");
if (onNext == null)
throw new ArgumentNullException("onNext");
if (onError == null)
throw new ArgumentNullException("onError");
if (onCompleted == null)
throw new ArgumentNullException("onCompleted");
source.Subscribe_(new AnonymousObserver<T>(onNext, onError, onCompleted), token);
}
private static void Subscribe_<T>(this IObservable<T> source, IObserver<T> observer, CancellationToken token)
{
if (token.CanBeCanceled)
{
if (!token.IsCancellationRequested)
{
var r = new SingleAssignmentDisposable();
//
// [OK] Use of unsafe Subscribe: exception during Subscribe doesn't orphan CancellationTokenRegistration.
//
var d = source.Subscribe/*Unsafe*/(
observer.OnNext,
ex =>
{
using (r)
observer.OnError(ex);
},
() =>
{
using (r)
observer.OnCompleted();
}
);
r.Disposable = token.Register(d.Dispose);
}
}
else
{
source.Subscribe(observer);
}
}
#endif
#endregion
#region SubscribeSafe
/// <summary>
/// Subscribes to the specified source, re-routing synchronous exceptions during invocation of the Subscribe method to the observer's OnError channel.
/// This method is typically used when writing query operators.
/// </summary>
/// <typeparam name="T">The type of the elements in the source sequence.</typeparam>
/// <param name="source">Observable sequence to subscribe to.</param>
/// <param name="observer">Observer that will be passed to the observable sequence, and that will be used for exception propagation.</param>
/// <returns>IDisposable object used to unsubscribe from the observable sequence.</returns>
/// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="observer"/> is null.</exception>
[EditorBrowsable(EditorBrowsableState.Advanced)]
public static IDisposable SubscribeSafe<T>(this IObservable<T> source, IObserver<T> observer)
{
if (source == null)
throw new ArgumentNullException("source");
if (observer == null)
throw new ArgumentNullException("observer");
//
// The following types are white-listed and should not exhibit exceptional behavior
// for regular operation circumstances.
//
if (source is ObservableBase<T>)
return source.Subscribe(observer);
#if !NO_PERF
var producer = source as IProducer<T>;
if (producer != null)
return producer.SubscribeRaw(observer, false);
#endif
var d = Disposable.Empty;
try
{
d = source.Subscribe(observer);
}
catch (Exception exception)
{
//
// The effect of redirecting the exception to the OnError channel is automatic
// clean-up of query operator state for a large number of cases. For example,
// consider a binary and temporal query operator with the following Subscribe
// behavior (implemented using the Producer pattern with a Run method):
//
// public IDisposable Run(...)
// {
// var tm = _scheduler.Schedule(_due, Tick);
//
// var df = _fst.SubscribeSafe(new FstObserver(this, ...));
// var ds = _snd.SubscribeSafe(new SndObserver(this, ...)); // <-- fails
//
// return new CompositeDisposable(tm, df, ds);
// }
//
// If the second subscription fails, we're not leaving the first subscription
// or the scheduled job hanging around. Instead, the OnError propagation to
// the SndObserver should take care of a Dispose call to the observer's parent
// object. The handshake between Producer and Sink objects will ultimately
// cause disposal of the CompositeDisposable that's returned from the method.
//
observer.OnError(exception);
}
return d;
}
#endregion
}
}