forked from vapor/postgres-nio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConnectionStateMachine.swift
1286 lines (1141 loc) · 53.1 KB
/
ConnectionStateMachine.swift
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
import NIOCore
struct ConnectionStateMachine {
typealias TransactionState = PSQLBackendMessage.TransactionState
struct ConnectionContext {
let processID: Int32
let secretKey: Int32
var parameters: [String: String]
var transactionState: TransactionState
}
struct BackendKeyData {
let processID: Int32
let secretKey: Int32
}
enum State {
case initialized
case sslRequestSent
case sslNegotiated
case sslHandlerAdded
case waitingToStartAuthentication
case authenticating(AuthenticationStateMachine)
case authenticated(BackendKeyData?, [String: String])
case readyForQuery(ConnectionContext)
case extendedQuery(ExtendedQueryStateMachine, ConnectionContext)
case prepareStatement(PrepareStatementStateMachine, ConnectionContext)
case closeCommand(CloseStateMachine, ConnectionContext)
case error(PSQLError)
case closing
case closed
case modifying
}
enum QuiescingState {
case notQuiescing
case quiescing(closePromise: EventLoopPromise<Void>?)
}
enum ConnectionAction {
struct CleanUpContext {
enum Action {
case close
case fireChannelInactive
}
let action: Action
/// Tasks to fail with the error
let tasks: [PSQLTask]
let error: PSQLError
let closePromise: EventLoopPromise<Void>?
}
case read
case wait
case sendSSLRequest
case establishSSLConnection
case provideAuthenticationContext
case forwardNotificationToListeners(PSQLBackendMessage.NotificationResponse)
case fireEventReadyForQuery
case fireChannelInactive
/// Close the connection by sending a `Terminate` message and then closing the connection. This is for clean shutdowns.
case closeConnection(EventLoopPromise<Void>?)
/// Close connection because of an error state. Fail all tasks with the provided error.
case closeConnectionAndCleanup(CleanUpContext)
// Auth Actions
case sendStartupMessage(AuthContext)
case sendPasswordMessage(PasswordAuthencationMode, AuthContext)
case sendSaslInitialResponse(name: String, initialResponse: [UInt8])
case sendSaslResponse([UInt8])
// Connection Actions
// --- general actions
case sendParseDescribeBindExecuteSync(query: String, binds: [PSQLEncodable])
case sendBindExecuteSync(statementName: String, binds: [PSQLEncodable])
case failQuery(ExtendedQueryContext, with: PSQLError, cleanupContext: CleanUpContext?)
case succeedQuery(ExtendedQueryContext, columns: [PSQLBackendMessage.RowDescription.Column])
case succeedQueryNoRowsComming(ExtendedQueryContext, commandTag: String)
// --- streaming actions
// actions if query has requested next row but we are waiting for backend
case forwardRows(CircularBuffer<PSQLBackendMessage.DataRow>)
case forwardStreamComplete(CircularBuffer<PSQLBackendMessage.DataRow>, commandTag: String)
case forwardStreamError(PSQLError, read: Bool, cleanupContext: CleanUpContext?)
// Prepare statement actions
case sendParseDescribeSync(name: String, query: String)
case succeedPreparedStatementCreation(PrepareStatementContext, with: PSQLBackendMessage.RowDescription?)
case failPreparedStatementCreation(PrepareStatementContext, with: PSQLError, cleanupContext: CleanUpContext?)
// Close actions
case sendCloseSync(CloseTarget)
case succeedClose(CloseCommandContext)
case failClose(CloseCommandContext, with: PSQLError, cleanupContext: CleanUpContext?)
}
private var state: State
private var taskQueue = CircularBuffer<PSQLTask>()
private var quiescingState: QuiescingState = .notQuiescing
init() {
self.state = .initialized
}
#if DEBUG
/// for testing purposes only
init(_ state: State) {
self.state = state
}
#endif
mutating func connected(requireTLS: Bool) -> ConnectionAction {
guard case .initialized = self.state else {
preconditionFailure("Unexpected state")
}
if requireTLS {
self.state = .sslRequestSent
return .sendSSLRequest
}
self.state = .waitingToStartAuthentication
return .provideAuthenticationContext
}
mutating func provideAuthenticationContext(_ authContext: AuthContext) -> ConnectionAction {
self.startAuthentication(authContext)
}
mutating func close(_ promise: EventLoopPromise<Void>?) -> ConnectionAction {
switch self.state {
case .closing, .closed, .error:
// we are already closed, but sometimes an upstream handler might want to close the
// connection, though it has already been closed by the remote. Typical race condition.
return .closeConnection(promise)
case .readyForQuery:
precondition(self.taskQueue.isEmpty, """
The state should only be .readyForQuery if there are no more tasks in the queue
""")
self.state = .closing
return .closeConnection(promise)
default:
switch self.quiescingState {
case .notQuiescing:
self.quiescingState = .quiescing(closePromise: promise)
case .quiescing(.some(let closePromise)):
closePromise.futureResult.cascade(to: promise)
case .quiescing(.none):
self.quiescingState = .quiescing(closePromise: promise)
}
return .wait
}
}
mutating func closed() -> ConnectionAction {
switch self.state {
case .initialized:
preconditionFailure("How can a connection be closed, if it was never connected.")
case .closed:
preconditionFailure("How can a connection be closed, if it is already closed.")
case .authenticated,
.sslRequestSent,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticating,
.readyForQuery,
.extendedQuery,
.prepareStatement,
.closeCommand:
return self.errorHappened(.uncleanShutdown)
case .error, .closing:
self.state = .closed
self.quiescingState = .notQuiescing
return .fireChannelInactive
case .modifying:
preconditionFailure("Invalid state")
}
}
mutating func sslSupportedReceived() -> ConnectionAction {
switch self.state {
case .sslRequestSent:
self.state = .sslNegotiated
return .establishSSLConnection
case .initialized,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticating,
.authenticated,
.readyForQuery,
.extendedQuery,
.prepareStatement,
.closeCommand,
.error,
.closing,
.closed:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.sslSupported))
case .modifying:
preconditionFailure("Invalid state: \(self.state)")
}
}
mutating func sslUnsupportedReceived() -> ConnectionAction {
switch self.state {
case .sslRequestSent:
return self.closeConnectionAndCleanup(.sslUnsupported)
case .initialized,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticating,
.authenticated,
.readyForQuery,
.extendedQuery,
.prepareStatement,
.closeCommand,
.error,
.closing,
.closed:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.sslSupported))
case .modifying:
preconditionFailure("Invalid state: \(self.state)")
}
}
mutating func sslHandlerAdded() -> ConnectionAction {
switch self.state {
case .initialized,
.sslRequestSent,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticating,
.authenticated,
.readyForQuery,
.extendedQuery,
.prepareStatement,
.closeCommand,
.error,
.closing,
.closed:
preconditionFailure("Can only add a ssl handler after negotiation: \(self.state)")
case .sslNegotiated:
self.state = .sslHandlerAdded
return .wait
case .modifying:
preconditionFailure("Invalid state: \(self.state)")
}
}
mutating func sslEstablished() -> ConnectionAction {
switch self.state {
case .initialized,
.sslRequestSent,
.sslNegotiated,
.waitingToStartAuthentication,
.authenticating,
.authenticated,
.readyForQuery,
.extendedQuery,
.prepareStatement,
.closeCommand,
.error,
.closing,
.closed:
preconditionFailure("Can only establish a ssl connection after adding a ssl handler: \(self.state)")
case .sslHandlerAdded:
self.state = .waitingToStartAuthentication
return .provideAuthenticationContext
case .modifying:
preconditionFailure("Invalid state: \(self.state)")
}
}
mutating func authenticationMessageReceived(_ message: PSQLBackendMessage.Authentication) -> ConnectionAction {
guard case .authenticating(var authState) = self.state else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.authentication(message)))
}
return self.avoidingStateMachineCoW { machine in
let action = authState.authenticationMessageReceived(message)
machine.state = .authenticating(authState)
return machine.modify(with: action)
}
}
mutating func backendKeyDataReceived(_ keyData: PSQLBackendMessage.BackendKeyData) -> ConnectionAction {
guard case .authenticated(_, let parameters) = self.state else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.backendKeyData(keyData)))
}
let keyData = BackendKeyData(
processID: keyData.processID,
secretKey: keyData.secretKey)
self.state = .authenticated(keyData, parameters)
return .wait
}
mutating func parameterStatusReceived(_ status: PSQLBackendMessage.ParameterStatus) -> ConnectionAction {
switch self.state {
case .sslRequestSent,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticating,
.closing:
self.state = .error(.unexpectedBackendMessage(.parameterStatus(status)))
return .wait
case .authenticated(let keyData, var parameters):
return self.avoidingStateMachineCoW { machine in
parameters[status.parameter] = status.value
machine.state = .authenticated(keyData, parameters)
return .wait
}
case .readyForQuery(var connectionContext):
return self.avoidingStateMachineCoW { machine in
connectionContext.parameters[status.parameter] = status.value
machine.state = .readyForQuery(connectionContext)
return .wait
}
case .extendedQuery(let query, var connectionContext):
return self.avoidingStateMachineCoW { machine in
connectionContext.parameters[status.parameter] = status.value
machine.state = .extendedQuery(query, connectionContext)
return .wait
}
case .prepareStatement(let prepareState, var connectionContext):
return self.avoidingStateMachineCoW { machine in
connectionContext.parameters[status.parameter] = status.value
machine.state = .prepareStatement(prepareState, connectionContext)
return .wait
}
case .closeCommand(let closeState, var connectionContext):
return self.avoidingStateMachineCoW { machine in
connectionContext.parameters[status.parameter] = status.value
machine.state = .closeCommand(closeState, connectionContext)
return .wait
}
case .error(_):
return .wait
case .initialized,
.closed:
preconditionFailure("We shouldn't receive messages if we are not connected")
case .modifying:
preconditionFailure("Invalid state")
}
}
mutating func errorReceived(_ errorMessage: PSQLBackendMessage.ErrorResponse) -> ConnectionAction {
switch self.state {
case .sslRequestSent,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticated,
.readyForQuery,
.error:
return self.closeConnectionAndCleanup(.server(errorMessage))
case .authenticating(var authState):
if authState.isComplete {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.error(errorMessage)))
}
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = authState.errorReceived(errorMessage)
machine.state = .authenticating(authState)
return machine.modify(with: action)
}
case .closeCommand(var closeStateMachine, let connectionContext):
if closeStateMachine.isComplete {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.error(errorMessage)))
}
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = closeStateMachine.errorReceived(errorMessage)
machine.state = .closeCommand(closeStateMachine, connectionContext)
return machine.modify(with: action)
}
case .extendedQuery(var extendedQueryState, let connectionContext):
if extendedQueryState.isComplete {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.error(errorMessage)))
}
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = extendedQueryState.errorReceived(errorMessage)
machine.state = .extendedQuery(extendedQueryState, connectionContext)
return machine.modify(with: action)
}
case .prepareStatement(var preparedState, let connectionContext):
if preparedState.isComplete {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.error(errorMessage)))
}
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = preparedState.errorReceived(errorMessage)
machine.state = .prepareStatement(preparedState, connectionContext)
return machine.modify(with: action)
}
case .closing:
// If the state machine is in state `.closing`, the connection shutdown was initiated
// by the client. This means a `TERMINATE` message has already been sent and the
// connection close was passed on to the channel. Therefore we await a channelInactive
// as the next event.
// Since a connection close was already issued, we should keep cool and just wait.
return .wait
case .initialized, .closed:
preconditionFailure("We should not receive server errors if we are not connected")
case .modifying:
preconditionFailure("Invalid state")
}
}
mutating func errorHappened(_ error: PSQLError) -> ConnectionAction {
switch self.state {
case .initialized,
.sslRequestSent,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticated,
.readyForQuery:
return self.closeConnectionAndCleanup(error)
case .authenticating(var authState):
let action = authState.errorHappened(error)
return self.modify(with: action)
case .extendedQuery(var queryState, _):
if queryState.isComplete {
return self.closeConnectionAndCleanup(error)
} else {
let action = queryState.errorHappened(error)
return self.modify(with: action)
}
case .prepareStatement(var prepareState, _):
if prepareState.isComplete {
return self.closeConnectionAndCleanup(error)
} else {
let action = prepareState.errorHappened(error)
return self.modify(with: action)
}
case .closeCommand(var closeState, _):
if closeState.isComplete {
return self.closeConnectionAndCleanup(error)
} else {
let action = closeState.errorHappened(error)
return self.modify(with: action)
}
case .error:
return .wait
case .closing:
// If the state machine is in state `.closing`, the connection shutdown was initiated
// by the client. This means a `TERMINATE` message has already been sent and the
// connection close was passed on to the channel. Therefore we await a channelInactive
// as the next event.
// For some reason Azure Postgres does not end ssl cleanly when terminating the
// connection. More documentation can be found in the issue:
// https://github.com/vapor/postgres-nio/issues/150
// Since a connection close was already issued, we should keep cool and just wait.
return .wait
case .closed:
return self.closeConnectionAndCleanup(error)
case .modifying:
preconditionFailure("Invalid state")
}
}
mutating func noticeReceived(_ notice: PSQLBackendMessage.NoticeResponse) -> ConnectionAction {
switch self.state {
case .extendedQuery(var extendedQuery, let connectionContext):
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = extendedQuery.noticeReceived(notice)
machine.state = .extendedQuery(extendedQuery, connectionContext)
return machine.modify(with: action)
}
default:
return .wait
}
}
mutating func notificationReceived(_ notification: PSQLBackendMessage.NotificationResponse) -> ConnectionAction {
return .forwardNotificationToListeners(notification)
}
mutating func readyForQueryReceived(_ transactionState: PSQLBackendMessage.TransactionState) -> ConnectionAction {
switch self.state {
case .authenticated(let backendKeyData, let parameters):
guard let keyData = backendKeyData else {
// `backendKeyData` must have been received, before receiving the first `readyForQuery`
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.readyForQuery(transactionState)))
}
let connectionContext = ConnectionContext(
processID: keyData.processID,
secretKey: keyData.secretKey,
parameters: parameters,
transactionState: transactionState)
self.state = .readyForQuery(connectionContext)
return self.executeNextQueryFromQueue()
case .extendedQuery(let extendedQuery, var connectionContext):
guard extendedQuery.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.readyForQuery(transactionState)))
}
connectionContext.transactionState = transactionState
self.state = .readyForQuery(connectionContext)
return self.executeNextQueryFromQueue()
case .prepareStatement(let preparedStateMachine, var connectionContext):
guard preparedStateMachine.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.readyForQuery(transactionState)))
}
connectionContext.transactionState = transactionState
self.state = .readyForQuery(connectionContext)
return self.executeNextQueryFromQueue()
case .closeCommand(let closeStateMachine, var connectionContext):
guard closeStateMachine.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.readyForQuery(transactionState)))
}
connectionContext.transactionState = transactionState
self.state = .readyForQuery(connectionContext)
return self.executeNextQueryFromQueue()
default:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.readyForQuery(transactionState)))
}
}
mutating func enqueue(task: PSQLTask) -> ConnectionAction {
// check if we are quiescing. if so fail task immidiatly
if case .quiescing = self.quiescingState {
switch task {
case .extendedQuery(let queryContext):
return .failQuery(queryContext, with: .connectionQuiescing, cleanupContext: nil)
case .preparedStatement(let prepareContext):
return .failPreparedStatementCreation(prepareContext, with: .connectionQuiescing, cleanupContext: nil)
case .closeCommand(let closeContext):
return .failClose(closeContext, with: .connectionQuiescing, cleanupContext: nil)
}
}
switch self.state {
case .readyForQuery:
return self.executeTask(task)
case .closed:
switch task {
case .extendedQuery(let queryContext):
return .failQuery(queryContext, with: .connectionClosed, cleanupContext: nil)
case .preparedStatement(let prepareContext):
return .failPreparedStatementCreation(prepareContext, with: .connectionClosed, cleanupContext: nil)
case .closeCommand(let closeContext):
return .failClose(closeContext, with: .connectionClosed, cleanupContext: nil)
}
default:
self.taskQueue.append(task)
return .wait
}
}
mutating func channelReadComplete() -> ConnectionAction {
switch self.state {
case .initialized,
.sslRequestSent,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticating,
.authenticated,
.readyForQuery,
.prepareStatement,
.closeCommand,
.error,
.closing,
.closed:
return .wait
case .extendedQuery(var extendedQuery, let connectionContext):
return self.avoidingStateMachineCoW { machine in
let action = extendedQuery.channelReadComplete()
machine.state = .extendedQuery(extendedQuery, connectionContext)
return machine.modify(with: action)
}
case .modifying:
preconditionFailure("Invalid state")
}
}
mutating func readEventCaught() -> ConnectionAction {
switch self.state {
case .initialized:
preconditionFailure("Received a read event on a connection that was never opened.")
case .sslRequestSent:
return .read
case .sslNegotiated:
return .read
case .sslHandlerAdded:
return .read
case .waitingToStartAuthentication:
return .read
case .authenticating:
return .read
case .authenticated:
return .read
case .readyForQuery:
return .read
case .extendedQuery(var extendedQuery, let connectionContext):
return self.avoidingStateMachineCoW { machine in
let action = extendedQuery.readEventCaught()
machine.state = .extendedQuery(extendedQuery, connectionContext)
return machine.modify(with: action)
}
case .prepareStatement(var preparedStatement, let connectionContext):
return self.avoidingStateMachineCoW { machine in
let action = preparedStatement.readEventCaught()
machine.state = .prepareStatement(preparedStatement, connectionContext)
return machine.modify(with: action)
}
case .closeCommand(var closeState, let connectionContext):
return self.avoidingStateMachineCoW { machine in
let action = closeState.readEventCaught()
machine.state = .closeCommand(closeState, connectionContext)
return machine.modify(with: action)
}
case .error:
return .read
case .closing:
return .read
case .closed:
preconditionFailure("How can we receive a read, if the connection is closed")
case .modifying:
preconditionFailure("Invalid state")
}
}
// MARK: - Running Queries -
mutating func parseCompleteReceived() -> ConnectionAction {
switch self.state {
case .extendedQuery(var queryState, let connectionContext) where !queryState.isComplete:
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = queryState.parseCompletedReceived()
machine.state = .extendedQuery(queryState, connectionContext)
return machine.modify(with: action)
}
case .prepareStatement(var preparedState, let connectionContext) where !preparedState.isComplete:
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = preparedState.parseCompletedReceived()
machine.state = .prepareStatement(preparedState, connectionContext)
return machine.modify(with: action)
}
default:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.parseComplete))
}
}
mutating func bindCompleteReceived() -> ConnectionAction {
guard case .extendedQuery(var queryState, let connectionContext) = self.state, !queryState.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.bindComplete))
}
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = queryState.bindCompleteReceived()
machine.state = .extendedQuery(queryState, connectionContext)
return machine.modify(with: action)
}
}
mutating func parameterDescriptionReceived(_ description: PSQLBackendMessage.ParameterDescription) -> ConnectionAction {
switch self.state {
case .extendedQuery(var queryState, let connectionContext) where !queryState.isComplete:
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = queryState.parameterDescriptionReceived(description)
machine.state = .extendedQuery(queryState, connectionContext)
return machine.modify(with: action)
}
case .prepareStatement(var preparedState, let connectionContext) where !preparedState.isComplete:
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = preparedState.parameterDescriptionReceived(description)
machine.state = .prepareStatement(preparedState, connectionContext)
return machine.modify(with: action)
}
default:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.parameterDescription(description)))
}
}
mutating func rowDescriptionReceived(_ description: PSQLBackendMessage.RowDescription) -> ConnectionAction {
switch self.state {
case .extendedQuery(var queryState, let connectionContext) where !queryState.isComplete:
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = queryState.rowDescriptionReceived(description)
machine.state = .extendedQuery(queryState, connectionContext)
return machine.modify(with: action)
}
case .prepareStatement(var preparedState, let connectionContext) where !preparedState.isComplete:
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = preparedState.rowDescriptionReceived(description)
machine.state = .prepareStatement(preparedState, connectionContext)
return machine.modify(with: action)
}
default:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.rowDescription(description)))
}
}
mutating func noDataReceived() -> ConnectionAction {
switch self.state {
case .extendedQuery(var queryState, let connectionContext) where !queryState.isComplete:
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = queryState.noDataReceived()
machine.state = .extendedQuery(queryState, connectionContext)
return machine.modify(with: action)
}
case .prepareStatement(var preparedState, let connectionContext) where !preparedState.isComplete:
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = preparedState.noDataReceived()
machine.state = .prepareStatement(preparedState, connectionContext)
return machine.modify(with: action)
}
default:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.noData))
}
}
mutating func portalSuspendedReceived() -> ConnectionAction {
self.closeConnectionAndCleanup(.unexpectedBackendMessage(.portalSuspended))
}
mutating func closeCompletedReceived() -> ConnectionAction {
guard case .closeCommand(var closeState, let connectionContext) = self.state, !closeState.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.closeComplete))
}
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = closeState.closeCompletedReceived()
machine.state = .closeCommand(closeState, connectionContext)
return machine.modify(with: action)
}
}
mutating func commandCompletedReceived(_ commandTag: String) -> ConnectionAction {
guard case .extendedQuery(var queryState, let connectionContext) = self.state, !queryState.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.commandComplete(commandTag)))
}
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = queryState.commandCompletedReceived(commandTag)
machine.state = .extendedQuery(queryState, connectionContext)
return machine.modify(with: action)
}
}
mutating func emptyQueryResponseReceived() -> ConnectionAction {
guard case .extendedQuery(var queryState, let connectionContext) = self.state, !queryState.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.emptyQueryResponse))
}
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = queryState.emptyQueryResponseReceived()
machine.state = .extendedQuery(queryState, connectionContext)
return machine.modify(with: action)
}
}
mutating func dataRowReceived(_ dataRow: PSQLBackendMessage.DataRow) -> ConnectionAction {
guard case .extendedQuery(var queryState, let connectionContext) = self.state, !queryState.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.dataRow(dataRow)))
}
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = queryState.dataRowReceived(dataRow)
machine.state = .extendedQuery(queryState, connectionContext)
return machine.modify(with: action)
}
}
// MARK: Consumer
mutating func cancelQueryStream() -> ConnectionAction {
preconditionFailure("Unimplemented")
}
mutating func requestQueryRows() -> ConnectionAction {
guard case .extendedQuery(var queryState, let connectionContext) = self.state, !queryState.isComplete else {
preconditionFailure("Tried to consume next row, without active query")
}
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
let action = queryState.requestQueryRows()
machine.state = .extendedQuery(queryState, connectionContext)
return machine.modify(with: action)
}
}
// MARK: - Private Methods -
private mutating func startAuthentication(_ authContext: AuthContext) -> ConnectionAction {
guard case .waitingToStartAuthentication = self.state else {
preconditionFailure("Can only start authentication after connect or ssl establish")
}
return self.avoidingStateMachineCoW { machine in
var authState = AuthenticationStateMachine(authContext: authContext)
let action = authState.start()
machine.state = .authenticating(authState)
return machine.modify(with: action)
}
}
private mutating func closeConnectionAndCleanup(_ error: PSQLError) -> ConnectionAction {
switch self.state {
case .initialized,
.sslRequestSent,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticated,
.readyForQuery:
let cleanupContext = self.setErrorAndCreateCleanupContext(error)
return .closeConnectionAndCleanup(cleanupContext)
case .authenticating(var authState):
let cleanupContext = self.setErrorAndCreateCleanupContext(error)
if authState.isComplete {
// in case the auth state machine is complete all necessary actions have already
// been forwarded to the consumer. We can close and cleanup without caring about the
// substate machine.
return .closeConnectionAndCleanup(cleanupContext)
}
let action = authState.errorHappened(error)
guard case .reportAuthenticationError = action else {
preconditionFailure("Expect to fail auth")
}
return .closeConnectionAndCleanup(cleanupContext)
case .extendedQuery(var queryStateMachine, _):
let cleanupContext = self.setErrorAndCreateCleanupContext(error)
if queryStateMachine.isComplete {
// in case the query state machine is complete all necessary actions have already
// been forwarded to the consumer. We can close and cleanup without caring about the
// substate machine.
return .closeConnectionAndCleanup(cleanupContext)
}
switch queryStateMachine.errorHappened(error) {
case .sendParseDescribeBindExecuteSync,
.sendBindExecuteSync,
.succeedQuery,
.succeedQueryNoRowsComming,
.forwardRows,
.forwardStreamComplete,
.wait,
.read:
preconditionFailure("Expecting only failure actions if an error happened")
case .failQuery(let queryContext, with: let error):
return .failQuery(queryContext, with: error, cleanupContext: cleanupContext)
case .forwardStreamError(let error, let read):
return .forwardStreamError(error, read: read, cleanupContext: cleanupContext)
}
case .prepareStatement(var prepareStateMachine, _):
let cleanupContext = self.setErrorAndCreateCleanupContext(error)
if prepareStateMachine.isComplete {
// in case the prepare state machine is complete all necessary actions have already
// been forwarded to the consumer. We can close and cleanup without caring about the
// substate machine.
return .closeConnectionAndCleanup(cleanupContext)
}
switch prepareStateMachine.errorHappened(error) {
case .sendParseDescribeSync,
.succeedPreparedStatementCreation,
.read,
.wait:
preconditionFailure("Expecting only failure actions if an error happened")
case .failPreparedStatementCreation(let preparedStatementContext, with: let error):
return .failPreparedStatementCreation(preparedStatementContext, with: error, cleanupContext: cleanupContext)
}
case .closeCommand(var closeStateMachine, _):
let cleanupContext = self.setErrorAndCreateCleanupContext(error)
if closeStateMachine.isComplete {
// in case the close state machine is complete all necessary actions have already
// been forwarded to the consumer. We can close and cleanup without caring about the
// substate machine.
return .closeConnectionAndCleanup(cleanupContext)
}
switch closeStateMachine.errorHappened(error) {
case .sendCloseSync,
.succeedClose,
.read,
.wait:
preconditionFailure("Expecting only failure actions if an error happened")
case .failClose(let closeCommandContext, with: let error):
return .failClose(closeCommandContext, with: error, cleanupContext: cleanupContext)
}
case .error:
// TBD: this is an interesting case. why would this case happen?
let cleanupContext = self.setErrorAndCreateCleanupContext(error)
return .closeConnectionAndCleanup(cleanupContext)
case .closing:
let cleanupContext = self.setErrorAndCreateCleanupContext(error)
return .closeConnectionAndCleanup(cleanupContext)
case .closed:
preconditionFailure("How can an error occur if the connection is already closed?")
case .modifying:
preconditionFailure("Invalid state")
}
}
private mutating func executeNextQueryFromQueue() -> ConnectionAction {
guard case .readyForQuery = self.state else {
preconditionFailure("Only expected to be invoked, if we are readyToQuery")
}
if let task = self.taskQueue.popFirst() {
return self.executeTask(task)
}
// if we don't have anything left to do and we are quiescing, next we should close
if case .quiescing(let promise) = self.quiescingState {
self.state = .closing
return .closeConnection(promise)
}
return .fireEventReadyForQuery
}
private mutating func executeTask(_ task: PSQLTask) -> ConnectionAction {
guard case .readyForQuery(let connectionContext) = self.state else {
preconditionFailure("Only expected to be invoked, if we are readyToQuery")
}
switch task {
case .extendedQuery(let queryContext):
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
var extendedQuery = ExtendedQueryStateMachine(queryContext: queryContext)
let action = extendedQuery.start()
machine.state = .extendedQuery(extendedQuery, connectionContext)
return machine.modify(with: action)
}
case .preparedStatement(let prepareContext):
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
var prepareStatement = PrepareStatementStateMachine(createContext: prepareContext)
let action = prepareStatement.start()
machine.state = .prepareStatement(prepareStatement, connectionContext)
return machine.modify(with: action)
}
case .closeCommand(let closeContext):
return self.avoidingStateMachineCoW { machine -> ConnectionAction in
var closeStateMachine = CloseStateMachine(closeContext: closeContext)
let action = closeStateMachine.start()
machine.state = .closeCommand(closeStateMachine, connectionContext)
return machine.modify(with: action)
}
}
}
struct Configuration {
let requireTLS: Bool
}
}
// MARK: CoW helpers
extension ConnectionStateMachine {
/// So, uh...this function needs some explaining.