-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDataReader.cs
1046 lines (936 loc) · 41.1 KB
/
DataReader.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System.Diagnostics;
namespace Open.Database.Extensions;
/// <summary>
/// Extension methods for Data Readers.
/// </summary>
#pragma warning disable IDE0079 // Remove unnecessary suppression
[SuppressMessage("Design", "CA1068:CancellationToken parameters must come last", Justification = "Overload provided for convienience.")]
[SuppressMessage("Reliability", "CA2016:Forward the 'CancellationToken' parameter to methods that take one", Justification = "Intentional to prevent cancellation exception.")]
#pragma warning restore IDE0079 // Remove unnecessary suppression
public static class DataReaderExtensions
{
/// <summary>
/// Iterates all records from an <see cref="IDataReader"/>.
/// </summary>
/// <param name="reader">The IDataReader to iterate.</param>
/// <param name="handler">The handler function for each <see cref="IDataRecord"/>.</param>
/// <param name="throwOnCancellation">If true, when canceled, may exit the iteration via an exception. Otherwise when canceled will simply stop iterating and return without exception.</param>
/// <param name="cancellationToken">An optional cancellation token for stopping the iteration.</param>
public static void ForEach(
this IDataReader reader,
Action<IDataRecord> handler,
bool throwOnCancellation,
CancellationToken cancellationToken = default)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
if (handler is null) throw new ArgumentNullException(nameof(handler));
Contract.EndContractBlock();
if (cancellationToken.CanBeCanceled)
{
if (throwOnCancellation)
cancellationToken.ThrowIfCancellationRequested();
else if (cancellationToken.IsCancellationRequested)
return;
// The following pattern allows for the reader to complete if it actually reached the end before cancellation.
bool cancelled = false;
while (reader.Read())
{
if (cancelled)
{
handler(reader); // we recieved the results, might as well use them.
if (throwOnCancellation)
cancellationToken.ThrowIfCancellationRequested();
break;
}
else
{
cancelled = cancellationToken.IsCancellationRequested;
handler(reader);
}
}
}
else
{
while (reader.Read())
handler(reader);
}
}
/// <inheritdoc cref="ForEach(IDataReader, Action{IDataRecord}, bool, CancellationToken)"/>
public static void ForEach(
this IDataReader reader,
Action<IDataRecord> handler,
CancellationToken cancellationToken = default)
=> ForEach(reader, handler, false, cancellationToken);
/// <summary>
/// Iterates all records from an <see cref="DbDataReader"/>.
/// </summary>
/// <param name="reader">The IDataReader to iterate.</param>
/// <param name="handler">The handler function for each <see cref="IDataRecord"/>.</param>
/// <param name="useReadAsync">If true (default) will iterate the results using .ReadAsync() otherwise will only Execute the reader asynchronously and then use .Read() to iterate the results but still allowing cancellation.</param>
/// <param name="cancellationToken">Optional cancellation token.</param>
public static async ValueTask ForEachAsync(this DbDataReader reader,
Action<IDataRecord> handler,
bool useReadAsync = true,
CancellationToken cancellationToken = default)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
if (handler is null) throw new ArgumentNullException(nameof(handler));
Contract.EndContractBlock();
if (useReadAsync)
{
while (await reader.ReadAsync(cancellationToken).ConfigureAwait(false))
handler(reader);
}
else
{
ForEach(reader, handler, true, cancellationToken);
}
}
/// <inheritdoc cref="ForEachAsync(DbDataReader, Action{IDataRecord}, bool, CancellationToken)"/>
public static async ValueTask ForEachAsync(
this DbDataReader reader,
Func<IDataRecord, ValueTask> handler,
bool useReadAsync = true,
CancellationToken cancellationToken = default)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
if (handler is null) throw new ArgumentNullException(nameof(handler));
Contract.EndContractBlock();
if (useReadAsync)
{
while (await reader.ReadAsync(cancellationToken).ConfigureAwait(false))
await handler(reader).ConfigureAwait(false);
}
else if (cancellationToken.CanBeCanceled)
{
cancellationToken.ThrowIfCancellationRequested();
// The following pattern allows for the reader to complete if it actually reached the end before cancellation.
bool cancelled = false;
while (reader.Read())
{
if (cancelled)
{
await handler(reader).ConfigureAwait(false); // we recieved the results, might as well use them.
cancellationToken.ThrowIfCancellationRequested();
}
else
{
cancelled = cancellationToken.IsCancellationRequested;
await handler(reader).ConfigureAwait(false);
}
}
}
else
{
while (reader.Read())
await handler(reader).ConfigureAwait(false);
}
}
/// <inheritdoc cref="ForEachAsync(DbDataReader, Action{IDataRecord}, bool, CancellationToken)"/>
public static ValueTask ForEachAsync(this DbDataReader reader, Func<IDataRecord, ValueTask> handler, CancellationToken cancellationToken)
=> ForEachAsync(reader, handler, true, cancellationToken);
static IEnumerable<object[]> AsEnumerableCore(IDataReader reader)
{
Debug.Assert(reader is not null);
if (!reader.Read())
yield break;
int fieldCount = reader.FieldCount;
do
{
object[] row = new object[fieldCount];
reader.GetValues(row);
yield return row;
} while (reader.Read());
}
static IEnumerable<object[]> AsEnumerableCore(IDataReader reader, ArrayPool<object> arrayPool)
{
Debug.Assert(reader is not null);
Debug.Assert(arrayPool is not null);
if (!reader.Read())
yield break;
int fieldCount = reader.FieldCount;
do
{
object[] row = arrayPool.Rent(fieldCount);
reader.GetValues(row);
yield return row;
} while (reader.Read());
}
/// <inheritdoc cref="AsEnumerable(IDataReader, ArrayPool{object?}, int, int[])"/>
public static IEnumerable<object[]> AsEnumerable(this IDataReader reader)
=> reader is null
? throw new ArgumentNullException(nameof(reader))
: AsEnumerableCore(reader);
/// <inheritdoc cref="AsEnumerable(IDataReader, ArrayPool{object?}, int, int[])"/>
public static IEnumerable<object[]> AsEnumerable(this IDataReader reader, ArrayPool<object>? arrayPool)
=> reader is null
? throw new ArgumentNullException(nameof(reader))
: arrayPool is null
? AsEnumerableCore(reader)
: AsEnumerableCore(reader, arrayPool);
static IEnumerable<object[]> AsEnumerableInternalCore(
IDataReader reader, IEnumerable<int> ordinals, bool readStarted)
{
Debug.Assert(reader is not null);
Debug.Assert(ordinals is not null);
if (!readStarted && !reader.Read())
yield break;
IList<int> o = ordinals as IList<int> ?? ordinals.ToArray();
int fieldCount = o.Count;
if (fieldCount == 0)
{
do
{
yield return Array.Empty<object>();
}
while (reader.Read());
yield break;
}
do
{
object[] row = new object[fieldCount];
for (int i = 0; i < fieldCount; i++)
row[i] = reader.GetValue(o[i]);
yield return row;
}
while (reader.Read());
}
static IEnumerable<object[]> AsEnumerableInternalCore(
IDataReader reader, IEnumerable<int> ordinals, bool readStarted, ArrayPool<object> arrayPool)
{
Debug.Assert(reader is not null);
Debug.Assert(ordinals is not null);
Debug.Assert(arrayPool is not null);
if (!readStarted && !reader.Read())
yield break;
IList<int> o = ordinals as IList<int> ?? ordinals.ToArray();
int fieldCount = o.Count;
do
{
object[] row = arrayPool.Rent(fieldCount);
for (int i = 0; i < fieldCount; i++)
row[i] = reader.GetValue(o[i]);
yield return row;
}
while (reader.Read());
}
internal static IEnumerable<object[]> AsEnumerableInternal(
this IDataReader reader,
IEnumerable<int> ordinals,
bool readStarted)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
if (ordinals is null) throw new ArgumentNullException(nameof(ordinals));
Contract.EndContractBlock();
return AsEnumerableInternalCore(reader, ordinals, readStarted);
}
internal static IEnumerable<object[]> AsEnumerableInternal(
this IDataReader reader,
IEnumerable<int> ordinals,
bool readStarted,
ArrayPool<object>? arrayPool)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
if (ordinals is null) throw new ArgumentNullException(nameof(ordinals));
Contract.EndContractBlock();
return arrayPool is null
? AsEnumerableInternalCore(reader, ordinals, readStarted)
: AsEnumerableInternalCore(reader, ordinals, readStarted, arrayPool);
}
/// <inheritdoc cref="AsEnumerable(IDataReader, IEnumerable{int}, ArrayPool{object?})"/>
public static IEnumerable<object[]> AsEnumerable(this IDataReader reader, IEnumerable<int> ordinals)
=> AsEnumerableInternal(reader, ordinals, false);
/// <param name="reader">The reader to enumerate.</param>
/// <param name="n">The first ordinal to include in the request to the reader for each record.</param>
/// <param name="others">The remaining ordinals to request from the reader for each record.</param>
/// <inheritdoc cref="AsEnumerable(IDataReader, ArrayPool{object?}, int, int[])"/>
#if NET8_0_OR_GREATER
public static IEnumerable<object[]> AsEnumerable(this IDataReader reader, int n, params IEnumerable<int> others)
=> AsEnumerableInternal(reader, others.Prepend(n), false);
#else
public static IEnumerable<object[]> AsEnumerable(this IDataReader reader, int n, params int[] others)
=> AsEnumerable(reader, CoreExtensions.Concat(n, others));
#endif
/// <param name="reader">The reader to enumerate.</param>
/// <param name="ordinals">The limited set of ordinals to include. If none are specified, the returned objects will be empty.</param>
/// <param name="arrayPool">The array pool to acquire buffers from.</param>
/// <inheritdoc cref="AsEnumerable(IDataReader, ArrayPool{object?}, int, int[])"/>
public static IEnumerable<object[]> AsEnumerable(this IDataReader reader, IEnumerable<int> ordinals, ArrayPool<object>? arrayPool)
=> AsEnumerableInternal(reader, ordinals, false, arrayPool);
/// <summary>
/// Provides an enumerable for iterating all the remaining values of the current result set of a data reader.
/// </summary>
/// <remarks><see cref="DBNull"/> values are retained.</remarks>
/// <param name="reader">The reader to enumerate.</param>
/// <param name="arrayPool">The array pool to acquire buffers from.</param>
/// <param name="n">The first ordinal to include in the request to the reader for each record.</param>
/// <param name="others">The remaining ordinals to request from the reader for each record.</param>
/// <returns>An enumerable of the values returned from a data reader.</returns>
public static IEnumerable<object[]> AsEnumerable(this IDataReader reader, ArrayPool<object>? arrayPool, int n, params int[] others)
=> AsEnumerable(reader, CoreExtensions.Concat(n, others), arrayPool);
/// <inheritdoc cref="Select{T}(IDataReader, Func{IDataRecord, T}, CancellationToken, bool)"/>
public static IEnumerable<T> Select<T>(this IDataReader reader, Func<IDataRecord, T> transform)
{
return reader is null
? throw new ArgumentNullException(nameof(reader))
: transform is null
? throw new ArgumentNullException(nameof(transform))
: SelectCore();
IEnumerable<T> SelectCore()
{
while (reader.Read())
yield return transform(reader);
}
}
/// <summary>
/// Iterates records from an <see cref="IDataReader"/> and passes the IDataRecord to a transform function.
/// </summary>
/// <typeparam name="T">The return type of the transform function.</typeparam>
/// <param name="reader">The reader to iterate.</param>
/// <param name="transform">The transform function to process each <see cref="IDataRecord"/>.</param>
/// <param name="cancellationToken">A cancellation token for stopping the iteration.</param>
/// <param name="throwOnCancellation">If true, when canceled, may exit the iteration via an exception. Otherwise when canceled will simply stop iterating and return without exception.</param>
/// <returns>An enumerable used to iterate the results.</returns>
public static IEnumerable<T> Select<T>(this IDataReader reader, Func<IDataRecord, T> transform, CancellationToken cancellationToken, bool throwOnCancellation = false)
{
return reader is null
? throw new ArgumentNullException(nameof(reader))
: transform is null
? throw new ArgumentNullException(nameof(transform))
: SelectCore(reader, transform, cancellationToken, throwOnCancellation);
static IEnumerable<T> SelectCore(IDataReader reader, Func<IDataRecord, T> transform, CancellationToken cancellationToken, bool throwOnCancellation)
{
if (cancellationToken.CanBeCanceled)
{
if (throwOnCancellation)
cancellationToken.ThrowIfCancellationRequested();
else if (cancellationToken.IsCancellationRequested)
yield break;
// The following pattern allows for the reader to complete if it actually reached the end before cancellation.
bool cancelled = false;
while (reader.Read())
{
if (cancelled)
{
yield return transform(reader); // we recieved the results, might as well use them.
if (throwOnCancellation)
cancellationToken.ThrowIfCancellationRequested();
break;
}
else
{
cancelled = cancellationToken.IsCancellationRequested;
yield return transform(reader);
}
}
}
else
{
while (reader.Read())
yield return transform(reader);
}
}
}
/// <inheritdoc cref="Select{T}(IDataReader, Func{IDataRecord, T}, CancellationToken, bool)"/>
public static IEnumerable<T> Select<T>(this IDataReader reader, CancellationToken cancellationToken, Func<IDataRecord, T> transform, bool throwOnCancellation = false)
=> Select(reader, transform, cancellationToken, throwOnCancellation);
#if NETSTANDARD2_0
#else
static async IAsyncEnumerable<object[]> AsAsyncEnumerableCore(DbDataReader reader, [EnumeratorCancellation] CancellationToken cancellationToken)
{
Contract.EndContractBlock();
if (cancellationToken.IsCancellationRequested
|| !await reader.ReadAsync(CancellationToken.None).ConfigureAwait(false))
{
yield break;
}
int fieldCount = reader.FieldCount;
do
{
object[] row = new object[fieldCount];
reader.GetValues(row);
yield return row;
}
while (!cancellationToken.IsCancellationRequested
&& await reader.ReadAsync(CancellationToken.None).ConfigureAwait(false));
}
static async IAsyncEnumerable<object[]> AsAsyncEnumerableCore(DbDataReader reader, ArrayPool<object> arrayPool, [EnumeratorCancellation] CancellationToken cancellationToken)
{
if (cancellationToken.IsCancellationRequested || !await reader.ReadAsync().ConfigureAwait(false))
yield break;
int fieldCount = reader.FieldCount;
do
{
object[] row = arrayPool.Rent(fieldCount);
reader.GetValues(row);
yield return row;
}
while (!cancellationToken.IsCancellationRequested && await reader.ReadAsync().ConfigureAwait(false));
}
/// <param name="reader">The reader to enumerate.</param>
/// <param name="cancellationToken">Optional iteration cancellation token.</param>
/// <inheritdoc cref="AsEnumerable(IDataReader, ArrayPool{object?}, int, int[])"/>
public static IAsyncEnumerable<object[]> AsAsyncEnumerable(
this DbDataReader reader,
CancellationToken cancellationToken = default)
=> reader is null
? throw new ArgumentNullException(nameof(reader))
: AsAsyncEnumerableCore(reader, cancellationToken);
/// <param name="reader">The reader to enumerate.</param>
/// <param name="arrayPool">An optional array pool to acquire buffers from.</param>
/// <param name="cancellationToken">Optional iteration cancellation token.</param>
/// <inheritdoc cref="AsEnumerable(IDataReader, ArrayPool{object?}, int, int[])"/>
public static IAsyncEnumerable<object[]> AsAsyncEnumerable(
this DbDataReader reader,
ArrayPool<object>? arrayPool,
CancellationToken cancellationToken = default)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
Contract.EndContractBlock();
return arrayPool is null
? AsAsyncEnumerableCore(reader, cancellationToken)
: AsAsyncEnumerableCore(reader, arrayPool, cancellationToken);
}
static IAsyncEnumerable<object[]> AsAsyncEnumerableInternal(
this DbDataReader reader,
IEnumerable<int> ordinals,
bool readStarted,
CancellationToken cancellationToken)
{
return reader is null
? throw new ArgumentNullException(nameof(reader))
: ordinals is null
? throw new ArgumentNullException(nameof(ordinals))
: AsAsyncEnumerableInternalCore(reader, ordinals, readStarted, cancellationToken);
static async IAsyncEnumerable<object[]> AsAsyncEnumerableInternalCore(DbDataReader reader, IEnumerable<int> ordinals, bool readStarted, [EnumeratorCancellation] CancellationToken cancellationToken)
{
if (!readStarted && (cancellationToken.IsCancellationRequested || !await reader.ReadAsync(CancellationToken.None).ConfigureAwait(false)))
yield break;
IList<int> o = ordinals as IList<int> ?? ordinals.ToArray();
int fieldCount = o.Count;
if (fieldCount == 0)
{
do
{
yield return Array.Empty<object>();
}
while (!cancellationToken.IsCancellationRequested && await reader.ReadAsync(CancellationToken.None).ConfigureAwait(false));
}
else
{
do
{
object[] row = new object[fieldCount];
for (int i = 0; i < fieldCount; i++)
row[i] = reader.GetValue(o[i]);
yield return row;
}
while (!cancellationToken.IsCancellationRequested && await reader.ReadAsync(CancellationToken.None).ConfigureAwait(false));
}
}
}
static IAsyncEnumerable<object[]> AsAsyncEnumerableInternal(
this DbDataReader reader,
IEnumerable<int> ordinals,
bool readStarted,
ArrayPool<object> arrayPool,
CancellationToken cancellationToken)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
if (ordinals is null) throw new ArgumentNullException(nameof(ordinals));
Debug.Assert(arrayPool is not null);
Contract.EndContractBlock();
return AsAsyncEnumerableInternalCore(reader, ordinals, readStarted, arrayPool, cancellationToken);
static async IAsyncEnumerable<object[]> AsAsyncEnumerableInternalCore(
DbDataReader reader,
IEnumerable<int> ordinals,
bool readStarted,
ArrayPool<object> arrayPool,
[EnumeratorCancellation] CancellationToken cancellationToken)
{
if (!readStarted && (cancellationToken.IsCancellationRequested
|| !await reader.ReadAsync(CancellationToken.None).ConfigureAwait(false)))
{
yield break;
}
IList<int> o = ordinals as IList<int> ?? ordinals.ToArray();
int fieldCount = o.Count;
do
{
object[] row = arrayPool.Rent(fieldCount);
for (int i = 0; i < fieldCount; i++)
row[i] = reader.GetValue(o[i]);
yield return row;
}
while (!cancellationToken.IsCancellationRequested
&& await reader.ReadAsync(CancellationToken.None).ConfigureAwait(false));
}
}
/// <inheritdoc cref="AsAsyncEnumerable(DbDataReader, IEnumerable{int}, ArrayPool{object?}, CancellationToken)"/>
public static IAsyncEnumerable<object[]> AsAsyncEnumerable(this DbDataReader reader, IEnumerable<int> ordinals, CancellationToken cancellationToken = default)
=> AsAsyncEnumerableInternal(reader, ordinals, false, cancellationToken);
/// <param name="reader">The reader to enumerate.</param>
/// <param name="ordinals">The limited set of ordinals to include. If none are specified, the returned objects will be empty.</param>
/// <param name="arrayPool">The array pool to acquire buffers from.</param>
/// <param name="cancellationToken">Optional iteration cancellation token.</param>
/// <inheritdoc cref="AsEnumerable(IDataReader, ArrayPool{object?}, int, int[])"/>
public static IAsyncEnumerable<object[]> AsAsyncEnumerable(this DbDataReader reader, IEnumerable<int> ordinals, ArrayPool<object>? arrayPool, CancellationToken cancellationToken = default)
=> arrayPool is null
? AsAsyncEnumerableInternal(reader, ordinals, false, cancellationToken)
: AsAsyncEnumerableInternal(reader, ordinals, false, arrayPool, cancellationToken);
/// <param name="reader">The reader to enumerate.</param>
/// <param name="cancellationToken">The iteration cancellation token.</param>
/// <param name="n">The first ordinal to include in the request to the reader for each record.</param>
/// <param name="others">The remaining ordinals to request from the reader for each record.</param>
/// <inheritdoc cref="AsAsyncEnumerable(DbDataReader, IEnumerable{int}, ArrayPool{object?}?, CancellationToken)"/>
public static IAsyncEnumerable<object[]> AsAsyncEnumerable(this DbDataReader reader, CancellationToken cancellationToken, int n, params int[] others)
=> AsAsyncEnumerable(reader, CoreExtensions.Concat(n, others), cancellationToken);
/// <param name="reader">The reader to enumerate.</param>
/// <param name="arrayPool">The array pool to acquire buffers from.</param>
/// <param name="cancellationToken">The iteration cancellation token.</param>
/// <param name="n">The first ordinal to include in the request to the reader for each record.</param>
/// <param name="others">The remaining ordinals to request from the reader for each record.</param>
/// <inheritdoc cref="AsAsyncEnumerable(DbDataReader, IEnumerable{int}, ArrayPool{object?}, CancellationToken)"/>
public static IAsyncEnumerable<object[]> AsAsyncEnumerable(this DbDataReader reader, ArrayPool<object>? arrayPool, CancellationToken cancellationToken, int n, params int[] others)
=> AsAsyncEnumerable(reader, CoreExtensions.Concat(n, others), arrayPool, cancellationToken);
/// <inheritdoc cref="AsAsyncEnumerable(DbDataReader, ArrayPool{object?}, CancellationToken, int, int[])"/>
public static IAsyncEnumerable<object[]> AsAsyncEnumerable(this DbDataReader reader, int n, params int[] others)
=> AsAsyncEnumerable(reader, CoreExtensions.Concat(n, others));
/// <inheritdoc cref="AsAsyncEnumerable(DbDataReader, ArrayPool{object?}, CancellationToken, int, int[])"/>
public static IAsyncEnumerable<object[]> AsAsyncEnumerable(this DbDataReader reader, ArrayPool<object>? arrayPool, int n, params int[] others)
=> AsAsyncEnumerable(reader, CoreExtensions.Concat(n, others), arrayPool);
/// <summary>
/// Asyncronously iterates all records from a data reader..]
/// </summary>
/// <typeparam name="T">The return type of the transform function.</typeparam>
/// <param name="reader">The DbDataReader to iterate.</param>
/// <param name="transform">The transform function to process each <see cref="IDataRecord"/>.</param>
/// <param name="throwOnCancellation">If true, when canceled, may exit the iteration via an exception. Otherwise when canceled will simply stop iterating and return without exception.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>An enumerable used to iterate the results.</returns>
public static IAsyncEnumerable<T> SelectAsync<T>(this DbDataReader reader,
Func<IDataRecord, T> transform,
bool throwOnCancellation,
CancellationToken cancellationToken = default)
{
return reader is null
? throw new ArgumentNullException(nameof(reader))
: transform is null
? throw new ArgumentNullException(nameof(transform))
: SelectAsyncCore(reader, transform, throwOnCancellation, cancellationToken);
static async IAsyncEnumerable<T> SelectAsyncCore(
DbDataReader reader,
Func<IDataRecord, T> transform,
bool throwOnCancellation,
[EnumeratorCancellation] CancellationToken cancellationToken)
{
if (throwOnCancellation)
{
cancellationToken.ThrowIfCancellationRequested();
while (await reader.ReadAsync(cancellationToken).ConfigureAwait(false))
yield return transform(reader);
}
else
{
if (cancellationToken.IsCancellationRequested) yield break;
while (!cancellationToken.IsCancellationRequested
&& await reader.ReadAsync(CancellationToken.None).ConfigureAwait(false))
{
yield return transform(reader);
}
}
}
}
/// <inheritdoc cref="SelectAsync{T}(DbDataReader, Func{IDataRecord, T}, bool, CancellationToken)"/>
public static IAsyncEnumerable<T> SelectAsync<T>(this DbDataReader reader,
Func<IDataRecord, T> transform,
CancellationToken cancellationToken = default)
=> SelectAsync(reader, transform, false, cancellationToken);
/// <inheritdoc cref="SelectAsync{T}(DbDataReader, Func{IDataRecord, T}, bool, CancellationToken)"/>
public static IAsyncEnumerable<T> SelectAsync<T>(this IDataReader reader,
Func<IDataRecord, ValueTask<T>> transform,
bool throwOnCancellation,
CancellationToken cancellationToken = default)
{
return reader is null
? throw new ArgumentNullException(nameof(reader))
: transform is null
? throw new ArgumentNullException(nameof(transform))
: SelectAsyncCore(reader, transform, throwOnCancellation, cancellationToken);
static async IAsyncEnumerable<T> SelectAsyncCore(IDataReader reader, Func<IDataRecord, ValueTask<T>> transform, bool throwOnCancellation, [EnumeratorCancellation] CancellationToken cancellationToken)
{
if (throwOnCancellation)
{
cancellationToken.ThrowIfCancellationRequested();
if (reader is DbDataReader r)
{
while (await r.ReadAsync(cancellationToken).ConfigureAwait(false))
yield return await transform(r).ConfigureAwait(false);
}
else
{
while (reader.Read())
{
cancellationToken.ThrowIfCancellationRequested();
yield return await transform(reader).ConfigureAwait(false);
}
}
}
else
{
if (cancellationToken.IsCancellationRequested) yield break;
if (reader is DbDataReader r)
{
while (!cancellationToken.IsCancellationRequested && await r.ReadAsync().ConfigureAwait(false))
yield return await transform(r).ConfigureAwait(false);
}
else
{
while (!cancellationToken.IsCancellationRequested && reader.Read())
yield return await transform(reader).ConfigureAwait(false);
}
}
}
}
/// <inheritdoc cref="SelectAsync{T}(DbDataReader, Func{IDataRecord, T}, bool, CancellationToken)"/>
public static IAsyncEnumerable<T> SelectAsync<T>(this IDataReader reader,
Func<IDataRecord, ValueTask<T>> transform,
CancellationToken cancellationToken = default)
=> SelectAsync(reader, transform, false, cancellationToken);
#endif
/// <summary>
/// Shortcut for .Iterate(transform).ToList();
/// </summary>
/// <typeparam name="T">The return type of the transform function.</typeparam>
/// <param name="reader">The IDataReader to iterate.</param>
/// <param name="transform">The transform function to process each <see cref="IDataRecord"/>.</param>
/// <param name="cancellationToken">Optional cancellation token.</param>
/// <returns>A list of the transformed results.</returns>
public static List<T> ToList<T>(this IDataReader reader,
Func<IDataRecord, T> transform, CancellationToken cancellationToken = default)
=> reader.Select(transform, cancellationToken).ToList();
/// <summary>
/// Asynchronously iterates all records using the data reader and returns the desired results as a list.
/// </summary>
/// <typeparam name="T">The return type of the transform function.</typeparam>
/// <param name="reader">The SqlDataReader to read from.</param>
/// <param name="transform">The transform function to process each <see cref="IDataRecord"/>.</param>
/// <param name="cancellationToken">Optional cancellation token.</param>
/// <returns>A task containing a list of all results.</returns>
public static async ValueTask<List<T>> ToListAsync<T>(this DbDataReader reader,
Func<IDataRecord, T> transform, CancellationToken cancellationToken = default)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
if (transform is null) throw new ArgumentNullException(nameof(transform));
Contract.EndContractBlock();
var list = new List<T>();
while (await reader.ReadAsync(cancellationToken).ConfigureAwait(false)) list.Add(transform(reader));
return list;
}
/// <inheritdoc cref="ToListAsync{T}(DbDataReader, Func{IDataRecord, T}, CancellationToken)"/>
public static async ValueTask<List<T>> ToListAsync<T>(this DbDataReader reader,
Func<IDataRecord, ValueTask<T>> transform, CancellationToken cancellationToken = default)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
if (transform is null) throw new ArgumentNullException(nameof(transform));
Contract.EndContractBlock();
var list = new List<T>();
while (await reader.ReadAsync(cancellationToken).ConfigureAwait(false)) list.Add(await transform(reader).ConfigureAwait(false));
return list;
}
/// <summary>
/// Shortcut for .Select(transform).ToArray();
/// </summary>
/// <typeparam name="T">The return type of the transform function.</typeparam>
/// <param name="reader">The IDataReader to iterate.</param>
/// <param name="transform">The transform function to process each <see cref="IDataRecord"/>.</param>
/// <returns>An array of the transformed results.</returns>
public static T[] ToArray<T>(this IDataReader reader, Func<IDataRecord, T> transform)
=> reader.Select(transform).ToArray();
/// <summary>
/// Shortcut for .Select(transform).ToImmutableArray();
/// </summary>
/// <typeparam name="T">The return type of the transform function.</typeparam>
/// <param name="reader">The IDataReader to iterate.</param>
/// <param name="transform">The transform function to process each <see cref="IDataRecord"/>.</param>
/// <returns>An immutable array of the transformed results.</returns>
public static ImmutableArray<T> ToImmutableArray<T>(this IDataReader reader, Func<IDataRecord, T> transform)
=> reader.Select(transform).ToImmutableArray();
/// <summary>
/// Loads all remaining data from an <see cref="IDataReader"/> into a DataTable.
/// </summary>
/// <param name="reader">The IDataReader to load data from.</param>
/// <returns>The resultant DataTable.</returns>
public static DataTable ToDataTable(this IDataReader reader)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
Contract.EndContractBlock();
var table = new DataTable();
table.Load(reader);
return table;
}
/// <summary>
/// Loads all data from a command through an <see cref="IDataReader"/> into a DataTables.
/// Calls .NextResult() to check for more results.
/// </summary>
/// <param name="reader">The IDataReader to load data from.</param>
/// <returns>The resultant list of DataTables.</returns>
public static List<DataTable> ToDataTables(this IDataReader reader)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
Contract.EndContractBlock();
var results = new List<DataTable>();
do
{
results.Add(reader.ToDataTable());
}
while (reader.NextResult());
return results;
}
/// <summary>
/// Iterates an <see cref="IDataReader"/> while the predicate returns true.
/// </summary>
/// <param name="reader">The <see cref="IDataReader"/> to iterate.</param>
/// <param name="predicate">The handler function that processes each <see cref="IDataRecord"/> and decides if iteration should continue.</param>
/// <param name="throwOnCancellation">If true, when canceled, may exit the iteration via an exception. Otherwise when canceled will simply stop iterating and return without exception.</param>
/// <param name="cancellationToken">An optional cancellation token for stopping the iteration.</param>
public static void IterateWhile(this IDataReader reader, Func<IDataRecord, bool> predicate, bool throwOnCancellation, CancellationToken cancellationToken = default)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
if (predicate is null) throw new ArgumentNullException(nameof(predicate));
Contract.EndContractBlock();
if (cancellationToken.CanBeCanceled)
{
if (throwOnCancellation)
cancellationToken.ThrowIfCancellationRequested();
else if (cancellationToken.IsCancellationRequested)
return;
// The following pattern allows for the reader to complete if it actually reached the end before cancellation.
bool cancelled = false;
while (reader.Read() && predicate(reader))
{
if (cancelled)
{
if (throwOnCancellation)
cancellationToken.ThrowIfCancellationRequested();
break;
}
else
{
cancelled = cancellationToken.IsCancellationRequested;
}
}
}
else
{
while (reader.Read() && predicate(reader)) { }
}
}
/// <inheritdoc cref="IterateWhile(IDataReader, Func{IDataRecord, bool}, bool, CancellationToken)"/>
public static void IterateWhile(this IDataReader reader, Func<IDataRecord, bool> predicate, CancellationToken cancellationToken = default)
=> IterateWhile(reader, predicate, false, cancellationToken);
/// <inheritdoc cref="IterateWhile(IDataReader, Func{IDataRecord, bool}, bool, CancellationToken)"/>
public static async ValueTask IterateWhileAsync(
this DbDataReader reader,
Func<IDataRecord, bool> predicate,
CancellationToken cancellationToken = default)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
if (predicate is null) throw new ArgumentNullException(nameof(predicate));
Contract.EndContractBlock();
while (await reader.ReadAsync(cancellationToken).ConfigureAwait(false) && predicate(reader)) { }
}
/// <param name="reader">The DbDataReader to load data from.</param>
/// <param name="predicate">The handler function that processes each <see cref="IDataRecord"/> and decides if iteration should continue.</param>
/// <param name="useReadAsync">If true will iterate the results using .ReadAsync() otherwise will only Execute the reader asynchronously and then use .Read() to iterate the results but still allowing cancellation.</param>
/// <param name="cancellationToken">Optional cancellation token.</param>
/// <inheritdoc cref="IterateWhile(IDataReader, Func{IDataRecord, bool}, bool, CancellationToken)"/>
public static async ValueTask IterateWhileAsync(this DbDataReader reader, Func<IDataRecord, bool> predicate, bool useReadAsync, CancellationToken cancellationToken = default)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
if (predicate is null) throw new ArgumentNullException(nameof(predicate));
Contract.EndContractBlock();
if (useReadAsync)
{
while (await reader.ReadAsync(cancellationToken).ConfigureAwait(false) && predicate(reader)) { }
}
else if (cancellationToken.CanBeCanceled)
{
cancellationToken.ThrowIfCancellationRequested();
while (reader.Read() && predicate(reader))
cancellationToken.ThrowIfCancellationRequested();
}
else
{
while (reader.Read() && predicate(reader)) { }
}
}
static async ValueTask IterateWhileAsyncInternal(IDataReader reader, Func<IDataRecord, ValueTask<bool>> predicate, CancellationToken cancellationToken)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
if (predicate is null) throw new ArgumentNullException(nameof(predicate));
Contract.EndContractBlock();
if (cancellationToken.CanBeCanceled)
{
cancellationToken.ThrowIfCancellationRequested();
// The following pattern allows for the reader to complete if it actually reached the end before cancellation.
bool cancelled = false;
while (reader.Read() && await predicate(reader).ConfigureAwait(false))
{
if (cancelled)
{
cancellationToken.ThrowIfCancellationRequested();
break;
}
else
{
cancelled = cancellationToken.IsCancellationRequested;
}
}
}
else
{
while (reader.Read() && await predicate(reader).ConfigureAwait(false)) { }
}
}
/// <inheritdoc cref="IterateWhile(IDataReader, Func{IDataRecord, bool}, bool, CancellationToken)"/>
public static async ValueTask IterateWhileAsync(
this IDataReader reader,
Func<IDataRecord, ValueTask<bool>> predicate,
CancellationToken cancellationToken = default)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
if (predicate is null) throw new ArgumentNullException(nameof(predicate));
Contract.EndContractBlock();
if (reader is DbDataReader r)
{
while (await r.ReadAsync(cancellationToken).ConfigureAwait(false) && await predicate(reader).ConfigureAwait(false)) { }
}
else
{
// Does not use .ReadAsync();
await IterateWhileAsyncInternal(reader, predicate, cancellationToken).ConfigureAwait(false);
}
}
/// <param name="reader">The <see cref="IDataReader"/> to iterate.</param>
/// <param name="predicate">The handler function that processes each <see cref="IDataRecord"/> and decides if iteration should continue.</param>
/// <param name="useReadAsync">If true will iterate the results using .ReadAsync() otherwise will only Execute the reader asynchronously and then use .Read() to iterate the results.</param>
/// <param name="cancellationToken">Optional cancellation token.</param>
/// <inheritdoc cref="IterateWhile(IDataReader, Func{IDataRecord, bool}, bool, CancellationToken)"/>
public static ValueTask IterateWhileAsync(this IDataReader reader, Func<IDataRecord, ValueTask<bool>> predicate, bool useReadAsync, CancellationToken cancellationToken = default)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
if (predicate is null) throw new ArgumentNullException(nameof(predicate));
Contract.EndContractBlock();
return useReadAsync
? IterateWhileAsync(reader, predicate, cancellationToken)
// Does not use .ReadAsync();
: IterateWhileAsyncInternal(reader, predicate, cancellationToken);
}
/// <summary>
/// Reads the first column values from every record.
/// <see cref="DBNull"/> values are then converted to null.
/// </summary>
/// <returns>The enumerable first ordinal values.</returns>
public static IEnumerable<object?> FirstOrdinalResults(this IDataReader reader)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
Contract.EndContractBlock();
var results = new Queue<object>(reader.Select(r => r.GetValue(0)));
return results.DequeueEach().DBNullToNull();
}
/// <summary>
/// Reads the first column values from every record.
/// Any<see cref="DBNull"/> values are then converted to null and casted to type T0;
/// </summary>
/// <returns>The enumerable of casted values.</returns>
public static IEnumerable<T0> FirstOrdinalResults<T0>(this IDataReader reader)
=> reader is DbDataReader dbr
? dbr.FirstOrdinalResults<T0>()
: reader.FirstOrdinalResults().Cast<T0>();
/// <summary>
/// Reads the first column values from every record.
/// Any<see cref="DBNull"/> values are then converted to null and casted to type T0;
/// </summary>
/// <returns>The enumerable of casted values.</returns>
public static IEnumerable<T0> FirstOrdinalResults<T0>(this DbDataReader reader)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
Contract.EndContractBlock();
var results = new Queue<T0>();
while (reader.Read())
{
results.Enqueue(
reader.IsDBNull(0)
? default!
: reader.GetFieldValue<T0>(0)
);
}
return results.DequeueEach();
}
/// <summary>
/// Reads the first column values from every record.
/// <see cref="DBNull"/> values are converted to null.
/// </summary>
/// <param name="reader">The IDataReader to iterate.</param>
/// <param name="useReadAsync">If true (default) will iterate the results using .ReadAsync() otherwise will only Execute the reader asynchronously and then use .Read() to iterate the results but still allowing cancellation.</param>
/// <param name="cancellationToken">Optional cancellation token.</param>
/// <returns>The list of values.</returns>
public static async ValueTask<IEnumerable<object?>> FirstOrdinalResultsAsync(this DbDataReader reader, bool useReadAsync = true, CancellationToken cancellationToken = default)
{
if (reader is null) throw new ArgumentNullException(nameof(reader));
Contract.EndContractBlock();
var results = new Queue<object>();
await reader.ForEachAsync(r => results.Enqueue(r.GetValue(0)), useReadAsync, cancellationToken).ConfigureAwait(false);
return results.DequeueEach().DBNullToNull();
}
/// <summary>
/// Reads the first column values from every record.
/// Any<see cref="DBNull"/> values are then converted to null and casted to type T0;
/// </summary>
/// <param name="reader">The IDataReader to iterate.</param>
/// <param name="useReadAsync">If true (default) will iterate the results using .ReadAsync() otherwise will only Execute the reader asynchronously and then use .Read() to iterate the results but still allowing cancellation.</param>
/// <param name="cancellationToken">Optional cancellation token.</param>