// 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. namespace System.Reactive.Linq.ObservableImpl { internal static class SkipWhile { 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 _ CreateSink(IObserver observer) => new _(_predicate, observer); protected override void Run(_ sink) => sink.Run(_source); internal sealed class _ : IdentitySink { private Func? _predicate; public _(Func predicate, IObserver observer) : base(observer) { _predicate = predicate; } public override void OnNext(TSource value) { if (_predicate != null) { bool shouldStart; try { shouldStart = !_predicate(value); } catch (Exception exception) { ForwardOnError(exception); return; } if (shouldStart) { _predicate = null; ForwardOnNext(value); } } else { ForwardOnNext(value); } } } } 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 _ CreateSink(IObserver observer) => new _(_predicate, observer); protected override void Run(_ sink) => sink.Run(_source); internal sealed class _ : IdentitySink { private Func? _predicate; private int _index; public _(Func predicate, IObserver observer) : base(observer) { _predicate = predicate; } public override void OnNext(TSource value) { if (_predicate != null) { bool shouldStart; try { shouldStart = !_predicate(value, checked(_index++)); } catch (Exception exception) { ForwardOnError(exception); return; } if (shouldStart) { _predicate = null; ForwardOnNext(value); } } else { ForwardOnNext(value); } } } } } }