You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
164 lines
6.0 KiB
164 lines
6.0 KiB
using Cysharp.Threading.Tasks.Internal; |
|
using System; |
|
using System.Threading; |
|
|
|
namespace Cysharp.Threading.Tasks.Linq |
|
{ |
|
public static partial class UniTaskAsyncEnumerable |
|
{ |
|
public static IUniTaskAsyncEnumerable<TSource> TakeUntilCanceled<TSource>(this IUniTaskAsyncEnumerable<TSource> source, CancellationToken cancellationToken) |
|
{ |
|
Error.ThrowArgumentNullException(source, nameof(source)); |
|
|
|
return new TakeUntilCanceled<TSource>(source, cancellationToken); |
|
} |
|
} |
|
|
|
internal sealed class TakeUntilCanceled<TSource> : IUniTaskAsyncEnumerable<TSource> |
|
{ |
|
readonly IUniTaskAsyncEnumerable<TSource> source; |
|
readonly CancellationToken cancellationToken; |
|
|
|
public TakeUntilCanceled(IUniTaskAsyncEnumerable<TSource> source, CancellationToken cancellationToken) |
|
{ |
|
this.source = source; |
|
this.cancellationToken = cancellationToken; |
|
} |
|
|
|
public IUniTaskAsyncEnumerator<TSource> GetAsyncEnumerator(CancellationToken cancellationToken = default) |
|
{ |
|
return new _TakeUntilCanceled(source, this.cancellationToken, cancellationToken); |
|
} |
|
|
|
sealed class _TakeUntilCanceled : MoveNextSource, IUniTaskAsyncEnumerator<TSource> |
|
{ |
|
static readonly Action<object> CancelDelegate1 = OnCanceled1; |
|
static readonly Action<object> CancelDelegate2 = OnCanceled2; |
|
static readonly Action<object> MoveNextCoreDelegate = MoveNextCore; |
|
|
|
readonly IUniTaskAsyncEnumerable<TSource> source; |
|
CancellationToken cancellationToken1; |
|
CancellationToken cancellationToken2; |
|
CancellationTokenRegistration cancellationTokenRegistration1; |
|
CancellationTokenRegistration cancellationTokenRegistration2; |
|
|
|
bool isCanceled; |
|
IUniTaskAsyncEnumerator<TSource> enumerator; |
|
UniTask<bool>.Awaiter awaiter; |
|
|
|
public _TakeUntilCanceled(IUniTaskAsyncEnumerable<TSource> source, CancellationToken cancellationToken1, CancellationToken cancellationToken2) |
|
{ |
|
this.source = source; |
|
this.cancellationToken1 = cancellationToken1; |
|
this.cancellationToken2 = cancellationToken2; |
|
|
|
if (cancellationToken1.CanBeCanceled) |
|
{ |
|
this.cancellationTokenRegistration1 = cancellationToken1.RegisterWithoutCaptureExecutionContext(CancelDelegate1, this); |
|
} |
|
|
|
if (cancellationToken1 != cancellationToken2 && cancellationToken2.CanBeCanceled) |
|
{ |
|
this.cancellationTokenRegistration2 = cancellationToken2.RegisterWithoutCaptureExecutionContext(CancelDelegate2, this); |
|
} |
|
TaskTracker.TrackActiveTask(this, 3); |
|
} |
|
|
|
public TSource Current { get; private set; } |
|
|
|
public UniTask<bool> MoveNextAsync() |
|
{ |
|
if (cancellationToken1.IsCancellationRequested) isCanceled = true; |
|
if (cancellationToken2.IsCancellationRequested) isCanceled = true; |
|
|
|
if (enumerator == null) |
|
{ |
|
enumerator = source.GetAsyncEnumerator(cancellationToken2); // use only AsyncEnumerator provided token. |
|
} |
|
|
|
if (isCanceled) return CompletedTasks.False; |
|
|
|
completionSource.Reset(); |
|
SourceMoveNext(); |
|
return new UniTask<bool>(this, completionSource.Version); |
|
} |
|
|
|
void SourceMoveNext() |
|
{ |
|
try |
|
{ |
|
awaiter = enumerator.MoveNextAsync().GetAwaiter(); |
|
if (awaiter.IsCompleted) |
|
{ |
|
MoveNextCore(this); |
|
} |
|
else |
|
{ |
|
awaiter.SourceOnCompleted(MoveNextCoreDelegate, this); |
|
} |
|
} |
|
catch (Exception ex) |
|
{ |
|
completionSource.TrySetException(ex); |
|
} |
|
} |
|
|
|
static void MoveNextCore(object state) |
|
{ |
|
var self = (_TakeUntilCanceled)state; |
|
|
|
if (self.TryGetResult(self.awaiter, out var result)) |
|
{ |
|
if (result) |
|
{ |
|
if (self.isCanceled) |
|
{ |
|
self.completionSource.TrySetResult(false); |
|
} |
|
else |
|
{ |
|
self.Current = self.enumerator.Current; |
|
self.completionSource.TrySetResult(true); |
|
} |
|
} |
|
else |
|
{ |
|
self.completionSource.TrySetResult(false); |
|
} |
|
} |
|
} |
|
|
|
static void OnCanceled1(object state) |
|
{ |
|
var self = (_TakeUntilCanceled)state; |
|
if (!self.isCanceled) |
|
{ |
|
self.cancellationTokenRegistration2.Dispose(); |
|
self.completionSource.TrySetResult(false); |
|
} |
|
} |
|
|
|
static void OnCanceled2(object state) |
|
{ |
|
var self = (_TakeUntilCanceled)state; |
|
if (!self.isCanceled) |
|
{ |
|
self.cancellationTokenRegistration1.Dispose(); |
|
self.completionSource.TrySetResult(false); |
|
} |
|
} |
|
|
|
public UniTask DisposeAsync() |
|
{ |
|
TaskTracker.RemoveTracking(this); |
|
cancellationTokenRegistration1.Dispose(); |
|
cancellationTokenRegistration2.Dispose(); |
|
if (enumerator != null) |
|
{ |
|
return enumerator.DisposeAsync(); |
|
} |
|
return default; |
|
} |
|
} |
|
} |
|
} |