| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 | // 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;using System.Threading.Tasks;namespace System.Reactive.Linq{    public partial class AsyncObservable    {        // REVIEW: Use a tail-recursive sink.        public static IAsyncObservable<TSource> DoWhile<TSource>(IAsyncObservable<TSource> source, Func<bool> condition)        {            if (source == null)                throw new ArgumentNullException(nameof(source));            if (condition == null)                throw new ArgumentNullException(nameof(condition));            return Create(                source,                condition,                static async (source, condition, observer) =>                {                    var subscription = new SerialAsyncDisposable();                    var o = default(IAsyncObserver<TSource>);                    o = AsyncObserver.CreateUnsafe<TSource>(                            observer.OnNextAsync,                            observer.OnErrorAsync,                            MoveNext                        );                    async Task Subscribe()                    {                        var sad = new SingleAssignmentAsyncDisposable();                        await subscription.AssignAsync(sad).ConfigureAwait(false);                        var d = await source.SubscribeSafeAsync(o).ConfigureAwait(false);                        await sad.AssignAsync(d).ConfigureAwait(false);                    }                    async ValueTask MoveNext()                    {                        var b = default(bool);                        try                        {                            b = condition();                        }                        catch (Exception ex)                        {                            await observer.OnErrorAsync(ex).ConfigureAwait(false);                            return;                        }                        if (b)                        {                            await Subscribe().ConfigureAwait(false);                        }                        else                        {                            await observer.OnCompletedAsync().ConfigureAwait(false);                        }                    }                    await Subscribe().ConfigureAwait(false);                    return subscription;                });        }        public static IAsyncObservable<TSource> DoWhile<TSource>(IAsyncObservable<TSource> source, Func<ValueTask<bool>> condition)        {            if (source == null)                throw new ArgumentNullException(nameof(source));            if (condition == null)                throw new ArgumentNullException(nameof(condition));            return Create(                source,                condition,                static async (source, condition, observer) =>                {                    var subscription = new SerialAsyncDisposable();                    var o = default(IAsyncObserver<TSource>);                    o = AsyncObserver.CreateUnsafe<TSource>(                            observer.OnNextAsync,                            observer.OnErrorAsync,                            MoveNext                        );                    async Task Subscribe()                    {                        var sad = new SingleAssignmentAsyncDisposable();                        await subscription.AssignAsync(sad).ConfigureAwait(false);                        var d = await source.SubscribeSafeAsync(o).ConfigureAwait(false);                        await sad.AssignAsync(d).ConfigureAwait(false);                    }                    async ValueTask MoveNext()                    {                        var b = default(bool);                        try                        {                            b = await condition().ConfigureAwait(false);                        }                        catch (Exception ex)                        {                            await observer.OnErrorAsync(ex).ConfigureAwait(false);                            return;                        }                        if (b)                        {                            await Subscribe().ConfigureAwait(false);                        }                        else                        {                            await observer.OnCompletedAsync().ConfigureAwait(false);                        }                    }                    await Subscribe().ConfigureAwait(false);                    return subscription;                });        }    }}
 |