123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the Apache 2.0 License.
- // See the LICENSE file in the project root for more information.
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.Reactive.Disposables;
- using System.Reactive.Subjects;
- using System.Text;
- using System.Threading;
- namespace System.Reactive.Linq.ObservableImpl
- {
- internal sealed class RetryWhen<T, U> : IObservable<T>
- {
- readonly IObservable<T> source;
- readonly Func<IObservable<Exception>, IObservable<U>> handler;
- internal RetryWhen(IObservable<T> source, Func<IObservable<Exception>, IObservable<U>> handler)
- {
- this.source = source;
- this.handler = handler;
- }
- public IDisposable Subscribe(IObserver<T> observer)
- {
- if (observer == null)
- {
- throw new ArgumentNullException(nameof(observer));
- }
- var errorSignals = new Subject<Exception>();
- var redo = default(IObservable<U>);
- try
- {
- redo = handler(errorSignals);
- if (redo == null)
- {
- throw new NullReferenceException("The handler returned a null IObservable");
- }
- }
- catch (Exception ex)
- {
- observer.OnError(ex);
- return Disposable.Empty;
- }
- var parent = new MainObserver(observer, source, new RedoSerializedObserver<Exception>(errorSignals));
- var d = redo.SubscribeSafe(parent.handlerObserver);
- Disposable.SetSingle(ref parent.handlerUpstream, d);
- parent.HandlerNext();
- return parent;
- }
- sealed class MainObserver : Sink<T>, IObserver<T>
- {
- readonly IObserver<Exception> errorSignal;
- internal readonly HandlerObserver handlerObserver;
-
- readonly IObservable<T> source;
- IDisposable upstream;
- internal IDisposable handlerUpstream;
- int trampoline;
- int halfSerializer;
- Exception error;
- internal MainObserver(IObserver<T> downstream, IObservable<T> source, IObserver<Exception> errorSignal) : base(downstream)
- {
- this.source = source;
- this.errorSignal = errorSignal;
- this.handlerObserver = new HandlerObserver(this);
- }
- protected override void Dispose(bool disposing)
- {
- if (disposing)
- {
- Disposable.TryDispose(ref upstream);
- Disposable.TryDispose(ref handlerUpstream);
- }
- base.Dispose(disposing);
- }
- public void OnCompleted()
- {
- HalfSerializer.ForwardOnCompleted(this, ref halfSerializer, ref this.error);
- }
- public void OnError(Exception error)
- {
- if (Disposable.TrySetSerial(ref upstream, null))
- {
- errorSignal.OnNext(error);
- }
- }
- public void OnNext(T value)
- {
- HalfSerializer.ForwardOnNext(this, value, ref halfSerializer, ref this.error);
- }
- internal void HandlerError(Exception error)
- {
- HalfSerializer.ForwardOnError(this, error, ref halfSerializer, ref this.error);
- }
- internal void HandlerComplete()
- {
- HalfSerializer.ForwardOnCompleted(this, ref halfSerializer, ref this.error);
- }
- internal void HandlerNext()
- {
- if (Interlocked.Increment(ref trampoline) == 1)
- {
- do
- {
- var sad = new SingleAssignmentDisposable();
- if (Disposable.TrySetSingle(ref upstream, sad) != TrySetSingleResult.Success)
- {
- return;
- }
- sad.Disposable = source.SubscribeSafe(this);
- }
- while (Interlocked.Decrement(ref trampoline) != 0);
- }
- }
- internal sealed class HandlerObserver : IObserver<U>
- {
- readonly MainObserver main;
- internal HandlerObserver(MainObserver main)
- {
- this.main = main;
- }
- public void OnCompleted()
- {
- main.HandlerComplete();
- }
- public void OnError(Exception error)
- {
- main.HandlerError(error);
- }
- public void OnNext(U value)
- {
- main.HandlerNext();
- }
- }
- }
- }
- internal sealed class RedoSerializedObserver<X> : IObserver<X>
- {
- readonly IObserver<X> downstream;
- int wip;
- Exception terminalException;
- static readonly Exception DONE = new Exception();
- static readonly Exception SIGNALED = new Exception();
- readonly ConcurrentQueue<X> queue;
- internal RedoSerializedObserver(IObserver<X> downstream)
- {
- this.downstream = downstream;
- this.queue = new ConcurrentQueue<X>();
- }
- public void OnCompleted()
- {
- if (Interlocked.CompareExchange(ref terminalException, DONE, null) == null)
- {
- Drain();
- }
- }
- public void OnError(Exception error)
- {
- if (Interlocked.CompareExchange(ref terminalException, error, null) == null)
- {
- Drain();
- }
- }
- public void OnNext(X value)
- {
- queue.Enqueue(value);
- Drain();
- }
- void Clear()
- {
- while (queue.TryDequeue(out var _)) ;
- }
- void Drain()
- {
- if (Interlocked.Increment(ref wip) != 1)
- {
- return;
- }
- int missed = 1;
- for (; ; )
- {
- var ex = Volatile.Read(ref terminalException);
- if (ex != null)
- {
- if (ex != SIGNALED)
- {
- Interlocked.Exchange(ref terminalException, SIGNALED);
- if (ex != DONE)
- {
- downstream.OnError(ex);
- }
- else
- {
- downstream.OnCompleted();
- }
- }
- Clear();
- }
- else
- {
- while (queue.TryDequeue(out var item))
- {
- downstream.OnNext(item);
- }
- }
- missed = Interlocked.Add(ref wip, -missed);
- if (missed == 0)
- {
- break;
- }
- }
- }
- }
- }
|