Source file caqti_driver_postgresql.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
open Caqti_common_priv
open Printf
module Pg = Postgresql
module Int_hashable = struct
type t = int
let equal (i : int) (j : int) = i = j
let hash (i : int) = Hashtbl.hash i
end
module Int_hashtbl = Hashtbl.Make (Int_hashable)
let start_req = Caqti_request.exec Caqti_type.unit "BEGIN"
let commit_req = Caqti_request.exec Caqti_type.unit "COMMIT"
let rollback_req = Caqti_request.exec Caqti_type.unit "ROLLBACK"
type Caqti_error.msg += Pg_msg of Pg.error
let () =
let pp ppf = function
| Pg_msg error -> Format.pp_print_string ppf (Pg.string_of_error error)
| _ -> assert false in
Caqti_error.define_msg ~pp [%extension_constructor Pg_msg]
let driver_info =
Caqti_driver_info.create
~uri_scheme:"postgresql"
~dialect_tag:`Pgsql
~parameter_style:(`Indexed (fun i -> "$" ^ string_of_int (succ i)))
~can_pool:true
~can_concur:true
~can_transact:true
~describe_has_typed_params:true
~describe_has_typed_fields:true
()
module Pg_ext = struct
let bool_of_string = function
| "t" -> true
| "f" -> false
| _ -> invalid_arg "Pg_ext.bool_of_string"
let string_of_bool = function true -> "t" | false -> "f"
let query_string templ =
let buf = Buffer.create 64 in
let rec loop = function
| Caqti_query.L s -> Buffer.add_string buf s
| Caqti_query.P i -> bprintf buf "$%d" (i + 1)
| Caqti_query.S frags -> List.iter loop frags in
loop templ;
Buffer.contents buf
let escaped_connvalue s =
let buf = Buffer.create (String.length s) in
let aux = function
| '\\' -> Buffer.add_string buf {|\\|}
| '\'' -> Buffer.add_string buf {|\'|}
| ch -> Buffer.add_char buf ch in
String.iter aux s;
Buffer.contents buf
let conninfo_of_uri uri =
if Uri.host uri <> None then Uri.to_string uri else
let mkparam k v = k ^ " = '" ^ escaped_connvalue v ^ "'" in
let mkparams (k, vs) = List.map (mkparam k) vs in
String.concat " " (List.flatten (List.map mkparams (Uri.query uri)))
let string_of_ptime_span t =
let is_neg = Ptime.Span.compare t Ptime.Span.zero < 0 in
let d, ps = Ptime.Span.(to_d_ps (abs t ))in
let buf = Buffer.create 32 in
if d <> 0 then bprintf buf "%d days " (if is_neg then -d else d);
let s, ps = Int64.(div ps 1_000_000_000_000L |> to_int,
rem ps 1_000_000_000_000L) in
let hour, s = s / 3600, s mod 3600 in
let minute, s = s / 60, s mod 60 in
if is_neg then Buffer.add_char buf '-';
bprintf buf "%02d:%02d:%02d" hour minute s;
if ps <> 0L then bprintf buf ".%06Ld" (Int64.div ps 1_000_000L);
Buffer.contents buf
let ps_of_decimal s =
try
(match String.length s with
| 2 ->
Ok (Int64.(mul (of_string s) 1_000_000_000_000L))
| n when n < 2 ->
Error "Missing digits in seconds of interval string."
| _ when s.[2] <> '.' ->
Error "Expected period after seconds in interval string."
| n ->
let buf = Bytes.make 14 '0' in
Bytes.blit_string s 0 buf 0 2;
Bytes.blit_string s 3 buf 2 (min 12 (n - 3));
Ok (Int64.of_string (Bytes.to_string buf)))
with Failure _ ->
Error "Seconds in interval string is not numeric."
let ps_of_hms s =
(match String.split_on_char ':' s with
| [hours; minutes; seconds] ->
(try
let hour = int_of_string hours in
let minute = int_of_string minutes in
(match ps_of_decimal seconds with
| Ok ps ->
let hm = Int64.of_int (abs hour * 60 + minute) in
let ps = Int64.(add ps (mul hm 60_000_000_000_000L)) in
Ok (if s.[0] = '-' then Int64.neg ps else ps)
| Error msg -> Error msg)
with Failure _ ->
Error "Non-integer hour or minute in interval string.")
| _ ->
Error "Expected HH:MM:SS[.F] in interval string.")
let ptime_span_of_string s =
let span_of_d_ps (d, ps) =
let d, ps =
if Int64.compare ps Int64.zero >= 0
then (d, ps)
else (d - 1, Int64.add ps 86_400_000_000_000_000L) in
(match Ptime.Span.of_d_ps (d, ps) with
| Some t -> Ok t
| None -> Error "Out for range for Ptime.span.") in
try
(match String.split_on_char ' ' s with
| [d; "days"] ->
span_of_d_ps (int_of_string d, 0L)
| [d; "days"; hms] ->
ps_of_hms hms |>? fun ps ->
span_of_d_ps (int_of_string d, ps)
| [hms] ->
ps_of_hms hms |>? fun ps ->
span_of_d_ps (0, ps)
| _ ->
Error "Unhandled interval format.")
with Failure _ ->
Error "Non-integer days in interval string."
end
let is_binary_param : type a. a Caqti_type.field -> bool = function
| Caqti_type.Octets -> true
| _ -> false
let rec set_binary_params
: type a. bool array -> a Caqti_type.t -> int -> int = fun bp -> function
| Caqti_type.Unit -> fun i -> i
| Caqti_type.Field ft -> fun i -> bp.(i) <- is_binary_param ft; i + 1
| Caqti_type.Option t -> set_binary_params bp t
| Caqti_type.Tup2 (t0, t1) ->
set_binary_params bp t0 %> set_binary_params bp t1
| Caqti_type.Tup3 (t0, t1, t2) ->
set_binary_params bp t0 %> set_binary_params bp t1 %>
set_binary_params bp t2
| Caqti_type.Tup4 (t0, t1, t2, t3) ->
set_binary_params bp t0 %> set_binary_params bp t1 %>
set_binary_params bp t2 %> set_binary_params bp t3
| Caqti_type.Custom {rep; _} -> set_binary_params bp rep
let rec encode_field
: type a. uri: Uri.t -> a Caqti_type.field -> a -> (string, _) result =
fun ~uri field_type x ->
(match field_type with
| Caqti_type.Bool -> Ok (Pg_ext.string_of_bool x)
| Caqti_type.Int -> Ok (string_of_int x)
| Caqti_type.Int32 -> Ok (Int32.to_string x)
| Caqti_type.Int64 -> Ok (Int64.to_string x)
| Caqti_type.Float -> Ok (sprintf "%.17g" x)
| Caqti_type.String -> Ok x
| Caqti_type.Octets -> Ok x
| Caqti_type.Pdate -> Ok (iso8601_of_pdate x)
| Caqti_type.Ptime ->
Ok (Ptime.to_rfc3339 ~space:true ~tz_offset_s:0 ~frac_s:6 x)
| Caqti_type.Ptime_span ->
Ok (Pg_ext.string_of_ptime_span x)
| _ ->
(match Caqti_type.Field.coding driver_info field_type with
| None -> Error (Caqti_error.encode_missing ~uri ~field_type ())
| Some (Caqti_type.Field.Coding {rep; encode; _}) ->
(match encode x with
| Ok y -> encode_field ~uri rep y
| Error msg ->
let msg = Caqti_error.Msg msg in
let typ = Caqti_type.field field_type in
Error (Caqti_error.encode_rejected ~uri ~typ msg))))
let rec decode_field
: type a. uri: Uri.t -> a Caqti_type.field -> string -> (a, _) result =
fun ~uri field_type s ->
let conv f s =
try Ok (f s) with _ ->
let msg = Caqti_error.Msg (sprintf "Invalid value %S." s) in
let typ = Caqti_type.field field_type in
Error (Caqti_error.decode_rejected ~uri ~typ msg) in
(match field_type with
| Caqti_type.Bool -> conv Pg_ext.bool_of_string s
| Caqti_type.Int -> conv int_of_string s
| Caqti_type.Int32 -> conv Int32.of_string s
| Caqti_type.Int64 -> conv Int64.of_string s
| Caqti_type.Float -> conv float_of_string s
| Caqti_type.String -> Ok s
| Caqti_type.Octets -> Ok s
| Caqti_type.Pdate ->
(match pdate_of_iso8601 s with
| Ok _ as r -> r
| Error msg ->
let msg = Caqti_error.Msg msg in
let typ = Caqti_type.field field_type in
Error (Caqti_error.decode_rejected ~uri ~typ msg))
| Caqti_type.Ptime ->
(match ptime_of_rfc3339_utc s with
| Ok _ as r -> r
| Error msg ->
let msg = Caqti_error.Msg msg in
let typ = Caqti_type.field field_type in
Error (Caqti_error.decode_rejected ~uri ~typ msg))
| Caqti_type.Ptime_span ->
(match Pg_ext.ptime_span_of_string s with
| Ok _ as r -> r
| Error msg ->
let msg = Caqti_error.Msg msg in
let typ = Caqti_type.field field_type in
Error (Caqti_error.decode_rejected ~uri ~typ msg))
| _ ->
(match Caqti_type.Field.coding driver_info field_type with
| None -> Error (Caqti_error.decode_missing ~uri ~field_type ())
| Some (Caqti_type.Field.Coding {rep; decode; _}) ->
(match decode_field ~uri rep s with
| Ok y ->
(match decode y with
| Ok _ as r -> r
| Error msg ->
let msg = Caqti_error.Msg msg in
let typ = Caqti_type.field field_type in
Error (Caqti_error.decode_rejected ~uri ~typ msg))
| Error _ as r -> r)))
let rec encode_param
: type a. uri: Uri.t -> string array ->
a Caqti_type.t -> a -> int -> (int, _) result =
fun ~uri params t x ->
(match t, x with
| Caqti_type.Unit, () -> fun i -> Ok i
| Caqti_type.Field ft, fv -> fun i ->
(match encode_field ~uri ft fv with
| Ok s -> params.(i) <- s; Ok (i + 1)
| Error _ as r -> r)
| Caqti_type.Option t, None -> fun i -> Ok (i + Caqti_type.length t)
| Caqti_type.Option t, Some x -> encode_param ~uri params t x
| Caqti_type.Tup2 (t0, t1), (x0, x1) ->
encode_param ~uri params t0 x0 %>? encode_param ~uri params t1 x1
| Caqti_type.Tup3 (t0, t1, t2), (x0, x1, x2) ->
encode_param ~uri params t0 x0 %>? encode_param ~uri params t1 x1 %>?
encode_param ~uri params t2 x2
| Caqti_type.Tup4 (t0, t1, t2, t3), (x0, x1, x2, x3) ->
encode_param ~uri params t0 x0 %>? encode_param ~uri params t1 x1 %>?
encode_param ~uri params t2 x2 %>? encode_param ~uri params t3 x3
| Caqti_type.Custom {rep; encode; _}, x -> fun i ->
(match encode x with
| Ok y -> encode_param ~uri params rep y i
| Error msg ->
let msg = Caqti_error.Msg msg in
Error (Caqti_error.encode_rejected ~uri ~typ:t msg)))
let rec decode_row'
: type b. uri: Uri.t -> Pg.result * int ->
b Caqti_type.t -> int -> (int * b, _) result =
fun ~uri ((resp, i) as row) t ->
(match t with
| Caqti_type.Unit -> fun j -> Ok (j, ())
| Caqti_type.Field ft -> fun j ->
(match decode_field ~uri ft (resp#getvalue i j) with
| Ok y -> Ok (j + 1, y)
| Error _ as r -> r)
| Caqti_type.Option t -> fun j ->
let j' = j + Caqti_type.length t in
let rec null_only k = k = j' ||
(resp#getisnull i j && null_only (k + 1)) in
if null_only j then Ok (j', None) else
(match decode_row' ~uri row t j with
| Ok (j'', y) -> assert (j' = j''); Ok (j'', Some y)
| Error _ as r -> r)
| Caqti_type.Tup2 (t0, t1) -> fun j ->
decode_row' ~uri row t0 j |>? fun (j, y0) ->
decode_row' ~uri row t1 j |>? fun (j, y1) ->
Ok (j, (y0, y1))
| Caqti_type.Tup3 (t0, t1, t2) -> fun j ->
decode_row' ~uri row t0 j |>? fun (j, y0) ->
decode_row' ~uri row t1 j |>? fun (j, y1) ->
decode_row' ~uri row t2 j |>? fun (j, y2) ->
Ok (j, (y0, y1, y2))
| Caqti_type.Tup4 (t0, t1, t2, t3) -> fun j ->
decode_row' ~uri row t0 j |>? fun (j, y0) ->
decode_row' ~uri row t1 j |>? fun (j, y1) ->
decode_row' ~uri row t2 j |>? fun (j, y2) ->
decode_row' ~uri row t3 j |>? fun (j, y3) ->
Ok (j, (y0, y1, y2, y3))
| Caqti_type.Custom {rep; decode; _} as typ -> fun j ->
(match decode_row' ~uri row rep j with
| Ok (j, y) ->
(match decode y with
| Ok z -> Ok (j, z)
| Error msg ->
let msg = Caqti_error.Msg msg in
Error (Caqti_error.decode_rejected ~uri ~typ msg))
| Error _ as r -> r))
let decode_row ~uri resp row_type =
(match decode_row' ~uri resp row_type 0 with
| Ok (j, y) -> assert (j = Caqti_type.length row_type); Ok y
| Error _ as r -> r)
type prepared = {
query: string;
param_length: int;
binary_params: bool array;
}
module Connect_functor (System : Caqti_driver_sig.System_unix) = struct
open System
module H = Caqti_connection.Make_helpers (System)
let (>>=?) m mf = m >>= (function Ok x -> mf x | Error _ as r -> return r)
let (>|=?) m f = m >|= (function Ok x -> f x | Error _ as r -> r)
let driver_info = driver_info
module Pg_io = struct
let communicate db step =
let aux fd =
let rec loop = function
| Pg.Polling_reading ->
Unix.poll ~read:true fd >>= fun _ ->
(match step () with
| exception Pg.Error msg -> return (Error msg)
| ps -> loop ps)
| Pg.Polling_writing ->
Unix.poll ~write:true fd >>= fun _ ->
(match step () with
| exception Pg.Error msg -> return (Error msg)
| ps -> loop ps)
| Pg.Polling_failed | Pg.Polling_ok ->
return (Ok ())
in
loop Pg.Polling_writing
in
(match db#socket with
| exception Pg.Error msg -> return (Error msg)
| socket -> Unix.wrap_fd aux (Obj.magic socket))
let get_next_result ~uri ~query db =
let pg_error msg =
Error (Caqti_error.request_failed ~uri ~query (Pg_msg msg)) in
let rec aux fd =
(match db#consume_input; db#is_busy with
| exception Pg.Error msg -> return (pg_error msg)
| true ->
Unix.poll ~read:true fd >>= fun _ -> aux fd
| false ->
(match db#get_result with
| exception Pg.Error msg -> return (pg_error msg)
| result -> return (Ok result)))
in
(match db#socket with
| exception Pg.Error msg -> return (pg_error msg)
| socket -> Unix.wrap_fd aux (Obj.magic socket))
let get_result ~uri ~query db =
get_next_result ~uri ~query db >>=
(function
| Ok None ->
let msg = Caqti_error.Msg "No response received after send." in
return (Error (Caqti_error.request_failed ~uri ~query msg))
| Ok (Some result) ->
get_next_result ~uri ~query db >>=
(function
| Ok None -> return (Ok result)
| Ok (Some _) ->
let msg = Caqti_error.Msg "More than one response received." in
return (Error (Caqti_error.response_rejected ~uri ~query msg))
| Error _ as r -> return r)
| Error _ as r -> return r)
let check_query_result ~uri ~query result mult =
let reject msg =
let msg = Caqti_error.Msg msg in
Error (Caqti_error.response_rejected ~uri ~query msg) in
let fail msg =
let msg = Caqti_error.Msg msg in
Error (Caqti_error.request_failed ~uri ~query msg) in
(match result#status with
| exception Pg.Error msg ->
Error (Caqti_error.request_failed ~uri ~query (Pg_msg msg))
| Pg.Command_ok ->
(match Caqti_mult.expose mult with
| `Zero -> Ok ()
| (`One | `Zero_or_one | `Zero_or_more) ->
reject "Tuples expected for this query.")
| Pg.Tuples_ok ->
(match Caqti_mult.expose mult with
| `Zero ->
if result#ntuples = 0 then Ok () else
reject "No tuples expected for this query."
| `One ->
if result#ntuples = 1 then Ok () else
ksprintf reject "Received %d tuples, expected one."
result#ntuples
| `Zero_or_one ->
if result#ntuples <= 1 then Ok () else
ksprintf reject "Received %d tuples, expected at most one."
result#ntuples
| `Zero_or_more -> Ok ())
| Pg.Empty_query -> fail "The query was empty."
| Pg.Bad_response -> reject result#error
| Pg.Fatal_error -> fail result#error
| Pg.Nonfatal_error -> Ok ()
| Pg.Copy_out | Pg.Copy_in | Pg.Copy_both ->
reject "Received unexpected copy response."
| Pg.Single_tuple ->
reject "Received unexpected single-tuple response.")
let check_command_result ~uri ~query result =
check_query_result ~uri ~query result Caqti_mult.zero
end
module type CONNECTION = Caqti_connection_sig.S
with type 'a future := 'a System.future
and type ('a, 'err) stream := ('a, 'err) System.Stream.t
module Make_connection_base
(Db : sig val uri : Uri.t val db : Pg.connection end) =
struct
open Db
let using_db_ref = ref false
let using_db f = H.assert_single_use using_db_ref f
let in_transaction = ref false
let prepare_cache : prepared Int_hashtbl.t = Int_hashtbl.create 19
let query_name_of_id = sprintf "_caq%d"
let wrap_pg ~query f =
try Ok (f ()) with
| Postgresql.Error err ->
Error (Caqti_error.request_failed ~uri ~query (Pg_msg err))
let send_query ?params ?binary_params query =
wrap_pg ~query @@ fun () ->
db#send_query ?params ?binary_params query
let send_prepare query_id query =
wrap_pg ~query @@ fun () ->
db#send_prepare (query_name_of_id query_id) query
let send_query_prepared ?params ?binary_params ~query ~query_id =
wrap_pg ~query @@ fun () ->
db#send_query_prepared ?params ?binary_params (query_name_of_id query_id)
let reset () =
Log.warn (fun p ->
p "Lost connection to <%a>, reconnecting." Caqti_error.pp_uri uri)
>>= fun () ->
in_transaction := false;
(match db#reset_start with
| exception Pg.Error _ -> return false
| true ->
Int_hashtbl.clear prepare_cache;
Pg_io.communicate db (fun () -> db#reset_poll) >|=
(function
| Error _ -> false
| Ok () -> (try db#status = Pg.Ok with Pg.Error _ -> false))
| false ->
return false)
let rec retry_on_connection_error ?(n = 1) f =
if !in_transaction then f () else
(f () : (_, [> Caqti_error.call]) result future) >>=
(function
| Ok _ as r -> return r
| Error (`Request_failed
{Caqti_error.msg = Pg_msg (Postgresql.Connection_failure _); _})
as r when n > 0 ->
reset () >>= fun reset_ok ->
if reset_ok then
retry_on_connection_error ~n:(n - 1) f
else
return r
| Error _ as r -> return r)
let query_oneshot ?params ?binary_params query =
retry_on_connection_error begin fun () ->
return (send_query ?params ?binary_params query)
end >>= function
| Error _ as r -> return r
| Ok () -> Pg_io.get_result ~uri ~query db
let query_prepared query_id prepared params =
let {query; binary_params; _} = prepared in
retry_on_connection_error begin fun () ->
begin
if Int_hashtbl.mem prepare_cache query_id then return (Ok()) else
(match send_prepare query_id query with
| Ok () ->
Pg_io.get_result ~uri ~query db >|=
(function
| Ok result -> Pg_io.check_command_result ~uri ~query result
| Error _ as r -> r)
| Error _ as r ->
return r) >|=? fun () ->
Ok (Int_hashtbl.add prepare_cache query_id prepared)
end >|=? fun () ->
send_query_prepared ~params ~binary_params ~query ~query_id
end >>=? fun () ->
Pg_io.get_result ~uri ~query db
module Response = struct
type ('b, 'm) t = {row_type: 'b Caqti_type.t; result: Pg.result}
let returned_count {result; _} =
return (Ok result#ntuples)
let affected_count {result; _} =
return (Ok (int_of_string result#cmd_tuples))
let exec _ = return (Ok ())
let find {row_type; result} =
return (decode_row ~uri (result, 0) row_type)
let find_opt {row_type; result} =
return begin
if result#ntuples = 0 then Ok None else
(match decode_row ~uri (result, 0) row_type with
| Ok y -> Ok (Some y)
| Error _ as r -> r)
end
let fold f {row_type; result} acc =
let n = result#ntuples in
let rec loop i acc =
if i = n then Ok acc else
(match decode_row ~uri (result, i) row_type with
| Ok y -> loop (i + 1) (f y acc)
| Error _ as r -> r) in
return (loop 0 acc)
let fold_s f {row_type; result} acc =
let n = result#ntuples in
let rec loop i acc =
if i = n then return (Ok acc) else
(match decode_row ~uri (result, i) row_type with
| Ok y -> f y acc >>=? loop (i + 1)
| Error _ as r -> return r) in
loop 0 acc
let iter_s f {row_type; result} =
let n = result#ntuples in
let rec loop i () =
if i = n then return (Ok ()) else
(match decode_row ~uri (result, i) row_type with
| Ok y -> f y >>=? loop (i + 1)
| Error _ as r -> return r) in
loop 0 ()
let to_stream {row_type; result} =
let n = result#ntuples in
let rec f i () =
if i = n then return Stream.Nil else
(match decode_row ~uri (result, i) row_type with
| Ok y -> return @@ Stream.Cons (y, f (i + 1))
| Error err -> return @@ Stream.Error err) in
f 0
end
let call ~f req param = using_db @@ fun () ->
let param_type = Caqti_request.param_type req in
(match Caqti_request.query_id req with
| None ->
let templ = Caqti_request.query req driver_info in
let query = Pg_ext.query_string templ in
let param_length = Caqti_type.length param_type in
let binary_params = Array.make param_length false in
let nbp = set_binary_params binary_params param_type 0 in
assert (nbp = param_length);
let params = Array.make param_length Pg.null in
(match encode_param ~uri params param_type param 0 with
| Ok n ->
assert (n = param_length);
query_oneshot ~params ~binary_params query >|=? fun result ->
Ok (query, result)
| Error _ as r ->
return r)
| Some query_id ->
let prepared =
try Int_hashtbl.find prepare_cache query_id with
| Not_found ->
let templ = Caqti_request.query req driver_info in
let query = Pg_ext.query_string templ in
let param_length = Caqti_type.length param_type in
let binary_params = Array.make param_length false in
let nbp = set_binary_params binary_params param_type 0 in
assert (nbp = param_length);
{query; param_length; binary_params}
in
let params = Array.make prepared.param_length Pg.null in
(match encode_param ~uri params param_type param 0 with
| Ok n ->
assert (n = prepared.param_length);
query_prepared query_id prepared params >|=? fun result ->
Ok (prepared.query, result)
| Error _ as r ->
return r))
>>=? fun (query, result) ->
let row_type = Caqti_request.row_type req in
let row_mult = Caqti_request.row_mult req in
(match Pg_io.check_query_result ~uri ~query result row_mult with
| Ok () -> f Response.{row_type; result}
| Error _ as r -> return r)
let deallocate req =
(match Caqti_request.query_id req with
| Some query_id ->
if Int_hashtbl.mem prepare_cache query_id then
begin
let query = sprintf "DEALLOCATE _caq%d" query_id in
query_oneshot query >|=? fun result ->
Int_hashtbl.remove prepare_cache query_id;
Pg_io.check_query_result ~uri ~query result Caqti_mult.zero
end
else
return (Ok ())
| None ->
failwith "deallocate called on oneshot request")
let disconnect () = using_db @@ fun () ->
try db#finish; return () with Pg.Error err ->
Log.warn (fun p ->
p "While disconnecting from <%a>: %s"
Caqti_error.pp_uri uri (Pg.string_of_error err))
let validate () = using_db @@ fun () ->
if (try db#status = Pg.Ok with Pg.Error _ -> false) then
return true
else
reset ()
let check f = f (try db#status = Pg.Ok with Pg.Error _ -> false)
let exec q p = call ~f:Response.exec q p
let start () = exec start_req () >|=? fun () -> Ok (in_transaction := true)
let commit () = in_transaction := false; exec commit_req ()
let rollback () = in_transaction := false; exec rollback_req ()
end
let connect uri =
let conninfo = Pg_ext.conninfo_of_uri uri in
(match new Pg.connection ~conninfo () with
| exception Pg.Error msg ->
return (Error (Caqti_error.connect_failed ~uri (Pg_msg msg)))
| db ->
Pg_io.communicate db (fun () -> db#connect_poll) >|=
(function
| Error msg -> Error (Caqti_error.connect_failed ~uri (Pg_msg msg))
| Ok () ->
(match db#status <> Pg.Ok with
| exception Pg.Error msg ->
Error (Caqti_error.connect_failed ~uri (Pg_msg msg))
| true ->
let msg = db#error_message in
Error (Caqti_error.connect_failed ~uri (Caqti_error.Msg msg))
| false ->
let module B =
Make_connection_base (struct let uri = uri let db = db end)
in
let module Connection = struct
let driver_info = driver_info
include B
include Caqti_connection.Make_convenience (System) (B)
include Caqti_connection.Make_populate (System) (B)
end in
Ok (module Connection : CONNECTION))))
end
let () =
Caqti_connect.define_unix_driver "postgres" (module Connect_functor);
Caqti_connect.define_unix_driver "postgresql" (module Connect_functor)