123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- // 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.
- using System.Reactive.Concurrency;
- using System.Reactive.Disposables;
- namespace System.Reactive.Linq.ObservableImpl
- {
- internal sealed class SkipUntil<TSource, TOther> : Producer<TSource, SkipUntil<TSource, TOther>._>
- {
- private readonly IObservable<TSource> _source;
- private readonly IObservable<TOther> _other;
- public SkipUntil(IObservable<TSource> source, IObservable<TOther> other)
- {
- _source = source;
- _other = other;
- }
- protected override _ CreateSink(IObserver<TSource> observer) => new _(observer);
- protected override void Run(_ sink) => sink.Run(this);
- internal sealed class _ : IdentitySink<TSource>
- {
- private IDisposable? _otherDisposable;
- private bool _forward;
- private int _halfSerializer;
- private Exception? _error;
- public _(IObserver<TSource> observer)
- : base(observer)
- {
- }
- public void Run(SkipUntil<TSource, TOther> parent)
- {
- Disposable.TrySetSingle(ref _otherDisposable, parent._other.Subscribe(new OtherObserver(this)));
- Run(parent._source);
- }
- protected override void Dispose(bool disposing)
- {
- if (disposing)
- {
- if (!Disposable.GetIsDisposed(ref _otherDisposable))
- {
- Disposable.Dispose(ref _otherDisposable);
- }
- }
- base.Dispose(disposing);
- }
- public override void OnNext(TSource value)
- {
- if (_forward)
- {
- HalfSerializer.ForwardOnNext(this, value, ref _halfSerializer, ref _error);
- }
- }
- public override void OnError(Exception ex)
- {
- HalfSerializer.ForwardOnError(this, ex, ref _halfSerializer, ref _error);
- }
- public override void OnCompleted()
- {
- if (_forward)
- {
- HalfSerializer.ForwardOnCompleted(this, ref _halfSerializer, ref _error);
- }
- else
- {
- DisposeUpstream();
- }
- }
- private void OtherComplete()
- {
- _forward = true;
- }
- private sealed class OtherObserver : IObserver<TOther>, IDisposable
- {
- private readonly _ _parent;
- public OtherObserver(_ parent)
- {
- _parent = parent;
- }
- public void Dispose()
- {
- if (!Disposable.GetIsDisposed(ref _parent._otherDisposable))
- {
- Disposable.Dispose(ref _parent._otherDisposable);
- }
- }
- public void OnCompleted()
- {
- Dispose();
- }
- public void OnError(Exception error)
- {
- HalfSerializer.ForwardOnError(_parent, error, ref _parent._halfSerializer, ref _parent._error);
- }
- public void OnNext(TOther value)
- {
- _parent.OtherComplete();
- Dispose();
- }
- }
- }
- }
- internal sealed class SkipUntil<TSource> : Producer<TSource, SkipUntil<TSource>._>
- {
- private readonly IObservable<TSource> _source;
- private readonly DateTimeOffset _startTime;
- internal readonly IScheduler _scheduler;
- public SkipUntil(IObservable<TSource> source, DateTimeOffset startTime, IScheduler scheduler)
- {
- _source = source;
- _startTime = startTime;
- _scheduler = scheduler;
- }
- public IObservable<TSource> Combine(DateTimeOffset startTime)
- {
- //
- // Maximum semantics:
- //
- // t 0--1--2--3--4--5--6--7-> t 0--1--2--3--4--5--6--7->
- //
- // xs --o--o--o--o--o--o--| xs --o--o--o--o--o--o--|
- // xs.SU(5AM) xxxxxxxxxxxxxxxx-o--| xs.SU(3AM) xxxxxxxxxx-o--o--o--|
- // xs.SU(5AM).SU(3AM) xxxxxxxxx--------o--| xs.SU(3AM).SU(5AM) xxxxxxxxxxxxxxxx-o--|
- //
- if (startTime <= _startTime)
- {
- return this;
- }
- return new SkipUntil<TSource>(_source, startTime, _scheduler);
- }
- protected override _ CreateSink(IObserver<TSource> observer) => new _(observer);
- protected override void Run(_ sink) => sink.Run(this);
- internal sealed class _ : IdentitySink<TSource>
- {
- private bool _open;
- public _(IObserver<TSource> observer)
- : base(observer)
- {
- }
- private IDisposable? _task;
- public void Run(SkipUntil<TSource> parent)
- {
- Disposable.SetSingle(ref _task, parent._scheduler.ScheduleAction(this, parent._startTime, static state => state.Tick()));
- Run(parent._source);
- }
- protected override void Dispose(bool disposing)
- {
- if (disposing)
- {
- Disposable.Dispose(ref _task);
- }
- base.Dispose(disposing);
- }
- private void Tick()
- {
- _open = true;
- }
- public override void OnNext(TSource value)
- {
- if (_open)
- {
- ForwardOnNext(value);
- }
- }
- }
- }
- }
|