forked from DataJuggler/BlazorFileUpload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPreFetchingSequence.cs
58 lines (52 loc) · 1.74 KB
/
PreFetchingSequence.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
using System;
using System.Collections.Generic;
using System.Threading;
namespace BlazorInputFile
{
internal class PreFetchingSequence<T>
{
private readonly Func<long, CancellationToken, T> _fetchCallback;
private readonly int _maxBufferCapacity;
private readonly long _totalFetchableItems;
private readonly Queue<T> _buffer;
private long _maxFetchedIndex;
public PreFetchingSequence(Func<long, CancellationToken, T> fetchCallback, long totalFetchableItems, int maxBufferCapacity)
{
_fetchCallback = fetchCallback;
_buffer = new Queue<T>();
_maxBufferCapacity = maxBufferCapacity;
_totalFetchableItems = totalFetchableItems;
}
public T ReadNext(CancellationToken cancellationToken)
{
EnqueueFetches(cancellationToken);
if (_buffer.Count == 0)
{
throw new InvalidOperationException("There are no more entries to read");
}
var next = _buffer.Dequeue();
EnqueueFetches(cancellationToken);
return next;
}
public bool TryPeekNext(out T result)
{
if (_buffer.Count > 0)
{
result = _buffer.Peek();
return true;
}
else
{
result = default;
return false;
}
}
private void EnqueueFetches(CancellationToken cancellationToken)
{
while (_buffer.Count < _maxBufferCapacity && _maxFetchedIndex < _totalFetchableItems)
{
_buffer.Enqueue(_fetchCallback(_maxFetchedIndex++, cancellationToken));
}
}
}
}