-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathProtocol.cs
1353 lines (1228 loc) · 54.1 KB
/
Protocol.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
/*
* Copyright 2017 Stanislav Muhametsin. All rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied.
*
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using CBAM.Abstractions;
using CBAM.Abstractions.Implementation;
using CBAM.SQL.Implementation;
using CBAM.SQL.PostgreSQL;
using CBAM.SQL.PostgreSQL.Implementation;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using UtilPack;
using MessageIOArgs = System.ValueTuple<CBAM.SQL.PostgreSQL.BackendABIHelper, System.IO.Stream, System.Threading.CancellationToken, UtilPack.ResizableArray<System.Byte>>;
using TBoundTypeInfo = System.ValueTuple<System.Type, CBAM.SQL.PostgreSQL.PgSQLTypeFunctionality, CBAM.SQL.PostgreSQL.PgSQLTypeDatabaseData>;
using FluentCryptography.SASL;
using FluentCryptography.SASL.SCRAM;
using AsyncEnumeration.Implementation.Enumerable;
using AsyncEnumeration.Implementation.Provider;
#if !NETSTANDARD1_0
using System.Net.Sockets;
#endif
namespace CBAM.SQL.PostgreSQL.Implementation
{
using TSASLAuthState = System.ValueTuple<SASLMechanism, SASLCredentialsSCRAMForClient, ResizableArray<Byte>, IEncodingInfo>;
using TStatementExecutionSimpleTaskParameter = System.ValueTuple<SQLStatementExecutionResult, Func<ValueTask<(Boolean, SQLStatementExecutionResult)>>>;
internal sealed partial class PostgreSQLProtocol : SQLConnectionFunctionalitySU<PgSQLConnectionVendorFunctionality>
{
private Int32 _lastSeenTransactionStatus;
private readonly IDictionary<String, String> _serverParameters;
//private Int32 _standardConformingStrings;
private readonly Version _serverVersion;
public PostgreSQLProtocol(
PgSQLConnectionVendorFunctionality vendorFunctionality,
Boolean disableBinaryProtocolSend,
Boolean disableBinaryProtocolReceive,
BackendABIHelper messageIOArgs,
Stream stream,
ResizableArray<Byte> buffer,
IDictionary<String, String> serverParameters,
TransactionStatus status,
Int32 backendPID
#if !NETSTANDARD1_0
, Socket socket
#endif
) : base( vendorFunctionality, DefaultAsyncProvider.Instance )
{
this.DisableBinaryProtocolSend = disableBinaryProtocolSend;
this.DisableBinaryProtocolReceive = disableBinaryProtocolReceive;
this.MessageIOArgs = ArgumentValidator.ValidateNotNull( nameof( messageIOArgs ), messageIOArgs );
this.Stream = ArgumentValidator.ValidateNotNull( nameof( stream ), stream );
#if !NETSTANDARD1_0
this.Socket = socket;
#endif
this.Buffer = buffer ?? new ResizableArray<Byte>( 8, exponentialResize: true );
this.DataRowColumnSizes = new ResizableArray<ResettableTransformable<Int32?, Int32>>( exponentialResize: false );
this._serverParameters = ArgumentValidator.ValidateNotNull( nameof( serverParameters ), serverParameters );
this.ServerParameters = new System.Collections.ObjectModel.ReadOnlyDictionary<String, String>( serverParameters );
this.TypeRegistry = new TypeRegistryImpl( vendorFunctionality, sql => this.PrepareStatementForExecution( vendorFunctionality.CreateStatementBuilder( sql ), out var dummy ) );
if ( serverParameters.TryGetValue( "server_version", out var serverVersionString ) )
{
// Parse server version
var i = 0;
var version = serverVersionString.Trim();
while ( i < version.Length && ( Char.IsDigit( version[i] ) || version[i] == '.' ) )
{
++i;
}
this._serverVersion = new Version( version.Substring( 0, i ) );
}
// Min supported version is 8.4.
var serverVersion = this._serverVersion;
if ( serverVersion != null && ( serverVersion.Major < 8 || ( serverVersion.Major == 8 && serverVersion.Minor < 4 ) ) )
{
throw new PgSQLException( "Unsupported server version: " + serverVersion + "." );
}
this.LastSeenTransactionStatus = status;
this.BackendProcessID = backendPID;
this.EnqueuedNotifications = new Queue<NotificationEventArgs>();
}
public TypeRegistryImpl TypeRegistry { get; }
public Int32 BackendProcessID { get; }
public IReadOnlyDictionary<String, String> ServerParameters { get; }
protected override ReservedForStatement CreateReservationObject( SQLStatementBuilderInformation stmt )
{
return new PgReservedForStatement(
#if DEBUG
stmt,
#endif
stmt.IsSimple(),
stmt.HasBatchParameters() ? "cbam_statement" : null
);
}
protected override void ValidateStatementOrThrow( SQLStatementBuilderInformation statement )
{
ArgumentValidator.ValidateNotNull( nameof( statement ), statement );
if ( statement.BatchParameterCount > 1 )
{
// Verify that all columns have same typeIDs
var first = statement
.GetParametersEnumerable( 0 )
.Select( param => this.TypeRegistry.TryGetTypeInfo( param.ParameterCILType ).DatabaseData.TypeID )
.ToArray();
var max = statement.BatchParameterCount;
for ( var i = 1; i < max; ++i )
{
var j = 0;
foreach ( var param in statement.GetParametersEnumerable( i ) )
{
if ( first[j] != this.TypeRegistry.TryGetTypeInfo( param.ParameterCILType ).DatabaseData.TypeID )
{
throw new PgSQLException( "When using batch parameters, columns must have same type IDs for all batch rows." );
}
++j;
}
}
}
}
private static (Int32[] ParameterIndices, TypeFunctionalityInformation[] TypeInfos, Int32[] TypeIDs) GetVariablesForExtendedQuerySequence(
SQLStatementBuilderInformation stmt,
TypeRegistry typeRegistry,
Func<SQLStatementBuilderInformation, Int32, StatementParameter> paramExtractor
)
{
var pCount = stmt.SQLParameterCount;
TypeFunctionalityInformation[] typeInfos;
Int32[] typeIDs;
if ( pCount > 0 )
{
typeInfos = new TypeFunctionalityInformation[pCount];
typeIDs = new Int32[pCount];
for ( var i = 0; i < pCount; ++i )
{
var param = paramExtractor( stmt, i );
var typeInfo = typeRegistry.TryGetTypeInfo( param.ParameterCILType );
typeInfos[i] = typeInfo;
typeIDs[i] = typeInfo?.DatabaseData?.TypeID ?? 0;
}
}
else
{
typeInfos = Empty<TypeFunctionalityInformation>.Array;
typeIDs = Empty<Int32>.Array;
}
return (( (PgSQLStatementBuilderInformation) stmt ).ParameterIndices, typeInfos, typeIDs);
}
private MessageIOArgs GetIOArgs( ResizableArray<Byte> bufferToUse = null, CancellationToken? tokenToUse = null )
{
return (this.MessageIOArgs, this.Stream, tokenToUse ?? this.CurrentCancellationToken, bufferToUse ?? this.Buffer);
}
protected override async ValueTask<TStatementExecutionSimpleTaskParameter> ExecuteStatementAsBatch(
SQLStatementBuilderInformation statement,
ReservedForStatement reservedState
)
{
// TODO somehow make statement name and chunk size parametrizable
(var parameterIndices, var typeInfos, var typeIDs) = GetVariablesForExtendedQuerySequence( statement, this.TypeRegistry, ( stmt, idx ) => stmt.GetBatchParameterInfo( 0, idx ) );
var ioArgs = this.GetIOArgs();
var stmtName = ( (PgReservedForStatement) reservedState ).StatementName;
var chunkSize = 1000;
// Send a parse message with statement name
await new ParseMessage( statement.SQL, parameterIndices, typeIDs, stmtName ).SendMessageAsync( ioArgs, true );
// Now send describe message
await new DescribeMessage( true, stmtName ).SendMessageAsync( ioArgs, true );
// And then Flush message for backend to send responses
await FrontEndMessageWithNoContent.FLUSH.SendMessageAsync( ioArgs, false );
// Receive first batch of messages
BackendMessageObject msg = null;
SQLStatementExecutionResult current = null;
List<PgSQLError> notices = new List<PgSQLError>();
var sendBatch = true;
while ( msg == null )
{
msg = ( await this.ReadMessagesUntilMeaningful( notices ) ).Item1;
switch ( msg )
{
case MessageWithNoContents nc:
switch ( nc.Code )
{
case BackendMessageCode.ParseComplete:
// Continue reading messages
msg = null;
break;
case BackendMessageCode.EmptyQueryResponse:
// The statement does not produce any data, we are done
sendBatch = false;
break;
case BackendMessageCode.NoData:
// Do nothing, thus causing batch messages to be sent
break;
default:
throw new PgSQLException( "Unrecognized response at this point: " + msg.Code );
}
break;
case RowDescription rd:
// This happens when e.g. doing SELECT schema.function(x, y, z) -> can return NULLs or rows, we don't care.
break; // throw new PgSQLException( "Batch statements may only be used for non-query statements." );
case ParameterDescription pd:
if ( !ArrayEqualityComparer<Int32>.ArrayEquality( pd.ObjectIDs, typeIDs ) )
{
throw new PgSQLException( "Backend required certain amount of parameters, but either they were not supplied, or were of wrong type." );
}
// Continue to RowDescription/NoData message
msg = null;
break;
default:
throw new PgSQLException( "Unrecognized response at this point: " + msg.Code );
}
}
if ( sendBatch )
{
var batchCount = statement.BatchParameterCount;
var affectedRowsArray = new Int32[batchCount];
// Send and receive messages asynchronously
var commandTag = new String[1];
await
#if NET40
TaskEx
#else
Task
#endif
.WhenAll(
this.SendMessagesForBatch( statement, typeInfos, stmtName, ioArgs, chunkSize, batchCount ),
this.ReceiveMessagesForBatch( notices, affectedRowsArray, commandTag )
);
current = new BatchCommandExecutionResultImpl(
commandTag[0],
new Lazy<SQLException[]>( () => notices?.Select( n => new PgSQLException( n ) )?.ToArray() ),
affectedRowsArray
);
}
return (current, null);
}
private async Task SendMessagesForBatch(
SQLStatementBuilderInformation statement,
TypeFunctionalityInformation[] typeInfos,
String statementName,
MessageIOArgs ioArgs,
Int32 chunkSize,
Int32 batchCount
)
{
var singleRowParamCount = statement.SQLParameterCount;
Int32 max;
var execMessage = new ExecuteMessage();
for ( var i = 0; i < batchCount; i = max )
{
max = Math.Min( batchCount, i + chunkSize );
for ( var j = i; j < max; ++j )
{
// Send Bind and Execute messages
// TODO reuse BindMessage -> add Reset method.
await new BindMessage(
statement.GetParametersEnumerable( j ),
singleRowParamCount,
typeInfos,
this.DisableBinaryProtocolSend,
this.DisableBinaryProtocolReceive,
statementName: statementName
).SendMessageAsync( ioArgs, true );
await execMessage.SendMessageAsync( ioArgs, true );
}
// Now send flush message for backend to start sending results back
await FrontEndMessageWithNoContent.FLUSH.SendMessageAsync( ioArgs, false );
}
}
private async Task ReceiveMessagesForBatch(
List<PgSQLError> notices,
Int32[] affectedRows,
String[] commandTag // This is fugly, but other option is to make both ReceiveMessagesForBatch and SendMessagesForBatch return Task<String>, and then only use the result of the ReceiveMessagesForBatch (since they are both given to Task.WhenAll)
)
{
// We must allocate new buffer, since the reading will be done concurrently while the writing still performs
// Furthermore, if some error is occurred during sending task, the backend will send error response right away.
var buffer = new ResizableArray<Byte>( initialSize: 8, exponentialResize: true );
for ( var i = 0; i < affectedRows.Length; ++i )
{
var msg = ( await this.ReadMessagesUntilMeaningful( notices, bufferToUse: buffer ) ).Item1;
if ( msg is MessageWithNoContents nc && msg.Code == BackendMessageCode.BindComplete )
{
// Bind was successul - now read result of execute message
msg = null;
while ( msg == null )
{
Int32 remaining;
(msg, remaining) = await this.ReadMessagesUntilMeaningful( notices, bufferToUse: buffer );
switch ( msg )
{
case CommandComplete cc:
Interlocked.Exchange( ref affectedRows[i], cc.AffectedRows ?? 0 );
if ( commandTag[0] == null )
{
Interlocked.Exchange( ref commandTag[0], cc.CommandTag );
}
break;
case DataRowObject dr:
// Skip thru data
await this.Stream.ReadSpecificAmountAsync( buffer.SetCapacityAndReturnArray( remaining ), 0, remaining, this.CurrentCancellationToken );
// And read more
msg = null;
break;
default:
throw new PgSQLException( "Unrecognized response at this point: " + msg.Code );
}
}
}
else
{
throw new PgSQLException( "Unrecognized response at this point: " + msg.Code );
}
}
}
protected override async ValueTask<TStatementExecutionSimpleTaskParameter> ExecuteStatementAsPrepared(
SQLStatementBuilderInformation statement,
ReservedForStatement reservedState
)
{
(var parameterIndices, var typeInfos, var typeIDs) = GetVariablesForExtendedQuerySequence( statement, this.TypeRegistry, ( stmt, idx ) => stmt.GetParameterInfo( idx ) );
var ioArgs = this.GetIOArgs();
// First, send the parse message
await new ParseMessage( statement.SQL, parameterIndices, typeIDs ).SendMessageAsync( ioArgs, true );
// Then send bind message
var bindMsg = new BindMessage( statement.GetParametersEnumerable(), parameterIndices.Length, typeInfos, this.DisableBinaryProtocolSend, this.DisableBinaryProtocolReceive );
await bindMsg.SendMessageAsync( ioArgs, true );
// Then send describe message
await new DescribeMessage( false ).SendMessageAsync( ioArgs, true );
// Then execute message
await new ExecuteMessage().SendMessageAsync( ioArgs, true );
// Then flush in order to receive response
await FrontEndMessageWithNoContent.FLUSH.SendMessageAsync( ioArgs, false );
// Start receiving messages
BackendMessageObject msg = null;
SQLStatementExecutionResult current = null;
Func<ValueTask<(Boolean, SQLStatementExecutionResult)>> moveNext = null;
RowDescription seenRD = null;
List<PgSQLError> notices = new List<PgSQLError>();
while ( msg == null )
{
msg = ( await this.ReadMessagesUntilMeaningful( notices ) ).Item1;
switch ( msg )
{
case MessageWithNoContents nc:
switch ( nc.Code )
{
case BackendMessageCode.ParseComplete:
case BackendMessageCode.BindComplete:
case BackendMessageCode.NoData:
// Continue reading messages
msg = null;
break;
case BackendMessageCode.EmptyQueryResponse:
// The statement does not produce any data, we are done
break;
default:
throw new PgSQLException( "Unrecognized response at this point: " + msg.Code );
}
break;
case RowDescription rd:
// 0..* DataRowObjects incoming...
seenRD = rd;
msg = null;
break;
case DataRowObject dr:
var streamArray = new PgSQLDataRowColumn[seenRD.Fields.Length];
var mdArray = new PgSQLDataColumnMetaDataImpl[streamArray.Length];
PgSQLDataRowColumn prevCol = null;
for ( var i = 0; i < streamArray.Length; ++i )
{
var curField = seenRD.Fields[i];
var curMD = new PgSQLDataColumnMetaDataImpl( this, curField.DataFormat, curField.dataTypeID, this.TypeRegistry.TryGetTypeInfo( curField.dataTypeID ), curField.name );
var curStream = new PgSQLDataRowColumn( curMD, i, prevCol, this, reservedState, curField );
prevCol = curStream;
streamArray[i] = curStream;
curStream.Reset( dr );
mdArray[i] = curMD;
}
var warningsLazy = LazyFactory.NewReadOnlyResettableLazy<SQLException[]>( () => notices?.Select( n => new PgSQLException( n ) )?.ToArray(), LazyThreadSafetyMode.ExecutionAndPublication );
var dataRowCurrent = new SQLDataRowImpl(
new PgSQLDataRowMetaDataImpl( mdArray ),
streamArray,
warningsLazy
);
current = dataRowCurrent;
moveNext = async () => await this.MoveNextAsync( reservedState, streamArray, notices, dataRowCurrent, warningsLazy );
break;
case CommandComplete cc:
if ( seenRD == null )
{
current = new SingleCommandExecutionResultImpl(
cc.CommandTag,
new Lazy<SQLException[]>( () => notices?.Select( n => new PgSQLException( n ) )?.ToArray() ),
cc.AffectedRows ?? 0
);
}
break;
default:
throw new PgSQLException( "Unrecognized response at this point: " + msg.Code );
}
}
return (current, moveNext);
}
protected override async ValueTask<TStatementExecutionSimpleTaskParameter> ExecuteStatementAsSimple(
SQLStatementBuilderInformation stmt,
ReservedForStatement reservedState
)
{
// Send Query message
await new QueryMessage( stmt.SQL ).SendMessageAsync( this.GetIOArgs() );
// Then wait for appropriate response
List<PgSQLError> notices = new List<PgSQLError>();
Func<ValueTask<(Boolean, SQLStatementExecutionResult)>> drMoveNext = null;
// We have to always set moveNext, since we might be executing arbitrary amount of SQL statements in simple StatementBuilder.
Func<ValueTask<(Boolean, SQLStatementExecutionResult)>> moveNext = async () =>
{
SQLStatementExecutionResult current = null;
if ( drMoveNext != null )
{
// We are iterating over some query result, check that first.
var drNext = await drMoveNext();
if ( drNext.Item1 )
{
current = drNext.Item2;
}
else
{
drMoveNext = null;
}
}
if ( current == null )
{
BackendMessageObject msg = null;
RowDescription seenRD = null;
while ( msg == null )
{
msg = ( await this.ReadMessagesUntilMeaningful( notices ) ).Item1;
switch ( msg )
{
case CommandComplete cc:
if ( seenRD == null )
{
current = new SingleCommandExecutionResultImpl(
cc.CommandTag,
new Lazy<SQLException[]>( () => notices?.Select( n => new PgSQLException( n ) )?.ToArray() ),
cc.AffectedRows ?? 0
);
}
else
{
// RowDescription followed immediately by CommandComplete -> treat as empty query
// Read more
msg = null;
}
seenRD = null;
break;
case RowDescription rd:
seenRD = rd;
// Read more (DataRow or CommandComplete)
msg = null;
break;
case DataRowObject dr:
// First DataRowObject
var streamArray = new PgSQLDataRowColumn[seenRD.Fields.Length];
var mdArray = new PgSQLDataColumnMetaDataImpl[streamArray.Length];
PgSQLDataRowColumn prevCol = null;
for ( var i = 0; i < streamArray.Length; ++i )
{
var curField = seenRD.Fields[i];
var curMD = new PgSQLDataColumnMetaDataImpl( this, curField.DataFormat, curField.dataTypeID, this.TypeRegistry.TryGetTypeInfo( curField.dataTypeID ), curField.name );
var curStream = new PgSQLDataRowColumn( curMD, i, prevCol, this, reservedState, curField );
prevCol = curStream;
streamArray[i] = curStream;
curStream.Reset( dr );
mdArray[i] = curMD;
}
var warningsLazy = LazyFactory.NewReadOnlyResettableLazy<SQLException[]>( () => notices?.Select( n => new PgSQLException( n ) )?.ToArray(), LazyThreadSafetyMode.ExecutionAndPublication );
var dataRowCurrent = new SQLDataRowImpl(
new PgSQLDataRowMetaDataImpl( mdArray ),
streamArray,
warningsLazy
);
current = dataRowCurrent;
drMoveNext = async () => await this.MoveNextAsync( reservedState, streamArray, notices, dataRowCurrent, warningsLazy );
break;
case ReadyForQuery rfq:
( (PgReservedForStatement) reservedState ).RFQSeen();
break;
default:
if ( !ReferenceEquals( MessageWithNoContents.EMPTY_QUERY, msg ) )
{
throw new PgSQLException( "Unrecognized response at this point: " + msg.Code );
}
// Read more
msg = null;
break;
}
}
}
return (current != null, current);
};
var firstResult = await moveNext();
return (firstResult.Item1 ? firstResult.Item2 : null, moveNext);
}
private async Task<(Boolean, SQLStatementExecutionResult)> MoveNextAsync(
ReservedForStatement reservationObject,
PgSQLDataRowColumn[] streams,
List<PgSQLError> notices,
SQLDataRowImpl dataRow,
ReadOnlyResettableLazy<SQLException[]> warningsLazy
)
{
return await this.UseStreamWithinStatementAsync( reservationObject, async () =>
{
// Force read of all columns
foreach ( var colStream in streams )
{
await colStream.SkipBytesAsync( this.Buffer.Array );
}
notices.Clear();
var msg = ( await this.ReadMessagesUntilMeaningful( notices ) ).Item1;
var dr = msg as DataRowObject;
foreach ( var stream in streams )
{
stream.Reset( dr );
}
var retVal = dr != null;
warningsLazy.Reset();
return (Success: retVal, Item: dataRow);
} );
}
public TransactionStatus LastSeenTransactionStatus
{
get
{
return (TransactionStatus) this._lastSeenTransactionStatus;
}
private set
{
Interlocked.Exchange( ref this._lastSeenTransactionStatus, (Int32) value );
}
}
//public Boolean StandardConformingStrings
//{
// get
// {
// return Convert.ToBoolean( this._standardConformingStrings );
// }
// set
// {
// Interlocked.Exchange( ref this._standardConformingStrings, Convert.ToInt32( value ) );
// }
//}
protected override async Task PerformDisposeStatementAsync(
ReservedForStatement reservationObject
)
{
var ioArgs = this.GetIOArgs();
var pgReserved = (PgReservedForStatement) reservationObject;
if ( !String.IsNullOrEmpty( pgReserved.StatementName ) )
{
// Need to close our named statement
await new CloseMessage( true, pgReserved.StatementName ).SendMessageAsync( ioArgs, true );
}
// Simple statement already received RFQ in its MoveNext method
if ( !pgReserved.IsSimple )
{
// Need to send SYNC
await FrontEndMessageWithNoContent.SYNC.SendMessageAsync( ioArgs );
}
// TODO The new moveNextEnded parameter could tell that instead of RFQEncountered property, investigate that
if ( !pgReserved.RFQEncountered )
{
// Then wait for RFQ
// This happens for non-simple statements, or simple statements which cause exception when iterated over.
BackendMessageObject msg;
Int32 remaining;
while ( ( (msg, remaining) = ( await this.ReadMessagesUntilMeaningful( null, dontThrowExceptions: true ) ) ).Item1.Code != BackendMessageCode.ReadyForQuery )
{
if ( remaining > 0 )
{
ioArgs.Item4.CurrentMaxCapacity = remaining;
await ioArgs.Item2.ReadSpecificAmountAsync( ioArgs.Item4.Array, 0, remaining, ioArgs.Item3 );
}
}
}
}
public BackendABIHelper MessageIOArgs { get; }
public ResizableArray<Byte> Buffer { get; }
public Stream Stream { get; }
#if !NETSTANDARD1_0
public Socket Socket { get; }
#endif
public ResizableArray<ResettableTransformable<Int32?, Int32>> DataRowColumnSizes { get; }
public Boolean DisableBinaryProtocolSend { get; }
public Boolean DisableBinaryProtocolReceive { get; }
public Queue<NotificationEventArgs> EnqueuedNotifications { get; }
internal async ValueTask<Object> ConvertFromBytes(
Int32 typeID,
DataFormat dataFormat,
EitherOr<ReservedForStatement, Stream> stream,
Int32 byteCount
)
{
var actualStream = stream.IsFirst ? this.Stream : stream.Second;
var typeInfo = this.TypeRegistry.TryGetTypeInfo( typeID );
if ( typeInfo != null )
{
var limitedStream = StreamFactory.CreateLimitedReader(
actualStream,
byteCount,
this.CurrentCancellationToken,
this.Buffer
);
try
{
return await typeInfo.Functionality.ReadBackendValueAsync(
dataFormat,
typeInfo.DatabaseData,
this.MessageIOArgs,
limitedStream
);
}
finally
{
try
{
await limitedStream.SkipThroughRemainingBytes();
}
catch
{
// Ignore this one.
}
}
}
else if ( dataFormat == DataFormat.Text )
{
// Initial type load, or unknown type and format is textual
await actualStream.ReadSpecificAmountAsync( this.Buffer, 0, byteCount, this.CurrentCancellationToken );
return this.MessageIOArgs.GetStringWithPool( this.Buffer.Array, 0, byteCount );
}
else
{
// Unknown type, and data format is binary.
throw new PgSQLException( $"The type ID {typeID} is not known." );
}
}
internal async ValueTask<(BackendMessageObject, Int32)> ReadMessagesUntilMeaningful(
List<PgSQLError> notices,
Func<Boolean> checkReadForNextMessage = null,
ResizableArray<Byte> bufferToUse = null,
Boolean dontThrowExceptions = false
)
{
Boolean encounteredMeaningful;
var ioArgs = this.GetIOArgs( bufferToUse );
BackendMessageObject msg;
Int32 remaining;
do
{
(msg, remaining) = await BackendMessageObject.ReadBackendMessageAsync( ioArgs, this.DataRowColumnSizes );
switch ( msg )
{
case PgSQLErrorObject errorObject:
encounteredMeaningful = false;
if ( errorObject.Code == BackendMessageCode.NoticeResponse )
{
if ( notices != null )
{
notices.Add( ( (PgSQLErrorObject) msg ).Error );
}
}
else if ( !dontThrowExceptions )
{
throw new PgSQLException( ( (PgSQLErrorObject) msg ).Error );
}
break;
case NotificationMessage notification:
this.EnqueuedNotifications.Enqueue( notification.Args );
encounteredMeaningful = false;
break;
case ParameterStatus ps:
this._serverParameters[ps.Name] = ps.Value;
encounteredMeaningful = false;
break;
default:
{
if ( msg is ReadyForQuery rfq )
{
this.LastSeenTransactionStatus = rfq.Status;
}
encounteredMeaningful = true;
break;
}
}
} while ( !encounteredMeaningful && ( checkReadForNextMessage?.Invoke() ?? true ) );
return (msg, remaining);
}
public async Task PerformClose( CancellationToken token )
{
// Send termination message
// Don't use this.CurrentCancellationToken, since one-time pool has already reset the token.
// Furthermore, we might come here from other entrypoints than connection pool's UseConnection (e.g. when disposing caching connection pool)
await FrontEndMessageWithNoContent.TERMINATION.SendMessageAsync( this.GetIOArgs( tokenToUse: token ) );
}
#if !NETSTANDARD1_0
private Boolean SocketHasDataPending()
{
var socket = this.Socket;
return socket.Available > 0 || socket.Poll( 1, SelectMode.SelectRead ) || socket.Available > 0;
}
#endif
public async ValueTask<NotificationEventArgs[]> CheckNotificationsAsync()
{
// TODO this could be optimized a little, if we notice EnqueuedNotifications.Count > 0, then just don't read from stream at all. We still need to use statement protection regions tho.
NotificationEventArgs[] args = null;
NotificationEventArgs[] GetEnqueuedNotifications()
{
var enqueued = this.EnqueuedNotifications.ToArray();
this.EnqueuedNotifications.Clear();
return enqueued;
}
#if !NETSTANDARD1_0
var socket = this.Socket;
if ( socket == null )
{
#endif
// Just do "SELECT 1"; to get any notifications
var enumerable = this.PrepareStatementForExecution( this.VendorFunctionality.CreateStatementBuilder( "SELECT 1" ), out var dummy )
.AsObservable();
// Use GetEnqueuedNotifications while we are still inside statement reservation region, by registering to BeforeEnumerationEnd
enumerable.BeforeEnumerationEnd += ( eArgs ) => args = GetEnqueuedNotifications();
await enumerable.EnumerateAsync();
#if !NETSTANDARD1_0
}
else
{
// First, check from the socket that we have any data pending
var hasDataPending = this.SocketHasDataPending();
if ( hasDataPending || this.EnqueuedNotifications.Count > 0 )
{
// There is pending data
// We always must use UseStreamOutsideStatementAsync method, since modifying this.EnqueuedNotifications outside that will result in concurrent modification exceptions
await this.UseStreamOutsideStatementAsync( async () =>
{
// If we call "ReadMessagesUntilMeaningful" with no socket data pending, we will never break free of loop properly.
if ( hasDataPending )
{
await this.ReadMessagesUntilMeaningful(
null,
this.SocketHasDataPending
);
}
args = GetEnqueuedNotifications();
return false;
} );
}
}
#endif
return args ?? Empty<NotificationEventArgs>.Array;
}
public IAsyncEnumerable<NotificationEventArgs> ListenToNotificationsAsync()
{
#if !NETSTANDARD1_0
if ( this.Socket == null )
{
#else
throw new NotSupportedException( "No socket available for this method." );
#endif
#if !NETSTANDARD1_0
}
var enqueued = this.EnqueuedNotifications;
Boolean KeepReadingMore()
{
return enqueued.Count <= 0 || ( enqueued.Count <= 1000 && this.SocketHasDataPending() );
}
async Task PerformReadForNotifications()
{
if ( enqueued.Count <= 0 )
{
await this.ReadMessagesUntilMeaningful( null, KeepReadingMore );
}
}
return AsyncEnumerationFactory.CreateStatefulWrappingEnumerable( () =>
{
PgReservedForStatement reservation = null;
return AsyncEnumerationFactory.CreateWrappingStartInfo(
async () =>
{
if ( reservation == null )
{
reservation = new PgReservedForStatement(
#if DEBUG
null,
#endif
true,
null
);
reservation.RFQSeen();
await this.UseStreamOutsideStatementAsync( reservation, PerformReadForNotifications, false, true );
}
else
{
await this.UseStreamWithinStatementAsync( reservation, PerformReadForNotifications, true );
}
return enqueued.Count > 0;
},
( out Boolean success ) =>
{
success = enqueued.Count > 0;
return success ? enqueued.Dequeue() : default;
},
() =>
{
return this.DisposeStatementAsync( reservation );
}
);
}, this.AsyncProvider );
#endif
}
public static async Task<(PostgreSQLProtocol Protocol, List<PgSQLError> notices)> PerformStartup(
PgSQLConnectionVendorFunctionality vendorFunctionality,
PgSQLConnectionCreationInfo creationInfo,
CancellationToken token,
Stream stream,
BackendABIHelper abiHelper,
ResizableArray<Byte> buffer
#if !NETSTANDARD1_0
, Socket socket
#endif
)
{
var initData = creationInfo?.CreationData?.Initialization ?? throw new PgSQLException( "Please specify initialization configuration." );
var startupInfo = await DoConnectionInitialization(
creationInfo,
(abiHelper, stream, token, buffer)
);
var protoConfig = initData?.Protocol;
var retVal = (
new PostgreSQLProtocol(
vendorFunctionality,
protoConfig?.DisableBinaryProtocolSend ?? false,
protoConfig?.DisableBinaryProtocolReceive ?? false,
abiHelper,
stream,
buffer,
startupInfo.ServerParameters,
startupInfo.TransactionStatus,
startupInfo.backendProcessID ?? 0
#if !NETSTANDARD1_0
, socket
#endif
),
startupInfo.Notices ?? new List<PgSQLError>()
);
await retVal.Item1.ReadTypesFromServer( protoConfig?.ForceTypeIDLoad ?? false, token );
return retVal;
}
internal const String SERVER_PARAMETER_DATABASE = "database";
private static async Task<(IDictionary<String, String> ServerParameters, Int32? backendProcessID, Int32? backendKeyData, List<PgSQLError> Notices, TransactionStatus TransactionStatus)> DoConnectionInitialization(
PgSQLConnectionCreationInfo creationInfo,
MessageIOArgs ioArgs
)
{
var dbConfig = creationInfo?.CreationData?.Initialization?.Database ?? throw new ArgumentException( "Please specify database configuration" );
var authConfig = creationInfo?.CreationData?.Initialization?.Authentication ?? throw new ArgumentException( "Please specify authentication configuration" );
var encoding = ioArgs.Item1.Encoding.Encoding;
var username = authConfig.Username ?? throw new ArgumentException( "Please specify username in authentication configuration." );
var parameters = new Dictionary<String, String>()
{
{ SERVER_PARAMETER_DATABASE, dbConfig.Name ?? throw new ArgumentException("Please specify database name in database configuration.") },
{ "user",username },
{ "DateStyle", "ISO" },
{ "client_encoding", encoding.WebName },
{ "extra_float_digits", "2" },
{ "lc_monetary", "C" }
};
var sp = dbConfig.SearchPath;
if ( !String.IsNullOrEmpty( sp ) )
{
parameters.Add( "search_path", sp );
}
await new StartupMessage( 3 << 16, parameters ).SendMessageAsync( ioArgs );
BackendMessageObject msg;
List<PgSQLError> notices = null;
Int32? backendProcessID = null;
Int32? backendKeyData = null;
TransactionStatus tStatus = 0;
Object saslState = null;
try
{
do
{