pg-proto 0.1.1

Session-typed PostgreSQL wire protocol
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
//! Server-role query sessions used when a proxy terminates the client protocol.

use std::io;
use std::marker::PhantomData;

use bytes::Bytes;

use crate::{
    Conn, Dirty,
    auth::Ready,
    codec::{
        BackendMessage, Bind, Close, CopyResponse, Describe, DiagnosticResponse, Execute, Frame,
        FrontendMessage, FunctionCall, Parse, RowDescription, TransactionStatus,
    },
    grammar::backend,
    pre_startup::Terminated,
    replication::{BackendReplication, FrontendReplication},
};

#[derive(Debug)]
/// A client simple query is being served.
pub enum ServerSimpleQuery {}

#[derive(Debug)]
/// A simple-query error was sent and readiness must follow.
pub enum ServerSimpleError {}

#[derive(Debug)]
/// A legacy function call is being served.
pub enum ServerFunctionCall {}

#[derive(Debug)]
/// A function result was sent and readiness must follow.
pub enum ServerFunctionCallDone {}

#[derive(Debug)]
/// A function-call error was sent and readiness must follow.
pub enum ServerFunctionCallError {}

#[derive(Debug)]
/// The server is accepting an extended-query pipeline.
pub enum ServerBuilding {}

#[derive(Debug)]
/// An inspected `Parse` awaits its response.
pub enum ServerParse {}

#[derive(Debug)]
/// An inspected `Bind` awaits its response.
pub enum ServerBind {}

#[derive(Debug)]
/// An inspected `Describe` awaits its response.
pub enum ServerDescribe {}

#[derive(Debug)]
/// An inspected `Execute` is being served.
pub enum ServerExecute {}

#[derive(Debug)]
/// An inspected `Close` awaits its response.
pub enum ServerClose {}

#[derive(Debug)]
/// A client `Sync` awaits `ReadyForQuery`.
pub enum ServerSync {}

#[derive(Debug)]
/// A failed extended pipeline is discarded until `Sync`.
pub enum ServerExtendedError {}

#[derive(Debug)]
/// COPY resumes in a simple-query session.
pub enum CopySimple {}

#[derive(Debug)]
/// COPY resumes in an extended-query session.
pub enum CopyExtended {}

/// Maps a COPY resumption marker to its generated nested-session states.
pub trait CopyResume {
    /// Generated state while both COPY directions remain open.
    const BOTH_OPEN_STATE: backend::RuntimeState;
    /// Generated state after the server closes its COPY direction.
    const BOTH_SERVER_DONE_STATE: backend::RuntimeState;
}

impl CopyResume for CopySimple {
    const BOTH_OPEN_STATE: backend::RuntimeState = backend::RuntimeState::SimpleCopyBoth;
    const BOTH_SERVER_DONE_STATE: backend::RuntimeState =
        backend::RuntimeState::SimpleCopyBothServerDone;
}

impl CopyResume for CopyExtended {
    const BOTH_OPEN_STATE: backend::RuntimeState = backend::RuntimeState::ExtendedCopyBoth;
    const BOTH_SERVER_DONE_STATE: backend::RuntimeState =
        backend::RuntimeState::ExtendedCopyBothServerDone;
}

#[derive(Debug)]
/// Server-role COPY IN stream, resumed according to `Resume`.
pub struct ServerCopyIn<Resume>(PhantomData<Resume>);

#[derive(Debug)]
/// Client completed a server-role COPY IN stream.
pub struct ServerCopyInDone<Resume>(PhantomData<Resume>);

#[derive(Debug)]
/// Client failed a server-role COPY IN stream.
pub struct ServerCopyInFailed<Resume>(PhantomData<Resume>);

#[derive(Debug)]
/// Server-role COPY OUT stream, resumed according to `Resume`.
pub struct ServerCopyOut<Resume>(PhantomData<Resume>);

#[derive(Debug)]
/// Server completed a server-role COPY OUT stream.
pub struct ServerCopyOutDone<Resume>(PhantomData<Resume>);

#[derive(Debug)]
/// Both halves of a COPY BOTH stream remain open.
pub enum BothOpen {}

#[derive(Debug)]
/// The client half of a COPY BOTH stream is closed.
pub enum BothClientDone {}

#[derive(Debug)]
/// The server half of a COPY BOTH stream is closed.
pub enum BothServerDone {}

#[derive(Debug)]
/// Both halves of a COPY BOTH stream are closed.
pub enum BothDone {}

#[derive(Debug)]
/// Server-role COPY BOTH stream parameterised by resumption and half-close state.
pub struct ServerCopyBoth<Resume, Ends>(PhantomData<(Resume, Ends)>);

#[derive(Debug)]
/// Client failed a server-role COPY BOTH stream.
pub struct ServerCopyBothFailed<Resume>(PhantomData<Resume>);

/// Client choice while both COPY BOTH directions remain open.
#[derive(Debug)]
pub enum ServerCopyBothOpenOffer<S, C, Resume> {
    /// The client sent one opaque data chunk.
    Data {
        /// Connection remaining in COPY BOTH.
        conn: Conn<S, ServerCopyBoth<Resume, BothOpen>, C>,
        /// Copy payload.
        data: Bytes,
    },
    /// The client closed its sending half.
    Done(Conn<S, ServerCopyBoth<Resume, BothClientDone>, C>),
    /// The client aborted COPY.
    Fail {
        /// Failed COPY connection.
        conn: Conn<S, ServerCopyBothFailed<Resume>, C>,
        /// Client error message without its terminating NUL.
        message: Bytes,
    },
}

/// Client choice after the server closes its COPY BOTH direction.
#[derive(Debug)]
pub enum ServerCopyBothServerDoneOffer<S, C, Resume> {
    /// The client sent one final opaque data chunk.
    Data {
        /// Connection with only the client direction open.
        conn: Conn<S, ServerCopyBoth<Resume, BothServerDone>, C>,
        /// Copy payload.
        data: Bytes,
    },
    /// The client closed the remaining direction.
    Done(Conn<S, ServerCopyBoth<Resume, BothDone>, C>),
    /// The client aborted COPY.
    Fail {
        /// Failed COPY connection.
        conn: Conn<S, ServerCopyBothFailed<Resume>, C>,
        /// Client error message without its terminating NUL.
        message: Bytes,
    },
}

/// Typed standby choice while both replication directions remain open.
#[derive(Debug)]
pub enum ServerReplicationOpenOffer<S, C, Resume> {
    /// The standby sent one decoded replication message.
    Message {
        /// Connection remaining in COPY BOTH.
        conn: Conn<S, ServerCopyBoth<Resume, BothOpen>, C>,
        /// Decoded standby message.
        message: FrontendReplication,
    },
    /// The standby closed its sending half.
    Done(Conn<S, ServerCopyBoth<Resume, BothClientDone>, C>),
    /// The standby aborted replication.
    Fail {
        /// Failed replication connection.
        conn: Conn<S, ServerCopyBothFailed<Resume>, C>,
        /// Standby error message without its terminating NUL.
        message: Bytes,
    },
}

/// Typed standby choice after the walsender closes its direction.
#[derive(Debug)]
pub enum ServerReplicationServerDoneOffer<S, C, Resume> {
    /// The standby sent one final decoded replication message.
    Message {
        /// Connection with only the standby direction open.
        conn: Conn<S, ServerCopyBoth<Resume, BothServerDone>, C>,
        /// Decoded standby message.
        message: FrontendReplication,
    },
    /// The standby closed the remaining direction.
    Done(Conn<S, ServerCopyBoth<Resume, BothDone>, C>),
    /// The standby aborted replication.
    Fail {
        /// Failed replication connection.
        conn: Conn<S, ServerCopyBothFailed<Resume>, C>,
        /// Standby error message without its terminating NUL.
        message: Bytes,
    },
}

/// Replication projection preserving the open connection when decoding fails.
pub type ServerReplicationOpenProjection<S, C, Resume> = Result<
    ServerReplicationOpenOffer<S, C, Resume>,
    (Conn<S, ServerCopyBoth<Resume, BothOpen>, C>, io::Error),
>;
/// Replication projection after server half-close, preserving decode failures.
pub type ServerReplicationServerDoneProjection<S, C, Resume> = Result<
    ServerReplicationServerDoneOffer<S, C, Resume>,
    (
        Conn<S, ServerCopyBoth<Resume, BothServerDone>, C>,
        io::Error,
    ),
>;

/// Client choice inside a server-role COPY IN sub-session.
#[derive(Debug)]
pub enum ServerCopyInOffer<S, C, Resume> {
    /// The client sent one data chunk.
    Data {
        /// Connection remaining in COPY IN.
        conn: Conn<S, ServerCopyIn<Resume>, C>,
        /// Copy payload.
        data: Bytes,
    },
    /// The client completed COPY IN.
    Done(Conn<S, ServerCopyInDone<Resume>, C>),
    /// The client aborted COPY IN.
    Fail {
        /// Failed COPY connection.
        conn: Conn<S, ServerCopyInFailed<Resume>, C>,
        /// Client error message without its terminating NUL.
        message: Bytes,
    },
}

/// COPY IN projection preserving the connection and message on mismatch.
pub type CopyInProjection<S, C, Resume> = Result<
    ServerCopyInOffer<S, C, Resume>,
    Box<(Conn<S, ServerCopyIn<Resume>, C>, FrontendMessage)>,
>;
/// Result of starting a server-role COPY IN stream.
pub type CopyInStart<S, C, Resume> = io::Result<(Conn<S, ServerCopyIn<Resume>, C>, Frame)>;
/// Result of starting a server-role COPY OUT stream.
pub type CopyOutStart<S, C, Resume> = io::Result<(Conn<S, ServerCopyOut<Resume>, C>, Frame)>;
/// Result of closing a server-role COPY OUT stream.
pub type CopyOutCompletion<S, C, Resume> =
    io::Result<(Conn<S, ServerCopyOutDone<Resume>, C>, Frame)>;
/// Result of starting a server-role COPY BOTH stream.
pub type CopyBothStart<S, C, Resume> =
    io::Result<(Conn<S, ServerCopyBoth<Resume, BothOpen>, C>, Frame)>;
/// COPY BOTH projection while both directions remain open.
pub type CopyBothOpenProjection<S, C, Resume> = Result<
    ServerCopyBothOpenOffer<S, C, Resume>,
    Box<(
        Conn<S, ServerCopyBoth<Resume, BothOpen>, C>,
        FrontendMessage,
    )>,
>;
/// COPY BOTH projection after the server direction closes.
pub type CopyBothServerDoneProjection<S, C, Resume> = Result<
    ServerCopyBothServerDoneOffer<S, C, Resume>,
    Box<(
        Conn<S, ServerCopyBoth<Resume, BothServerDone>, C>,
        FrontendMessage,
    )>,
>;
/// Result of closing the server half of COPY BOTH.
pub type CopyBothServerHalfClose<S, C, Resume> =
    io::Result<(Conn<S, ServerCopyBoth<Resume, BothServerDone>, C>, Frame)>;
/// Result of completing COPY BOTH after both halves close.
pub type CopyBothCompletion<S, C, Resume> =
    io::Result<(Conn<S, ServerCopyBoth<Resume, BothDone>, C>, Frame)>;

/// External choice offered by a client while the server role is ready.
#[derive(Debug)]
pub enum ServerReadyOffer<S, C> {
    /// A simple query, conservatively marking the session dirty.
    Query {
        /// Connection serving the query.
        conn: Conn<S, ServerSimpleQuery, Dirty>,
        /// Inspectable and replaceable SQL bytes.
        query: Bytes,
    },
    /// A legacy function-call request.
    FunctionCall {
        /// Connection serving the function call.
        conn: Conn<S, ServerFunctionCall, Dirty>,
        /// Fully decoded function-call message.
        message: FunctionCall,
    },
    /// One message in an extended-query pipeline.
    Extended(ServerExtendedOffer<S, C>),
    /// The client terminated the session.
    Terminate(Conn<S, Terminated, C>),
}

/// A response-specific branch of the extended-query building loop.
#[derive(Debug)]
pub enum ServerExtendedOffer<S, C> {
    /// An inspected and reconstructable `Parse` request.
    Parse {
        /// Connection awaiting a parse response.
        conn: Conn<S, ServerParse, Dirty>,
        /// Decoded request available to application policy.
        message: Parse,
    },
    /// An inspected and reconstructable `Bind` request.
    Bind {
        /// Connection awaiting a bind response.
        conn: Conn<S, ServerBind, Dirty>,
        /// Decoded request available to application policy.
        message: Bind,
    },
    /// An inspected and reconstructable `Describe` request.
    Describe {
        /// Connection awaiting a description response.
        conn: Conn<S, ServerDescribe, C>,
        /// Decoded request available to application policy.
        message: Describe,
    },
    /// An inspected and reconstructable `Execute` request.
    Execute {
        /// Connection serving the portal execution.
        conn: Conn<S, ServerExecute, C>,
        /// Decoded request available to application policy.
        message: Execute,
    },
    /// An inspected and reconstructable `Close` request.
    Close {
        /// Connection awaiting a close response.
        conn: Conn<S, ServerClose, C>,
        /// Decoded request available to application policy.
        message: Close,
    },
    /// The client requested immediate delivery of buffered responses.
    Flush(Conn<S, ServerBuilding, C>),
    /// The client ended the pipeline.
    Sync(Conn<S, ServerSync, C>),
}

/// Projection while discarding a failed pipeline up to its synchronisation point.
#[derive(Debug)]
pub enum ServerDiscard<S, C> {
    /// A pipeline message was discarded; continue until synchronisation.
    Continue(Conn<S, ServerExtendedError, C>),
    /// `Sync` ended the failed pipeline.
    Sync(Conn<S, ServerSync, C>),
}

/// Ready state produced from the status byte sent to the client.
#[derive(Debug)]
pub enum ServerReadyState<S, C> {
    /// Idle readiness retained the existing cleanliness index.
    Ready(Conn<S, Ready, C>),
    /// Non-idle readiness made the connection dirty.
    Dirty {
        /// Ready connection carrying the dirty marker.
        conn: Conn<S, Ready, Dirty>,
        /// Transaction status sent to the client.
        status: TransactionStatus,
    },
}

/// Projection of a client ready-state choice, preserving invalid input.
pub type ReadyProjection<S, C> =
    Result<ServerReadyOffer<S, C>, Box<(Conn<S, Ready, C>, FrontendMessage)>>;
/// Projection of an extended-query choice, preserving invalid input.
pub type ExtendedProjection<S, Phase, C> =
    Result<ServerExtendedOffer<S, C>, Box<(Conn<S, Phase, C>, FrontendMessage)>>;

impl<S, C> Conn<S, Ready, C> {
    /// Projects an inspected client message into the server-role ready state.
    ///
    /// # Errors
    ///
    /// Returns the unchanged connection and message for choices not yet legal in
    /// this simple-query projection.
    pub fn offer_frontend(self, message: FrontendMessage) -> ReadyProjection<S, C> {
        match (
            backend::project_external(backend::RuntimeState::Ready, &message),
            message,
        ) {
            (Some(backend::Event::Query), FrontendMessage::Query(query)) => {
                Ok(ServerReadyOffer::Query {
                    conn: self.transition(),
                    query,
                })
            }
            (Some(backend::Event::FunctionCall), FrontendMessage::FunctionCall(message)) => {
                Ok(ServerReadyOffer::FunctionCall {
                    conn: self.transition(),
                    message,
                })
            }
            (Some(backend::Event::Terminate), FrontendMessage::Terminate) => {
                Ok(ServerReadyOffer::Terminate(self.transition()))
            }
            (Some(_), other) => project_extended(self, backend::RuntimeState::Ready, other)
                .map(ServerReadyOffer::Extended),
            (None, other) => Err(Box::new((self, other))),
        }
    }

    /// Accepts inspected query text which cannot retain client session state.
    pub fn accept_stateless_query(self, query: Bytes) -> (Conn<S, ServerSimpleQuery, C>, Bytes) {
        (self.transition(), query)
    }

    /// Accepts an allow-listed function call known not to retain session state.
    pub fn accept_stateless_function_call(
        self,
        message: FunctionCall,
    ) -> (Conn<S, ServerFunctionCall, C>, FunctionCall) {
        (self.transition(), message)
    }
}

impl<S, C> Conn<S, ServerFunctionCall, C> {
    /// Sends the typed function result before the mandatory ready message.
    ///
    /// # Errors
    ///
    /// Returns an error if the result is too large for a wire frame.
    pub fn respond(self, value: Bytes) -> io::Result<(Conn<S, ServerFunctionCallDone, C>, Frame)> {
        Ok((
            self.transition(),
            BackendMessage::FunctionCallResponse(value).to_frame()?,
        ))
    }

    /// Rejects the call before the mandatory ready message.
    ///
    /// # Errors
    ///
    /// Returns an error if a diagnostic field is invalid.
    pub fn error(
        self,
        response: DiagnosticResponse,
    ) -> io::Result<(Conn<S, ServerFunctionCallError, C>, Frame)> {
        Ok((
            self.transition(),
            BackendMessage::ErrorResponse(response).to_frame()?,
        ))
    }
}

impl<S, C> Conn<S, ServerFunctionCallDone, C> {
    /// Sends readiness after a successful function call.
    ///
    /// # Errors
    ///
    /// Returns an error only if the fixed ready message cannot be encoded.
    pub fn ready(self, status: TransactionStatus) -> io::Result<(ServerReadyState<S, C>, Frame)> {
        ready(self, status)
    }
}

impl<S, C> Conn<S, ServerFunctionCallError, C> {
    /// Sends readiness after a failed function call.
    ///
    /// # Errors
    ///
    /// Returns an error only if the fixed ready message cannot be encoded.
    pub fn ready(self, status: TransactionStatus) -> io::Result<(ServerReadyState<S, C>, Frame)> {
        ready(self, status)
    }
}

impl<S, C> Conn<S, ServerBuilding, C> {
    /// Projects the next inspected message in an extended-query pipeline.
    ///
    /// # Errors
    ///
    /// Returns the unchanged state and message if it is not legal before `Sync`.
    pub fn offer_frontend(
        self,
        message: FrontendMessage,
    ) -> ExtendedProjection<S, ServerBuilding, C> {
        project_extended(self, backend::RuntimeState::Building, message)
    }
}

impl<S, C> Conn<S, ServerSimpleQuery, C> {
    /// Sends a non-terminal typed result message after proxy inspection or rewriting.
    ///
    /// # Errors
    ///
    /// Returns an error if the message cannot be reconstructed, or if it would
    /// prematurely change the simple-query state.
    pub fn send(self, message: &BackendMessage) -> io::Result<(Self, Frame)> {
        if matches!(
            message,
            BackendMessage::ErrorResponse(_)
                | BackendMessage::ReadyForQuery(_)
                | BackendMessage::CopyInResponse(_)
                | BackendMessage::CopyOutResponse(_)
                | BackendMessage::CopyBothResponse(_)
        ) {
            return Err(io::Error::new(
                io::ErrorKind::InvalidInput,
                "state-changing response requires its typed transition",
            ));
        }
        Ok((self, message.to_frame()?))
    }

    /// Sends an error response before the mandatory `ReadyForQuery`.
    ///
    /// # Errors
    ///
    /// Returns an error if a diagnostic field is invalid.
    pub fn error(
        self,
        response: DiagnosticResponse,
    ) -> io::Result<(Conn<S, ServerSimpleError, C>, Frame)> {
        Ok((
            self.transition(),
            BackendMessage::ErrorResponse(response).to_frame()?,
        ))
    }

    /// Starts a simple-query COPY IN sub-session.
    ///
    /// # Errors
    ///
    /// Returns an error if the format count overflows the protocol field.
    pub fn copy_in(self, response: CopyResponse) -> CopyInStart<S, C, CopySimple> {
        Ok((
            self.transition(),
            BackendMessage::CopyInResponse(response).to_frame()?,
        ))
    }

    /// Starts a simple-query COPY OUT sub-session.
    ///
    /// # Errors
    ///
    /// Returns an error if the format count overflows the protocol field.
    pub fn copy_out(self, response: CopyResponse) -> CopyOutStart<S, C, CopySimple> {
        Ok((
            self.transition(),
            BackendMessage::CopyOutResponse(response).to_frame()?,
        ))
    }

    /// Starts a simple-query COPY BOTH sub-session.
    ///
    /// # Errors
    ///
    /// Returns an error if the format count overflows the protocol field.
    pub fn copy_both(self, response: CopyResponse) -> CopyBothStart<S, C, CopySimple> {
        Ok((
            self.transition(),
            BackendMessage::CopyBothResponse(response).to_frame()?,
        ))
    }

    /// Ends a successful simple-query exchange and surfaces transaction status.
    ///
    /// # Errors
    ///
    /// Returns an error only if the fixed ready message cannot be encoded.
    pub fn ready(self, status: TransactionStatus) -> io::Result<(ServerReadyState<S, C>, Frame)> {
        ready(self, status)
    }
}

impl<S, C> Conn<S, ServerSimpleError, C> {
    /// Ends an errored simple-query exchange and surfaces transaction status.
    ///
    /// # Errors
    ///
    /// Returns an error only if the fixed ready message cannot be encoded.
    pub fn ready(self, status: TransactionStatus) -> io::Result<(ServerReadyState<S, C>, Frame)> {
        ready(self, status)
    }
}

impl<S, C> Conn<S, ServerParse, C> {
    /// Confirms a successful `Parse` and returns to the building loop.
    ///
    /// # Errors
    ///
    /// Returns an error only if the fixed response cannot be encoded.
    pub fn complete(self) -> io::Result<(Conn<S, ServerBuilding, C>, Frame)> {
        Ok((self.transition(), BackendMessage::ParseComplete.to_frame()?))
    }

    /// Rejects `Parse` and begins discarding the pipeline until `Sync`.
    ///
    /// # Errors
    ///
    /// Returns an error if a diagnostic field is invalid.
    pub fn error(
        self,
        response: DiagnosticResponse,
    ) -> io::Result<(Conn<S, ServerExtendedError, C>, Frame)> {
        extended_error(self, response)
    }
}

impl<S, C> Conn<S, ServerBind, C> {
    /// Confirms a successful `Bind` and returns to the building loop.
    ///
    /// # Errors
    ///
    /// Returns an error only if the fixed response cannot be encoded.
    pub fn complete(self) -> io::Result<(Conn<S, ServerBuilding, C>, Frame)> {
        Ok((self.transition(), BackendMessage::BindComplete.to_frame()?))
    }

    /// Rejects `Bind` and begins discarding the pipeline until `Sync`.
    ///
    /// # Errors
    ///
    /// Returns an error if a diagnostic field is invalid.
    pub fn error(
        self,
        response: DiagnosticResponse,
    ) -> io::Result<(Conn<S, ServerExtendedError, C>, Frame)> {
        extended_error(self, response)
    }
}

impl<S, C> Conn<S, ServerClose, C> {
    /// Confirms `Close` and returns to the building loop.
    ///
    /// # Errors
    ///
    /// Returns an error only if the fixed response cannot be encoded.
    pub fn complete(self) -> io::Result<(Conn<S, ServerBuilding, C>, Frame)> {
        Ok((self.transition(), BackendMessage::CloseComplete.to_frame()?))
    }

    /// Rejects `Close` and begins discarding the pipeline until `Sync`.
    ///
    /// # Errors
    ///
    /// Returns an error if a diagnostic field is invalid.
    pub fn error(
        self,
        response: DiagnosticResponse,
    ) -> io::Result<(Conn<S, ServerExtendedError, C>, Frame)> {
        extended_error(self, response)
    }
}

impl<S, C> Conn<S, ServerDescribe, C> {
    /// Sends statement parameter OIDs before its row metadata.
    ///
    /// # Errors
    ///
    /// Returns an error if the OID count overflows the protocol field.
    pub fn parameter_description(self, oids: Vec<u32>) -> io::Result<(Self, Frame)> {
        Ok((self, BackendMessage::ParameterDescription(oids).to_frame()?))
    }

    /// Sends reconstructable row metadata and returns to the building loop.
    ///
    /// # Errors
    ///
    /// Returns an error if field metadata is invalid.
    pub fn row_description(
        self,
        description: RowDescription,
    ) -> io::Result<(Conn<S, ServerBuilding, C>, Frame)> {
        Ok((
            self.transition(),
            BackendMessage::RowDescription(description).to_frame()?,
        ))
    }

    /// Sends `NoData` and returns to the building loop.
    ///
    /// # Errors
    ///
    /// Returns an error only if the fixed response cannot be encoded.
    pub fn no_data(self) -> io::Result<(Conn<S, ServerBuilding, C>, Frame)> {
        Ok((self.transition(), BackendMessage::NoData.to_frame()?))
    }

    /// Rejects `Describe` and begins discarding the pipeline until `Sync`.
    ///
    /// # Errors
    ///
    /// Returns an error if a diagnostic field is invalid.
    pub fn error(
        self,
        response: DiagnosticResponse,
    ) -> io::Result<(Conn<S, ServerExtendedError, C>, Frame)> {
        extended_error(self, response)
    }
}

impl<S, C> Conn<S, ServerExecute, C> {
    /// Sends a non-terminal result message for `Execute`.
    ///
    /// # Errors
    ///
    /// Returns an error if the message cannot be reconstructed or requires a
    /// dedicated state transition.
    pub fn send(self, message: &BackendMessage) -> io::Result<(Self, Frame)> {
        if matches!(
            message,
            BackendMessage::CommandComplete(_)
                | BackendMessage::PortalSuspended
                | BackendMessage::ErrorResponse(_)
                | BackendMessage::ReadyForQuery(_)
                | BackendMessage::CopyInResponse(_)
                | BackendMessage::CopyOutResponse(_)
                | BackendMessage::CopyBothResponse(_)
        ) {
            return Err(io::Error::new(
                io::ErrorKind::InvalidInput,
                "state-changing response requires its typed transition",
            ));
        }
        Ok((self, message.to_frame()?))
    }

    /// Completes execution and returns to the building loop.
    ///
    /// # Errors
    ///
    /// Returns an error if the command tag contains a NUL byte.
    pub fn command_complete(self, tag: Bytes) -> io::Result<(Conn<S, ServerBuilding, C>, Frame)> {
        Ok((
            self.transition(),
            BackendMessage::CommandComplete(tag).to_frame()?,
        ))
    }

    /// Suspends a portal and returns to the building loop.
    ///
    /// # Errors
    ///
    /// Returns an error only if the fixed response cannot be encoded.
    pub fn portal_suspended(self) -> io::Result<(Conn<S, ServerBuilding, C>, Frame)> {
        Ok((
            self.transition(),
            BackendMessage::PortalSuspended.to_frame()?,
        ))
    }

    /// Rejects `Execute` and begins discarding the pipeline until `Sync`.
    ///
    /// # Errors
    ///
    /// Returns an error if a diagnostic field is invalid.
    pub fn error(
        self,
        response: DiagnosticResponse,
    ) -> io::Result<(Conn<S, ServerExtendedError, C>, Frame)> {
        extended_error(self, response)
    }

    /// Starts an extended-query COPY IN sub-session.
    ///
    /// # Errors
    ///
    /// Returns an error if the format count overflows the protocol field.
    pub fn copy_in(self, response: CopyResponse) -> CopyInStart<S, C, CopyExtended> {
        Ok((
            self.transition(),
            BackendMessage::CopyInResponse(response).to_frame()?,
        ))
    }

    /// Starts an extended-query COPY OUT sub-session.
    ///
    /// # Errors
    ///
    /// Returns an error if the format count overflows the protocol field.
    pub fn copy_out(self, response: CopyResponse) -> CopyOutStart<S, C, CopyExtended> {
        Ok((
            self.transition(),
            BackendMessage::CopyOutResponse(response).to_frame()?,
        ))
    }

    /// Starts an extended-query COPY BOTH sub-session.
    ///
    /// # Errors
    ///
    /// Returns an error if the format count overflows the protocol field.
    pub fn copy_both(self, response: CopyResponse) -> CopyBothStart<S, C, CopyExtended> {
        Ok((
            self.transition(),
            BackendMessage::CopyBothResponse(response).to_frame()?,
        ))
    }
}

impl<S, C> Conn<S, ServerCopyIn<CopySimple>, C> {
    /// Projects one inspected frontend message inside COPY IN.
    ///
    /// # Errors
    ///
    /// Returns the unchanged state and message for anything other than COPY data,
    /// completion, or failure.
    pub fn offer_frontend(self, message: FrontendMessage) -> CopyInProjection<S, C, CopySimple> {
        project_copy_in(self, backend::RuntimeState::SimpleCopyIn, message)
    }
}

impl<S, C> Conn<S, ServerCopyIn<CopyExtended>, C> {
    /// Projects one inspected frontend message inside extended-query COPY IN.
    ///
    /// # Errors
    ///
    /// Returns the unchanged state and message for anything other than COPY data,
    /// completion, or failure.
    pub fn offer_frontend(self, message: FrontendMessage) -> CopyInProjection<S, C, CopyExtended> {
        project_copy_in(self, backend::RuntimeState::ExtendedCopyIn, message)
    }
}

impl<S, C> Conn<S, ServerCopyInDone<CopySimple>, C> {
    /// Completes simple-query COPY IN before `ReadyForQuery`.
    ///
    /// # Errors
    ///
    /// Returns an error if the command tag contains a NUL byte.
    pub fn command_complete(
        self,
        tag: Bytes,
    ) -> io::Result<(Conn<S, ServerSimpleQuery, C>, Frame)> {
        Ok((
            self.transition(),
            BackendMessage::CommandComplete(tag).to_frame()?,
        ))
    }
}

impl<S, C> Conn<S, ServerCopyInDone<CopyExtended>, C> {
    /// Completes extended-query COPY IN and returns to the building loop.
    ///
    /// # Errors
    ///
    /// Returns an error if the command tag contains a NUL byte.
    pub fn command_complete(self, tag: Bytes) -> io::Result<(Conn<S, ServerBuilding, C>, Frame)> {
        Ok((
            self.transition(),
            BackendMessage::CommandComplete(tag).to_frame()?,
        ))
    }
}

impl<S, C> Conn<S, ServerCopyInFailed<CopySimple>, C> {
    /// Reports a client COPY failure before simple-query readiness.
    ///
    /// # Errors
    ///
    /// Returns an error if a diagnostic field is invalid.
    pub fn error(
        self,
        response: DiagnosticResponse,
    ) -> io::Result<(Conn<S, ServerSimpleError, C>, Frame)> {
        Ok((
            self.transition(),
            BackendMessage::ErrorResponse(response).to_frame()?,
        ))
    }
}

impl<S, C> Conn<S, ServerCopyInFailed<CopyExtended>, C> {
    /// Reports a client COPY failure and discards the pipeline until `Sync`.
    ///
    /// # Errors
    ///
    /// Returns an error if a diagnostic field is invalid.
    pub fn error(
        self,
        response: DiagnosticResponse,
    ) -> io::Result<(Conn<S, ServerExtendedError, C>, Frame)> {
        extended_error(self, response)
    }
}

impl<S, C, Resume> Conn<S, ServerCopyOut<Resume>, C> {
    /// Sends one COPY OUT data chunk and remains in the nested session.
    ///
    /// # Errors
    ///
    /// Returns an error only if the data frame cannot be encoded.
    pub fn data(self, data: Bytes) -> io::Result<(Self, Frame)> {
        Ok((self, BackendMessage::CopyData(data).to_frame()?))
    }

    /// Sends a structured WAL or keepalive payload.
    ///
    /// # Errors
    ///
    /// Returns an error only if the data frame cannot be encoded.
    pub fn replication(self, message: &BackendReplication) -> io::Result<(Self, Frame)> {
        self.data(message.encode())
    }

    /// Ends the COPY data stream before its command completion.
    ///
    /// # Errors
    ///
    /// Returns an error only if the fixed response cannot be encoded.
    pub fn done(self) -> CopyOutCompletion<S, C, Resume> {
        Ok((self.transition(), BackendMessage::CopyDone.to_frame()?))
    }
}

impl<S, C> Conn<S, ServerCopyOutDone<CopySimple>, C> {
    /// Completes simple-query COPY OUT before `ReadyForQuery`.
    ///
    /// # Errors
    ///
    /// Returns an error if the command tag contains a NUL byte.
    pub fn command_complete(
        self,
        tag: Bytes,
    ) -> io::Result<(Conn<S, ServerSimpleQuery, C>, Frame)> {
        Ok((
            self.transition(),
            BackendMessage::CommandComplete(tag).to_frame()?,
        ))
    }
}

impl<S, C> Conn<S, ServerCopyOutDone<CopyExtended>, C> {
    /// Completes extended-query COPY OUT and returns to the building loop.
    ///
    /// # Errors
    ///
    /// Returns an error if the command tag contains a NUL byte.
    pub fn command_complete(self, tag: Bytes) -> io::Result<(Conn<S, ServerBuilding, C>, Frame)> {
        Ok((
            self.transition(),
            BackendMessage::CommandComplete(tag).to_frame()?,
        ))
    }
}

impl<S, C, Resume: CopyResume> Conn<S, ServerCopyBoth<Resume, BothOpen>, C> {
    /// Projects client data, half-close, or failure while both directions are open.
    ///
    /// # Errors
    ///
    /// Returns the unchanged state and message if it is not COPY traffic.
    pub fn offer_frontend(self, message: FrontendMessage) -> CopyBothOpenProjection<S, C, Resume> {
        match (
            backend::project_external(Resume::BOTH_OPEN_STATE, &message),
            message,
        ) {
            (Some(backend::Event::ReceiveData), FrontendMessage::CopyData(data)) => {
                Ok(ServerCopyBothOpenOffer::Data { conn: self, data })
            }
            (Some(backend::Event::ReceiveDone), FrontendMessage::CopyDone) => {
                Ok(ServerCopyBothOpenOffer::Done(self.transition()))
            }
            (Some(backend::Event::Fail), FrontendMessage::CopyFail(message)) => {
                Ok(ServerCopyBothOpenOffer::Fail {
                    conn: self.transition(),
                    message,
                })
            }
            (_, other) => Err(Box::new((self, other))),
        }
    }

    /// Sends backend COPY data while its direction remains open.
    ///
    /// # Errors
    ///
    /// Returns an error only if the data frame cannot be encoded.
    pub fn data(self, data: Bytes) -> io::Result<(Self, Frame)> {
        Ok((self, BackendMessage::CopyData(data).to_frame()?))
    }

    /// Sends a structured WAL or keepalive payload while both halves are open.
    ///
    /// # Errors
    ///
    /// Returns an error only if the data frame cannot be encoded.
    pub fn replication(self, message: &BackendReplication) -> io::Result<(Self, Frame)> {
        self.data(message.encode())
    }

    /// Half-closes the backend direction while the client direction remains open.
    ///
    /// # Errors
    ///
    /// Returns an error only if the fixed completion frame cannot be encoded.
    pub fn done(self) -> CopyBothServerHalfClose<S, C, Resume> {
        Ok((self.transition(), BackendMessage::CopyDone.to_frame()?))
    }
}

impl<S, C, Resume> Conn<S, ServerCopyBoth<Resume, BothClientDone>, C> {
    /// Sends remaining backend data after the client has half-closed.
    ///
    /// # Errors
    ///
    /// Returns an error only if the data frame cannot be encoded.
    pub fn data(self, data: Bytes) -> io::Result<(Self, Frame)> {
        Ok((self, BackendMessage::CopyData(data).to_frame()?))
    }

    /// Sends a structured WAL or keepalive payload after the client half-close.
    ///
    /// # Errors
    ///
    /// Returns an error only if the data frame cannot be encoded.
    pub fn replication(self, message: &BackendReplication) -> io::Result<(Self, Frame)> {
        self.data(message.encode())
    }

    /// Half-closes the backend direction, completing both COPY streams.
    ///
    /// # Errors
    ///
    /// Returns an error only if the fixed completion frame cannot be encoded.
    pub fn done(self) -> CopyBothCompletion<S, C, Resume> {
        Ok((self.transition(), BackendMessage::CopyDone.to_frame()?))
    }
}

impl<S, C, Resume: CopyResume> Conn<S, ServerCopyBoth<Resume, BothServerDone>, C> {
    /// Projects remaining client traffic after the backend has half-closed.
    ///
    /// # Errors
    ///
    /// Returns the unchanged state and message if it is not COPY traffic.
    pub fn offer_frontend(
        self,
        message: FrontendMessage,
    ) -> CopyBothServerDoneProjection<S, C, Resume> {
        match (
            backend::project_external(Resume::BOTH_SERVER_DONE_STATE, &message),
            message,
        ) {
            (Some(backend::Event::ReceiveData), FrontendMessage::CopyData(data)) => {
                Ok(ServerCopyBothServerDoneOffer::Data { conn: self, data })
            }
            (Some(backend::Event::ReceiveDone), FrontendMessage::CopyDone) => {
                Ok(ServerCopyBothServerDoneOffer::Done(self.transition()))
            }
            (Some(backend::Event::Fail), FrontendMessage::CopyFail(message)) => {
                Ok(ServerCopyBothServerDoneOffer::Fail {
                    conn: self.transition(),
                    message,
                })
            }
            (_, other) => Err(Box::new((self, other))),
        }
    }
}

impl<S, C, Resume> ServerCopyBothOpenOffer<S, C, Resume> {
    /// Decodes client COPY data as a structured standby message.
    ///
    /// # Errors
    ///
    /// Returns the live connection with a decoding error for malformed known payloads.
    pub fn decode_replication(self) -> ServerReplicationOpenProjection<S, C, Resume> {
        match self {
            Self::Data { conn, data } => match FrontendReplication::decode(data) {
                Ok(message) => Ok(ServerReplicationOpenOffer::Message { conn, message }),
                Err(error) => Err((conn, error)),
            },
            Self::Done(conn) => Ok(ServerReplicationOpenOffer::Done(conn)),
            Self::Fail { conn, message } => Ok(ServerReplicationOpenOffer::Fail { conn, message }),
        }
    }
}

impl<S, C, Resume> ServerCopyBothServerDoneOffer<S, C, Resume> {
    /// Decodes remaining client COPY data as a structured standby message.
    ///
    /// # Errors
    ///
    /// Returns the live connection with a decoding error for malformed known payloads.
    pub fn decode_replication(self) -> ServerReplicationServerDoneProjection<S, C, Resume> {
        match self {
            Self::Data { conn, data } => match FrontendReplication::decode(data) {
                Ok(message) => Ok(ServerReplicationServerDoneOffer::Message { conn, message }),
                Err(error) => Err((conn, error)),
            },
            Self::Done(conn) => Ok(ServerReplicationServerDoneOffer::Done(conn)),
            Self::Fail { conn, message } => {
                Ok(ServerReplicationServerDoneOffer::Fail { conn, message })
            }
        }
    }
}

impl<S, C> Conn<S, ServerCopyBoth<CopySimple, BothDone>, C> {
    /// Completes simple-query COPY BOTH before `ReadyForQuery`.
    ///
    /// # Errors
    ///
    /// Returns an error if the command tag contains a NUL byte.
    pub fn command_complete(
        self,
        tag: Bytes,
    ) -> io::Result<(Conn<S, ServerSimpleQuery, C>, Frame)> {
        Ok((
            self.transition(),
            BackendMessage::CommandComplete(tag).to_frame()?,
        ))
    }
}

impl<S, C> Conn<S, ServerCopyBoth<CopyExtended, BothDone>, C> {
    /// Completes extended-query COPY BOTH and returns to the building loop.
    ///
    /// # Errors
    ///
    /// Returns an error if the command tag contains a NUL byte.
    pub fn command_complete(self, tag: Bytes) -> io::Result<(Conn<S, ServerBuilding, C>, Frame)> {
        Ok((
            self.transition(),
            BackendMessage::CommandComplete(tag).to_frame()?,
        ))
    }
}

impl<S, C> Conn<S, ServerCopyBothFailed<CopySimple>, C> {
    /// Reports a client COPY failure before simple-query readiness.
    ///
    /// # Errors
    ///
    /// Returns an error if a diagnostic field is invalid.
    pub fn error(
        self,
        response: DiagnosticResponse,
    ) -> io::Result<(Conn<S, ServerSimpleError, C>, Frame)> {
        Ok((
            self.transition(),
            BackendMessage::ErrorResponse(response).to_frame()?,
        ))
    }
}

impl<S, C> Conn<S, ServerCopyBothFailed<CopyExtended>, C> {
    /// Reports a client COPY failure and discards the pipeline until `Sync`.
    ///
    /// # Errors
    ///
    /// Returns an error if a diagnostic field is invalid.
    pub fn error(
        self,
        response: DiagnosticResponse,
    ) -> io::Result<(Conn<S, ServerExtendedError, C>, Frame)> {
        extended_error(self, response)
    }
}

impl<S, C> Conn<S, ServerExtendedError, C> {
    /// Discards one pipelined message; only `Sync` exits error recovery.
    #[must_use]
    pub fn discard(self, message: &FrontendMessage) -> ServerDiscard<S, C> {
        match backend::project_external(backend::RuntimeState::ExtendedError, message) {
            Some(backend::Event::Sync) => ServerDiscard::Sync(self.transition()),
            Some(backend::Event::Discard) | None => ServerDiscard::Continue(self),
            Some(_) => unreachable!("extended-error grammar has only discard and sync events"),
        }
    }
}

fn project_copy_in<S, C, Resume>(
    conn: Conn<S, ServerCopyIn<Resume>, C>,
    state: backend::RuntimeState,
    message: FrontendMessage,
) -> CopyInProjection<S, C, Resume> {
    match (backend::project_external(state, &message), message) {
        (Some(backend::Event::Data), FrontendMessage::CopyData(data)) => {
            Ok(ServerCopyInOffer::Data { conn, data })
        }
        (Some(backend::Event::Done), FrontendMessage::CopyDone) => {
            Ok(ServerCopyInOffer::Done(conn.transition()))
        }
        (Some(backend::Event::Fail), FrontendMessage::CopyFail(message)) => {
            Ok(ServerCopyInOffer::Fail {
                conn: conn.transition(),
                message,
            })
        }
        (_, other) => Err(Box::new((conn, other))),
    }
}

impl<S, C> Conn<S, ServerSync, C> {
    /// Answers `Sync` with `ReadyForQuery` and surfaces transaction status.
    ///
    /// # Errors
    ///
    /// Returns an error only if the fixed ready message cannot be encoded.
    pub fn ready(self, status: TransactionStatus) -> io::Result<(ServerReadyState<S, C>, Frame)> {
        ready(self, status)
    }
}

fn project_extended<S, Phase, C>(
    conn: Conn<S, Phase, C>,
    state: backend::RuntimeState,
    message: FrontendMessage,
) -> ExtendedProjection<S, Phase, C> {
    Ok(
        match (backend::project_external(state, &message), message) {
            (Some(backend::Event::Parse), FrontendMessage::Parse(message)) => {
                ServerExtendedOffer::Parse {
                    conn: conn.transition(),
                    message,
                }
            }
            (Some(backend::Event::Bind), FrontendMessage::Bind(message)) => {
                ServerExtendedOffer::Bind {
                    conn: conn.transition(),
                    message,
                }
            }
            (Some(backend::Event::Describe), FrontendMessage::Describe(message)) => {
                ServerExtendedOffer::Describe {
                    conn: conn.transition(),
                    message,
                }
            }
            (Some(backend::Event::Execute), FrontendMessage::Execute(message)) => {
                ServerExtendedOffer::Execute {
                    conn: conn.transition(),
                    message,
                }
            }
            (Some(backend::Event::Close), FrontendMessage::Close(message)) => {
                ServerExtendedOffer::Close {
                    conn: conn.transition(),
                    message,
                }
            }
            (Some(backend::Event::Flush), FrontendMessage::Flush) => {
                ServerExtendedOffer::Flush(conn.transition())
            }
            (Some(backend::Event::Sync), FrontendMessage::Sync) => {
                ServerExtendedOffer::Sync(conn.transition())
            }
            (_, other) => return Err(Box::new((conn, other))),
        },
    )
}

fn extended_error<S, Phase, C>(
    conn: Conn<S, Phase, C>,
    response: DiagnosticResponse,
) -> io::Result<(Conn<S, ServerExtendedError, C>, Frame)> {
    Ok((
        conn.transition(),
        BackendMessage::ErrorResponse(response).to_frame()?,
    ))
}

fn ready<S, Phase, C>(
    conn: Conn<S, Phase, C>,
    status: TransactionStatus,
) -> io::Result<(ServerReadyState<S, C>, Frame)> {
    let frame = BackendMessage::ReadyForQuery(status).to_frame()?;
    let state = if status == TransactionStatus::Idle {
        ServerReadyState::Ready(conn.transition())
    } else {
        ServerReadyState::Dirty {
            conn: conn.transition(),
            status,
        }
    };
    Ok((state, frame))
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::{
        Pristine,
        codec::{DataRow, DiagnosticField},
    };

    #[test]
    fn simple_query_allows_rewriting_before_ready() {
        fn require_dirty<S>(conn: Conn<S, Ready, Dirty>) {
            conn.into_transport();
        }

        let ready: Conn<(), Ready> = Conn::new(()).transition();
        let ServerReadyOffer::Query { conn, query } = ready
            .offer_frontend(FrontendMessage::Query(Bytes::from_static(b"select 1")))
            .unwrap()
        else {
            panic!("query projected to the wrong branch")
        };
        assert_eq!(query, Bytes::from_static(b"select 1"));

        let rewritten = BackendMessage::DataRow(DataRow {
            columns: vec![Some(Bytes::from_static(b"2"))],
        });
        let (conn, frame) = conn.send(&rewritten).unwrap();
        assert_eq!(frame.tag, b'D');
        let (state, frame) = conn.ready(TransactionStatus::Idle).unwrap();
        assert_eq!(frame.body, Bytes::from_static(b"I"));
        let ServerReadyState::Ready(ready) = state else {
            panic!("idle response unexpectedly changed the transaction state")
        };
        require_dirty(ready);

        let ready: Conn<(), Ready> = Conn::new(()).transition();
        let (query, inspected) = ready.accept_stateless_query(Bytes::from_static(b"select 1"));
        assert_eq!(inspected, Bytes::from_static(b"select 1"));
        let (state, _) = query.ready(TransactionStatus::Idle).unwrap();
        let ServerReadyState::Ready(pristine) = state else {
            panic!("stateless query did not return to ready")
        };
        pristine.release();
    }

    #[test]
    fn function_call_is_inspectable_and_replaceable() {
        let ready: Conn<(), Ready> = Conn::new(()).transition();
        let call = FunctionCall {
            function_oid: 42,
            argument_formats: vec![1],
            arguments: vec![Some(Bytes::from_static(b"original"))],
            result_format: 1,
        };
        let ServerReadyOffer::FunctionCall { conn, message } = ready
            .offer_frontend(FrontendMessage::FunctionCall(call.clone()))
            .unwrap()
        else {
            panic!("function call projected to the wrong branch")
        };
        assert_eq!(message, call);

        let (done, frame) = conn.respond(Bytes::from_static(b"replacement")).unwrap();
        assert_eq!(frame.tag, b'V');
        let (state, _) = done.ready(TransactionStatus::Idle).unwrap();
        let ServerReadyState::Ready(ready) = state else {
            panic!("idle function call was marked dirty")
        };
        ready.into_transport();
    }

    #[test]
    fn transaction_status_taints_the_server_connection() {
        let query: Conn<(), ServerSimpleQuery, Pristine> = Conn::new(()).transition();
        let (state, _) = query.ready(TransactionStatus::InTransaction).unwrap();
        let ServerReadyState::Dirty { conn, status } = state else {
            panic!("transactional response was marked clean")
        };
        assert_eq!(status, TransactionStatus::InTransaction);
        conn.into_transport();
    }

    #[test]
    fn extended_pipeline_rewrites_parse_and_exits_only_through_sync() {
        fn require_dirty<S>(conn: Conn<S, Ready, Dirty>) {
            conn.into_transport();
        }

        let ready: Conn<(), Ready> = Conn::new(()).transition();
        let parse = Parse {
            statement: Bytes::from_static(b"statement"),
            query: Bytes::from_static(b"select $1"),
            parameter_types: vec![23],
        };
        let ServerReadyOffer::Extended(ServerExtendedOffer::Parse { conn, message }) = ready
            .offer_frontend(FrontendMessage::Parse(parse.clone()))
            .unwrap()
        else {
            panic!("parse projected to the wrong branch")
        };
        assert_eq!(message, parse);
        let (building, complete) = conn.complete().unwrap();
        assert_eq!(complete.tag, b'1');

        let ServerExtendedOffer::Bind { conn, message } = building
            .offer_frontend(FrontendMessage::Bind(Bind {
                portal: Bytes::new(),
                statement: Bytes::from_static(b"statement"),
                parameter_formats: vec![],
                parameters: vec![Some(Bytes::from_static(b"42"))],
                result_formats: vec![],
            }))
            .unwrap()
        else {
            panic!("bind projected to the wrong branch")
        };
        assert_eq!(message.parameters[0], Some(Bytes::from_static(b"42")));
        let (building, _) = conn.complete().unwrap();
        let ServerExtendedOffer::Sync(sync) =
            building.offer_frontend(FrontendMessage::Sync).unwrap()
        else {
            panic!("sync projected to the wrong branch")
        };
        let (state, _) = sync.ready(TransactionStatus::Idle).unwrap();
        let ServerReadyState::Ready(ready) = state else {
            panic!("idle sync unexpectedly changed transaction state")
        };
        require_dirty(ready);
    }

    #[test]
    fn extended_error_discards_everything_before_sync() {
        let parse: Conn<(), ServerParse> = Conn::new(()).transition();
        let (error, frame) = parse
            .error(DiagnosticResponse {
                fields: vec![DiagnosticField {
                    code: b'C',
                    value: Bytes::from_static(b"42601"),
                }],
            })
            .unwrap();
        assert_eq!(frame.tag, b'E');
        let ServerDiscard::Continue(error) = error.discard(&FrontendMessage::Flush) else {
            panic!("flush escaped error recovery")
        };
        let ServerDiscard::Sync(sync) = error.discard(&FrontendMessage::Sync) else {
            panic!("sync did not exit error recovery")
        };
        let (state, _) = sync.ready(TransactionStatus::Idle).unwrap();
        let ServerReadyState::Ready(ready) = state else {
            panic!("idle sync was marked dirty")
        };
        ready.into_transport();
    }

    #[test]
    fn extended_copy_in_is_a_nested_client_choice() {
        let execute: Conn<(), ServerExecute> = Conn::new(()).transition();
        let (copy, response) = execute
            .copy_in(CopyResponse {
                overall_format: 0,
                column_formats: vec![],
            })
            .unwrap();
        assert_eq!(response.tag, b'G');
        let ServerCopyInOffer::Data { conn: copy, data } = copy
            .offer_frontend(FrontendMessage::CopyData(Bytes::from_static(b"one\n")))
            .unwrap()
        else {
            panic!("COPY data projected to the wrong branch")
        };
        assert_eq!(data, Bytes::from_static(b"one\n"));
        let ServerCopyInOffer::Done(done) = copy.offer_frontend(FrontendMessage::CopyDone).unwrap()
        else {
            panic!("COPY completion projected to the wrong branch")
        };
        let (building, complete) = done
            .command_complete(Bytes::from_static(b"COPY 1"))
            .unwrap();
        assert_eq!(complete.tag, b'C');
        let ServerExtendedOffer::Sync(sync) =
            building.offer_frontend(FrontendMessage::Sync).unwrap()
        else {
            panic!("sync projected to the wrong branch")
        };
        let (state, _) = sync.ready(TransactionStatus::Idle).unwrap();
        let ServerReadyState::Ready(ready) = state else {
            panic!("idle sync was marked dirty")
        };
        ready.into_transport();
    }

    #[test]
    fn simple_copy_out_requires_done_before_command_completion() {
        let query: Conn<(), ServerSimpleQuery> = Conn::new(()).transition();
        let (copy, response) = query
            .copy_out(CopyResponse {
                overall_format: 0,
                column_formats: vec![],
            })
            .unwrap();
        assert_eq!(response.tag, b'H');
        let (copy, data) = copy.data(Bytes::from_static(b"one\n")).unwrap();
        assert_eq!(data.tag, b'd');
        let (done, done_frame) = copy.done().unwrap();
        assert_eq!(done_frame.tag, b'c');
        let (query, complete) = done
            .command_complete(Bytes::from_static(b"COPY 1"))
            .unwrap();
        assert_eq!(complete.tag, b'C');
        let (state, _) = query.ready(TransactionStatus::Idle).unwrap();
        let ServerReadyState::Ready(ready) = state else {
            panic!("idle COPY was marked dirty")
        };
        ready.into_transport();
    }

    #[test]
    fn copy_both_tracks_half_closes_independently() {
        use crate::grammar::backend::{Event, RuntimeFsm, RuntimeState};

        let mut generated = RuntimeFsm::new();
        generated.step(Event::Execute).unwrap();
        let execute: Conn<(), ServerExecute> = Conn::new(()).transition();
        let (both, response) = execute
            .copy_both(CopyResponse {
                overall_format: 0,
                column_formats: vec![],
            })
            .unwrap();
        generated.step(Event::CopyBoth).unwrap();
        assert_eq!(response.tag, b'W');
        let ServerCopyBothOpenOffer::Done(client_done) =
            both.offer_frontend(FrontendMessage::CopyDone).unwrap()
        else {
            panic!("client half-close projected to the wrong branch")
        };
        generated.step(Event::ReceiveDone).unwrap();
        let (client_done, data) = client_done
            .data(Bytes::from_static(b"remaining backend data"))
            .unwrap();
        generated.step(Event::SendData).unwrap();
        assert_eq!(data.tag, b'd');
        let (done, backend_done) = client_done.done().unwrap();
        generated.step(Event::SendDone).unwrap();
        assert_eq!(backend_done.tag, b'c');
        let (building, _) = done
            .command_complete(Bytes::from_static(b"COPY 0"))
            .unwrap();
        generated.step(Event::CommandComplete).unwrap();
        let ServerExtendedOffer::Sync(sync) =
            building.offer_frontend(FrontendMessage::Sync).unwrap()
        else {
            panic!("sync projected to the wrong branch")
        };
        generated.step(Event::Sync).unwrap();
        let (state, _) = sync.ready(TransactionStatus::Idle).unwrap();
        let ServerReadyState::Ready(ready) = state else {
            panic!("idle sync was marked dirty")
        };
        generated.step(Event::Ready).unwrap();
        assert_eq!(generated.state(), RuntimeState::Ready);
        ready.into_transport();
    }

    #[test]
    fn copy_both_inspects_and_replaces_replication_messages() {
        let both: Conn<(), ServerCopyBoth<CopySimple, BothOpen>> = Conn::new(()).transition();
        let status = FrontendReplication::StandbyStatus {
            written: 10,
            flushed: 9,
            applied: 8,
            client_time: 7,
            reply_requested: true,
        };
        let offer = both
            .offer_frontend(FrontendMessage::CopyData(status.encode()))
            .unwrap();
        let ServerReplicationOpenOffer::Message {
            conn: both,
            message,
        } = offer.decode_replication().unwrap()
        else {
            panic!("standby status projected to the wrong branch")
        };
        assert_eq!(message, status);

        let replacement = BackendReplication::PrimaryKeepalive {
            wal_end: 11,
            server_time: 12,
            reply_requested: false,
        };
        let (both, frame) = both.replication(&replacement).unwrap();
        assert_eq!(frame.body, replacement.encode());
        both.into_transport();

        let both: Conn<(), ServerCopyBoth<CopySimple, BothOpen>> = Conn::new(()).transition();
        let offer = both
            .offer_frontend(FrontendMessage::CopyData(Bytes::from_static(b"rshort")))
            .unwrap();
        let (both, _) = offer.decode_replication().unwrap_err();
        both.into_transport();
    }
}