// 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. namespace System.Reactive.Linq.ObservableImpl { internal static class TakeWhile { internal sealed class Predicate : Producer { private readonly IObservable _source; private readonly Func _predicate; public Predicate(IObservable source, Func predicate) { _source = source; _predicate = predicate; } protected override IDisposable CreateSink(IObserver observer, IDisposable cancel) => new _(_predicate, observer, cancel); protected override IDisposable Run(IObserver observer, IDisposable cancel, Action setSink) { var sink = new _(_predicate, observer, cancel); setSink(sink); return _source.SubscribeSafe(sink); } private sealed class _ : Sink, IObserver { private readonly Func _predicate; private bool _running; public _(Func predicate, IObserver observer, IDisposable cancel) : base(observer, cancel) { _predicate = predicate; _running = true; } public void OnNext(TSource value) { if (_running) { try { _running = _predicate(value); } catch (Exception exception) { base._observer.OnError(exception); base.Dispose(); return; } if (_running) { base._observer.OnNext(value); } else { base._observer.OnCompleted(); base.Dispose(); } } } public void OnError(Exception error) { base._observer.OnError(error); base.Dispose(); } public void OnCompleted() { base._observer.OnCompleted(); base.Dispose(); } } } internal sealed class PredicateIndexed : Producer { private readonly IObservable _source; private readonly Func _predicate; public PredicateIndexed(IObservable source, Func predicate) { _source = source; _predicate = predicate; } protected override IDisposable CreateSink(IObserver observer, IDisposable cancel) => new _(_predicate, observer, cancel); protected override IDisposable Run(IObserver observer, IDisposable cancel, Action setSink) { var sink = new _(_predicate, observer, cancel); setSink(sink); return _source.SubscribeSafe(sink); } private sealed class _ : Sink, IObserver { private readonly Func _predicate; private bool _running; private int _index; public _(Func predicate, IObserver observer, IDisposable cancel) : base(observer, cancel) { _predicate = predicate; _running = true; _index = 0; } public void OnNext(TSource value) { if (_running) { try { _running = _predicate(value, checked(_index++)); } catch (Exception exception) { base._observer.OnError(exception); base.Dispose(); return; } if (_running) { base._observer.OnNext(value); } else { base._observer.OnCompleted(); base.Dispose(); } } } public void OnError(Exception error) { base._observer.OnError(error); base.Dispose(); } public void OnCompleted() { base._observer.OnCompleted(); base.Dispose(); } } } } }