| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT License.
- // See the LICENSE file in the project root for more information.
- #nullable disable
- using System.Reactive.Disposables;
- namespace System.Reactive.Linq.ObservableImpl
- {
- internal sealed class Switch<TSource> : Producer<TSource, Switch<TSource>._>
- {
- private readonly IObservable<IObservable<TSource>> _sources;
- public Switch(IObservable<IObservable<TSource>> sources)
- {
- _sources = sources;
- }
- protected override _ CreateSink(IObserver<TSource> observer) => new _(observer);
- protected override void Run(_ sink) => sink.Run(_sources);
- internal sealed class _ : Sink<IObservable<TSource>, TSource>
- {
- private readonly object _gate = new object();
- public _(IObserver<TSource> observer)
- : base(observer)
- {
- }
- private IDisposable _innerSerialDisposable;
- private bool _isStopped;
- private ulong _latest;
- private bool _hasLatest;
- protected override void Dispose(bool disposing)
- {
- if (disposing)
- {
- Disposable.Dispose(ref _innerSerialDisposable);
- }
- base.Dispose(disposing);
- }
- public override void OnNext(IObservable<TSource> value)
- {
- ulong id;
-
- lock (_gate)
- {
- id = unchecked(++_latest);
- _hasLatest = true;
- }
- var innerObserver = new InnerObserver(this, id);
- Disposable.TrySetSerial(ref _innerSerialDisposable, innerObserver);
- innerObserver.SetResource(value.SubscribeSafe(innerObserver));
- }
- public override void OnError(Exception error)
- {
- lock (_gate)
- {
- ForwardOnError(error);
- }
- }
- public override void OnCompleted()
- {
- lock (_gate)
- {
- DisposeUpstream();
- _isStopped = true;
- if (!_hasLatest)
- {
- ForwardOnCompleted();
- }
- }
- }
- private sealed class InnerObserver : SafeObserver<TSource>
- {
- private readonly _ _parent;
- private readonly ulong _id;
- public InnerObserver(_ parent, ulong id)
- {
- _parent = parent;
- _id = id;
- }
- public override void OnNext(TSource value)
- {
- lock (_parent._gate)
- {
- if (_parent._latest == _id)
- {
- _parent.ForwardOnNext(value);
- }
- }
- }
- public override void OnError(Exception error)
- {
- lock (_parent._gate)
- {
- Dispose();
- if (_parent._latest == _id)
- {
- _parent.ForwardOnError(error);
- }
- }
- }
- public override void OnCompleted()
- {
- lock (_parent._gate)
- {
- Dispose();
- if (_parent._latest == _id)
- {
- _parent._hasLatest = false;
- if (_parent._isStopped)
- {
- _parent.ForwardOnCompleted();
- }
- }
- }
- }
- }
- }
- }
- }
|