// 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 LongCount { internal sealed class All : Producer { private readonly IObservable _source; public All(IObservable source) { _source = source; } protected override _ CreateSink(IObserver observer) => new(observer); protected override void Run(_ sink) => sink.Run(_source); internal sealed class _ : Sink { private long _count; public _(IObserver observer) : base(observer) { } public override void OnNext(TSource value) { try { checked { _count++; } } catch (Exception ex) { ForwardOnError(ex); } } public override void OnCompleted() { ForwardOnNext(_count); ForwardOnCompleted(); } } } 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 _ : Sink { private readonly Func _predicate; private long _count; public _(Func predicate, IObserver observer) : base(observer) { _predicate = predicate; } public override void OnNext(TSource value) { try { checked { if (_predicate(value)) { _count++; } } } catch (Exception ex) { ForwardOnError(ex); } } public override void OnCompleted() { ForwardOnNext(_count); ForwardOnCompleted(); } } } } }