-
Notifications
You must be signed in to change notification settings - Fork 874
Expand file tree
/
Copy pathNpgsqlReadBuffer.cs
More file actions
809 lines (690 loc) · 30 KB
/
NpgsqlReadBuffer.cs
File metadata and controls
809 lines (690 loc) · 30 KB
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
using System;
using System.Buffers;
using System.Buffers.Binary;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Net.Sockets;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Npgsql.Util;
using static System.Threading.Timeout;
namespace Npgsql.Internal;
/// <summary>
/// A buffer used by Npgsql to read data from the socket efficiently.
/// Provides methods which decode different values types and tracks the current position.
/// </summary>
[Experimental(NpgsqlDiagnostics.ConvertersExperimental)]
sealed partial class NpgsqlReadBuffer : IDisposable
{
#region Fields and Properties
#if DEBUG
internal static readonly bool BufferBoundsChecks = true;
#else
internal static readonly bool BufferBoundsChecks = Statics.EnableAssertions;
#endif
public NpgsqlConnection Connection => Connector.Connection!;
internal readonly NpgsqlConnector Connector;
internal Stream Underlying { private get; set; }
readonly Socket? _underlyingSocket;
internal ResettableCancellationTokenSource Cts { get; }
readonly MetricsReporter? _metricsReporter;
/// <summary>
/// Timeout for sync and async reads
/// </summary>
internal TimeSpan Timeout
{
get => Cts.Timeout;
set
{
if (Cts.Timeout != value)
{
Debug.Assert(_underlyingSocket != null);
_underlyingSocket.ReceiveTimeout = (int)value.TotalMilliseconds;
Cts.Timeout = value;
}
}
}
/// <summary>
/// The total byte length of the buffer.
/// </summary>
internal int Size { get; }
internal Encoding TextEncoding { get; }
/// <summary>
/// Same as <see cref="TextEncoding"/>, except that it does not throw an exception if an invalid char is
/// encountered (exception fallback), but rather replaces it with a question mark character (replacement
/// fallback).
/// </summary>
internal Encoding RelaxedTextEncoding { get; }
internal int ReadPosition { get; set; }
internal int ReadBytesLeft => FilledBytes - ReadPosition;
internal PgReader PgReader { get; }
long _flushedBytes; // this will always fit at least one message.
internal long CumulativeReadPosition
// Cast to uint to remove the sign extension (ReadPosition is never negative)
=> _flushedBytes + (uint)ReadPosition;
internal readonly byte[] Buffer;
internal int FilledBytes;
internal ReadOnlySpan<byte> Span => Buffer.AsSpan(ReadPosition, ReadBytesLeft);
readonly bool _usePool;
bool _disposed;
/// <summary>
/// The minimum buffer size possible.
/// </summary>
internal const int MinimumSize = 4096;
internal const int DefaultSize = 8192;
#endregion
#region Constructors
internal NpgsqlReadBuffer(
NpgsqlConnector? connector,
Stream stream,
Socket? socket,
int size,
Encoding textEncoding,
Encoding relaxedTextEncoding,
bool usePool = false)
{
ArgumentOutOfRangeException.ThrowIfLessThan(size, MinimumSize);
Connector = connector!; // TODO: Clean this up
Underlying = stream;
_underlyingSocket = socket;
_metricsReporter = connector?.DataSource.MetricsReporter;
Cts = new ResettableCancellationTokenSource();
Buffer = usePool ? ArrayPool<byte>.Shared.Rent(size) : new byte[size];
Size = Buffer.Length;
_usePool = usePool;
TextEncoding = textEncoding;
RelaxedTextEncoding = relaxedTextEncoding;
PgReader = new PgReader(this);
}
#endregion
#region I/O
public void Ensure(int count)
=> Ensure(count, async: false, readingNotifications: false).GetAwaiter().GetResult();
public ValueTask Ensure(int count, bool async)
=> Ensure(count, async, readingNotifications: false);
public ValueTask EnsureAsync(int count)
=> Ensure(count, async: true, readingNotifications: false);
// Can't share due to Span vs Memory difference (can't make a memory out of a span).
int ReadWithTimeout(Span<byte> buffer)
{
while (true)
{
try
{
var read = Underlying.Read(buffer);
_flushedBytes = unchecked(_flushedBytes + read);
NpgsqlEventSource.Log.BytesRead(read);
return read;
}
catch (Exception ex)
{
var connector = Connector;
if (ex is IOException { InnerException: SocketException { SocketErrorCode: SocketError.TimedOut } })
{
// If we should attempt PostgreSQL cancellation, do it the first time we get a timeout.
// TODO: As an optimization, we can still attempt to send a cancellation request, but after
// that immediately break the connection
if (connector is { AttemptPostgresCancellation: true, PostgresCancellationPerformed: false }
&& connector.PerformPostgresCancellation())
{
// Note that if the cancellation timeout is negative, we flow down and break the
// connection immediately.
var cancellationTimeout = connector.Settings.CancellationTimeout;
if (cancellationTimeout >= 0)
{
if (cancellationTimeout > 0)
Timeout = TimeSpan.FromMilliseconds(cancellationTimeout);
continue;
}
}
// If we're here, the PostgreSQL cancellation either failed or skipped entirely.
// Break the connection, bubbling up the correct exception type (cancellation or timeout)
throw connector.Break(CreateCancelException(connector));
}
throw connector.Break(new NpgsqlException("Exception while reading from stream", ex));
}
}
}
async ValueTask<int> ReadWithTimeoutAsync(Memory<byte> buffer, CancellationToken cancellationToken)
{
var finalCt = Timeout != InfiniteTimeSpan
? Cts.Start(cancellationToken)
: Cts.Reset();
while (true)
{
try
{
var read = await Underlying.ReadAsync(buffer, finalCt).ConfigureAwait(false);
_flushedBytes = unchecked(_flushedBytes + read);
Cts.Stop();
NpgsqlEventSource.Log.BytesRead(read);
return read;
}
catch (Exception ex)
{
var connector = Connector;
Cts.Stop();
switch (ex)
{
// Read timeout
case OperationCanceledException:
// Note that mono throws SocketException with the wrong error (see #1330)
case IOException e when (e.InnerException as SocketException)?.SocketErrorCode ==
(Type.GetType("Mono.Runtime") == null ? SocketError.TimedOut : SocketError.WouldBlock):
{
Debug.Assert(ex is OperationCanceledException);
// If we should attempt PostgreSQL cancellation, do it the first time we get a timeout.
// TODO: As an optimization, we can still attempt to send a cancellation request, but after
// that immediately break the connection
if (connector is { AttemptPostgresCancellation: true, PostgresCancellationPerformed: false } &&
connector.PerformPostgresCancellation())
{
// Note that if the cancellation timeout is negative, we flow down and break the
// connection immediately.
var cancellationTimeout = connector.Settings.CancellationTimeout;
if (cancellationTimeout >= 0)
{
if (cancellationTimeout > 0)
Timeout = TimeSpan.FromMilliseconds(cancellationTimeout);
finalCt = Cts.Start(cancellationToken);
continue;
}
}
// If we're here, the PostgreSQL cancellation either failed or skipped entirely.
// Break the connection, bubbling up the correct exception type (cancellation or timeout)
throw connector.Break(CreateCancelException(connector));
}
default:
throw connector.Break(new NpgsqlException("Exception while reading from stream", ex));
}
}
}
}
static Exception CreateCancelException(NpgsqlConnector connector)
=> !connector.UserCancellationRequested
? NpgsqlTimeoutException()
: connector.PostgresCancellationPerformed
? new OperationCanceledException("Query was cancelled", TimeoutException(), connector.UserCancellationToken)
: new OperationCanceledException("Query was cancelled", connector.UserCancellationToken);
static Exception NpgsqlTimeoutException() => new NpgsqlException("Exception while reading from stream", TimeoutException());
static Exception TimeoutException() => new TimeoutException("Timeout during reading attempt");
/// <summary>
/// Ensures that <paramref name="count"/> bytes are available in the buffer, and if
/// not, reads from the socket until enough is available.
/// </summary>
internal ValueTask Ensure(int count, bool async, bool readingNotifications)
{
return count <= ReadBytesLeft ? new() : EnsureLong(this, count, async, readingNotifications);
[AsyncMethodBuilder(typeof(PoolingAsyncValueTaskMethodBuilder))]
static async ValueTask EnsureLong(
NpgsqlReadBuffer buffer,
int count,
bool async,
bool readingNotifications)
{
Debug.Assert(count <= buffer.Size);
Debug.Assert(count > buffer.ReadBytesLeft);
count -= buffer.ReadBytesLeft;
if (buffer.ReadPosition == buffer.FilledBytes)
{
buffer.ResetPosition();
}
else if (count > buffer.Size - buffer.FilledBytes)
{
Array.Copy(buffer.Buffer, buffer.ReadPosition, buffer.Buffer, 0, buffer.ReadBytesLeft);
buffer.FilledBytes = buffer.ReadBytesLeft;
buffer._flushedBytes = unchecked(buffer._flushedBytes + buffer.ReadPosition);
buffer.ReadPosition = 0;
}
var finalCt = async && buffer.Timeout != InfiniteTimeSpan
? buffer.Cts.Start()
: buffer.Cts.Reset();
var totalRead = 0;
while (count > 0)
{
try
{
var toRead = buffer.Size - buffer.FilledBytes;
var read = async
? await buffer.Underlying.ReadAsync(buffer.Buffer.AsMemory(buffer.FilledBytes, toRead), finalCt).ConfigureAwait(false)
: buffer.Underlying.Read(buffer.Buffer, buffer.FilledBytes, toRead);
if (read == 0)
throw new EndOfStreamException();
count -= read;
buffer.FilledBytes += read;
totalRead += read;
// Most of the time, it should be fine to reset cancellation token source, so we can use it again
// It's still possible for cancellation token to cancel between reading and resetting (although highly improbable)
// In this case, we consider it as timed out and fail with OperationCancelledException on next ReadAsync
// Or we consider it not timed out if we have already read everything (count == 0)
// In which case we reinitialize it on the next call to EnsureLong()
if (async && count > 0)
buffer.Cts.RestartTimeoutWithoutReset();
}
catch (Exception e)
{
var connector = buffer.Connector;
// Stopping twice (in case the previous Stop() call succeeded) doesn't hurt.
// Not stopping will cause an assertion failure in debug mode when we call Start() the next time.
// We can't stop in a finally block because Connector.Break() will dispose the buffer and the contained
// _timeoutCts
buffer.Cts.Stop();
switch (e)
{
// Read timeout
case OperationCanceledException:
// Note that mono throws SocketException with the wrong error (see #1330)
case IOException when (e.InnerException as SocketException)?.SocketErrorCode ==
(Type.GetType("Mono.Runtime") == null ? SocketError.TimedOut : SocketError.WouldBlock):
{
Debug.Assert(e is OperationCanceledException ? async : !async);
// When reading notifications (Wait), just throw TimeoutException or
// OperationCanceledException immediately.
// Nothing to cancel, and no breaking of the connection.
if (readingNotifications)
throw CreateException(connector);
// If we should attempt PostgreSQL cancellation, do it the first time we get a timeout.
// TODO: As an optimization, we can still attempt to send a cancellation request, but after
// that immediately break the connection
if (connector is { AttemptPostgresCancellation: true, PostgresCancellationPerformed: false } &&
connector.PerformPostgresCancellation())
{
// Note that if the cancellation timeout is negative, we flow down and break the
// connection immediately.
var cancellationTimeout = connector.Settings.CancellationTimeout;
if (cancellationTimeout >= 0)
{
if (cancellationTimeout > 0)
buffer.Timeout = TimeSpan.FromMilliseconds(cancellationTimeout);
if (async)
finalCt = buffer.Cts.Start();
continue;
}
}
// If we're here, the PostgreSQL cancellation either failed or skipped entirely.
// Break the connection, bubbling up the correct exception type (cancellation or timeout)
throw connector.Break(CreateException(connector));
static Exception CreateException(NpgsqlConnector connector)
=> !connector.UserCancellationRequested
? NpgsqlTimeoutException()
: connector.PostgresCancellationPerformed
? new OperationCanceledException("Query was cancelled", TimeoutException(), connector.UserCancellationToken)
: new OperationCanceledException("Query was cancelled", connector.UserCancellationToken);
}
default:
throw connector.Break(new NpgsqlException("Exception while reading from stream", e));
}
}
}
buffer.Cts.Stop();
NpgsqlEventSource.Log.BytesRead(totalRead);
buffer._metricsReporter?.ReportBytesRead(totalRead);
static Exception NpgsqlTimeoutException() => new NpgsqlException("Exception while reading from stream", TimeoutException());
static Exception TimeoutException() => new TimeoutException("Timeout during reading attempt");
}
}
internal ValueTask ReadMore(bool async) => Ensure(ReadBytesLeft + 1, async);
internal NpgsqlReadBuffer AllocateOversize(int count)
{
Debug.Assert(count > Size);
var tempBuf = new NpgsqlReadBuffer(Connector, Underlying, _underlyingSocket, count, TextEncoding, RelaxedTextEncoding, usePool: true);
if (_underlyingSocket != null)
tempBuf.Timeout = Timeout;
CopyTo(tempBuf);
ResetPosition();
return tempBuf;
}
/// <summary>
/// Skip a given number of bytes.
/// </summary>
internal void Skip(int len, bool allowIO)
{
Debug.Assert(len >= 0);
if (allowIO && len > ReadBytesLeft)
{
len -= ReadBytesLeft;
while (len > Size)
{
ResetPosition();
Ensure(Size);
len -= Size;
}
ResetPosition();
Ensure(len);
}
Debug.Assert(ReadBytesLeft >= len);
ReadPosition += len;
}
internal void Skip(int len)
{
Debug.Assert(ReadBytesLeft >= len);
ReadPosition += len;
}
/// <summary>
/// Skip a given number of bytes.
/// </summary>
public async Task Skip(bool async, int len)
{
Debug.Assert(len >= 0);
if (len > ReadBytesLeft)
{
len -= ReadBytesLeft;
while (len > Size)
{
ResetPosition();
await Ensure(Size, async).ConfigureAwait(false);
len -= Size;
}
ResetPosition();
await Ensure(len, async).ConfigureAwait(false);
}
ReadPosition += len;
}
#endregion
#region Read Simple
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public byte ReadByte()
{
CheckBounds(sizeof(byte));
var result = Buffer[ReadPosition];
ReadPosition += sizeof(byte);
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public short ReadInt16()
{
CheckBounds(sizeof(short));
var result = BitConverter.IsLittleEndian
? BinaryPrimitives.ReverseEndianness(Unsafe.ReadUnaligned<short>(ref Buffer[ReadPosition]))
: Unsafe.ReadUnaligned<short>(ref Buffer[ReadPosition]);
ReadPosition += sizeof(short);
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ushort ReadUInt16()
{
CheckBounds(sizeof(ushort));
var result = BitConverter.IsLittleEndian
? BinaryPrimitives.ReverseEndianness(Unsafe.ReadUnaligned<ushort>(ref Buffer[ReadPosition]))
: Unsafe.ReadUnaligned<ushort>(ref Buffer[ReadPosition]);
ReadPosition += sizeof(ushort);
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public int ReadInt32()
{
CheckBounds(sizeof(int));
var result = BitConverter.IsLittleEndian
? BinaryPrimitives.ReverseEndianness(Unsafe.ReadUnaligned<int>(ref Buffer[ReadPosition]))
: Unsafe.ReadUnaligned<int>(ref Buffer[ReadPosition]);
ReadPosition += sizeof(int);
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public uint ReadUInt32()
{
CheckBounds(sizeof(uint));
var result = BitConverter.IsLittleEndian
? BinaryPrimitives.ReverseEndianness(Unsafe.ReadUnaligned<uint>(ref Buffer[ReadPosition]))
: Unsafe.ReadUnaligned<uint>(ref Buffer[ReadPosition]);
ReadPosition += sizeof(uint);
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public long ReadInt64()
{
CheckBounds(sizeof(long));
var result = BitConverter.IsLittleEndian
? BinaryPrimitives.ReverseEndianness(Unsafe.ReadUnaligned<long>(ref Buffer[ReadPosition]))
: Unsafe.ReadUnaligned<long>(ref Buffer[ReadPosition]);
ReadPosition += sizeof(long);
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ulong ReadUInt64()
{
CheckBounds(sizeof(ulong));
var result = BitConverter.IsLittleEndian
? BinaryPrimitives.ReverseEndianness(Unsafe.ReadUnaligned<ulong>(ref Buffer[ReadPosition]))
: Unsafe.ReadUnaligned<ulong>(ref Buffer[ReadPosition]);
ReadPosition += sizeof(ulong);
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public float ReadSingle()
{
CheckBounds(sizeof(float));
var result = BitConverter.IsLittleEndian
? BitConverter.Int32BitsToSingle(BinaryPrimitives.ReverseEndianness(Unsafe.ReadUnaligned<int>(ref Buffer[ReadPosition])))
: Unsafe.ReadUnaligned<float>(ref Buffer[ReadPosition]);
ReadPosition += sizeof(float);
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public double ReadDouble()
{
CheckBounds(sizeof(double));
var result = BitConverter.IsLittleEndian
? BitConverter.Int64BitsToDouble(BinaryPrimitives.ReverseEndianness(Unsafe.ReadUnaligned<long>(ref Buffer[ReadPosition])))
: Unsafe.ReadUnaligned<double>(ref Buffer[ReadPosition]);
ReadPosition += sizeof(double);
return result;
}
void CheckBounds(int count)
{
if (BufferBoundsChecks)
Core(count);
[MethodImpl(MethodImplOptions.NoInlining)]
void Core(int count)
{
if (count > ReadBytesLeft)
ThrowHelper.ThrowInvalidOperationException("There is not enough data left in the buffer.");
}
}
public string ReadString(int byteLen)
{
Debug.Assert(byteLen <= ReadBytesLeft);
var result = TextEncoding.GetString(Buffer, ReadPosition, byteLen);
ReadPosition += byteLen;
return result;
}
public void ReadBytes(Span<byte> output)
{
Debug.Assert(output.Length <= ReadBytesLeft);
new Span<byte>(Buffer, ReadPosition, output.Length).CopyTo(output);
ReadPosition += output.Length;
}
public void ReadBytes(byte[] output, int outputOffset, int len)
=> ReadBytes(new Span<byte>(output, outputOffset, len));
public ReadOnlyMemory<byte> ReadMemory(int len)
{
Debug.Assert(len <= ReadBytesLeft);
var memory = new ReadOnlyMemory<byte>(Buffer, ReadPosition, len);
ReadPosition += len;
return memory;
}
#endregion
#region Read Complex
public int Read(bool commandScoped, Span<byte> output)
{
var readFromBuffer = Math.Min(ReadBytesLeft, output.Length);
if (readFromBuffer > 0)
{
Buffer.AsSpan(ReadPosition, readFromBuffer).CopyTo(output);
ReadPosition += readFromBuffer;
return readFromBuffer;
}
// Only reset if we'll be able to read data, this is to support zero-byte reads.
if (output.Length > 0)
{
Debug.Assert(ReadBytesLeft == 0);
ResetPosition();
}
if (commandScoped)
return ReadWithTimeout(output);
try
{
var read = Underlying.Read(output);
_flushedBytes = unchecked(_flushedBytes + read);
NpgsqlEventSource.Log.BytesRead(read);
return read;
}
catch (Exception e)
{
throw Connector.Break(new NpgsqlException("Exception while reading from stream", e));
}
}
public ValueTask<int> ReadAsync(bool commandScoped, Memory<byte> output, CancellationToken cancellationToken = default)
{
var readFromBuffer = Math.Min(ReadBytesLeft, output.Length);
if (readFromBuffer > 0)
{
Buffer.AsSpan(ReadPosition, readFromBuffer).CopyTo(output.Span);
ReadPosition += readFromBuffer;
return new ValueTask<int>(readFromBuffer);
}
return ReadAsyncLong(this, commandScoped, output, cancellationToken);
static async ValueTask<int> ReadAsyncLong(NpgsqlReadBuffer buffer, bool commandScoped, Memory<byte> output, CancellationToken cancellationToken)
{
// Only reset if we'll be able to read data, this is to support zero-byte reads.
if (output.Length > 0)
{
Debug.Assert(buffer.ReadBytesLeft == 0);
buffer.ResetPosition();
}
if (commandScoped)
return await buffer.ReadWithTimeoutAsync(output, cancellationToken).ConfigureAwait(false);
try
{
var read = await buffer.Underlying.ReadAsync(output, cancellationToken).ConfigureAwait(false);
buffer._flushedBytes = unchecked(buffer._flushedBytes + read);
NpgsqlEventSource.Log.BytesRead(read);
return read;
}
catch (Exception e)
{
throw buffer.Connector.Break(new NpgsqlException("Exception while reading from stream", e));
}
}
}
ColumnStream? _lastStream;
public ColumnStream CreateStream(int len, bool canSeek, bool consumeOnDispose = true)
{
if (_lastStream is not { IsDisposed: true })
_lastStream = new ColumnStream(Connector);
_lastStream.Init(len, canSeek, Connector.Settings.ReplicationMode == ReplicationMode.Off, consumeOnDispose);
return _lastStream;
}
/// <summary>
/// Seeks the first null terminator (\0) and returns the string up to it. The buffer must already
/// contain the entire string and its terminator.
/// </summary>
public string ReadNullTerminatedString()
=> ReadNullTerminatedString(TextEncoding, async: false).GetAwaiter().GetResult();
/// <summary>
/// Seeks the first null terminator (\0) and returns the string up to it. The buffer must already
/// contain the entire string and its terminator. If any character could not be decoded, a question
/// mark character is returned instead of throwing an exception.
/// </summary>
public string ReadNullTerminatedStringRelaxed()
=> ReadNullTerminatedString(RelaxedTextEncoding, async: false).GetAwaiter().GetResult();
public ValueTask<string> ReadNullTerminatedString(bool async, CancellationToken cancellationToken = default)
=> ReadNullTerminatedString(TextEncoding, async, cancellationToken);
/// <summary>
/// Seeks the first null terminator (\0) and returns the string up to it. Reads additional data from the network if a null
/// terminator isn't found in the buffered data.
/// </summary>
public ValueTask<string> ReadNullTerminatedString(Encoding encoding, bool async, CancellationToken cancellationToken = default)
{
var index = Span.IndexOf((byte)0);
if (index >= 0)
{
var result = new ValueTask<string>(encoding.GetString(Buffer, ReadPosition, index));
ReadPosition += index + 1;
return result;
}
return ReadLong(encoding, async);
async ValueTask<string> ReadLong(Encoding encoding, bool async)
{
var chunkSize = FilledBytes - ReadPosition;
var tempBuf = ArrayPool<byte>.Shared.Rent(chunkSize + 1024);
try
{
bool foundTerminator;
var byteLen = chunkSize;
Array.Copy(Buffer, ReadPosition, tempBuf, 0, chunkSize);
ReadPosition += chunkSize;
do
{
await ReadMore(async).ConfigureAwait(false);
Debug.Assert(ReadPosition == 0);
foundTerminator = false;
int i;
for (i = 0; i < FilledBytes; i++)
{
if (Buffer[i] == 0)
{
foundTerminator = true;
break;
}
}
if (byteLen + i > tempBuf.Length)
{
var newTempBuf = ArrayPool<byte>.Shared.Rent(
foundTerminator ? byteLen + i : byteLen + i + 1024);
Array.Copy(tempBuf, 0, newTempBuf, 0, byteLen);
ArrayPool<byte>.Shared.Return(tempBuf);
tempBuf = newTempBuf;
}
Array.Copy(Buffer, 0, tempBuf, byteLen, i);
byteLen += i;
ReadPosition = i;
} while (!foundTerminator);
ReadPosition++;
return encoding.GetString(tempBuf, 0, byteLen);
}
finally
{
ArrayPool<byte>.Shared.Return(tempBuf);
}
}
}
public ReadOnlySpan<byte> GetNullTerminatedBytes()
{
var i = Span.IndexOf((byte)0);
Debug.Assert(i >= 0);
var result = new ReadOnlySpan<byte>(Buffer, ReadPosition, i);
ReadPosition += i + 1;
return result;
}
#endregion
#region Dispose
public void Dispose()
{
if (_disposed)
return;
if (_usePool)
ArrayPool<byte>.Shared.Return(Buffer);
Cts.Dispose();
_disposed = true;
}
#endregion
#region Misc
void ResetPosition()
{
_flushedBytes = unchecked(_flushedBytes + FilledBytes);
ReadPosition = 0;
FilledBytes = 0;
}
internal void ResetFlushedBytes() => _flushedBytes = 0;
internal void CopyTo(NpgsqlReadBuffer other)
{
Debug.Assert(other.Size - other.FilledBytes >= ReadBytesLeft);
Array.Copy(Buffer, ReadPosition, other.Buffer, other.FilledBytes, ReadBytesLeft);
other.FilledBytes += ReadBytesLeft;
}
#endregion
}