322 lines
12 KiB
C#
322 lines
12 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.
|
|
|
|
using System.Collections.Generic;
|
|
using System.Reactive.Disposables;
|
|
|
|
namespace System.Reactive.Linq.ObservableImpl
|
|
{
|
|
internal sealed class Join<TLeft, TRight, TLeftDuration, TRightDuration, TResult> : Producer<TResult, Join<TLeft, TRight, TLeftDuration, TRightDuration, TResult>._>
|
|
{
|
|
private readonly IObservable<TLeft> _left;
|
|
private readonly IObservable<TRight> _right;
|
|
private readonly Func<TLeft, IObservable<TLeftDuration>> _leftDurationSelector;
|
|
private readonly Func<TRight, IObservable<TRightDuration>> _rightDurationSelector;
|
|
private readonly Func<TLeft, TRight, TResult> _resultSelector;
|
|
|
|
public Join(IObservable<TLeft> left, IObservable<TRight> right, Func<TLeft, IObservable<TLeftDuration>> leftDurationSelector, Func<TRight, IObservable<TRightDuration>> rightDurationSelector, Func<TLeft, TRight, TResult> resultSelector)
|
|
{
|
|
_left = left;
|
|
_right = right;
|
|
_leftDurationSelector = leftDurationSelector;
|
|
_rightDurationSelector = rightDurationSelector;
|
|
_resultSelector = resultSelector;
|
|
}
|
|
|
|
protected override _ CreateSink(IObserver<TResult> observer) => new(this, observer);
|
|
|
|
protected override void Run(_ sink) => sink.Run(this);
|
|
|
|
internal sealed class _ : IdentitySink<TResult>
|
|
{
|
|
private readonly object _gate = new();
|
|
private readonly CompositeDisposable _group = new();
|
|
private readonly SortedDictionary<int, TLeft> _leftMap = new();
|
|
private readonly SortedDictionary<int, TRight> _rightMap = new();
|
|
|
|
private readonly Func<TLeft, IObservable<TLeftDuration>> _leftDurationSelector;
|
|
private readonly Func<TRight, IObservable<TRightDuration>> _rightDurationSelector;
|
|
private readonly Func<TLeft, TRight, TResult> _resultSelector;
|
|
|
|
public _(Join<TLeft, TRight, TLeftDuration, TRightDuration, TResult> parent, IObserver<TResult> observer)
|
|
: base(observer)
|
|
{
|
|
_leftDurationSelector = parent._leftDurationSelector;
|
|
_rightDurationSelector = parent._rightDurationSelector;
|
|
_resultSelector = parent._resultSelector;
|
|
}
|
|
|
|
private bool _leftDone;
|
|
private int _leftID;
|
|
|
|
private bool _rightDone;
|
|
private int _rightID;
|
|
|
|
public void Run(Join<TLeft, TRight, TLeftDuration, TRightDuration, TResult> parent)
|
|
{
|
|
var leftObserver = new LeftObserver(this);
|
|
var rightObserver = new RightObserver(this);
|
|
|
|
_group.Add(leftObserver);
|
|
_group.Add(rightObserver);
|
|
|
|
leftObserver.SetResource(parent._left.SubscribeSafe(leftObserver));
|
|
rightObserver.SetResource(parent._right.SubscribeSafe(rightObserver));
|
|
|
|
SetUpstream(_group);
|
|
}
|
|
|
|
private sealed class LeftObserver : SafeObserver<TLeft>
|
|
{
|
|
private readonly _ _parent;
|
|
|
|
public LeftObserver(_ parent)
|
|
{
|
|
_parent = parent;
|
|
}
|
|
|
|
private void Expire(int id, IDisposable resource)
|
|
{
|
|
lock (_parent._gate)
|
|
{
|
|
if (_parent._leftMap.Remove(id) && _parent._leftMap.Count == 0 && _parent._leftDone)
|
|
{
|
|
_parent.ForwardOnCompleted();
|
|
}
|
|
}
|
|
|
|
_parent._group.Remove(resource);
|
|
}
|
|
|
|
public override void OnNext(TLeft value)
|
|
{
|
|
int id;
|
|
int rightID;
|
|
|
|
lock (_parent._gate)
|
|
{
|
|
id = _parent._leftID++;
|
|
rightID = _parent._rightID;
|
|
_parent._leftMap.Add(id, value);
|
|
}
|
|
|
|
|
|
IObservable<TLeftDuration> duration;
|
|
try
|
|
{
|
|
duration = _parent._leftDurationSelector(value);
|
|
}
|
|
catch (Exception exception)
|
|
{
|
|
_parent.ForwardOnError(exception);
|
|
return;
|
|
}
|
|
|
|
var durationObserver = new DurationObserver(this, id);
|
|
_parent._group.Add(durationObserver);
|
|
|
|
durationObserver.SetResource(duration.SubscribeSafe(durationObserver));
|
|
|
|
lock (_parent._gate)
|
|
{
|
|
foreach (var rightValue in _parent._rightMap)
|
|
{
|
|
if (rightValue.Key < rightID)
|
|
{
|
|
TResult result;
|
|
try
|
|
{
|
|
result = _parent._resultSelector(value, rightValue.Value);
|
|
}
|
|
catch (Exception exception)
|
|
{
|
|
_parent.ForwardOnError(exception);
|
|
return;
|
|
}
|
|
|
|
_parent.ForwardOnNext(result);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private sealed class DurationObserver : SafeObserver<TLeftDuration>
|
|
{
|
|
private readonly LeftObserver _parent;
|
|
private readonly int _id;
|
|
|
|
public DurationObserver(LeftObserver parent, int id)
|
|
{
|
|
_parent = parent;
|
|
_id = id;
|
|
}
|
|
|
|
public override void OnNext(TLeftDuration value)
|
|
{
|
|
_parent.Expire(_id, this);
|
|
}
|
|
|
|
public override void OnError(Exception error)
|
|
{
|
|
_parent.OnError(error);
|
|
}
|
|
|
|
public override void OnCompleted()
|
|
{
|
|
_parent.Expire(_id, this);
|
|
}
|
|
}
|
|
|
|
public override void OnError(Exception error)
|
|
{
|
|
lock (_parent._gate)
|
|
{
|
|
_parent.ForwardOnError(error);
|
|
}
|
|
}
|
|
|
|
public override void OnCompleted()
|
|
{
|
|
lock (_parent._gate)
|
|
{
|
|
_parent._leftDone = true;
|
|
if (_parent._rightDone || _parent._leftMap.Count == 0)
|
|
{
|
|
_parent.ForwardOnCompleted();
|
|
}
|
|
else
|
|
{
|
|
Dispose();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private sealed class RightObserver : SafeObserver<TRight>
|
|
{
|
|
private readonly _ _parent;
|
|
|
|
public RightObserver(_ parent)
|
|
{
|
|
_parent = parent;
|
|
}
|
|
|
|
private void Expire(int id, IDisposable resource)
|
|
{
|
|
lock (_parent._gate)
|
|
{
|
|
if (_parent._rightMap.Remove(id) && _parent._rightMap.Count == 0 && _parent._rightDone)
|
|
{
|
|
_parent.ForwardOnCompleted();
|
|
}
|
|
}
|
|
|
|
_parent._group.Remove(resource);
|
|
}
|
|
|
|
public override void OnNext(TRight value)
|
|
{
|
|
int id;
|
|
int leftID;
|
|
|
|
lock (_parent._gate)
|
|
{
|
|
id = _parent._rightID++;
|
|
leftID = _parent._leftID;
|
|
_parent._rightMap.Add(id, value);
|
|
}
|
|
|
|
IObservable<TRightDuration> duration;
|
|
try
|
|
{
|
|
duration = _parent._rightDurationSelector(value);
|
|
}
|
|
catch (Exception exception)
|
|
{
|
|
_parent.ForwardOnError(exception);
|
|
return;
|
|
}
|
|
|
|
var durationObserver = new DurationObserver(this, id);
|
|
_parent._group.Add(durationObserver);
|
|
durationObserver.SetResource(duration.SubscribeSafe(durationObserver));
|
|
|
|
lock (_parent._gate)
|
|
{
|
|
foreach (var leftValue in _parent._leftMap)
|
|
{
|
|
if (leftValue.Key < leftID)
|
|
{
|
|
TResult result;
|
|
try
|
|
{
|
|
result = _parent._resultSelector(leftValue.Value, value);
|
|
}
|
|
catch (Exception exception)
|
|
{
|
|
_parent.ForwardOnError(exception);
|
|
return;
|
|
}
|
|
|
|
_parent.ForwardOnNext(result);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private sealed class DurationObserver : SafeObserver<TRightDuration>
|
|
{
|
|
private readonly RightObserver _parent;
|
|
private readonly int _id;
|
|
|
|
public DurationObserver(RightObserver parent, int id)
|
|
{
|
|
_parent = parent;
|
|
_id = id;
|
|
}
|
|
|
|
public override void OnNext(TRightDuration value)
|
|
{
|
|
_parent.Expire(_id, this);
|
|
}
|
|
|
|
public override void OnError(Exception error)
|
|
{
|
|
_parent.OnError(error);
|
|
}
|
|
|
|
public override void OnCompleted()
|
|
{
|
|
_parent.Expire(_id, this);
|
|
}
|
|
}
|
|
|
|
public override void OnError(Exception error)
|
|
{
|
|
lock (_parent._gate)
|
|
{
|
|
_parent.ForwardOnError(error);
|
|
}
|
|
}
|
|
|
|
public override void OnCompleted()
|
|
{
|
|
lock (_parent._gate)
|
|
{
|
|
_parent._rightDone = true;
|
|
if (_parent._leftDone || _parent._rightMap.Count == 0)
|
|
{
|
|
_parent.ForwardOnCompleted();
|
|
}
|
|
else
|
|
{
|
|
Dispose();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|