// 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.Generic; using System.Threading; using System.Threading.Tasks; namespace System.Linq { public static partial class AsyncEnumerable { public static Task Single(this IAsyncEnumerable source) { if (source == null) throw new ArgumentNullException(nameof(source)); return Single(source, CancellationToken.None); } public static Task Single(this IAsyncEnumerable source, Func predicate) { if (source == null) throw new ArgumentNullException(nameof(source)); if (predicate == null) throw new ArgumentNullException(nameof(predicate)); return Single(source, predicate, CancellationToken.None); } public static Task Single(this IAsyncEnumerable source, Func> predicate) { if (source == null) throw new ArgumentNullException(nameof(source)); if (predicate == null) throw new ArgumentNullException(nameof(predicate)); return Single(source, predicate, CancellationToken.None); } public static Task Single(this IAsyncEnumerable source, CancellationToken cancellationToken) { if (source == null) throw new ArgumentNullException(nameof(source)); return Single_(source, cancellationToken); } public static Task Single(this IAsyncEnumerable source, Func predicate, CancellationToken cancellationToken) { if (source == null) throw new ArgumentNullException(nameof(source)); if (predicate == null) throw new ArgumentNullException(nameof(predicate)); return source.Where(predicate).Single(cancellationToken); } public static Task Single(this IAsyncEnumerable source, Func> predicate, CancellationToken cancellationToken) { if (source == null) throw new ArgumentNullException(nameof(source)); if (predicate == null) throw new ArgumentNullException(nameof(predicate)); return source.Where(predicate).Single(cancellationToken); } public static Task SingleOrDefault(this IAsyncEnumerable source) { if (source == null) throw new ArgumentNullException(nameof(source)); return SingleOrDefault(source, CancellationToken.None); } public static Task SingleOrDefault(this IAsyncEnumerable source, Func predicate) { if (source == null) throw new ArgumentNullException(nameof(source)); if (predicate == null) throw new ArgumentNullException(nameof(predicate)); return SingleOrDefault(source, predicate, CancellationToken.None); } public static Task SingleOrDefault(this IAsyncEnumerable source, Func> predicate) { if (source == null) throw new ArgumentNullException(nameof(source)); if (predicate == null) throw new ArgumentNullException(nameof(predicate)); return SingleOrDefault(source, predicate, CancellationToken.None); } public static Task SingleOrDefault(this IAsyncEnumerable source, CancellationToken cancellationToken) { if (source == null) throw new ArgumentNullException(nameof(source)); return SingleOrDefault_(source, cancellationToken); } public static Task SingleOrDefault(this IAsyncEnumerable source, Func predicate, CancellationToken cancellationToken) { if (source == null) throw new ArgumentNullException(nameof(source)); if (predicate == null) throw new ArgumentNullException(nameof(predicate)); return source.Where(predicate).SingleOrDefault(cancellationToken); } public static Task SingleOrDefault(this IAsyncEnumerable source, Func> predicate, CancellationToken cancellationToken) { if (source == null) throw new ArgumentNullException(nameof(source)); if (predicate == null) throw new ArgumentNullException(nameof(predicate)); return source.Where(predicate).SingleOrDefault(cancellationToken); } private static async Task Single_(IAsyncEnumerable source, CancellationToken cancellationToken) { if (source is IList list) { switch (list.Count) { case 0: throw new InvalidOperationException(Strings.NO_ELEMENTS); case 1: return list[0]; } throw new InvalidOperationException(Strings.MORE_THAN_ONE_ELEMENT); } var e = source.GetAsyncEnumerator(); try { if (!await e.MoveNextAsync(cancellationToken).ConfigureAwait(false)) { throw new InvalidOperationException(Strings.NO_ELEMENTS); } var result = e.Current; if (await e.MoveNextAsync(cancellationToken).ConfigureAwait(false)) { throw new InvalidOperationException(Strings.MORE_THAN_ONE_ELEMENT); } return result; } finally { await e.DisposeAsync().ConfigureAwait(false); } } private static async Task SingleOrDefault_(IAsyncEnumerable source, CancellationToken cancellationToken) { if (source is IList list) { switch (list.Count) { case 0: return default(TSource); case 1: return list[0]; } throw new InvalidOperationException(Strings.MORE_THAN_ONE_ELEMENT); } var e = source.GetAsyncEnumerator(); try { if (!await e.MoveNextAsync(cancellationToken).ConfigureAwait(false)) { return default(TSource); } var result = e.Current; if (!await e.MoveNextAsync(cancellationToken).ConfigureAwait(false)) { return result; } } finally { await e.DisposeAsync().ConfigureAwait(false); } throw new InvalidOperationException(Strings.MORE_THAN_ONE_ELEMENT); } } }