123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662 |
- using Cysharp.Threading.Tasks.Internal;
- using System;
- using System.Collections.Generic;
- using System.Threading;
- namespace Cysharp.Threading.Tasks.Linq
- {
- public static partial class UniTaskAsyncEnumerable
- {
- public static IUniTaskAsyncEnumerable<TSource> DistinctUntilChanged<TSource>(this IUniTaskAsyncEnumerable<TSource> source)
- {
- return DistinctUntilChanged(source, EqualityComparer<TSource>.Default);
- }
- public static IUniTaskAsyncEnumerable<TSource> DistinctUntilChanged<TSource>(this IUniTaskAsyncEnumerable<TSource> source, IEqualityComparer<TSource> comparer)
- {
- Error.ThrowArgumentNullException(source, nameof(source));
- Error.ThrowArgumentNullException(comparer, nameof(comparer));
- return new DistinctUntilChanged<TSource>(source, comparer);
- }
- public static IUniTaskAsyncEnumerable<TSource> DistinctUntilChanged<TSource, TKey>(this IUniTaskAsyncEnumerable<TSource> source, Func<TSource, TKey> keySelector)
- {
- return DistinctUntilChanged(source, keySelector, EqualityComparer<TKey>.Default);
- }
- public static IUniTaskAsyncEnumerable<TSource> DistinctUntilChanged<TSource, TKey>(this IUniTaskAsyncEnumerable<TSource> source, Func<TSource, TKey> keySelector, IEqualityComparer<TKey> comparer)
- {
- Error.ThrowArgumentNullException(source, nameof(source));
- Error.ThrowArgumentNullException(keySelector, nameof(keySelector));
- Error.ThrowArgumentNullException(comparer, nameof(comparer));
- return new DistinctUntilChanged<TSource, TKey>(source, keySelector, comparer);
- }
- public static IUniTaskAsyncEnumerable<TSource> DistinctUntilChangedAwait<TSource, TKey>(this IUniTaskAsyncEnumerable<TSource> source, Func<TSource, UniTask<TKey>> keySelector)
- {
- return DistinctUntilChangedAwait(source, keySelector, EqualityComparer<TKey>.Default);
- }
- public static IUniTaskAsyncEnumerable<TSource> DistinctUntilChangedAwait<TSource, TKey>(this IUniTaskAsyncEnumerable<TSource> source, Func<TSource, UniTask<TKey>> keySelector, IEqualityComparer<TKey> comparer)
- {
- Error.ThrowArgumentNullException(source, nameof(source));
- Error.ThrowArgumentNullException(keySelector, nameof(keySelector));
- Error.ThrowArgumentNullException(comparer, nameof(comparer));
- return new DistinctUntilChangedAwait<TSource, TKey>(source, keySelector, comparer);
- }
- public static IUniTaskAsyncEnumerable<TSource> DistinctUntilChangedAwaitWithCancellation<TSource, TKey>(this IUniTaskAsyncEnumerable<TSource> source, Func<TSource, CancellationToken, UniTask<TKey>> keySelector)
- {
- return DistinctUntilChangedAwaitWithCancellation(source, keySelector, EqualityComparer<TKey>.Default);
- }
- public static IUniTaskAsyncEnumerable<TSource> DistinctUntilChangedAwaitWithCancellation<TSource, TKey>(this IUniTaskAsyncEnumerable<TSource> source, Func<TSource, CancellationToken, UniTask<TKey>> keySelector, IEqualityComparer<TKey> comparer)
- {
- Error.ThrowArgumentNullException(source, nameof(source));
- Error.ThrowArgumentNullException(keySelector, nameof(keySelector));
- Error.ThrowArgumentNullException(comparer, nameof(comparer));
- return new DistinctUntilChangedAwaitWithCancellation<TSource, TKey>(source, keySelector, comparer);
- }
- }
- internal sealed class DistinctUntilChanged<TSource> : IUniTaskAsyncEnumerable<TSource>
- {
- readonly IUniTaskAsyncEnumerable<TSource> source;
- readonly IEqualityComparer<TSource> comparer;
- public DistinctUntilChanged(IUniTaskAsyncEnumerable<TSource> source, IEqualityComparer<TSource> comparer)
- {
- this.source = source;
- this.comparer = comparer;
- }
- public IUniTaskAsyncEnumerator<TSource> GetAsyncEnumerator(CancellationToken cancellationToken = default)
- {
- return new _DistinctUntilChanged(source, comparer, cancellationToken);
- }
- sealed class _DistinctUntilChanged : MoveNextSource, IUniTaskAsyncEnumerator<TSource>
- {
- readonly IUniTaskAsyncEnumerable<TSource> source;
- readonly IEqualityComparer<TSource> comparer;
- readonly CancellationToken cancellationToken;
- int state = -1;
- IUniTaskAsyncEnumerator<TSource> enumerator;
- UniTask<bool>.Awaiter awaiter;
- Action moveNextAction;
- public _DistinctUntilChanged(IUniTaskAsyncEnumerable<TSource> source, IEqualityComparer<TSource> comparer, CancellationToken cancellationToken)
- {
- this.source = source;
- this.comparer = comparer;
- this.cancellationToken = cancellationToken;
- this.moveNextAction = MoveNext;
- }
- public TSource Current { get; private set; }
- public UniTask<bool> MoveNextAsync()
- {
- if (state == -2) return default;
- completionSource.Reset();
- MoveNext();
- return new UniTask<bool>(this, completionSource.Version);
- }
- void MoveNext()
- {
- REPEAT:
- try
- {
- switch (state)
- {
- case -1: // init
- enumerator = source.GetAsyncEnumerator(cancellationToken);
- awaiter = enumerator.MoveNextAsync().GetAwaiter();
- if (awaiter.IsCompleted)
- {
- goto case -3;
- }
- else
- {
- state = -3;
- awaiter.UnsafeOnCompleted(moveNextAction);
- return;
- }
- case -3: // first
- if (awaiter.GetResult())
- {
- Current = enumerator.Current;
- goto CONTINUE;
- }
- else
- {
- goto DONE;
- }
- case 0: // normal
- awaiter = enumerator.MoveNextAsync().GetAwaiter();
- if (awaiter.IsCompleted)
- {
- goto case 1;
- }
- else
- {
- state = 1;
- awaiter.UnsafeOnCompleted(moveNextAction);
- return;
- }
- case 1:
- if (awaiter.GetResult())
- {
- var v = enumerator.Current;
- if (!comparer.Equals(Current, v))
- {
- Current = v;
- goto CONTINUE;
- }
- else
- {
- state = 0;
- goto REPEAT;
- }
- }
- else
- {
- goto DONE;
- }
- case -2:
- default:
- goto DONE;
- }
- }
- catch (Exception ex)
- {
- state = -2;
- completionSource.TrySetException(ex);
- return;
- }
- DONE:
- state = -2;
- completionSource.TrySetResult(false);
- return;
- CONTINUE:
- state = 0;
- completionSource.TrySetResult(true);
- return;
- }
- public UniTask DisposeAsync()
- {
- return enumerator.DisposeAsync();
- }
- }
- }
- internal sealed class DistinctUntilChanged<TSource, TKey> : IUniTaskAsyncEnumerable<TSource>
- {
- readonly IUniTaskAsyncEnumerable<TSource> source;
- readonly Func<TSource, TKey> keySelector;
- readonly IEqualityComparer<TKey> comparer;
- public DistinctUntilChanged(IUniTaskAsyncEnumerable<TSource> source, Func<TSource, TKey> keySelector, IEqualityComparer<TKey> comparer)
- {
- this.source = source;
- this.keySelector = keySelector;
- this.comparer = comparer;
- }
- public IUniTaskAsyncEnumerator<TSource> GetAsyncEnumerator(CancellationToken cancellationToken = default)
- {
- return new _DistinctUntilChanged(source, keySelector, comparer, cancellationToken);
- }
- sealed class _DistinctUntilChanged : MoveNextSource, IUniTaskAsyncEnumerator<TSource>
- {
- readonly IUniTaskAsyncEnumerable<TSource> source;
- readonly Func<TSource, TKey> keySelector;
- readonly IEqualityComparer<TKey> comparer;
- readonly CancellationToken cancellationToken;
- int state = -1;
- IUniTaskAsyncEnumerator<TSource> enumerator;
- UniTask<bool>.Awaiter awaiter;
- Action moveNextAction;
- TKey prev;
- public _DistinctUntilChanged(IUniTaskAsyncEnumerable<TSource> source, Func<TSource, TKey> keySelector, IEqualityComparer<TKey> comparer, CancellationToken cancellationToken)
- {
- this.source = source;
- this.keySelector = keySelector;
- this.comparer = comparer;
- this.cancellationToken = cancellationToken;
- this.moveNextAction = MoveNext;
- }
- public TSource Current { get; private set; }
- public UniTask<bool> MoveNextAsync()
- {
- if (state == -2) return default;
- completionSource.Reset();
- MoveNext();
- return new UniTask<bool>(this, completionSource.Version);
- }
- void MoveNext()
- {
- REPEAT:
- try
- {
- switch (state)
- {
- case -1: // init
- enumerator = source.GetAsyncEnumerator(cancellationToken);
- awaiter = enumerator.MoveNextAsync().GetAwaiter();
- if (awaiter.IsCompleted)
- {
- goto case -3;
- }
- else
- {
- state = -3;
- awaiter.UnsafeOnCompleted(moveNextAction);
- return;
- }
- case -3: // first
- if (awaiter.GetResult())
- {
- Current = enumerator.Current;
- goto CONTINUE;
- }
- else
- {
- goto DONE;
- }
- case 0: // normal
- awaiter = enumerator.MoveNextAsync().GetAwaiter();
- if (awaiter.IsCompleted)
- {
- goto case 1;
- }
- else
- {
- state = 1;
- awaiter.UnsafeOnCompleted(moveNextAction);
- return;
- }
- case 1:
- if (awaiter.GetResult())
- {
- var v = enumerator.Current;
- var key = keySelector(v);
- if (!comparer.Equals(prev, key))
- {
- prev = key;
- Current = v;
- goto CONTINUE;
- }
- else
- {
- state = 0;
- goto REPEAT;
- }
- }
- else
- {
- goto DONE;
- }
- case -2:
- default:
- goto DONE;
- }
- }
- catch (Exception ex)
- {
- state = -2;
- completionSource.TrySetException(ex);
- return;
- }
- DONE:
- state = -2;
- completionSource.TrySetResult(false);
- return;
- CONTINUE:
- state = 0;
- completionSource.TrySetResult(true);
- return;
- }
- public UniTask DisposeAsync()
- {
- return enumerator.DisposeAsync();
- }
- }
- }
- internal sealed class DistinctUntilChangedAwait<TSource, TKey> : IUniTaskAsyncEnumerable<TSource>
- {
- readonly IUniTaskAsyncEnumerable<TSource> source;
- readonly Func<TSource, UniTask<TKey>> keySelector;
- readonly IEqualityComparer<TKey> comparer;
- public DistinctUntilChangedAwait(IUniTaskAsyncEnumerable<TSource> source, Func<TSource, UniTask<TKey>> keySelector, IEqualityComparer<TKey> comparer)
- {
- this.source = source;
- this.keySelector = keySelector;
- this.comparer = comparer;
- }
- public IUniTaskAsyncEnumerator<TSource> GetAsyncEnumerator(CancellationToken cancellationToken = default)
- {
- return new _DistinctUntilChangedAwait(source, keySelector, comparer, cancellationToken);
- }
- sealed class _DistinctUntilChangedAwait : MoveNextSource, IUniTaskAsyncEnumerator<TSource>
- {
- readonly IUniTaskAsyncEnumerable<TSource> source;
- readonly Func<TSource, UniTask<TKey>> keySelector;
- readonly IEqualityComparer<TKey> comparer;
- readonly CancellationToken cancellationToken;
- int state = -1;
- IUniTaskAsyncEnumerator<TSource> enumerator;
- UniTask<bool>.Awaiter awaiter;
- UniTask<TKey>.Awaiter awaiter2;
- Action moveNextAction;
- TSource enumeratorCurrent;
- TKey prev;
- public _DistinctUntilChangedAwait(IUniTaskAsyncEnumerable<TSource> source, Func<TSource, UniTask<TKey>> keySelector, IEqualityComparer<TKey> comparer, CancellationToken cancellationToken)
- {
- this.source = source;
- this.keySelector = keySelector;
- this.comparer = comparer;
- this.cancellationToken = cancellationToken;
- this.moveNextAction = MoveNext;
- }
- public TSource Current { get; private set; }
- public UniTask<bool> MoveNextAsync()
- {
- if (state == -2) return default;
- completionSource.Reset();
- MoveNext();
- return new UniTask<bool>(this, completionSource.Version);
- }
- void MoveNext()
- {
- REPEAT:
- try
- {
- switch (state)
- {
- case -1: // init
- enumerator = source.GetAsyncEnumerator(cancellationToken);
- awaiter = enumerator.MoveNextAsync().GetAwaiter();
- if (awaiter.IsCompleted)
- {
- goto case -3;
- }
- else
- {
- state = -3;
- awaiter.UnsafeOnCompleted(moveNextAction);
- return;
- }
- case -3: // first
- if (awaiter.GetResult())
- {
- Current = enumerator.Current;
- goto CONTINUE;
- }
- else
- {
- goto DONE;
- }
- case 0: // normal
- awaiter = enumerator.MoveNextAsync().GetAwaiter();
- if (awaiter.IsCompleted)
- {
- goto case 1;
- }
- else
- {
- state = 1;
- awaiter.UnsafeOnCompleted(moveNextAction);
- return;
- }
- case 1:
- if (awaiter.GetResult())
- {
- enumeratorCurrent = enumerator.Current;
- awaiter2 = keySelector(enumeratorCurrent).GetAwaiter();
- if (awaiter2.IsCompleted)
- {
- goto case 2;
- }
- else
- {
- state = 2;
- awaiter2.UnsafeOnCompleted(moveNextAction);
- return;
- }
- }
- else
- {
- goto DONE;
- }
- case 2:
- var key = awaiter2.GetResult();
- if (!comparer.Equals(prev, key))
- {
- prev = key;
- Current = enumeratorCurrent;
- goto CONTINUE;
- }
- else
- {
- state = 0;
- goto REPEAT;
- }
- case -2:
- default:
- goto DONE;
- }
- }
- catch (Exception ex)
- {
- state = -2;
- completionSource.TrySetException(ex);
- return;
- }
- DONE:
- state = -2;
- completionSource.TrySetResult(false);
- return;
- CONTINUE:
- state = 0;
- completionSource.TrySetResult(true);
- return;
- }
- public UniTask DisposeAsync()
- {
- return enumerator.DisposeAsync();
- }
- }
- }
- internal sealed class DistinctUntilChangedAwaitWithCancellation<TSource, TKey> : IUniTaskAsyncEnumerable<TSource>
- {
- readonly IUniTaskAsyncEnumerable<TSource> source;
- readonly Func<TSource, CancellationToken, UniTask<TKey>> keySelector;
- readonly IEqualityComparer<TKey> comparer;
- public DistinctUntilChangedAwaitWithCancellation(IUniTaskAsyncEnumerable<TSource> source, Func<TSource, CancellationToken, UniTask<TKey>> keySelector, IEqualityComparer<TKey> comparer)
- {
- this.source = source;
- this.keySelector = keySelector;
- this.comparer = comparer;
- }
- public IUniTaskAsyncEnumerator<TSource> GetAsyncEnumerator(CancellationToken cancellationToken = default)
- {
- return new _DistinctUntilChangedAwaitWithCancellation(source, keySelector, comparer, cancellationToken);
- }
- sealed class _DistinctUntilChangedAwaitWithCancellation : MoveNextSource, IUniTaskAsyncEnumerator<TSource>
- {
- readonly IUniTaskAsyncEnumerable<TSource> source;
- readonly Func<TSource, CancellationToken, UniTask<TKey>> keySelector;
- readonly IEqualityComparer<TKey> comparer;
- readonly CancellationToken cancellationToken;
- int state = -1;
- IUniTaskAsyncEnumerator<TSource> enumerator;
- UniTask<bool>.Awaiter awaiter;
- UniTask<TKey>.Awaiter awaiter2;
- Action moveNextAction;
- TSource enumeratorCurrent;
- TKey prev;
- public _DistinctUntilChangedAwaitWithCancellation(IUniTaskAsyncEnumerable<TSource> source, Func<TSource, CancellationToken, UniTask<TKey>> keySelector, IEqualityComparer<TKey> comparer, CancellationToken cancellationToken)
- {
- this.source = source;
- this.keySelector = keySelector;
- this.comparer = comparer;
- this.cancellationToken = cancellationToken;
- this.moveNextAction = MoveNext;
- }
- public TSource Current { get; private set; }
- public UniTask<bool> MoveNextAsync()
- {
- if (state == -2) return default;
- completionSource.Reset();
- MoveNext();
- return new UniTask<bool>(this, completionSource.Version);
- }
- void MoveNext()
- {
- REPEAT:
- try
- {
- switch (state)
- {
- case -1: // init
- enumerator = source.GetAsyncEnumerator(cancellationToken);
- awaiter = enumerator.MoveNextAsync().GetAwaiter();
- if (awaiter.IsCompleted)
- {
- goto case -3;
- }
- else
- {
- state = -3;
- awaiter.UnsafeOnCompleted(moveNextAction);
- return;
- }
- case -3: // first
- if (awaiter.GetResult())
- {
- Current = enumerator.Current;
- goto CONTINUE;
- }
- else
- {
- goto DONE;
- }
- case 0: // normal
- awaiter = enumerator.MoveNextAsync().GetAwaiter();
- if (awaiter.IsCompleted)
- {
- goto case 1;
- }
- else
- {
- state = 1;
- awaiter.UnsafeOnCompleted(moveNextAction);
- return;
- }
- case 1:
- if (awaiter.GetResult())
- {
- enumeratorCurrent = enumerator.Current;
- awaiter2 = keySelector(enumeratorCurrent, cancellationToken).GetAwaiter();
- if (awaiter2.IsCompleted)
- {
- goto case 2;
- }
- else
- {
- state = 2;
- awaiter2.UnsafeOnCompleted(moveNextAction);
- return;
- }
- }
- else
- {
- goto DONE;
- }
- case 2:
- var key = awaiter2.GetResult();
- if (!comparer.Equals(prev, key))
- {
- prev = key;
- Current = enumeratorCurrent;
- goto CONTINUE;
- }
- else
- {
- state = 0;
- goto REPEAT;
- }
- case -2:
- default:
- goto DONE;
- }
- }
- catch (Exception ex)
- {
- state = -2;
- completionSource.TrySetException(ex);
- return;
- }
- DONE:
- state = -2;
- completionSource.TrySetResult(false);
- return;
- CONTINUE:
- state = 0;
- completionSource.TrySetResult(true);
- return;
- }
- public UniTask DisposeAsync()
- {
- return enumerator.DisposeAsync();
- }
- }
- }
- }
|