129 lines
4.0 KiB
C#
129 lines
4.0 KiB
C#
// 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 SingleOrDefaultAsync<TSource>
|
|
{
|
|
internal sealed class Sequence : Producer<TSource?, Sequence._>
|
|
{
|
|
private readonly IObservable<TSource> _source;
|
|
|
|
public Sequence(IObservable<TSource> source)
|
|
{
|
|
_source = source;
|
|
}
|
|
|
|
protected override _ CreateSink(IObserver<TSource?> observer) => new(observer);
|
|
|
|
protected override void Run(_ sink) => sink.Run(_source);
|
|
|
|
internal sealed class _ : Sink<TSource, TSource?>
|
|
{
|
|
private TSource? _value;
|
|
private bool _seenValue;
|
|
|
|
public _(IObserver<TSource?> observer)
|
|
: base(observer)
|
|
{
|
|
}
|
|
|
|
public override void OnNext(TSource value)
|
|
{
|
|
if (_seenValue)
|
|
{
|
|
try
|
|
{
|
|
throw new InvalidOperationException(Strings_Linq.MORE_THAN_ONE_ELEMENT);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
ForwardOnError(e);
|
|
}
|
|
return;
|
|
}
|
|
|
|
_value = value;
|
|
_seenValue = true;
|
|
}
|
|
|
|
public override void OnCompleted()
|
|
{
|
|
ForwardOnNext(_value);
|
|
ForwardOnCompleted();
|
|
}
|
|
}
|
|
}
|
|
|
|
internal sealed class Predicate : Producer<TSource?, Predicate._>
|
|
{
|
|
private readonly IObservable<TSource> _source;
|
|
private readonly Func<TSource, bool> _predicate;
|
|
|
|
public Predicate(IObservable<TSource> source, Func<TSource, bool> predicate)
|
|
{
|
|
_source = source;
|
|
_predicate = predicate;
|
|
}
|
|
|
|
protected override _ CreateSink(IObserver<TSource?> observer) => new(_predicate, observer);
|
|
|
|
protected override void Run(_ sink) => sink.Run(_source);
|
|
|
|
internal sealed class _ : Sink<TSource, TSource?>
|
|
{
|
|
private readonly Func<TSource, bool> _predicate;
|
|
private TSource? _value;
|
|
private bool _seenValue;
|
|
|
|
public _(Func<TSource, bool> predicate, IObserver<TSource?> observer)
|
|
: base(observer)
|
|
{
|
|
_predicate = predicate;
|
|
}
|
|
|
|
public override void OnNext(TSource value)
|
|
{
|
|
var b = false;
|
|
|
|
try
|
|
{
|
|
b = _predicate(value);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
ForwardOnError(ex);
|
|
return;
|
|
}
|
|
|
|
if (b)
|
|
{
|
|
if (_seenValue)
|
|
{
|
|
try
|
|
{
|
|
throw new InvalidOperationException(Strings_Linq.MORE_THAN_ONE_MATCHING_ELEMENT);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
ForwardOnError(e);
|
|
}
|
|
return;
|
|
}
|
|
|
|
_value = value;
|
|
_seenValue = true;
|
|
}
|
|
}
|
|
|
|
public override void OnCompleted()
|
|
{
|
|
ForwardOnNext(_value);
|
|
ForwardOnCompleted();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|