// 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 sealed class Scan : Producer._> { private readonly IObservable _source; private readonly TAccumulate _seed; private readonly Func _accumulator; public Scan(IObservable source, TAccumulate seed, Func accumulator) { _source = source; _seed = seed; _accumulator = accumulator; } protected override _ CreateSink(IObserver observer) => new(this, observer); protected override void Run(_ sink) => sink.Run(_source); internal sealed class _ : Sink { private readonly Func _accumulator; private TAccumulate _accumulation; public _(Scan parent, IObserver observer) : base(observer) { _accumulator = parent._accumulator; _accumulation = parent._seed; } public override void OnNext(TSource value) { try { _accumulation = _accumulator(_accumulation, value); } catch (Exception exception) { ForwardOnError(exception); return; } ForwardOnNext(_accumulation); } } } internal sealed class Scan : Producer._> { private readonly IObservable _source; private readonly Func _accumulator; public Scan(IObservable source, Func accumulator) { _source = source; _accumulator = accumulator; } protected override _ CreateSink(IObserver observer) => new(_accumulator, observer); protected override void Run(_ sink) => sink.Run(_source); internal sealed class _ : IdentitySink { private readonly Func _accumulator; private TSource? _accumulation; private bool _hasAccumulation; public _(Func accumulator, IObserver observer) : base(observer) { _accumulator = accumulator; } public override void OnNext(TSource value) { try { if (_hasAccumulation) { _accumulation = _accumulator(_accumulation!, value); } else { _accumulation = value; _hasAccumulation = true; } } catch (Exception exception) { ForwardOnError(exception); return; } ForwardOnNext(_accumulation); } } } }