Source file postgres_async.ml
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
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
open Core
open Async
open Int.Replace_polymorphic_compare
module Notification_channel = Types.Notification_channel
module Column_metadata = Column_metadata
module Ssl_mode = Ssl_mode
module Pgasync_error = struct
module Postgres_field = Protocol.Backend.Error_or_notice_field
type server_error = Protocol.Backend.ErrorResponse.t =
{ error_code : string
; all_fields : (Postgres_field.t * string) list
}
type t =
{ error : Error.t
; server_error : server_error option
}
let sexp_of_t t = [%sexp (t.error : Error.t)]
let of_error e = { error = e; server_error = None }
let of_exn e = of_error (Error.of_exn e)
let of_string s = of_error (Error.of_string s)
let create_s s = of_error (Error.create_s s)
let of_error_response (error_response : Protocol.Backend.ErrorResponse.t) =
let error =
let interesting_fields =
List.filter error_response.all_fields ~f:(fun (field, value) ->
match field with
| File | Line | Routine | Severity_non_localised -> false
| Severity ->
String.( <> ) value "ERROR"
| _ -> true)
in
Error.create_s [%sexp (interesting_fields : (Postgres_field.t * string) list)]
in
{ error; server_error = Some error_response }
;;
let tag t ~tag = { t with error = Error.tag t.error ~tag }
let to_error t = t.error
let postgres_error_code t =
match t.server_error with
| None -> None
| Some { error_code; _ } -> Some error_code
;;
let postgres_field t field =
match t.server_error with
| None -> None
| Some { all_fields; _ } ->
List.Assoc.find all_fields field ~equal:[%equal: Postgres_field.t]
;;
let raise t = Error.raise t.error
end
module Or_pgasync_error = struct
type 'a t = ('a, Pgasync_error.t) Result.t [@@deriving sexp_of]
let to_or_error = Result.map_error ~f:Pgasync_error.to_error
let ok_exn = function
| Ok x -> x
| Error e -> Pgasync_error.raise e
;;
let error_s s = Error (Pgasync_error.create_s s)
let error_string s = Error (Pgasync_error.of_string s)
let errorf fmt = ksprintf error_string fmt
let of_exn e = Error (Pgasync_error.of_exn e)
end
module Expert = struct
type state =
| Open
| Closing
| Failed of
{ error : Pgasync_error.t
; resources_released : bool
}
| Closed_gracefully
[@@deriving sexp_of]
module T : sig
type 'a opaque
type t = private
{ writer : Writer.t opaque
; reader : Reader.t
; mutable state : state
; state_changed : (unit, read_write) Bvar.t opaque
; sequencer : Query_sequencer.t
; runtime_parameters : string String.Table.t
; notification_buses :
(Pid.t -> string -> unit, read_write) Bus.t Notification_channel.Table.t
; backend_key : Types.backend_key Set_once.t
; buffer_byte_limit : int
}
[@@deriving sexp_of]
val create_internal : buffer_byte_limit:int -> Reader.t -> Writer.t -> t
val failed : t -> Pgasync_error.t -> unit
type to_flush_or_not =
| Not_required
| Write_afterwards
(** [flush_message] is a bit of a weird argument for this function/weird feature
to give this part of the code, but it reminds us to always consider the need
to flush. *)
val catch_write_errors
: t
-> f:(Writer.t -> unit)
-> flush_message:to_flush_or_not
-> unit
val bytes_pending_in_writer_buffer : t -> int
val wait_for_writer_buffer_to_be_empty : t -> unit Deferred.t
val status : t -> state
val close_finished : t -> unit Or_pgasync_error.t Deferred.t
val close : t -> unit Or_pgasync_error.t Deferred.t
end = struct
type 'a opaque = 'a
type t =
{ writer : (Writer.t[@sexp.opaque])
; reader : (Reader.t[@sexp.opaque])
; mutable state : state
; state_changed : (unit, read_write) Bvar.t
; sequencer : Query_sequencer.t
; runtime_parameters : string String.Table.t
; notification_buses :
(Pid.t -> string -> unit, read_write) Bus.t Notification_channel.Table.t
; backend_key : Types.backend_key Set_once.t
; buffer_byte_limit : int
}
[@@deriving sexp_of]
let set_state t state =
t.state <- state;
Bvar.broadcast t.state_changed ()
;;
let cleanup_resources t =
let%bind () = Writer.close t.writer ~force_close:Deferred.unit in
let%bind () = Reader.close t.reader in
Hashtbl.clear t.notification_buses;
Hashtbl.clear t.runtime_parameters;
return ()
;;
let failed t error =
match t.state with
| Failed _ | Closed_gracefully -> ()
| Open | Closing ->
set_state t (Failed { error; resources_released = false });
don't_wait_for
(let%bind () = cleanup_resources t in
set_state t (Failed { error; resources_released = true });
return ())
;;
let create_internal ~buffer_byte_limit reader writer =
{ reader
; writer
; state = Open
; state_changed = Bvar.create ()
; sequencer = Query_sequencer.create ()
; runtime_parameters = String.Table.create ()
; notification_buses = Notification_channel.Table.create ~size:1 ()
; backend_key = Set_once.create ()
; buffer_byte_limit
}
;;
type to_flush_or_not =
| Not_required
| Write_afterwards
let catch_write_errors t ~f ~flush_message : unit =
match f t.writer with
| exception exn -> failed t (Pgasync_error.of_exn exn)
| () ->
(match flush_message with
| Not_required -> ()
| Write_afterwards ->
(match Protocol.Frontend.Writer.flush t.writer with
| exception exn -> failed t (Pgasync_error.of_exn exn)
| () -> ()))
;;
let bytes_pending_in_writer_buffer t = Writer.bytes_to_write t.writer
let wait_for_writer_buffer_to_be_empty t = Writer.flushed t.writer
let do_close_gracefully_if_possible t =
match t.state with
| Failed _ | Closed_gracefully | Closing -> return ()
| Open ->
set_state t Closing;
let closed_gracefully_deferred =
Query_sequencer.enqueue t.sequencer (fun () ->
catch_write_errors t ~flush_message:Not_required ~f:(fun writer ->
Protocol.Frontend.Writer.terminate writer);
match%bind
Monitor.try_with ~run:`Now ~rest:`Log (fun () -> Reader.read_char t.reader)
with
| Ok `Eof -> return (Ok ())
| Ok (`Ok c) ->
return (Or_pgasync_error.errorf "EOF expected, but got '%c'" c)
| Error exn -> return (Or_pgasync_error.of_exn exn))
in
(match%bind Clock.with_timeout (sec 1.) closed_gracefully_deferred with
| `Timeout ->
failed t (Pgasync_error.of_string "EOF expected, but instead stuck");
return ()
| `Result (Error err) ->
failed t err;
return ()
| `Result (Ok ()) ->
let%bind () = cleanup_resources t in
(match t.state with
| Open | Closed_gracefully -> assert false
| Failed _ ->
return ()
| Closing ->
set_state t Closed_gracefully;
return ()))
;;
let status t = t.state
let rec close_finished t =
match t.state with
| Failed { error; resources_released = true } -> return (Error error)
| Closed_gracefully -> return (Ok ())
| Closing | Open | Failed { resources_released = false; _ } ->
let%bind () = Bvar.wait t.state_changed in
close_finished t
;;
let close t =
don't_wait_for (do_close_gracefully_if_possible t);
close_finished t
;;
end
include T
let notification_bus t channel =
Hashtbl.find_or_add t.notification_buses channel ~default:(fun () ->
Bus.create_exn
[%here]
Arity2
~on_subscription_after_first_write:Allow
~on_callback_raise:Error.raise)
;;
module Message_reading : sig
type 'a handle_message_result =
| Stop of 'a
| Continue
| Protocol_error of Pgasync_error.t
(** [read_messages] and will handle and dispatch the three asynchronous message types
for you; you should never see them.
[handle_message] is given a message type constructor, and an iobuf windowed on the
payload of the message (that is, the message-type-specific bytes; the window does
not include the type or message length header, they have already been consumed).
[handle_message] must consume (as in [Iobuf.Consume]) all of the bytes of the
message. *)
type 'a handle_message =
Protocol.Backend.constructor
-> (read, Iobuf.seek) Iobuf.t
-> 'a handle_message_result
type 'a read_messages_result =
| Connection_closed of Pgasync_error.t
| Done of 'a
(** NoticeResponse, and ParameterStatus and NotificationResponse are 'asynchronous
messages' and are not associated with a specific request-response conversation.
They can happen at any time.
[read_messages] handles these for you, and does not show them to your
[handle_message] callback. *)
val read_messages
: ?pushback:(unit -> unit Deferred.t)
-> t
-> handle_message:'a handle_message
-> 'a read_messages_result Deferred.t
(** If a message arrives while no request-response conversation (query or otherwise)
is going on, use [consume_one_asynchronous_message] to eat it.
If the message is one of those asynchronous messages, it will be handled. If it is
some other message type, that is a protocol error and the connection will be
closed. If the reader is actually at EOF, the connection will be closed with an
error. *)
val consume_one_asynchronous_message : t -> unit read_messages_result Deferred.t
end = struct
type 'a handle_message_result =
| Stop of 'a
| Continue
| Protocol_error of Pgasync_error.t
let max_message_length =
let default = 50 * 1024 * 1024 in
lazy
(let override =
let open Option.Let_syntax in
let%bind v = Unix.getenv "POSTGRES_ASYNC_OVERRIDE_MAX_MESSAGE_LENGTH" in
let%bind v = Option.try_with (fun () -> Int.of_string v) in
let%bind v = Option.some_if (v > 0) v in
Some v
in
Option.value override ~default)
;;
type 'a handle_message =
Protocol.Backend.constructor
-> (read, Iobuf.seek) Iobuf.t
-> 'a handle_message_result
let check_window_after_handle_message message_type iobuf ~message_hi_bound =
match
[%compare.equal: Iobuf.Hi_bound.t] (Iobuf.Hi_bound.window iobuf) message_hi_bound
with
| false ->
Or_pgasync_error.error_s
[%message
"handle_message moved the hi-bound!"
(message_type : Protocol.Backend.constructor)]
| true ->
(match Iobuf.is_empty iobuf with
| false ->
Or_pgasync_error.error_s
[%message
"handle_message did not consume entire iobuf"
(message_type : Protocol.Backend.constructor)
~bytes_remaining:(Iobuf.length iobuf : int)]
| true -> Ok ())
;;
let handle_chunk ~handle_message ~pushback =
let stop_error sexp =
return (`Stop (`Protocol_error (Pgasync_error.create_s sexp)))
in
let rec loop iobuf =
let chunk_hi_bound = Iobuf.Hi_bound.window iobuf in
match Protocol.Backend.focus_on_message iobuf with
| Error Iobuf_too_short_for_header ->
let%bind () = pushback () in
return `Continue
| Error (Iobuf_too_short_for_message { message_length }) ->
(match message_length > force max_message_length with
| true -> stop_error [%message "Message too long" (message_length : int)]
| false ->
let%bind () = pushback () in
return `Continue)
| Error (Nonsense_message_length v) ->
stop_error [%message "Nonsense message length in header" ~_:(v : int)]
| Error (Unknown_message_type other) ->
stop_error [%message "Unrecognised message type character" (other : char)]
| Ok message_type ->
let message_hi_bound = Iobuf.Hi_bound.window iobuf in
let res =
let iobuf = Iobuf.read_only iobuf in
handle_message message_type iobuf
in
let res =
match res with
| Protocol_error _ as res -> res
| (Stop _ | Continue) as res ->
(match
check_window_after_handle_message message_type iobuf ~message_hi_bound
with
| Error err -> Protocol_error err
| Ok () -> res)
in
Iobuf.bounded_flip_hi iobuf chunk_hi_bound;
(match res with
| Protocol_error err -> return (`Stop (`Protocol_error err))
| Continue -> loop iobuf
| Stop s -> return (`Stop (`Done s)))
in
Staged.stage loop
;;
let no_pushback () = return ()
type 'a read_messages_result =
| Connection_closed of Pgasync_error.t
| Done of 'a
let can't_read_because_closed =
lazy
(return
(Connection_closed (Pgasync_error.of_string "can't read: closed or closing")))
;;
let run_reader ?(pushback = no_pushback) t ~handle_message =
let handle_chunk = Staged.unstage (handle_chunk ~handle_message ~pushback) in
match t.state with
| Failed { error; _ } -> return (Connection_closed error)
| Closed_gracefully | Closing -> force can't_read_because_closed
| Open ->
let%bind res = Reader.read_one_iobuf_at_a_time t.reader ~handle_chunk in
(match t.state with
| Failed { error; _ } -> return (Connection_closed error)
| Closing | Closed_gracefully -> force can't_read_because_closed
| Open ->
let res =
match res with
| `Stopped s -> s
| `Eof_with_unconsumed_data data ->
`Protocol_error
(Pgasync_error.create_s
[%message
"Unexpected EOF" ~unconsumed_bytes:(String.length data : int)])
| `Eof ->
`Protocol_error
(Pgasync_error.of_string "Unexpected EOF (no unconsumed messages)")
in
(match res with
| `Protocol_error err ->
failed t err;
return (Connection_closed err)
| `Done res -> return (Done res)))
;;
let handle_notice_response iobuf =
match Protocol.Backend.NoticeResponse.consume iobuf with
| Error err -> Error (Pgasync_error.of_error err)
| Ok { error_code = _; all_fields } ->
Log.Global.sexp
~level:`Info
[%message
"Postgres NoticeResponse"
~_:(all_fields : (Protocol.Backend.Error_or_notice_field.t * string) list)];
Ok ()
;;
let handle_parameter_status t iobuf =
match Protocol.Backend.ParameterStatus.consume iobuf with
| Error err -> Error (Pgasync_error.of_error err)
| Ok { key; data } ->
Hashtbl.set t.runtime_parameters ~key ~data;
Ok ()
;;
let handle_notification_response t iobuf =
match Protocol.Backend.NotificationResponse.consume iobuf with
| Error err -> Error (Pgasync_error.of_error err)
| Ok { pid; channel; payload } ->
let bus = notification_bus t channel in
(match Bus.num_subscribers bus with
| 0 ->
Log.Global.sexp
~level:`Error
[%message
"Postgres NotificationResponse on channel that no callbacks are listening \
to"
(channel : Notification_channel.t)]
| _ -> Bus.write2 bus pid payload);
Ok ()
;;
let read_messages ?pushback t ~handle_message =
let continue_if_ok = function
| Error err -> Protocol_error err
| Ok () -> Continue
in
let handle_message message_type iobuf =
match (message_type : Protocol.Backend.constructor) with
| NoticeResponse -> continue_if_ok (handle_notice_response iobuf)
| ParameterStatus -> continue_if_ok (handle_parameter_status t iobuf)
| NotificationResponse -> continue_if_ok (handle_notification_response t iobuf)
| _ -> handle_message message_type iobuf
in
run_reader ?pushback t ~handle_message
;;
let consume_one_asynchronous_message t =
let stop_if_ok = function
| Error err -> Protocol_error err
| Ok () -> Stop ()
in
let handle_message message_type iobuf =
match (message_type : Protocol.Backend.constructor) with
| NoticeResponse -> stop_if_ok (handle_notice_response iobuf)
| ParameterStatus -> stop_if_ok (handle_parameter_status t iobuf)
| NotificationResponse -> stop_if_ok (handle_notification_response t iobuf)
| ErrorResponse ->
let tag =
"ErrorResponse received asynchronously, assuming connection is dead"
in
let error =
match Protocol.Backend.ErrorResponse.consume iobuf with
| Error err -> Pgasync_error.of_error err
| Ok err -> Pgasync_error.of_error_response err |> Pgasync_error.tag ~tag
in
Protocol_error error
| other ->
Protocol_error
(Pgasync_error.create_s
[%message
"Unsolicited message from server outside of query conversation"
(other : Protocol.Backend.constructor)])
in
run_reader t ~handle_message
;;
end
include Message_reading
let protocol_error_of_error error = Protocol_error (Pgasync_error.of_error error)
let protocol_error_s sexp = Protocol_error (Pgasync_error.create_s sexp)
let unexpected_msg_type msg_type state =
protocol_error_s
[%message
"Unexpected message type"
(msg_type : Protocol.Backend.constructor)
(state : Sexp.t)]
;;
let login t ~user ~password ~gss_krb_token ~database =
catch_write_errors t ~flush_message:Not_required ~f:(fun writer ->
Protocol.Frontend.Writer.startup_message writer { user; database });
read_messages t ~handle_message:(fun msg_type iobuf ->
match msg_type with
| AuthenticationRequest ->
let module Q = Protocol.Backend.AuthenticationRequest in
(match Q.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok Ok -> Continue
| Ok (MD5Password { salt }) ->
(match password with
| Some password ->
let d s = Md5.to_hex (Md5.digest_string s) in
let md5_hex = "md5" ^ d (d (password ^ user) ^ salt) in
catch_write_errors t ~flush_message:Not_required ~f:(fun writer ->
Protocol.Frontend.Writer.password_message
writer
(Cleartext_or_md5_hex md5_hex));
Continue
| None ->
let s = "Server requested (md5) password, but no password was provided" in
Stop (Or_pgasync_error.error_string s))
| Ok GSS ->
(match gss_krb_token with
| Some token ->
catch_write_errors t ~flush_message:Not_required ~f:(fun writer ->
Protocol.Frontend.Writer.password_message writer (Gss_binary_blob token));
Continue
| None ->
let s = "Server requested GSS auth, but no gss_krb_token was provided" in
Stop (Or_pgasync_error.error_string s))
| Ok other ->
let s =
sprintf !"Server wants unimplemented auth subtype: %{sexp:Q.t}" other
in
Stop (Or_pgasync_error.error_string s))
| BackendKeyData ->
(match Protocol.Backend.BackendKeyData.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok data ->
(match Set_once.set t.backend_key [%here] data with
| Ok () -> Continue
| Error _ -> protocol_error_s [%sexp "duplicate BackendKeyData messages"]))
| ReadyForQuery ->
let module Q = Protocol.Backend.ReadyForQuery in
(match Q.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok Idle -> Stop (Ok ())
| Ok st ->
protocol_error_s [%message "Unexpected initial transaction status" (st : Q.t)])
| ErrorResponse ->
(match Protocol.Backend.ErrorResponse.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok err -> Stop (Error (Pgasync_error.of_error_response err)))
| msg_type -> unexpected_msg_type msg_type [%sexp "logging in"])
;;
let handle_asynchronous_messages t =
Query_sequencer.when_idle t.sequencer (fun () ->
let module Q = Query_sequencer in
match t.state with
| Failed _ | Closing | Closed_gracefully -> return Q.Finished
| Open ->
let%bind res =
match Reader.bytes_available t.reader > 0 with
| true -> return `Ready
| false ->
Fd.interruptible_ready_to
(Reader.fd t.reader)
`Read
~interrupt:(Query_sequencer.other_jobs_are_waiting t.sequencer)
in
(match t.state with
| Closed_gracefully | Closing | Failed _ -> return Q.Finished
| Open ->
(match res with
| `Interrupted -> return Q.Call_me_when_idle_again
| (`Bad_fd | `Closed) as res ->
raise_s
[%message "handle_asynchronous_messages" (res : [ `Bad_fd | `Closed ])]
| `Ready ->
(match%bind consume_one_asynchronous_message t with
| Connection_closed _ -> return Q.Finished
| Done () -> return Q.Call_me_when_idle_again))))
;;
let default_user =
Memo.unit (fun () ->
Monitor.try_with_or_error ~rest:`Log (fun () -> Unix.getlogin ()))
;;
type packed_where_to_connect =
| Where_to_connect : 'a Tcp.Where_to_connect.t -> packed_where_to_connect
let default_where_to_connect =
lazy (Where_to_connect (Tcp.Where_to_connect.of_file "/run/postgresql/.s.PGSQL.5432"))
;;
let maybe_ssl_wrap ~buffer_byte_limit ~interrupt ~ssl_mode ~tcp_reader ~tcp_writer =
let negotiate_ssl ~required =
match Protocol.Frontend.Writer.ssl_request tcp_writer () with
| exception exn -> return (Or_error.of_exn exn)
| () ->
(match%bind
choose
[ choice interrupt (fun () -> `Interrupt)
; choice (Reader.read_char tcp_reader) (function
| `Eof -> `Eof
| `Ok char -> `Ok char)
]
with
| `Interrupt -> return (error_s [%message "ssl negotiation interrupted"])
| `Eof ->
return (error_s [%message "Reader closed before ssl negotiation response"])
| `Ok 'S' ->
Monitor.try_with_or_error ~rest:`Log (fun () ->
let%bind t, (_ : [ `Connection_closed of unit Deferred.t ]) =
Async_ssl.Tls.Expert.wrap_client_connection_and_stay_open
(Async_ssl.Config.Client.create
~verify_modes:[ Verify_none ]
~ca_file:None
~ca_path:None
~remote_hostname:None
~verify_callback:(fun (_ : Async_ssl.Ssl.Connection.t) ->
return (Ok ()))
())
tcp_reader
tcp_writer
~f:(fun (_ : Async_ssl.Ssl.Connection.t) ssl_reader ssl_writer ->
let t = create_internal ~buffer_byte_limit ssl_reader ssl_writer in
let close_finished_deferred =
let%bind (_ : unit Or_pgasync_error.t) = close_finished t in
return ()
in
return (t, `Do_not_close_until close_finished_deferred))
in
return t)
| `Ok 'N' ->
(match required with
| true ->
return
(error_s
[%message
"Server indicated it cannot use SSL connections, but ssl_mode is \
set to Require"])
| false ->
return (Ok (create_internal ~buffer_byte_limit tcp_reader tcp_writer)))
| `Ok response_char ->
return
(error_s
[%message
"Postgres Server indicated it does not understand the SSLRequest \
message. This may mean that the server is running a very outdated \
version of postgres, or some other problem may be occuring. You can \
try to run with ssl_mode = Disable to skip the SSLRequest and use \
plain TCP."
(response_char : Char.t)]))
in
match (ssl_mode : Ssl_mode.t) with
| Disable ->
let t = create_internal ~buffer_byte_limit tcp_reader tcp_writer in
return (Ok t)
| Prefer -> negotiate_ssl ~required:false
| Require -> negotiate_ssl ~required:true
;;
let connect_tcp_and_maybe_start_ssl
~buffer_age_limit
~buffer_byte_limit
~interrupt
~ssl_mode
server
=
match%bind
Monitor.try_with_or_error ~rest:`Log (fun () ->
Tcp.connect ~buffer_age_limit ~interrupt server)
with
| Error _ as result -> return result
| Ok (_sock, tcp_reader, tcp_writer) ->
(match%bind
maybe_ssl_wrap ~buffer_byte_limit ~interrupt ~ssl_mode ~tcp_reader ~tcp_writer
with
| Error _ as result ->
let%bind () = Writer.close tcp_writer in
let%bind () = Reader.close tcp_reader in
return result
| Ok t ->
let writer_failed =
Monitor.detach_and_get_next_error (Writer.monitor tcp_writer)
in
return (Ok (t, writer_failed)))
;;
let connect
?(interrupt = Deferred.never ())
?(ssl_mode = Ssl_mode.Disable)
?server
?user
?password
?gss_krb_token
?(buffer_age_limit = `At_most (Time_float.Span.of_int_min 2))
?(buffer_byte_limit = Byte_units.of_megabytes 128.)
~database
()
=
let (Where_to_connect server) =
match server with
| Some x -> Where_to_connect x
| None -> force default_where_to_connect
in
let%bind (user : string Or_error.t) =
match user with
| Some u -> return (Ok u)
| None -> default_user ()
in
match user with
| Error err -> return (Error (Pgasync_error.of_error err))
| Ok user ->
(match%bind
connect_tcp_and_maybe_start_ssl
~buffer_age_limit
~buffer_byte_limit:(Byte_units.bytes_int_exn buffer_byte_limit)
~interrupt
~ssl_mode
server
with
| Error error -> return (Error (Pgasync_error.of_error error))
| Ok (t, writer_failed) ->
upon writer_failed (fun exn ->
failed
t
(Pgasync_error.create_s
[%message "Writer failed asynchronously" (exn : Exn.t)]));
let login_failed err =
failed t err;
return (Error err)
in
(match%bind
choose
[ choice interrupt (fun () -> `Interrupt)
; choice (login t ~user ~password ~gss_krb_token ~database) (fun l ->
`Result l)
]
with
| `Interrupt -> login_failed (Pgasync_error.of_string "login interrupted")
| `Result (Connection_closed err) -> return (Error err)
| `Result (Done (Error err)) -> login_failed err
| `Result (Done (Ok ())) ->
handle_asynchronous_messages t;
return (Ok t)))
;;
let with_connection
?interrupt
?ssl_mode
?server
?user
?password
?gss_krb_token
?buffer_age_limit
?buffer_byte_limit
~database
~on_handler_exception:`Raise
func
=
match%bind
connect
?interrupt
?ssl_mode
?server
?user
?password
?gss_krb_token
?buffer_age_limit
?buffer_byte_limit
~database
()
with
| Error _ as e -> return e
| Ok t ->
(match%bind Monitor.try_with ~run:`Now ~rest:`Raise (fun () -> func t) with
| Ok _ as ok_res ->
let%bind (_ : unit Or_pgasync_error.t) = close t in
return ok_res
| Error exn ->
don't_wait_for
(let%bind (_ : unit Or_pgasync_error.t) = close t in
return ());
raise exn)
;;
type setup_loop_state =
| Parsing
| Binding
| Describing
| Executing
[@@deriving sexp_of]
type setup_loop_result =
| About_to_deliver_rows of Protocol.Backend.RowDescription.t
| About_to_copy_out
| Ready_to_copy_in of Protocol.Backend.CopyInResponse.t
| Empty_query
| Command_complete_without_output
| Remote_reported_error of Pgasync_error.t
let parse_and_start_executing_query t query_string ~parameters =
match t.state with
| Failed { error; _ } ->
return
(Connection_closed
(Pgasync_error.create_s
[%message
"query issued against previously-failed connection"
~original_error:(error : Pgasync_error.t)]))
| Closing | Closed_gracefully ->
return
(Connection_closed
(Pgasync_error.of_string "query issued against connection closed by user"))
| Open ->
catch_write_errors t ~flush_message:Write_afterwards ~f:(fun writer ->
Protocol.Frontend.Writer.parse
writer
{ destination = Types.Statement_name.unnamed; query = query_string };
Protocol.Frontend.Writer.bind
writer
{ destination = Types.Portal_name.unnamed
; statement = Types.Statement_name.unnamed
; parameters
};
Protocol.Frontend.Writer.describe writer (Portal Types.Portal_name.unnamed);
Protocol.Frontend.Writer.execute
writer
{ portal = Types.Portal_name.unnamed; limit = Unlimited });
let state = ref Parsing in
let unexpected_msg_type msg_type =
unexpected_msg_type msg_type [%sexp (state : setup_loop_state ref)]
in
read_messages t ~handle_message:(fun msg_type iobuf ->
match !state, msg_type with
| state, ErrorResponse ->
(match Protocol.Backend.ErrorResponse.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok err ->
let tag =
sprintf !"Postgres Server Error (state=%{sexp:setup_loop_state})" state
in
let err = Pgasync_error.of_error_response err |> Pgasync_error.tag ~tag in
Stop (Remote_reported_error err))
| Parsing, ParseComplete ->
let () = Protocol.Backend.ParseComplete.consume iobuf in
state := Binding;
Continue
| Parsing, msg_type -> unexpected_msg_type msg_type
| Binding, BindComplete ->
let () = Protocol.Backend.BindComplete.consume iobuf in
state := Describing;
Continue
| Binding, msg_type -> unexpected_msg_type msg_type
| Describing, RowDescription ->
(match Protocol.Backend.RowDescription.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok description -> Stop (About_to_deliver_rows description))
| Describing, NoData ->
let () = Protocol.Backend.NoData.consume iobuf in
state := Executing;
Continue
| Describing, msg_type -> unexpected_msg_type msg_type
| Executing, EmptyQueryResponse ->
let () = Protocol.Backend.EmptyQueryResponse.consume iobuf in
Stop Empty_query
| Executing, CommandComplete ->
(match Protocol.Backend.CommandComplete.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok (_ : string) -> Stop Command_complete_without_output)
| Executing, CopyInResponse ->
(match Protocol.Backend.CopyInResponse.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok details -> Stop (Ready_to_copy_in details))
| Executing, CopyOutResponse ->
(match Protocol.Backend.CopyOutResponse.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok _ -> Stop About_to_copy_out)
| Executing, CopyBothResponse ->
unexpected_msg_type msg_type
| Executing, msg_type -> unexpected_msg_type msg_type)
;;
let read_datarows t ~pushback ~f =
read_messages t ?pushback ~handle_message:(fun msg_type iobuf ->
match msg_type with
| DataRow ->
(match f ~datarow_iobuf:iobuf with
| (Protocol_error _ | Continue) as x -> x
| Stop (_ : Nothing.t) -> .)
| ErrorResponse ->
(match Protocol.Backend.ErrorResponse.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok err ->
let err =
Pgasync_error.of_error_response err
|> Pgasync_error.tag ~tag:"Error during query execution (despite parsing ok)"
in
Stop (Error err))
| CommandComplete ->
(match Protocol.Backend.CommandComplete.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok (_ : string) -> Stop (Ok ()))
| msg_type -> unexpected_msg_type msg_type [%sexp "reading DataRows"])
;;
let drain_datarows t =
let count = ref 0 in
let f ~datarow_iobuf =
incr count;
Protocol.Backend.DataRow.skip datarow_iobuf;
Continue
in
match%bind read_datarows t ~pushback:None ~f with
| Connection_closed _ as e -> return e
| Done (Ok () | Error _) -> return (Done !count)
;;
let drain_copy_out t =
let seen_copy_done = ref false in
read_messages t ~handle_message:(fun msg_type iobuf ->
match msg_type with
| ErrorResponse ->
(match Protocol.Backend.ErrorResponse.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok _ -> Stop ())
| CopyData ->
(match !seen_copy_done with
| true -> protocol_error_s [%sexp "CopyData message after CopyDone?"]
| false ->
Protocol.Backend.CopyData.skip iobuf;
Continue)
| CopyDone ->
Protocol.Backend.CopyDone.consume iobuf;
seen_copy_done := true;
Continue
| CommandComplete ->
(match Protocol.Backend.CommandComplete.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok (_ : string) ->
(match !seen_copy_done with
| false -> protocol_error_s [%sexp "CommandComplete before CopyDone?"]
| true -> Stop ()))
| msg_type -> unexpected_msg_type msg_type [%sexp "draining copy-out mode"])
;;
let abort_copy_in t ~reason =
catch_write_errors t ~flush_message:Write_afterwards ~f:(fun writer ->
Protocol.Frontend.Writer.copy_fail writer { reason });
read_messages t ~handle_message:(fun msg_type iobuf ->
match msg_type with
| ErrorResponse ->
(match Protocol.Backend.ErrorResponse.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok _ -> Stop ())
| msg_type -> unexpected_msg_type msg_type [%sexp "aborting copy-in mode"])
;;
let close_unnamed_portal_and_statement_and_sync_after_query t =
catch_write_errors t ~flush_message:Not_required ~f:(fun writer ->
Protocol.Frontend.Writer.close writer (Portal Types.Portal_name.unnamed);
Protocol.Frontend.Writer.close writer (Statement Types.Statement_name.unnamed);
Protocol.Frontend.Writer.sync writer);
read_messages t ~handle_message:(fun msg_type iobuf ->
match msg_type with
| CloseComplete ->
Protocol.Backend.CloseComplete.consume iobuf;
Continue
| ReadyForQuery ->
(match Protocol.Backend.ReadyForQuery.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok (Idle | In_transaction | In_failed_transaction) -> Stop ())
| ErrorResponse ->
(match Protocol.Backend.ErrorResponse.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok err ->
let err =
Pgasync_error.of_error_response err
|> Pgasync_error.tag ~tag:"response to close/sync was an error"
in
Protocol_error err)
| msg_type -> unexpected_msg_type msg_type [%sexp "synchronising after query"])
;;
let internal_query
t
?(parameters = [||])
?pushback
~handle_columns
query_string
~handle_row
=
let%bind result =
match%bind parse_and_start_executing_query t query_string ~parameters with
| Connection_closed _ as err -> return err
| Done About_to_copy_out ->
let%bind (Connection_closed _ | Done ()) = drain_copy_out t in
return
(Done
(Or_pgasync_error.error_s
[%message "COPY TO STDOUT is not appropriate for [Postgres_async.query]"]))
| Done (Ready_to_copy_in _) ->
let reason = "COPY FROM STDIN is not appropriate for [Postgres_async.query]" in
let%bind (Connection_closed _ | Done ()) = abort_copy_in t ~reason in
return (Done (Or_pgasync_error.error_string reason))
| Done (Remote_reported_error error) -> return (Done (Error error))
| Done (Empty_query | Command_complete_without_output) -> return (Done (Ok ()))
| Done (About_to_deliver_rows description) ->
handle_columns description;
let column_names = Array.map description ~f:Column_metadata.name in
read_datarows t ~pushback ~f:(fun ~datarow_iobuf:iobuf ->
match Protocol.Backend.DataRow.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok values ->
(match Array.length values = Array.length column_names with
| false ->
protocol_error_s
[%message
"number of columns in DataRow message did not match RowDescription"
(column_names : string array)
(values : string option array)]
| true ->
handle_row ~column_names ~values;
Continue))
in
let%bind sync_result = close_unnamed_portal_and_statement_and_sync_after_query t in
match result, sync_result with
| Connection_closed err, _ | Done (Error err), _ | _, Connection_closed err ->
return (Error err)
| Done (Ok ()), Done () -> return (Ok ())
;;
let query t ?parameters ?pushback ?handle_columns query_string ~handle_row =
let callback_raised = ref false in
let wrap_callback ~f =
match !callback_raised with
| true -> ()
| false ->
(match f () with
| () -> ()
| exception exn ->
Monitor.send_exn (Monitor.current ()) exn;
callback_raised := true)
in
let handle_columns description =
match handle_columns with
| None -> ()
| Some handler -> wrap_callback ~f:(fun () -> handler description)
in
let handle_row ~column_names ~values =
wrap_callback ~f:(fun () -> handle_row ~column_names ~values)
in
let%bind result =
Query_sequencer.enqueue t.sequencer (fun () ->
internal_query t ?parameters ?pushback ~handle_columns query_string ~handle_row)
in
match !callback_raised with
| true -> Deferred.never ()
| false -> return result
;;
let query_expect_no_data t ?(parameters = [||]) query_string =
Query_sequencer.enqueue t.sequencer (fun () ->
let%bind result =
match%bind parse_and_start_executing_query t query_string ~parameters with
| Connection_closed _ as err -> return err
| Done About_to_copy_out ->
let%bind (Connection_closed _ | Done ()) = drain_copy_out t in
return
(Done
(Or_pgasync_error.error_s
[%message
"[Postgres_async.query_expect_no_data]: query attempted COPY OUT"]))
| Done (Ready_to_copy_in _) ->
let reason = "[Postgres_async.query_expect_no_data]: query attempted COPY IN" in
let%bind (Connection_closed _ | Done ()) = abort_copy_in t ~reason in
return (Done (Or_pgasync_error.error_string reason))
| Done (About_to_deliver_rows _) ->
(match%bind drain_datarows t with
| Connection_closed _ as err -> return err
| Done 0 -> return (Done (Ok ()))
| Done _ ->
return
(Done
(Or_pgasync_error.error_s [%message "query unexpectedly produced rows"])))
| Done (Remote_reported_error error) -> return (Done (Error error))
| Done (Empty_query | Command_complete_without_output) -> return (Done (Ok ()))
in
let%bind sync_result = close_unnamed_portal_and_statement_and_sync_after_query t in
match result, sync_result with
| Connection_closed err, _ | Done (Error err), _ | _, Connection_closed err ->
return (Error err)
| Done (Ok ()), Done () -> return (Ok ()))
;;
type 'a feed_data_result =
| Abort of { reason : string }
| Wait of unit Deferred.t
| Data of 'a
| Finished
let query_did_not_initiate_copy_in =
lazy
(return
(Done (Or_pgasync_error.error_s [%message "Query did not initiate copy-in mode"])))
;;
let internal_copy_in_raw t ?(parameters = [||]) query_string ~feed_data =
let%bind result =
match%bind parse_and_start_executing_query t query_string ~parameters with
| Connection_closed _ as err -> return err
| Done About_to_copy_out ->
let%bind (Connection_closed _ | Done ()) = drain_copy_out t in
return
(Done
(Or_pgasync_error.error_s
[%message "COPY TO STDOUT is not appropriate for [Postgres_async.query]"]))
| Done (Empty_query | Command_complete_without_output) ->
force query_did_not_initiate_copy_in
| Done (About_to_deliver_rows _) ->
let%bind (Connection_closed _ | Done (_ : int)) = drain_datarows t in
force query_did_not_initiate_copy_in
| Done (Remote_reported_error error) -> return (Done (Error error))
| Done (Ready_to_copy_in _) ->
let sent_copy_done = ref false in
let (response_deferred : unit Or_pgasync_error.t read_messages_result Deferred.t) =
read_messages t ~handle_message:(fun msg_type iobuf ->
match msg_type with
| ErrorResponse ->
(match Protocol.Backend.ErrorResponse.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok err -> Stop (Error (Pgasync_error.of_error_response err)))
| CommandComplete ->
(match Protocol.Backend.CommandComplete.consume iobuf with
| Error err -> protocol_error_of_error err
| Ok (_res : string) ->
(match !sent_copy_done with
| false ->
protocol_error_s
[%sexp "CommandComplete response before we sent CopyDone?"]
| true -> Stop (Ok ())))
| msg_type -> unexpected_msg_type msg_type [%sexp "copying in"])
in
let%bind () =
let rec loop () =
match feed_data () with
| Abort { reason } ->
catch_write_errors t ~flush_message:Write_afterwards ~f:(fun writer ->
Protocol.Frontend.Writer.copy_fail writer { reason });
return ()
| Wait deferred -> continue ~after:deferred
| Data payload ->
catch_write_errors t ~flush_message:Not_required ~f:(fun writer ->
Protocol.Frontend.Writer.copy_data writer payload);
(match bytes_pending_in_writer_buffer t > t.buffer_byte_limit with
| false -> loop ()
| true -> continue ~after:(wait_for_writer_buffer_to_be_empty t))
| Finished ->
sent_copy_done := true;
catch_write_errors t ~flush_message:Write_afterwards ~f:(fun writer ->
Protocol.Frontend.Writer.copy_done writer);
return ()
and continue ~after =
let%bind () = after in
match Deferred.peek response_deferred with
| None -> loop ()
| Some (Connection_closed _ | Done (Error _)) -> return ()
| Some (Done (Ok ())) ->
failwith
"BUG: response_deferred is (Done (Ok ())), but we never set \
!sent_copy_done?"
in
loop ()
in
response_deferred
in
let%bind sync_result = close_unnamed_portal_and_statement_and_sync_after_query t in
match result, sync_result with
| Connection_closed err, _ | Done (Error err), _ | _, Connection_closed err ->
return (Error err)
| Done (Ok ()), Done () -> return (Ok ())
;;
let copy_in_raw t ?parameters query_string ~feed_data =
let callback_raised = ref false in
let feed_data () =
assert (not !callback_raised);
match feed_data () with
| (Abort _ | Wait _ | Data _ | Finished) as x -> x
| exception exn ->
Monitor.send_exn (Monitor.current ()) exn;
callback_raised := true;
Abort { reason = "feed_data callback raised" }
in
let%bind result =
Query_sequencer.enqueue t.sequencer (fun () ->
internal_copy_in_raw t ?parameters query_string ~feed_data)
in
match !callback_raised with
| true -> Deferred.never ()
| false -> return result
;;
let copy_in_rows ?schema_name t ~table_name ~column_names ~feed_data =
let query_string =
String_escaping.Copy_in.query ?schema_name ~table_name ~column_names ()
in
copy_in_raw t query_string ~feed_data:(fun () ->
match feed_data () with
| (Abort _ | Wait _ | Finished) as x -> x
| Data row -> Data (String_escaping.Copy_in.row_to_string row))
;;
let listen_to_notifications t ~channel ~f =
let query = String_escaping.Listen.query ~channel in
let channel = Notification_channel.of_string channel in
let bus = notification_bus t channel in
let monitor = Monitor.current () in
let subscriber =
Bus.subscribe_exn
bus
[%here]
~f:(fun pid payload -> f ~pid ~payload)
~on_callback_raise:(fun error -> Monitor.send_exn monitor (Error.to_exn error))
in
ignore (subscriber : _ Bus.Subscriber.t);
query_expect_no_data t query
;;
end
type t = Expert.t [@@deriving sexp_of]
let connect
?interrupt
?ssl_mode
?server
?user
?password
?gss_krb_token
?buffer_age_limit
?buffer_byte_limit
~database
()
=
Expert.connect
?interrupt
?ssl_mode
?server
?user
?password
?gss_krb_token
?buffer_age_limit
?buffer_byte_limit
~database
()
>>| Or_pgasync_error.to_or_error
;;
let close t = Expert.close t >>| Or_pgasync_error.to_or_error
let close_finished t = Expert.close_finished t >>| Or_pgasync_error.to_or_error
type state =
| Open
| Closing
| Failed of
{ error : Error.t
; resources_released : bool
}
| Closed_gracefully
[@@deriving sexp_of]
let status t =
match Expert.status t with
| Failed { error; resources_released } ->
Failed { error = Pgasync_error.to_error error; resources_released }
| Open -> Open
| Closing -> Closing
| Closed_gracefully -> Closed_gracefully
;;
let with_connection
?interrupt
?ssl_mode
?server
?user
?password
?gss_krb_token
?buffer_age_limit
?buffer_byte_limit
~database
~on_handler_exception:`Raise
func
=
Expert.with_connection
?interrupt
?ssl_mode
?server
?user
?password
?gss_krb_token
?buffer_age_limit
?buffer_byte_limit
~database
~on_handler_exception:`Raise
func
>>| Or_pgasync_error.to_or_error
;;
type 'a feed_data_result = 'a Expert.feed_data_result =
| Abort of { reason : string }
| Wait of unit Deferred.t
| Data of 'a
| Finished
let copy_in_raw t ?parameters query_string ~feed_data =
Expert.copy_in_raw t ?parameters query_string ~feed_data
>>| Or_pgasync_error.to_or_error
;;
let copy_in_rows ?schema_name t ~table_name ~column_names ~feed_data =
Expert.copy_in_rows ?schema_name t ~table_name ~column_names ~feed_data
>>| Or_pgasync_error.to_or_error
;;
let listen_to_notifications t ~channel ~f =
Expert.listen_to_notifications t ~channel ~f >>| Or_pgasync_error.to_or_error
;;
let query_expect_no_data t ?parameters query_string =
Expert.query_expect_no_data t ?parameters query_string >>| Or_pgasync_error.to_or_error
;;
let query t ?parameters ?pushback ?handle_columns query_string ~handle_row =
Expert.query t ?parameters ?pushback ?handle_columns query_string ~handle_row
>>| Or_pgasync_error.to_or_error
;;
module Private = struct
module Protocol = Protocol
let pgasync_error_of_error = Pgasync_error.of_error
end