| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | #nullable enable |
| | 5 | |
|
| | 6 | | using System; |
| | 7 | | using System.Collections.Generic; |
| | 8 | | using System.Threading.Tasks; |
| | 9 | |
|
| | 10 | | namespace Azure.Core |
| | 11 | | { |
| | 12 | | internal static class PageableHelpers |
| | 13 | | { |
| | 14 | | public static Pageable<T> CreateEnumerable<T>(Func<int?, Page<T>> firstPageFunc, Func<string?, int?, Page<T>>? n |
| | 15 | | { |
| 16 | 16 | | PageFunc<T> first = (continuationToken, pageSizeHint) => firstPageFunc(pageSizeHint); |
| 8 | 17 | | PageFunc<T>? next = nextPageFunc != null ? new PageFunc<T>(nextPageFunc) : null; |
| 8 | 18 | | return new FuncPageable<T>(first, next, pageSize); |
| | 19 | | } |
| | 20 | |
|
| | 21 | | public static AsyncPageable<T> CreateAsyncEnumerable<T>(Func<int?, Task<Page<T>>> firstPageFunc, Func<string?, i |
| | 22 | | { |
| 12 | 23 | | AsyncPageFunc<T> first = (continuationToken, pageSizeHint) => firstPageFunc(pageSizeHint); |
| 6 | 24 | | AsyncPageFunc<T>? next = nextPageFunc != null ? new AsyncPageFunc<T>(nextPageFunc) : null; |
| 6 | 25 | | return new FuncAsyncPageable<T>(first, next, pageSize); |
| | 26 | | } |
| | 27 | |
|
| | 28 | | internal delegate Task<Page<T>> AsyncPageFunc<T>(string? continuationToken = default, int? pageSizeHint = defaul |
| | 29 | | internal delegate Page<T> PageFunc<T>(string? continuationToken = default, int? pageSizeHint = default); |
| | 30 | |
|
| | 31 | | internal class FuncAsyncPageable<T> : AsyncPageable<T> where T : notnull |
| | 32 | | { |
| | 33 | | private readonly AsyncPageFunc<T> _firstPageFunc; |
| | 34 | | private readonly AsyncPageFunc<T>? _nextPageFunc; |
| | 35 | | private readonly int? _defaultPageSize; |
| | 36 | |
|
| 6 | 37 | | public FuncAsyncPageable(AsyncPageFunc<T> firstPageFunc, AsyncPageFunc<T>? nextPageFunc, int? defaultPageSiz |
| | 38 | | { |
| 6 | 39 | | _firstPageFunc = firstPageFunc; |
| 6 | 40 | | _nextPageFunc = nextPageFunc; |
| 6 | 41 | | _defaultPageSize = defaultPageSize; |
| 6 | 42 | | } |
| | 43 | |
|
| | 44 | | public override async IAsyncEnumerable<Page<T>> AsPages(string? continuationToken = default, int? pageSizeHi |
| | 45 | | { |
| 6 | 46 | | AsyncPageFunc<T>? pageFunc = _firstPageFunc; |
| 6 | 47 | | int? pageSize = pageSizeHint ?? _defaultPageSize; |
| | 48 | | do |
| | 49 | | { |
| 6 | 50 | | Page<T> pageResponse = await pageFunc(continuationToken, pageSize).ConfigureAwait(false); |
| 6 | 51 | | yield return pageResponse; |
| 6 | 52 | | continuationToken = pageResponse.ContinuationToken; |
| 6 | 53 | | pageFunc = _nextPageFunc; |
| 12 | 54 | | } while (!string.IsNullOrEmpty(continuationToken) && pageFunc != null); |
| 6 | 55 | | } |
| | 56 | | } |
| | 57 | |
|
| | 58 | | internal class FuncPageable<T> : Pageable<T> where T : notnull |
| | 59 | | { |
| | 60 | | private readonly PageFunc<T> _firstPageFunc; |
| | 61 | | private readonly PageFunc<T>? _nextPageFunc; |
| | 62 | | private readonly int? _defaultPageSize; |
| | 63 | |
|
| 8 | 64 | | public FuncPageable(PageFunc<T> firstPageFunc, PageFunc<T>? nextPageFunc, int? defaultPageSize = default) |
| | 65 | | { |
| 8 | 66 | | _firstPageFunc = firstPageFunc; |
| 8 | 67 | | _nextPageFunc = nextPageFunc; |
| 8 | 68 | | _defaultPageSize = defaultPageSize; |
| 8 | 69 | | } |
| | 70 | |
|
| | 71 | | public override IEnumerable<Page<T>> AsPages(string? continuationToken = default, int? pageSizeHint = defaul |
| | 72 | | { |
| 8 | 73 | | PageFunc<T>? pageFunc = _firstPageFunc; |
| 8 | 74 | | int? pageSize = pageSizeHint ?? _defaultPageSize; |
| | 75 | | do |
| | 76 | | { |
| 8 | 77 | | Page<T> pageResponse = pageFunc(continuationToken, pageSize); |
| 8 | 78 | | yield return pageResponse; |
| 8 | 79 | | continuationToken = pageResponse.ContinuationToken; |
| 8 | 80 | | pageFunc = _nextPageFunc; |
| 16 | 81 | | } while (!string.IsNullOrEmpty(continuationToken) && pageFunc != null); |
| 8 | 82 | | } |
| | 83 | | } |
| | 84 | | } |
| | 85 | | } |