123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the Apache 2.0 License.
- // See the LICENSE file in the project root for more information.
- using System.Collections;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Threading;
- using System.Threading.Tasks;
- // This is internal because System.Linq exposes a public Lookup that we cannot directly use here
- namespace System.Linq.Internal
- {
- internal class Lookup<TKey, TElement> : ILookup<TKey, TElement>, IAsyncIListProvider<IAsyncGrouping<TKey, TElement>>
- {
- private readonly IEqualityComparer<TKey> _comparer;
- private Grouping<TKey, TElement>[] _groupings;
- private Grouping<TKey, TElement> _lastGrouping;
- private Lookup(IEqualityComparer<TKey> comparer)
- {
- _comparer = comparer ?? EqualityComparer<TKey>.Default;
- _groupings = new Grouping<TKey, TElement>[7];
- }
- public int Count { get; private set; }
- public IEnumerable<TElement> this[TKey key]
- {
- get
- {
- var grouping = GetGrouping(key, create: false);
- if (grouping != null)
- {
- return grouping;
- }
- #if NO_ARRAY_EMPTY
- return EmptyArray<TElement>.Value;
- #else
- return Array.Empty<TElement>();
- #endif
- }
- }
- public bool Contains(TKey key)
- {
- return GetGrouping(key, create: false) != null;
- }
- IEnumerator IEnumerable.GetEnumerator()
- {
- return GetEnumerator();
- }
- public IEnumerator<IGrouping<TKey, TElement>> GetEnumerator()
- {
- var g = _lastGrouping;
- if (g != null)
- {
- do
- {
- g = g._next;
- yield return g;
- } while (g != _lastGrouping);
- }
- }
- public IEnumerable<TResult> ApplyResultSelector<TResult>(Func<TKey, IAsyncEnumerable<TElement>, TResult> resultSelector)
- {
- var g = _lastGrouping;
- if (g != null)
- {
- do
- {
- g = g._next;
- g.Trim();
- var result = resultSelector(g._key, g._elements.ToAsyncEnumerable());
- yield return result;
- } while (g != _lastGrouping);
- }
- }
- internal static async Task<Lookup<TKey, TElement>> CreateAsync<TSource>(IAsyncEnumerable<TSource> source, Func<TSource, TKey> keySelector, Func<TSource, TElement> elementSelector, IEqualityComparer<TKey> comparer, CancellationToken cancellationToken)
- {
- Debug.Assert(source != null);
- Debug.Assert(keySelector != null);
- Debug.Assert(elementSelector != null);
- var lookup = new Lookup<TKey, TElement>(comparer);
- await foreach (TSource item in source.WithCancellation(cancellationToken).ConfigureAwait(false))
- {
- var key = keySelector(item);
- var group = lookup.GetGrouping(key, create: true);
- var element = elementSelector(item);
- group.Add(element);
- }
- return lookup;
- }
- internal static async Task<Lookup<TKey, TElement>> CreateAsync(IAsyncEnumerable<TElement> source, Func<TElement, TKey> keySelector, IEqualityComparer<TKey> comparer, CancellationToken cancellationToken)
- {
- Debug.Assert(source != null);
- Debug.Assert(keySelector != null);
- var lookup = new Lookup<TKey, TElement>(comparer);
- await foreach (TElement item in source.WithCancellation(cancellationToken).ConfigureAwait(false))
- {
- var key = keySelector(item);
- lookup.GetGrouping(key, create: true).Add(item);
- }
- return lookup;
- }
- internal static async Task<Lookup<TKey, TElement>> CreateForJoinAsync(IAsyncEnumerable<TElement> source, Func<TElement, TKey> keySelector, IEqualityComparer<TKey> comparer, CancellationToken cancellationToken)
- {
- var lookup = new Lookup<TKey, TElement>(comparer);
- await foreach (TElement item in source.WithCancellation(cancellationToken).ConfigureAwait(false))
- {
- var key = keySelector(item);
- if (key != null)
- {
- lookup.GetGrouping(key, create: true).Add(item);
- }
- }
- return lookup;
- }
- internal Grouping<TKey, TElement> GetGrouping(TKey key, bool create)
- {
- var hashCode = InternalGetHashCode(key);
- for (var g = _groupings[hashCode % _groupings.Length]; g != null; g = g._hashNext)
- {
- if (g._hashCode == hashCode && _comparer.Equals(g._key, key))
- {
- return g;
- }
- }
- if (create)
- {
- if (Count == _groupings.Length)
- {
- Resize();
- }
- var index = hashCode % _groupings.Length;
- var g = new Grouping<TKey, TElement>
- {
- _key = key,
- _hashCode = hashCode,
- _elements = new TElement[1],
- _hashNext = _groupings[index]
- };
- _groupings[index] = g;
- if (_lastGrouping == null)
- {
- g._next = g;
- }
- else
- {
- g._next = _lastGrouping._next;
- _lastGrouping._next = g;
- }
- _lastGrouping = g;
- Count++;
- return g;
- }
- return null;
- }
- internal int InternalGetHashCode(TKey key)
- {
- // Handle comparer implementations that throw when passed null
- return (key == null) ? 0 : _comparer.GetHashCode(key) & 0x7FFFFFFF;
- }
- internal TResult[] ToArray<TResult>(Func<TKey, IAsyncEnumerable<TElement>, TResult> resultSelector)
- {
- var array = new TResult[Count];
- var index = 0;
- var g = _lastGrouping;
- if (g != null)
- {
- do
- {
- g = g._next;
- g.Trim();
- array[index] = resultSelector(g._key, g._elements.ToAsyncEnumerable());
- ++index;
- } while (g != _lastGrouping);
- }
- return array;
- }
- internal List<TResult> ToList<TResult>(Func<TKey, IAsyncEnumerable<TElement>, TResult> resultSelector)
- {
- var list = new List<TResult>(Count);
- var g = _lastGrouping;
- if (g != null)
- {
- do
- {
- g = g._next;
- g.Trim();
- var result = resultSelector(g._key, g._elements.ToAsyncEnumerable());
- list.Add(result);
- } while (g != _lastGrouping);
- }
- return list;
- }
- private void Resize()
- {
- var newSize = checked((Count * 2) + 1);
- var newGroupings = new Grouping<TKey, TElement>[newSize];
- var g = _lastGrouping;
- do
- {
- g = g._next;
- var index = g._hashCode % newSize;
- g._hashNext = newGroupings[index];
- newGroupings[index] = g;
- } while (g != _lastGrouping);
- _groupings = newGroupings;
- }
- public ValueTask<int> GetCountAsync(bool onlyIfCheap, CancellationToken cancellationToken)
- {
- return new ValueTask<int>(Count);
- }
- IAsyncEnumerator<IAsyncGrouping<TKey, TElement>> IAsyncEnumerable<IAsyncGrouping<TKey, TElement>>.GetAsyncEnumerator(CancellationToken cancellationToken)
- {
- cancellationToken.ThrowIfCancellationRequested(); // NB: [LDM-2018-11-28] Equivalent to async iterator behavior.
- return Enumerable.Cast<IAsyncGrouping<TKey, TElement>>(this).ToAsyncEnumerable().GetAsyncEnumerator(cancellationToken);
- }
- ValueTask<List<IAsyncGrouping<TKey, TElement>>> IAsyncIListProvider<IAsyncGrouping<TKey, TElement>>.ToListAsync(CancellationToken cancellationToken)
- {
- cancellationToken.ThrowIfCancellationRequested();
- var list = new List<IAsyncGrouping<TKey, TElement>>(Count);
- var g = _lastGrouping;
- if (g != null)
- {
- do
- {
- g = g._next;
- list.Add(g);
- }
- while (g != _lastGrouping);
- }
- return new ValueTask<List<IAsyncGrouping<TKey, TElement>>>(list);
- }
- ValueTask<IAsyncGrouping<TKey, TElement>[]> IAsyncIListProvider<IAsyncGrouping<TKey, TElement>>.ToArrayAsync(CancellationToken cancellationToken)
- {
- cancellationToken.ThrowIfCancellationRequested();
- var array = new IAsyncGrouping<TKey, TElement>[Count];
- var index = 0;
- var g = _lastGrouping;
- if (g != null)
- {
- do
- {
- g = g._next;
- array[index] = g;
- ++index;
- }
- while (g != _lastGrouping);
- }
- return new ValueTask<IAsyncGrouping<TKey, TElement>[]>(array);
- }
- }
- internal class LookupWithTask<TKey, TElement> : ILookup<TKey, TElement>, IAsyncIListProvider<IAsyncGrouping<TKey, TElement>>
- {
- private readonly IEqualityComparer<TKey> _comparer;
- private Grouping<TKey, TElement>[] _groupings;
- private Grouping<TKey, TElement> _lastGrouping;
- private LookupWithTask(IEqualityComparer<TKey> comparer)
- {
- _comparer = comparer ?? EqualityComparer<TKey>.Default;
- _groupings = new Grouping<TKey, TElement>[7];
- }
- public int Count { get; private set; }
- public IEnumerable<TElement> this[TKey key]
- {
- get
- {
- var grouping = GetGrouping(key, create: false);
- if (grouping != null)
- {
- return grouping;
- }
- #if NO_ARRAY_EMPTY
- return EmptyArray<TElement>.Value;
- #else
- return Array.Empty<TElement>();
- #endif
- }
- }
- public bool Contains(TKey key)
- {
- return GetGrouping(key, create: false) != null;
- }
- IEnumerator IEnumerable.GetEnumerator()
- {
- return GetEnumerator();
- }
- public IEnumerator<IGrouping<TKey, TElement>> GetEnumerator()
- {
- var g = _lastGrouping;
- if (g != null)
- {
- do
- {
- g = g._next;
- yield return g;
- } while (g != _lastGrouping);
- }
- }
- internal static async Task<LookupWithTask<TKey, TElement>> CreateAsync<TSource>(IAsyncEnumerable<TSource> source, Func<TSource, ValueTask<TKey>> keySelector, Func<TSource, ValueTask<TElement>> elementSelector, IEqualityComparer<TKey> comparer, CancellationToken cancellationToken)
- {
- Debug.Assert(source != null);
- Debug.Assert(keySelector != null);
- Debug.Assert(elementSelector != null);
- var lookup = new LookupWithTask<TKey, TElement>(comparer);
- await foreach (TSource item in source.WithCancellation(cancellationToken).ConfigureAwait(false))
- {
- var key = await keySelector(item).ConfigureAwait(false);
- var group = lookup.GetGrouping(key, create: true);
- var element = await elementSelector(item).ConfigureAwait(false);
- group.Add(element);
- }
- return lookup;
- }
- #if !NO_DEEP_CANCELLATION
- internal static async Task<LookupWithTask<TKey, TElement>> CreateAsync<TSource>(IAsyncEnumerable<TSource> source, Func<TSource, CancellationToken, ValueTask<TKey>> keySelector, Func<TSource, CancellationToken, ValueTask<TElement>> elementSelector, IEqualityComparer<TKey> comparer, CancellationToken cancellationToken)
- {
- Debug.Assert(source != null);
- Debug.Assert(keySelector != null);
- Debug.Assert(elementSelector != null);
- var lookup = new LookupWithTask<TKey, TElement>(comparer);
- await foreach (TSource item in source.WithCancellation(cancellationToken).ConfigureAwait(false))
- {
- var key = await keySelector(item, cancellationToken).ConfigureAwait(false);
- var group = lookup.GetGrouping(key, create: true);
- var element = await elementSelector(item, cancellationToken).ConfigureAwait(false);
- group.Add(element);
- }
- return lookup;
- }
- #endif
- internal static async Task<LookupWithTask<TKey, TElement>> CreateAsync(IAsyncEnumerable<TElement> source, Func<TElement, ValueTask<TKey>> keySelector, IEqualityComparer<TKey> comparer, CancellationToken cancellationToken)
- {
- Debug.Assert(source != null);
- Debug.Assert(keySelector != null);
- var lookup = new LookupWithTask<TKey, TElement>(comparer);
- await foreach (TElement item in source.WithCancellation(cancellationToken).ConfigureAwait(false))
- {
- var key = await keySelector(item).ConfigureAwait(false);
- lookup.GetGrouping(key, create: true).Add(item);
- }
- return lookup;
- }
- #if !NO_DEEP_CANCELLATION
- internal static async Task<LookupWithTask<TKey, TElement>> CreateAsync(IAsyncEnumerable<TElement> source, Func<TElement, CancellationToken, ValueTask<TKey>> keySelector, IEqualityComparer<TKey> comparer, CancellationToken cancellationToken)
- {
- Debug.Assert(source != null);
- Debug.Assert(keySelector != null);
- var lookup = new LookupWithTask<TKey, TElement>(comparer);
- await foreach (TElement item in source.WithCancellation(cancellationToken).ConfigureAwait(false))
- {
- var key = await keySelector(item, cancellationToken).ConfigureAwait(false);
- lookup.GetGrouping(key, create: true).Add(item);
- }
- return lookup;
- }
- #endif
- internal static async Task<LookupWithTask<TKey, TElement>> CreateForJoinAsync(IAsyncEnumerable<TElement> source, Func<TElement, ValueTask<TKey>> keySelector, IEqualityComparer<TKey> comparer, CancellationToken cancellationToken)
- {
- var lookup = new LookupWithTask<TKey, TElement>(comparer);
- await foreach (TElement item in source.WithCancellation(cancellationToken).ConfigureAwait(false))
- {
- var key = await keySelector(item).ConfigureAwait(false);
- if (key != null)
- {
- lookup.GetGrouping(key, create: true).Add(item);
- }
- }
- return lookup;
- }
- #if !NO_DEEP_CANCELLATION
- internal static async Task<LookupWithTask<TKey, TElement>> CreateForJoinAsync(IAsyncEnumerable<TElement> source, Func<TElement, CancellationToken, ValueTask<TKey>> keySelector, IEqualityComparer<TKey> comparer, CancellationToken cancellationToken)
- {
- var lookup = new LookupWithTask<TKey, TElement>(comparer);
- await foreach (TElement item in source.WithCancellation(cancellationToken).ConfigureAwait(false))
- {
- var key = await keySelector(item, cancellationToken).ConfigureAwait(false);
- if (key != null)
- {
- lookup.GetGrouping(key, create: true).Add(item);
- }
- }
- return lookup;
- }
- #endif
- internal Grouping<TKey, TElement> GetGrouping(TKey key, bool create)
- {
- var hashCode = InternalGetHashCode(key);
- for (var g = _groupings[hashCode % _groupings.Length]; g != null; g = g._hashNext)
- {
- if (g._hashCode == hashCode && _comparer.Equals(g._key, key))
- {
- return g;
- }
- }
- if (create)
- {
- if (Count == _groupings.Length)
- {
- Resize();
- }
- var index = hashCode % _groupings.Length;
- var g = new Grouping<TKey, TElement>
- {
- _key = key,
- _hashCode = hashCode,
- _elements = new TElement[1],
- _hashNext = _groupings[index]
- };
- _groupings[index] = g;
- if (_lastGrouping == null)
- {
- g._next = g;
- }
- else
- {
- g._next = _lastGrouping._next;
- _lastGrouping._next = g;
- }
- _lastGrouping = g;
- Count++;
- return g;
- }
- return null;
- }
- internal int InternalGetHashCode(TKey key)
- {
- // Handle comparer implementations that throw when passed null
- return (key == null) ? 0 : _comparer.GetHashCode(key) & 0x7FFFFFFF;
- }
- internal async Task<TResult[]> ToArray<TResult>(Func<TKey, IAsyncEnumerable<TElement>, ValueTask<TResult>> resultSelector)
- {
- var array = new TResult[Count];
- var index = 0;
- var g = _lastGrouping;
- if (g != null)
- {
- do
- {
- g = g._next;
- g.Trim();
- array[index] = await resultSelector(g._key, g._elements.ToAsyncEnumerable()).ConfigureAwait(false);
- ++index;
- } while (g != _lastGrouping);
- }
- return array;
- }
- #if !NO_DEEP_CANCELLATION
- internal async Task<TResult[]> ToArray<TResult>(Func<TKey, IAsyncEnumerable<TElement>, CancellationToken, ValueTask<TResult>> resultSelector, CancellationToken cancellationToken)
- {
- cancellationToken.ThrowIfCancellationRequested();
- var array = new TResult[Count];
- var index = 0;
- var g = _lastGrouping;
- if (g != null)
- {
- do
- {
- g = g._next;
- g.Trim();
- array[index] = await resultSelector(g._key, g._elements.ToAsyncEnumerable(), cancellationToken).ConfigureAwait(false);
- ++index;
- } while (g != _lastGrouping);
- }
- return array;
- }
- #endif
- internal async Task<List<TResult>> ToList<TResult>(Func<TKey, IAsyncEnumerable<TElement>, ValueTask<TResult>> resultSelector)
- {
- var list = new List<TResult>(Count);
- var g = _lastGrouping;
- if (g != null)
- {
- do
- {
- g = g._next;
- g.Trim();
- var result = await resultSelector(g._key, g._elements.ToAsyncEnumerable()).ConfigureAwait(false);
- list.Add(result);
- } while (g != _lastGrouping);
- }
- return list;
- }
- #if !NO_DEEP_CANCELLATION
- internal async Task<List<TResult>> ToList<TResult>(Func<TKey, IAsyncEnumerable<TElement>, CancellationToken, ValueTask<TResult>> resultSelector, CancellationToken cancellationToken)
- {
- cancellationToken.ThrowIfCancellationRequested();
- var list = new List<TResult>(Count);
- var g = _lastGrouping;
- if (g != null)
- {
- do
- {
- g = g._next;
- g.Trim();
- var result = await resultSelector(g._key, g._elements.ToAsyncEnumerable(), cancellationToken).ConfigureAwait(false);
- list.Add(result);
- } while (g != _lastGrouping);
- }
- return list;
- }
- #endif
- private void Resize()
- {
- var newSize = checked((Count * 2) + 1);
- var newGroupings = new Grouping<TKey, TElement>[newSize];
- var g = _lastGrouping;
- do
- {
- g = g._next;
- var index = g._hashCode % newSize;
- g._hashNext = newGroupings[index];
- newGroupings[index] = g;
- } while (g != _lastGrouping);
- _groupings = newGroupings;
- }
- public ValueTask<int> GetCountAsync(bool onlyIfCheap, CancellationToken cancellationToken)
- {
- return new ValueTask<int>(Count);
- }
- IAsyncEnumerator<IAsyncGrouping<TKey, TElement>> IAsyncEnumerable<IAsyncGrouping<TKey, TElement>>.GetAsyncEnumerator(CancellationToken cancellationToken)
- {
- cancellationToken.ThrowIfCancellationRequested(); // NB: [LDM-2018-11-28] Equivalent to async iterator behavior.
- return Enumerable.Cast<IAsyncGrouping<TKey, TElement>>(this).ToAsyncEnumerable().GetAsyncEnumerator(cancellationToken);
- }
- ValueTask<List<IAsyncGrouping<TKey, TElement>>> IAsyncIListProvider<IAsyncGrouping<TKey, TElement>>.ToListAsync(CancellationToken cancellationToken)
- {
- cancellationToken.ThrowIfCancellationRequested();
- var list = new List<IAsyncGrouping<TKey, TElement>>(Count);
- var g = _lastGrouping;
- if (g != null)
- {
- do
- {
- g = g._next;
- list.Add(g);
- }
- while (g != _lastGrouping);
- }
- return new ValueTask<List<IAsyncGrouping<TKey, TElement>>>(list);
- }
- ValueTask<IAsyncGrouping<TKey, TElement>[]> IAsyncIListProvider<IAsyncGrouping<TKey, TElement>>.ToArrayAsync(CancellationToken cancellationToken)
- {
- cancellationToken.ThrowIfCancellationRequested();
- var array = new IAsyncGrouping<TKey, TElement>[Count];
- var index = 0;
- var g = _lastGrouping;
- if (g != null)
- {
- do
- {
- g = g._next;
- array[index] = g;
- ++index;
- }
- while (g != _lastGrouping);
- }
- return new ValueTask<IAsyncGrouping<TKey, TElement>[]>(array);
- }
- }
- }
|