123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- using System;
- namespace UniRx.Operators
- {
- internal class SkipUntilObservable<T, TOther> : OperatorObservableBase<T>
- {
- readonly IObservable<T> source;
- readonly IObservable<TOther> other;
- public SkipUntilObservable(IObservable<T> source, IObservable<TOther> other)
- : base(source.IsRequiredSubscribeOnCurrentThread() || other.IsRequiredSubscribeOnCurrentThread())
- {
- this.source = source;
- this.other = other;
- }
- protected override IDisposable SubscribeCore(IObserver<T> observer, IDisposable cancel)
- {
- return new SkipUntilOuterObserver(this, observer, cancel).Run();
- }
- class SkipUntilOuterObserver : OperatorObserverBase<T, T>
- {
- readonly SkipUntilObservable<T, TOther> parent;
- public SkipUntilOuterObserver(SkipUntilObservable<T, TOther> parent, IObserver<T> observer, IDisposable cancel) : base(observer, cancel)
- {
- this.parent = parent;
- }
- public IDisposable Run()
- {
- var sourceSubscription = new SingleAssignmentDisposable();
- var sourceObserver = new SkipUntil(this, sourceSubscription);
-
- var otherSubscription = new SingleAssignmentDisposable();
- var otherObserver = new SkipUntilOther(this, sourceObserver, otherSubscription);
- sourceSubscription.Disposable = parent.source.Subscribe(sourceObserver);
- otherSubscription.Disposable = parent.other.Subscribe(otherObserver);
- return StableCompositeDisposable.Create(otherSubscription, sourceSubscription);
- }
- public override void OnNext(T value)
- {
- }
- public override void OnError(Exception error)
- {
- }
- public override void OnCompleted()
- {
- }
- class SkipUntil : IObserver<T>
- {
- public volatile IObserver<T> observer;
- readonly SkipUntilOuterObserver parent;
- readonly IDisposable subscription;
- public SkipUntil(SkipUntilOuterObserver parent, IDisposable subscription)
- {
- this.parent = parent;
- observer = UniRx.InternalUtil.EmptyObserver<T>.Instance;
- this.subscription = subscription;
- }
- public void OnNext(T value)
- {
- observer.OnNext(value);
- }
- public void OnError(Exception error)
- {
- try { observer.OnError(error); }
- finally { parent.Dispose(); }
- }
- public void OnCompleted()
- {
- try { observer.OnCompleted(); }
- finally { subscription.Dispose(); }
- }
- }
- class SkipUntilOther : IObserver<TOther>
- {
- readonly SkipUntilOuterObserver parent;
- readonly SkipUntil sourceObserver;
- readonly IDisposable subscription;
- public SkipUntilOther(SkipUntilOuterObserver parent, SkipUntil sourceObserver, IDisposable subscription)
- {
- this.parent = parent;
- this.sourceObserver = sourceObserver;
- this.subscription = subscription;
- }
- public void OnNext(TOther value)
- {
- sourceObserver.observer = parent.observer;
- subscription.Dispose();
- }
- public void OnError(Exception error)
- {
- try { parent.observer.OnError(error); } finally { parent.Dispose(); }
- }
- public void OnCompleted()
- {
- subscription.Dispose();
- }
- }
- }
- }
- }
|