Kit.Core/LibExternal/System.Reactive/Concurrency/Scheduler.Recursive.cs

279 lines
13 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.Reactive.Disposables;
namespace System.Reactive.Concurrency
{
public static partial class Scheduler
{
/// <summary>
/// Schedules an action to be executed recursively.
/// </summary>
/// <param name="scheduler">Scheduler to execute the recursive action on.</param>
/// <param name="action">Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action.</param>
/// <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
/// <exception cref="ArgumentNullException"><paramref name="scheduler"/> or <paramref name="action"/> is <c>null</c>.</exception>
public static IDisposable Schedule(this IScheduler scheduler, Action<Action> action)
{
if (scheduler == null)
{
throw new ArgumentNullException(nameof(scheduler));
}
if (action == null)
{
throw new ArgumentNullException(nameof(action));
}
return scheduler.Schedule(action, static (a, self) => a(() => self(a)));
}
/// <summary>
/// Schedules an action to be executed recursively.
/// </summary>
/// <typeparam name="TState">The type of the state passed to the scheduled action.</typeparam>
/// <param name="scheduler">Scheduler to execute the recursive action on.</param>
/// <param name="state">State passed to the action to be executed.</param>
/// <param name="action">Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in recursive invocation state.</param>
/// <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
/// <exception cref="ArgumentNullException"><paramref name="scheduler"/> or <paramref name="action"/> is <c>null</c>.</exception>
public static IDisposable Schedule<TState>(this IScheduler scheduler, TState state, Action<TState, Action<TState>> action)
{
if (scheduler == null)
{
throw new ArgumentNullException(nameof(scheduler));
}
if (action == null)
{
throw new ArgumentNullException(nameof(action));
}
return scheduler.Schedule((state, action), static (s, p) => InvokeRec1(s, p));
}
private static IDisposable InvokeRec1<TState>(IScheduler scheduler, (TState state, Action<TState, Action<TState>> action) tuple)
{
var recursiveInvoker = new InvokeRec1State<TState>(scheduler, tuple.action);
recursiveInvoker.InvokeFirst(tuple.state);
return recursiveInvoker;
}
/// <summary>
/// Schedules an action to be executed recursively after a specified relative due time.
/// </summary>
/// <param name="scheduler">Scheduler to execute the recursive action on.</param>
/// <param name="action">Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action at the specified relative time.</param>
/// <param name="dueTime">Relative time after which to execute the action for the first time.</param>
/// <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
/// <exception cref="ArgumentNullException"><paramref name="scheduler"/> or <paramref name="action"/> is <c>null</c>.</exception>
public static IDisposable Schedule(this IScheduler scheduler, TimeSpan dueTime, Action<Action<TimeSpan>> action)
{
if (scheduler == null)
{
throw new ArgumentNullException(nameof(scheduler));
}
if (action == null)
{
throw new ArgumentNullException(nameof(action));
}
return scheduler.Schedule(action, dueTime, static (a, self) => a(ts => self(a, ts)));
}
/// <summary>
/// Schedules an action to be executed recursively after a specified relative due time.
/// </summary>
/// <typeparam name="TState">The type of the state passed to the scheduled action.</typeparam>
/// <param name="scheduler">Scheduler to execute the recursive action on.</param>
/// <param name="state">State passed to the action to be executed.</param>
/// <param name="action">Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in the recursive due time and invocation state.</param>
/// <param name="dueTime">Relative time after which to execute the action for the first time.</param>
/// <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
/// <exception cref="ArgumentNullException"><paramref name="scheduler"/> or <paramref name="action"/> is <c>null</c>.</exception>
public static IDisposable Schedule<TState>(this IScheduler scheduler, TState state, TimeSpan dueTime, Action<TState, Action<TState, TimeSpan>> action)
{
if (scheduler == null)
{
throw new ArgumentNullException(nameof(scheduler));
}
if (action == null)
{
throw new ArgumentNullException(nameof(action));
}
return scheduler.Schedule((state, action), dueTime, static (s, p) => InvokeRec2(s, p));
}
private static IDisposable InvokeRec2<TState>(IScheduler scheduler, (TState state, Action<TState, Action<TState, TimeSpan>> action) tuple)
{
var recursiveInvoker = new InvokeRec2State<TState>(scheduler, tuple.action);
recursiveInvoker.InvokeFirst(tuple.state);
return recursiveInvoker;
}
/// <summary>
/// Schedules an action to be executed recursively at a specified absolute due time.
/// </summary>
/// <param name="scheduler">Scheduler to execute the recursive action on.</param>
/// <param name="action">Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action at the specified absolute time.</param>
/// <param name="dueTime">Absolute time at which to execute the action for the first time.</param>
/// <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
/// <exception cref="ArgumentNullException"><paramref name="scheduler"/> or <paramref name="action"/> is <c>null</c>.</exception>
public static IDisposable Schedule(this IScheduler scheduler, DateTimeOffset dueTime, Action<Action<DateTimeOffset>> action)
{
if (scheduler == null)
{
throw new ArgumentNullException(nameof(scheduler));
}
if (action == null)
{
throw new ArgumentNullException(nameof(action));
}
return scheduler.Schedule(action, dueTime, static (a, self) => a(dt => self(a, dt)));
}
/// <summary>
/// Schedules an action to be executed recursively at a specified absolute due time.
/// </summary>
/// <typeparam name="TState">The type of the state passed to the scheduled action.</typeparam>
/// <param name="scheduler">Scheduler to execute the recursive action on.</param>
/// <param name="state">State passed to the action to be executed.</param>
/// <param name="action">Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in the recursive due time and invocation state.</param>
/// <param name="dueTime">Absolute time at which to execute the action for the first time.</param>
/// <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
/// <exception cref="ArgumentNullException"><paramref name="scheduler"/> or <paramref name="action"/> is <c>null</c>.</exception>
public static IDisposable Schedule<TState>(this IScheduler scheduler, TState state, DateTimeOffset dueTime, Action<TState, Action<TState, DateTimeOffset>> action)
{
if (scheduler == null)
{
throw new ArgumentNullException(nameof(scheduler));
}
if (action == null)
{
throw new ArgumentNullException(nameof(action));
}
return scheduler.Schedule((state, action), dueTime, static (s, p) => InvokeRec3(s, p));
}
private static IDisposable InvokeRec3<TState>(IScheduler scheduler, (TState state, Action<TState, Action<TState, DateTimeOffset>> action) tuple)
{
var recursiveInvoker = new InvokeRec3State<TState>(scheduler, tuple.action);
recursiveInvoker.InvokeFirst(tuple.state);
return recursiveInvoker;
}
private abstract class InvokeRecBaseState : IDisposable
{
protected readonly IScheduler Scheduler;
protected readonly CompositeDisposable Group;
protected InvokeRecBaseState(IScheduler scheduler)
{
Scheduler = scheduler;
Group = new CompositeDisposable();
}
public void Dispose()
{
Group.Dispose();
}
}
private sealed class InvokeRec1State<TState> : InvokeRecBaseState
{
private readonly Action<TState, Action<TState>> _action;
private readonly Action<TState> _recurseCallback;
public InvokeRec1State(IScheduler scheduler, Action<TState, Action<TState>> action) : base(scheduler)
{
_action = action;
_recurseCallback = state => InvokeNext(state);
}
private void InvokeNext(TState state)
{
var sad = new SingleAssignmentDisposable();
Group.Add(sad);
sad.Disposable = Scheduler.ScheduleAction((state, sad, @this: this), static nextState =>
{
nextState.@this.Group.Remove(nextState.sad);
nextState.@this.InvokeFirst(nextState.state);
});
}
internal void InvokeFirst(TState state)
{
_action(state, _recurseCallback);
}
}
private sealed class InvokeRec2State<TState> : InvokeRecBaseState
{
private readonly Action<TState, Action<TState, TimeSpan>> _action;
private readonly Action<TState, TimeSpan> _recurseCallback;
public InvokeRec2State(IScheduler scheduler, Action<TState, Action<TState, TimeSpan>> action) : base(scheduler)
{
_action = action;
_recurseCallback = (state, time) => InvokeNext(state, time);
}
private void InvokeNext(TState state, TimeSpan time)
{
var sad = new SingleAssignmentDisposable();
Group.Add(sad);
sad.Disposable = Scheduler.ScheduleAction((state, sad, @this: this), time, static nextState => {
nextState.@this.Group.Remove(nextState.sad);
nextState.@this.InvokeFirst(nextState.state);
});
}
internal void InvokeFirst(TState state)
{
_action(state, _recurseCallback);
}
}
private sealed class InvokeRec3State<TState> : InvokeRecBaseState
{
private readonly Action<TState, Action<TState, DateTimeOffset>> _action;
private readonly Action<TState, DateTimeOffset> _recurseCallback;
public InvokeRec3State(IScheduler scheduler, Action<TState, Action<TState, DateTimeOffset>> action) : base(scheduler)
{
_action = action;
_recurseCallback = (state, dtOffset) => InvokeNext(state, dtOffset);
}
private void InvokeNext(TState state, DateTimeOffset dtOffset)
{
var sad = new SingleAssignmentDisposable();
Group.Add(sad);
sad.Disposable = Scheduler.ScheduleAction((state, sad, @this: this), dtOffset, static nextState => {
nextState.@this.Group.Remove(nextState.sad);
nextState.@this.InvokeFirst(nextState.state);
});
}
internal void InvokeFirst(TState state)
{
_action(state, _recurseCallback);
}
}
}
}