Source file iobuf_debug.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
open! Import

module Unix = Core_unix

let concat = String.concat

let log string a sexp_of_a =
  Printf.eprintf "%s\n%!"
    (Sexp.to_string_hum ([%sexp_of: string * a] (string, a)));
;;

module Make () = struct

  let check_invariant = ref true

  let show_messages = ref true

  open Iobuf

  type nonrec ('d, 'w) t = ('d, 'w) Hexdump.t [@@deriving sexp_of]
  type nonrec    seek =    seek [@@deriving sexp_of]
  type nonrec no_seek = no_seek [@@deriving sexp_of]
  module type Bound = Bound

  module Window  = Window
  module Limits  = Limits
  module Debug   = Debug
  module Hexdump = Hexdump

  let invariant = invariant

  let debug name ts arg sexp_of_arg sexp_of_result f =
    let prefix = "Iobuf." in
    if !show_messages then log (concat [ prefix; name ]) arg sexp_of_arg;
    if !check_invariant then List.iter ts ~f:(invariant ignore ignore);
    let result_or_exn = Result.try_with f in
    if !show_messages then
      log (concat [ prefix; name; " result" ]) result_or_exn
        ([%sexp_of: (result, exn) Result.t]);
    if !check_invariant then List.iter ts ~f:(invariant ignore ignore);
    Result.ok_exn result_or_exn;
  ;;

  let debug_blit name ~src ~dst a sexp_of_a sexp_of_ret f =
    debug name [src] (dst, a) [%sexp_of: (_, _) t * a] [%sexp_of: ret] (fun () ->
      (* Check dst's invariant separately because it has a different type. *)
      let finally () = if !check_invariant then invariant ignore ignore dst in
      finally ();
      protect ~finally ~f)
  ;;

  let read_only t =
    debug "read_only" [t] () sexp_of_unit [%sexp_of: (_, _) t] (fun () -> read_only t)

  let no_seek t =
    debug "no_seek" [t] () sexp_of_unit [%sexp_of: (_, _) t] (fun () -> no_seek t)

  let create ~len =
    debug "create" [] (`len len)
      ([%sexp_of: [ `len of int ]])
      ([%sexp_of: (_, _) t])
      (fun () ->
         let t = create ~len in
         if !check_invariant then invariant ignore ignore t;
         t)
  ;;

  let capacity t =
    debug "capacity" [t] t [%sexp_of: (_, _) t] sexp_of_int (fun () -> capacity t)
  ;;

  let of_bigstring ?pos ?len bigstring =
    debug "of_bigstring" []
      (`pos pos, `len len, `bigstring_len (Bigstring.length bigstring))
      ([%sexp_of: ([ `pos of int option ]
                   * [ `len of int option ]
                   * [ `bigstring_len of int ])])
      ([%sexp_of: (_, _) t])
      (fun () ->
         let t = of_bigstring ?pos ?len bigstring in
         if !check_invariant then invariant ignore ignore t;
         t)
  ;;

  let length t =
    debug "length" [t] t [%sexp_of: (_, _) t] sexp_of_int (fun () -> length t)
  ;;
  let is_empty t =
    debug "is_empty" [t] t [%sexp_of: (_, _) t] sexp_of_bool (fun () -> is_empty t)
  ;;

  module Bound (Bound : Bound) (Name : sig val name : string end) = struct
    type t = Bound.t [@@deriving compare, sexp_of]

    let window iobuf =
      debug (Name.name ^ ".window")
        [iobuf] () sexp_of_unit Bound.sexp_of_t (fun () -> Bound.window iobuf)

    let restore t iobuf =
      debug (Name.name ^ ".restore")
        [iobuf] t Bound.sexp_of_t sexp_of_unit (fun () -> Bound.restore t iobuf)

    let limit iobuf =
      debug (Name.name ^ ".limit")
        [iobuf] () sexp_of_unit Bound.sexp_of_t (fun () -> Bound.limit iobuf)
  end
  module Lo_bound = Bound (Lo_bound) (struct let name = "Lo_bound" end)
  module Hi_bound = Bound (Hi_bound) (struct let name = "Hi_bound" end)

  let rewind t =
    debug "rewind" [t] t [%sexp_of: (_, _) t] sexp_of_unit (fun () -> rewind t)
  ;;
  let reset t =
    debug "reset" [t] t [%sexp_of: (_, _) t] sexp_of_unit (fun () -> reset t)
  ;;

  let flip_lo t =
    debug "flip_lo" [t] t [%sexp_of: (_, _) t] sexp_of_unit (fun () -> flip_lo t)
  ;;
  let bounded_flip_lo t lo_min =
    debug "bounded_flip_lo" [t] lo_min Lo_bound.sexp_of_t sexp_of_unit (fun () ->
      bounded_flip_lo t lo_min)
  ;;
  let compact t =
    debug "compact" [t] t [%sexp_of: (_, _) t] sexp_of_unit (fun () -> compact t)
  ;;
  let bounded_compact t lo_min hi_max =
    debug "bounded_compact" [t] (lo_min, hi_max)
      [%sexp_of: Lo_bound.t * Hi_bound.t]
      sexp_of_unit
      (fun () -> bounded_compact t lo_min hi_max)
  let flip_hi t =
    debug "flip_hi" [t] () [%sexp_of: unit] sexp_of_unit (fun () -> flip_hi t)
  ;;
  let bounded_flip_hi t hi_max =
    debug "bounded_flip_hi" [t] hi_max Hi_bound.sexp_of_t sexp_of_unit (fun () ->
      bounded_flip_hi t hi_max)
  ;;

  let sub_shared ?pos ?len t =
    debug "sub_shared" [t] (`pos pos, `len len)
      [%sexp_of: [ `pos of int option ] * [ `len of int option ]]
      [%sexp_of: (_, _) t]
      (fun () -> sub_shared ?pos ?len t)
  ;;

  let set_bounds_and_buffer_sub ~pos ~len ~src ~dst =
    debug "sub" [src] (`pos pos, `len len)
      [%sexp_of: [ `pos of int ] * [ `len of int ]]
      sexp_of_unit
      (fun () -> set_bounds_and_buffer_sub ~pos ~len ~src ~dst)
  ;;
  let set_bounds_and_buffer ~src ~dst =
    debug "copy" [src] src [%sexp_of: (_, _) t] sexp_of_unit
      (fun () -> set_bounds_and_buffer ~src ~dst)
  ;;
  let narrow t =
    debug "narrow" [t] t [%sexp_of: (_, _) t] sexp_of_unit (fun () -> narrow t)
  ;;
  let narrow_lo t =
    debug "narrow_lo" [t] t [%sexp_of: (_, _) t] sexp_of_unit (fun () -> narrow_lo t)
  ;;
  let narrow_hi t =
    debug "narrow_hi" [t] t [%sexp_of: (_, _) t] sexp_of_unit (fun () -> narrow_hi t)
  ;;
  let resize t ~len =
    debug "resize" [t] (`len len) [%sexp_of: [ `len of int ]] sexp_of_unit
      (fun () -> resize t ~len)
  ;;
  let unsafe_resize t ~len =
    debug "unsafe_resize" [t] (`len len) [%sexp_of: [ `len of int ]] sexp_of_unit
      (fun () -> unsafe_resize t ~len)
  ;;

  let protect_window_and_bounds t ~f =
    debug "protect_window_and_bounds" [t] t [%sexp_of: (_, _) t] [%sexp_of: _]
      (fun () -> protect_window_and_bounds t ~f)
  ;;

  let protect_window_and_bounds_1 t x ~f =
    debug "protect_window_and_bounds_1" [t] t [%sexp_of: (_, _) t] [%sexp_of: _]
      (fun () -> protect_window_and_bounds_1 t x ~f)
  ;;

  let of_string s =
    debug "of_string" []
      s [%sexp_of: string] [%sexp_of: (_, _) t]
      (fun () ->
         let t = of_string s in
         if !check_invariant then invariant ignore ignore t;
         t)
  ;;

  let of_bytes s =
    debug "of_bytes" []
      s [%sexp_of: Bytes.t] [%sexp_of: (_, _) t]
      (fun () ->
         let t = of_bytes s in
         if !check_invariant then invariant ignore ignore t;
         t)
  ;;

  let to_string ?len t =
    debug "to_string" [t]
      (`len len) [%sexp_of: [ `len of int option ]] [%sexp_of: string]
      (fun () -> to_string ?len t)
  ;;

  let to_string_hum ?max_lines t =
    debug "to_string_hum" [t]
      (`max_lines max_lines)
      [%sexp_of: [`max_lines of int option]]
      [%sexp_of: string]
      (fun () -> to_string_hum ?max_lines t)

  let to_bytes t =
    debug "to_bytes" [t]
      t [%sexp_of: (_, _) t] [%sexp_of: Bytes.t]
      (fun () -> to_bytes t)
  ;;

  let advance t i = debug "advance" [t] i sexp_of_int sexp_of_unit (fun () -> advance t i)

  let unsafe_advance t i =
    debug "unsafe_advance" [t] i sexp_of_int sexp_of_unit (fun () -> unsafe_advance t i)

  module Consume_blit_debug = struct
    module type To = Iobuf_intf.Consuming_blit with type src := Consume.src
    module type To_string = sig
      val subo : ?len:int -> Consume.src -> string
      val sub  : Consume.src -> len:int -> string
    end

    module To (To : sig
        include To
        val sexp_of_dst : dst -> Sexp.t
        val module_name : string
      end) = struct
      let blito ~src ?src_len ~dst ?dst_pos () =
        debug (To.module_name ^ ".blito") [src]
          (src_len, dst, dst_pos) [%sexp_of: int option * To.dst * int option]
          sexp_of_unit (To.blito ~src ?src_len ~dst ?dst_pos)
      let blit ~src ~dst ~dst_pos ~len =
        debug (To.module_name ^ ".blit") [src]
          (dst, dst_pos, len) [%sexp_of: To.dst * int * int]
          sexp_of_unit (fun () -> To.blit ~src ~len ~dst ~dst_pos)
      let unsafe_blit ~src ~dst ~dst_pos ~len =
        debug (To.module_name ^ ".unsafe_blit") [src]
          (dst, dst_pos, len) [%sexp_of: To.dst * int * int]
          sexp_of_unit (fun () -> To.unsafe_blit ~src ~len ~dst ~dst_pos)

      let sub src ~len =
        debug (To.module_name ^ ".sub") [src] len [%sexp_of: int]
          To.sexp_of_dst (fun () -> To.sub src ~len)
      let subo ?len src =
        debug (To.module_name ^ ".subo") [src] len [%sexp_of: int option]
          To.sexp_of_dst (fun () -> To.subo ?len src)
    end

    module Make (C : sig
        module To_bytes    : To with type dst := Bytes.t
        module To_bigstring : To with type dst := bigstring
        module To_string : To_string
        val module_name : string
      end) = struct
      module To_bytes = To (struct
          type dst = Bytes.t [@@deriving sexp_of]
          include C.To_bytes
          let module_name = C.module_name ^ ".To_bytes"
        end)
      module To_bigstring = To (struct
          type dst = bigstring [@@deriving sexp_of]
          include C.To_bigstring
          let module_name = C.module_name ^ ".To_bigstring"
        end)

      module To_string = struct
        include To_bytes
        let sub src ~len =
          debug (C.module_name ^ ".To_string.sub") [src] len [%sexp_of: int]
            sexp_of_string (fun () -> C.To_string.sub src ~len)
        let subo ?len src =
          debug (C.module_name ^ ".To_string.subo") [src] len [%sexp_of: int option]
            sexp_of_string (fun () -> C.To_string.subo ?len src)
      end
      type src = Consume.src
    end
  end

  module Consume = struct
    let d name f sexp_of_result t =
      debug ("Consume." ^ name) [t] t [%sexp_of: (_, _) t] sexp_of_result (fun () ->
        f t)
    ;;

    open Consume

    include Consume_blit_debug.Make (struct
        include Consume
        let module_name = "Consume"
      end)

    type nonrec ('a, 'd, 'w) t = ('a, 'd, 'w) t

    let char           t = d "char"           char           sexp_of_char  t
    let int8           t = d "int8"           int8           sexp_of_int   t
    let int16_be       t = d "int16_be"       int16_be       sexp_of_int   t
    let int16_le       t = d "int16_le"       int16_le       sexp_of_int   t
    let int32_be       t = d "int32_be"       int32_be       sexp_of_int   t
    let int32_le       t = d "int32_le"       int32_le       sexp_of_int   t
    let uint8          t = d "uint8"          uint8          sexp_of_int   t
    let uint16_be      t = d "uint16_be"      uint16_be      sexp_of_int   t
    let uint16_le      t = d "uint16_le"      uint16_le      sexp_of_int   t
    let uint32_be      t = d "uint32_be"      uint32_be      sexp_of_int   t
    let uint32_le      t = d "uint32_le"      uint32_le      sexp_of_int   t
    let int64_be_exn   t = d "int64_be_exn"   int64_be_exn   sexp_of_int   t
    let int64_le_exn   t = d "int64_le_exn"   int64_le_exn   sexp_of_int   t
    let uint64_be_exn  t = d "uint64_be_exn"  uint64_be_exn  sexp_of_int   t
    let uint64_le_exn  t = d "uint64_le_exn"  uint64_le_exn  sexp_of_int   t
    let int64_t_be     t = d "int64_t_be"     int64_t_be     sexp_of_int64 t
    let int64_t_le     t = d "int64_t_le"     int64_t_le     sexp_of_int64 t
    let int64_be_trunc t = d "int64_be_trunc" int64_be_trunc sexp_of_int   t
    let int64_le_trunc t = d "int64_le_trunc" int64_le_trunc sexp_of_int   t

    let tail_padded_fixed_string ~padding ~len t =
      debug "Consume.tail_padded_fixed_string" [t] (`padding padding, `len len)
        [%sexp_of: [ `padding of char ] * [ `len of int ]]
        sexp_of_string
        (fun () -> tail_padded_fixed_string ~padding ~len t)

    let head_padded_fixed_string ~padding ~len t =
      debug "Consume.head_padded_fixed_string" [t] (`padding padding, `len len)
        [%sexp_of: [ `padding of char ] * [ `len of int ]]
        sexp_of_string
        (fun () -> head_padded_fixed_string ~padding ~len t)

    let bytes ~str_pos ~len t =
      debug "Consume.bytes" [t] ()
        (fun () -> [%sexp { str_pos : int; len : int }])
        sexp_of_bytes
        (fun () -> bytes ~str_pos ~len t)

    let string ~str_pos ~len t =
      debug "Consume.string" [t] ()
        (fun () -> [%sexp { str_pos : int; len : int }])
        sexp_of_string
        (fun () -> string ~str_pos ~len t)

    let bigstring ~str_pos ~len t =
      debug "Consume.bigstring" [t] ()
        (fun () -> [%sexp { str_pos : int; len : int }])
        sexp_of_bigstring
        (fun () -> bigstring ~str_pos ~len t)

    let byteso ?str_pos ?len t =
      debug "Consume.byteso" [t] ()
        (fun () -> [%sexp { str_pos : int option; len : int option }])
        sexp_of_bytes
        (fun () -> byteso ?str_pos ?len t)

    let stringo ?str_pos ?len t =
      debug "Consume.stringo" [t] ()
        (fun () -> [%sexp { str_pos : int option; len : int option }])
        sexp_of_string
        (fun () -> stringo ?str_pos ?len t)

    let bigstringo ?str_pos ?len t =
      debug "Consume.bigstringo" [t] ()
        (fun () -> [%sexp { str_pos : int option; len : int option }])
        sexp_of_bigstring
        (fun () -> bigstringo ?str_pos ?len t)

    let bin_prot reader t =
      debug "Consume.bin_prot" [t] () [%sexp_of: unit]
        [%sexp_of: _]
        (fun () -> bin_prot reader t)
  end

  module Fill = struct
    let d name f sexp_of_arg t arg =
      debug ("Fill." ^ name) [t] arg sexp_of_arg sexp_of_unit (fun () ->
        f t arg)
    ;;

    open Fill

    type nonrec ('a, 'd, 'w) t = ('a, 'd, 'w) t

    let char            t = d "char"            char            sexp_of_char  t
    let int8_trunc      t = d "int8_trunc"      int8_trunc      sexp_of_int   t
    let int16_be_trunc  t = d "int16_be_trunc"  int16_be_trunc  sexp_of_int   t
    let int16_le_trunc  t = d "int16_le_trunc"  int16_le_trunc  sexp_of_int   t
    let int32_be_trunc  t = d "int32_be_trunc"  int32_be_trunc  sexp_of_int   t
    let int32_le_trunc  t = d "int32_le_trunc"  int32_le_trunc  sexp_of_int   t
    let uint8_trunc     t = d "uint8_trunc"     uint8_trunc     sexp_of_int   t
    let uint16_be_trunc t = d "uint16_be_trunc" uint16_be_trunc sexp_of_int   t
    let uint16_le_trunc t = d "uint16_le_trunc" uint16_le_trunc sexp_of_int   t
    let uint32_be_trunc t = d "uint32_be_trunc" uint32_be_trunc sexp_of_int   t
    let uint32_le_trunc t = d "uint32_le_trunc" uint32_le_trunc sexp_of_int   t
    let int64_be        t = d "int64_be"        int64_be        sexp_of_int   t
    let int64_le        t = d "int64_le"        int64_le        sexp_of_int   t
    let uint64_be_trunc t = d "uint64_be_trunc" uint64_be_trunc sexp_of_int   t
    let uint64_le_trunc t = d "uint64_le_trunc" uint64_le_trunc sexp_of_int   t
    let int64_t_be      t = d "int64_t_be"      int64_t_be      sexp_of_int64 t
    let int64_t_le      t = d "int64_t_le"      int64_t_le      sexp_of_int64 t
    let decimal         t = d "decimal"         decimal         sexp_of_int   t

    let tail_padded_fixed_string ~padding ~len t str =
      debug "Fill.tail_padded_fixed_string" [t] (`padding padding, `len len, str)
        [%sexp_of: [ `padding of char ] * [ `len of int ] * string]
        sexp_of_unit
        (fun () -> tail_padded_fixed_string ~padding ~len t str)

    let head_padded_fixed_string ~padding ~len t str =
      debug "Fill.head_padded_fixed_string" [t] (`padding padding, `len len, str)
        [%sexp_of: [ `padding of char ] * [ `len of int ] * string]
        sexp_of_unit
        (fun () -> head_padded_fixed_string ~padding ~len t str)

    let bytes ~str_pos ~len t str =
      debug "Fill.bytes" [t] (`str_pos str_pos, `len len, str)
        [%sexp_of: [ `str_pos of int ] * [ `len of int ] * bytes]
        sexp_of_unit
        (fun () -> bytes ~str_pos ~len t str)

    let string ~str_pos ~len t str =
      debug "Fill.string" [t] (`str_pos str_pos, `len len, str)
        [%sexp_of: [ `str_pos of int ] * [ `len of int ] * string]
        sexp_of_unit
        (fun () -> string ~str_pos ~len t str)

    let bigstring ~str_pos ~len t str =
      debug "Fill.bigstring" [t] (`str_pos str_pos, `len len, str)
        [%sexp_of: [ `str_pos of int ] * [ `len of int ] * bigstring]
        sexp_of_unit
        (fun () -> bigstring ~str_pos ~len t str)

    let stringo ?str_pos ?len t str =
      debug "Fill.stringo" [t] (`str_pos str_pos, `len len, str)
        [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * string]
        sexp_of_unit
        (fun () -> stringo ?str_pos ?len t str)

    let byteso ?str_pos ?len t str =
      debug "Fill.byteso" [t] (`str_pos str_pos, `len len, str)
        [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * bytes]
        sexp_of_unit
        (fun () -> byteso ?str_pos ?len t str)

    let bigstringo ?str_pos ?len t str =
      debug "Fill.bigstringo" [t] (`str_pos str_pos, `len len, str)
        [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * bigstring]
        sexp_of_unit
        (fun () -> bigstringo ?str_pos ?len t str)

    let bin_prot writer t a =
      debug "Fill.bin_prot" [t] () [%sexp_of: _]
        [%sexp_of: unit]
        (fun () -> bin_prot writer t a)
  end

  module Peek_blit_debug = struct
    module type To = Core_kernel.Blit.S_distinct with type src := Peek.src
    module type To_string = sig
      val sub  : (Peek.src, string) Base.Blit.sub
      val subo : (Peek.src, string) Base.Blit.subo
    end

    module To (To : sig
        include To
        val sexp_of_dst : dst -> Sexp.t
        val module_name : string
      end) = struct
      let blito ~src ?src_pos ?src_len ~dst ?dst_pos () =
        debug (To.module_name ^ ".blito") [src]
          (src_pos, src_len, dst, dst_pos)
          [%sexp_of: int option * int option * To.dst * int option]
          sexp_of_unit (To.blito ~src ?src_pos ?src_len ~dst ?dst_pos)
      let blit ~src ~src_pos ~dst ~dst_pos ~len =
        debug (To.module_name ^ ".blit") [src]
          (src_pos, dst, dst_pos, len) [%sexp_of: int * To.dst * int * int]
          sexp_of_unit (fun () -> To.blit ~src ~src_pos ~dst ~dst_pos ~len)
      let unsafe_blit ~src ~src_pos ~dst ~dst_pos ~len =
        debug (To.module_name ^ ".unsafe_blit") [src]
          (src_pos, dst, dst_pos, len) [%sexp_of: int * To.dst * int * int]
          sexp_of_unit (fun () -> To.unsafe_blit ~src ~src_pos ~dst ~dst_pos ~len)

      let sub src ~pos ~len =
        debug (To.module_name ^ ".sub") [src]
          (pos, len) [%sexp_of: int * int]
          To.sexp_of_dst (fun () -> To.sub src ~pos ~len)
      let subo ?pos ?len src =
        debug (To.module_name ^ ".subo") [src]
          (pos, len) [%sexp_of: int option * int option]
          To.sexp_of_dst (fun () -> To.subo ?pos ?len src)
    end

    module Make (C : sig
        module To_bytes     : To with type dst := Bytes.t
        module To_bigstring : To with type dst := bigstring
        module To_string    : To_string
        val module_name : string
      end) = struct
      type src = Peek.src
      module To_bytes = To (struct
          type dst = Bytes.t [@@deriving sexp_of]
          include C.To_bytes
          let module_name = C.module_name ^ ".To_bytes"
        end)
      module To_bigstring = To (struct
          type dst = bigstring [@@deriving sexp_of]
          include C.To_bigstring
          let module_name = C.module_name ^ ".To_bigstring"
        end)

      module To_string = struct
        include To_bytes
        let sub src ~pos ~len =
          debug (C.module_name ^ ".To_string.sub") [src]
            (pos, len) [%sexp_of: int * int]
            sexp_of_string (fun () -> C.To_string.sub src ~pos ~len)
        let subo ?pos ?len src =
          debug (C.module_name ^ ".To_string.subo") [src]
            (pos, len) [%sexp_of: int option * int option]
            sexp_of_string (fun () -> C.To_string.subo ?pos ?len src)
      end
    end
  end
  module Peek = struct
    let d name f sexp_of_result t ~pos =
      debug ("Peek." ^ name)
        [t]
        (`pos pos)
        [%sexp_of: [ `pos of int ]]
        sexp_of_result
        (fun () -> f t ~pos)
    ;;

    open Peek

    include Peek_blit_debug.Make (struct include Peek let module_name = "Peek" end)

    type nonrec ('a, 'd, 'w) t = ('a, 'd, 'w) t

    let char           t = d "char"           char           sexp_of_char  t
    let int8           t = d "int8"           int8           sexp_of_int   t
    let int16_be       t = d "int16_be"       int16_be       sexp_of_int   t
    let int16_le       t = d "int16_le"       int16_le       sexp_of_int   t
    let int32_be       t = d "int32_be"       int32_be       sexp_of_int   t
    let int32_le       t = d "int32_le"       int32_le       sexp_of_int   t
    let uint8          t = d "uint8"          uint8          sexp_of_int   t
    let uint16_be      t = d "uint16_be"      uint16_be      sexp_of_int   t
    let uint16_le      t = d "uint16_le"      uint16_le      sexp_of_int   t
    let uint32_be      t = d "uint32_be"      uint32_be      sexp_of_int   t
    let uint32_le      t = d "uint32_le"      uint32_le      sexp_of_int   t
    let int64_be_exn   t = d "int64_be_exn"   int64_be_exn   sexp_of_int   t
    let int64_le_exn   t = d "int64_le_exn"   int64_le_exn   sexp_of_int   t
    let uint64_be_exn  t = d "uint64_be_exn"  uint64_be_exn  sexp_of_int   t
    let uint64_le_exn  t = d "uint64_le_exn"  uint64_le_exn  sexp_of_int   t
    let int64_t_be     t = d "int64_t_be"     int64_t_be     sexp_of_int64 t
    let int64_t_le     t = d "int64_t_le"     int64_t_le     sexp_of_int64 t
    let int64_be_trunc t = d "int64_be_trunc" int64_be_trunc sexp_of_int   t
    let int64_le_trunc t = d "int64_le_trunc" int64_le_trunc sexp_of_int   t

    let tail_padded_fixed_string ~padding ~len t ~pos =
      debug "Peek.tail_padded_fixed_string" [t] (`padding padding, `len len, `pos pos)
        [%sexp_of: [ `padding of char ] * [ `len of int ] * [ `pos of int ]]
        sexp_of_string
        (fun () -> tail_padded_fixed_string ~padding ~len t ~pos)

    let head_padded_fixed_string ~padding ~len t ~pos =
      debug "Peek.head_padded_fixed_string" [t] (`padding padding, `len len, `pos pos)
        [%sexp_of: [ `padding of char ] * [ `len of int ] * [ `pos of int ]]
        sexp_of_string
        (fun () -> head_padded_fixed_string ~padding ~len t ~pos)

    let bytes ~str_pos ~len t ~pos =
      debug "Peek.bytes" [t] (`str_pos str_pos, `len len, `pos pos)
        [%sexp_of: [ `str_pos of int ] * [ `len of int ] * [ `pos of int ]]
        sexp_of_bytes
        (fun () -> bytes ~str_pos ~len t ~pos)

    let string ~str_pos ~len t ~pos =
      debug "Peek.string" [t] (`str_pos str_pos, `len len, `pos pos)
        [%sexp_of: [ `str_pos of int ] * [ `len of int ] * [ `pos of int ]]
        sexp_of_string
        (fun () -> string ~str_pos ~len t ~pos)

    let bigstring ~str_pos ~len t ~pos =
      debug "Peek.bigstring" [t] (`str_pos str_pos, `len len, `pos pos)
        [%sexp_of: [ `str_pos of int ] * [ `len of int ] * [ `pos of int ]]
        sexp_of_bigstring
        (fun () -> bigstring ~str_pos ~len t ~pos)

    let byteso ?str_pos ?len t ~pos =
      debug "Peek.byteso" [t] (`str_pos str_pos, `len len, `pos pos)
        [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * [ `pos of int ]]
        sexp_of_bytes
        (fun () -> byteso ?str_pos ?len t ~pos)

    let stringo ?str_pos ?len t ~pos =
      debug "Peek.stringo" [t] (`str_pos str_pos, `len len, `pos pos)
        [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * [ `pos of int ]]
        sexp_of_string
        (fun () -> stringo ?str_pos ?len t ~pos)

    let bigstringo ?str_pos ?len t ~pos =
      debug "Peek.bigstringo" [t] (`str_pos str_pos, `len len, `pos pos)
        [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * [ `pos of int ]]
        sexp_of_bigstring
        (fun () -> bigstringo ?str_pos ?len t ~pos)

    let bin_prot reader t ~pos =
      debug "Consume.bin_prot" [t] (`pos pos) [%sexp_of: [ `pos of int ]]
        [%sexp_of: _]
        (fun () -> bin_prot reader t ~pos)

    let index t ?pos ?len c =
      debug "Peek.index" [t] (`pos pos, `len len, `c c)
        [%sexp_of: [ `pos of int option]
                   * [ `len of int option ]
                   * [ `c of char ]]
        [%sexp_of: int option]
        (fun () -> index t ?pos ?len c)
  end
  module Poke = struct
    let d name f sexp_of_arg t ~pos arg =
      debug ("Poke." ^ name)
        [t]
        (`pos pos, arg)
        (Tuple.T2.sexp_of_t [%sexp_of: [ `pos of int ]] sexp_of_arg)
        sexp_of_unit
        (fun () -> f t ~pos arg)
    ;;

    open Poke

    type nonrec ('a, 'd, 'w) t = ('a, 'd, 'w) t

    let char            t = d "char"            char            sexp_of_char  t
    let int8_trunc      t = d "int8_trunc"      int8_trunc      sexp_of_int   t
    let int16_be_trunc  t = d "int16_be_trunc"  int16_be_trunc  sexp_of_int   t
    let int16_le_trunc  t = d "int16_le_trunc"  int16_le_trunc  sexp_of_int   t
    let int32_be_trunc  t = d "int32_be_trunc"  int32_be_trunc  sexp_of_int   t
    let int32_le_trunc  t = d "int32_le_trunc"  int32_le_trunc  sexp_of_int   t
    let uint8_trunc     t = d "uint8_trunc"     uint8_trunc     sexp_of_int   t
    let uint16_be_trunc t = d "uint16_be_trunc" uint16_be_trunc sexp_of_int   t
    let uint16_le_trunc t = d "uint16_le_trunc" uint16_le_trunc sexp_of_int   t
    let uint32_be_trunc t = d "uint32_be_trunc" uint32_be_trunc sexp_of_int   t
    let uint32_le_trunc t = d "uint32_le_trunc" uint32_le_trunc sexp_of_int   t
    let int64_be        t = d "int64_be"        int64_be        sexp_of_int   t
    let int64_le        t = d "int64_le"        int64_le        sexp_of_int   t
    let uint64_be_trunc t = d "uint64_be_trunc" uint64_be_trunc sexp_of_int   t
    let uint64_le_trunc t = d "uint64_le_trunc" uint64_le_trunc sexp_of_int   t
    let int64_t_be      t = d "int64_t_be"      int64_t_be      sexp_of_int64 t
    let int64_t_le      t = d "int64_t_le"      int64_t_le      sexp_of_int64 t

    let  decimal t ~pos arg =
      debug "Poke.decimal" [t] (`pos pos, arg)
        [%sexp_of: [ `pos of int ] * int]
        sexp_of_int
        (fun () -> decimal t ~pos arg)

    let tail_padded_fixed_string ~padding ~len t ~pos str =
      debug "Poke.tail_padded_fixed_string" [t]
        (`padding padding, `len len, `pos pos, str)
        [%sexp_of: [ `padding of char ] * [ `len of int ] * [ `pos of int ] * string]
        sexp_of_unit
        (fun () -> tail_padded_fixed_string ~padding ~len t ~pos str)

    let head_padded_fixed_string ~padding ~len t ~pos str =
      debug "Poke.head_padded_fixed_string" [t]
        (`padding padding, `len len, `pos pos, str)
        [%sexp_of: [ `padding of char ] * [ `len of int ] * [ `pos of int ] * string]
        sexp_of_unit
        (fun () -> head_padded_fixed_string ~padding ~len t ~pos str)

    let bytes ~str_pos ~len t ~pos str =
      debug "Poke.bytes" [t] (`str_pos str_pos, `len len, `pos pos, str)
        [%sexp_of: [ `str_pos of int ] * [ `len of int ] * [ `pos of int ] * bytes]
        sexp_of_unit
        (fun () -> bytes ~str_pos ~len t ~pos str)

    let string ~str_pos ~len t ~pos str =
      debug "Poke.string" [t] (`str_pos str_pos, `len len, `pos pos, str)
        [%sexp_of: [ `str_pos of int ] * [ `len of int ] * [ `pos of int ] * string]
        sexp_of_unit
        (fun () -> string ~str_pos ~len t ~pos str)

    let bigstring ~str_pos ~len t ~pos str =
      debug "Poke.bigstring" [t] (`str_pos str_pos, `len len, `pos pos, str)
        [%sexp_of: [ `str_pos of int ] * [ `len of int ] * [ `pos of int ] * bigstring]
        sexp_of_unit
        (fun () -> bigstring ~str_pos ~len t ~pos str)

    let byteso ?str_pos ?len t ~pos str =
      debug "Poke.byteso" [t] (`str_pos str_pos, `len len, `pos pos, str)
        [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * [ `pos of int ]
                   * bytes]
        sexp_of_unit
        (fun () -> byteso ?str_pos ?len t ~pos str)

    let stringo ?str_pos ?len t ~pos str =
      debug "Poke.stringo" [t] (`str_pos str_pos, `len len, `pos pos, str)
        [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * [ `pos of int ]
                   * string]
        sexp_of_unit
        (fun () -> stringo ?str_pos ?len t ~pos str)

    let bigstringo ?str_pos ?len t ~pos str =
      debug "Poke.bigstringo" [t] (`str_pos str_pos, `len len, `pos pos, str)
        [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * [ `pos of int ]
                   * bigstring]
        sexp_of_unit
        (fun () -> bigstringo ?str_pos ?len t ~pos str)

    let bin_prot writer t ~pos a =
      debug "Poke.bin_prot" [t] (`pos pos) [%sexp_of: [ `pos of int ]]
        [%sexp_of: unit]
        (fun () -> bin_prot writer t a ~pos)
  end

  let consume_bin_prot t r =
    debug "consume_bin_prot" [t] t [%sexp_of: (_, _) t]
      [%sexp_of: _ Or_error.t]
      (fun () -> consume_bin_prot t r)
  ;;

  let bin_prot_length_prefix_bytes = bin_prot_length_prefix_bytes

  let fill_bin_prot t w a =
    debug "fill_bin_prot" [t] t [%sexp_of: (_, _) t]
      [%sexp_of: unit Or_error.t]
      (fun () -> fill_bin_prot t w a)
  ;;

  module Blit = struct
    open Blit
    type 'rw t_no_seek = 'rw Blit.t_no_seek

    let unsafe_blit ~src ~src_pos ~dst ~dst_pos ~len =
      debug_blit "Blit.unsafe_blit" ~src ~dst
        (`src_pos src_pos, `dst_pos dst_pos, `len len)
        ([%sexp_of: [`src_pos of int] * [`dst_pos of int] * [`len of int]])
        ([%sexp_of: unit])
        (fun () -> unsafe_blit ~src ~src_pos ~dst ~dst_pos ~len)
    ;;

    let blit ~src ~src_pos ~dst ~dst_pos ~len =
      debug_blit "Blit.blit" ~src ~dst
        (`src_pos src_pos, `dst_pos dst_pos, `len len)
        ([%sexp_of: [`src_pos of int] * [`dst_pos of int] * [`len of int]])
        ([%sexp_of: unit])
        (fun () -> blit ~src ~src_pos ~dst ~dst_pos ~len)
    ;;

    let blito ~src ?src_pos ?src_len ~dst ?dst_pos () =
      debug_blit "Blit.blito" ~src ~dst
        (`src_pos src_pos, `src_len src_len, `dst_pos dst_pos)
        ([%sexp_of: [`src_pos of int option] *
                    [`src_len of int option] *
                    [`dst_pos of int option]])
        ([%sexp_of: unit])
        (fun () -> blito ~src ?src_pos ?src_len ~dst ?dst_pos ())
    ;;

    let sub t ~pos ~len =
      debug "Blit.sub" [t] (`pos pos, `len len)
        ([%sexp_of: [`pos of int] * [`len of int]])
        ([%sexp_of: (_, _) t])
        (fun () ->
           let t = sub t ~pos ~len in
           if !check_invariant then invariant ignore ignore t;
           t)
    ;;

    let subo ?pos ?len t =
      debug "Blit.subo" [t] (`pos pos, `len len)
        ([%sexp_of: [`pos of int option] * [`len of int option]])
        ([%sexp_of: (_, _) t])
        (fun () ->
           let t = subo ?pos ?len t in
           if !check_invariant then invariant ignore ignore t;
           t)
    ;;

  end

  module Blit_consume = struct
    open Blit_consume

    let unsafe_blit ~src ~dst ~dst_pos ~len =
      debug_blit "Blit_consume.unsafe_blit" ~src ~dst
        (`dst_pos dst_pos, `len len)
        ([%sexp_of: [`dst_pos of int] * [`len of int]])
        ([%sexp_of: unit])
        (fun () -> unsafe_blit ~src ~dst ~dst_pos ~len)
    ;;

    let blit ~src ~dst ~dst_pos ~len =
      debug_blit "Blit_consume.blit" ~src ~dst
        (`dst_pos dst_pos, `len len)
        ([%sexp_of: [`dst_pos of int] * [`len of int]])
        ([%sexp_of: unit])
        (fun () -> blit ~src ~dst ~dst_pos ~len)
    ;;

    let blito ~src ?src_len ~dst ?dst_pos () =
      debug_blit "Blit_consume.blito" ~src ~dst
        (`src_len src_len, `dst_pos dst_pos)
        ([%sexp_of: [`src_len of int option] * [`dst_pos of int option]])
        ([%sexp_of: unit])
        (fun () -> blito ~src ?src_len ~dst ?dst_pos ())
    ;;

    let sub t ~len =
      debug "Blit_consume.sub" [t] (`len len)
        ([%sexp_of: [`len of int]])
        ([%sexp_of: (_, _) t])
        (fun () ->
           let t = sub t ~len in
           if !check_invariant then invariant ignore ignore t;
           t)
    ;;

    let subo ?len t =
      debug "Blit_consume.subo" [t] (`len len)
        ([%sexp_of: [`len of int option]])
        ([%sexp_of: (_, _) t])
        (fun () ->
           let t = subo ?len t in
           if !check_invariant then invariant ignore ignore t;
           t)
    ;;

  end

  module Blit_fill = struct
    open Blit_fill

    let unsafe_blit ~src ~src_pos ~dst ~len =
      debug_blit "Blit_fill.unsafe_blit" ~src ~dst
        (`src_pos src_pos, `len len)
        ([%sexp_of: [`src_pos of int] * [`len of int]])
        ([%sexp_of: unit])
        (fun () -> unsafe_blit ~src ~src_pos ~dst ~len)
    ;;

    let blit ~src ~src_pos ~dst ~len =
      debug_blit "Blit_fill.blit" ~src ~dst
        (`src_pos src_pos, `len len)
        ([%sexp_of: [`src_pos of int] * [`len of int]])
        ([%sexp_of: unit])
        (fun () -> blit ~src ~src_pos ~dst ~len)
    ;;

    let blito ~src ?src_pos ?src_len ~dst () =
      debug_blit "Blit_fill.blito" ~src ~dst
        (`src_pos src_pos, `src_len src_len)
        ([%sexp_of: [`src_pos of int option] * [`src_len of int option]])
        ([%sexp_of: unit])
        (fun () -> blito ~src ?src_pos ?src_len ~dst ())
    ;;

  end

  module Blit_consume_and_fill = struct
    open Blit_consume_and_fill

    let unsafe_blit ~src ~dst ~len =
      debug_blit "Blit_consume_and_fill.unsafe_blit" ~src ~dst
        (`len len)
        ([%sexp_of: [`len of int]])
        ([%sexp_of: unit])
        (fun () -> unsafe_blit ~src ~dst ~len)
    ;;

    let blit ~src ~dst ~len =
      debug_blit "Blit_consume_and_fill.blit" ~src ~dst
        (`len len)
        ([%sexp_of: [`len of int]])
        ([%sexp_of: unit])
        (fun () -> blit ~src ~dst ~len)
    ;;

    let blito ~src ?src_len ~dst () =
      debug_blit "Blit_consume_and_fill.blito" ~src ~dst
        (`src_len src_len)
        ([%sexp_of: [`src_len of int option]])
        ([%sexp_of: unit])
        (fun () -> blito ~src ?src_len ~dst ())
    ;;

  end

  module Expert = struct
    let buf    = Expert.buf
    let hi_max = Expert.hi_max
    let hi     = Expert.hi
    let lo     = Expert.lo
    let lo_min = Expert.lo_min

    let to_bigstring_shared ?pos ?len t =
      debug "to_bigstring_shared" [t] (`pos pos, `len len)
        [%sexp_of: [`pos of int option] * [`len of int option]]
        [%sexp_of: Bigstring.t]
        (fun () -> Expert.to_bigstring_shared ?pos ?len t)
    ;;

    let to_iovec_shared ?pos ?len t =
      debug "to_iovec_shared" [t] (`pos pos, `len len)
        [%sexp_of: [`pos of int option] * [`len of int option]]
        [%sexp_of: Bigstring.t Unix.IOVec.t]
        (fun () -> Expert.to_iovec_shared ?pos ?len t)
    ;;

    let reinitialize_of_bigstring t ~pos ~len buf =
      debug "reinitialize_of_bigstring" [t] (`pos pos, `len len)
        [%sexp_of: [`pos of int] * [`len of int]]
        sexp_of_unit
        (fun () -> Expert.reinitialize_of_bigstring t ~pos ~len buf)
    ;;

    let set_bounds_and_buffer_sub ~pos ~len ~src ~dst =
      debug "sub" [src] (`pos pos, `len len)
        [%sexp_of: [ `pos of int ] * [ `len of int ]]
        sexp_of_unit
        (fun () -> Expert.set_bounds_and_buffer_sub ~pos ~len ~src ~dst)
    ;;

    let set_bounds_and_buffer ~src ~dst =
      debug "copy" [src] src [%sexp_of: (_, _) t] sexp_of_unit
        (fun () -> Expert.set_bounds_and_buffer ~src ~dst)
    ;;
  end

  type nonrec ok_or_eof = ok_or_eof = Ok | Eof [@@deriving compare, sexp_of]

  module File_descr = Unix.File_descr
  module In_channel = struct
    include In_channel
    let sexp_of_t t = File_descr.sexp_of_t (Unix.descr_of_in_channel t)
  end
  module Out_channel = struct
    include Out_channel
    let sexp_of_t t = File_descr.sexp_of_t (Unix.descr_of_out_channel t)
  end

  let input t ch =
    debug "input" [t] ch
      ([%sexp_of: In_channel.t])
      ([%sexp_of: ok_or_eof])
      (fun () -> input t ch)
  ;;

  let read t fd =
    debug "read" [t] fd
      ([%sexp_of: File_descr.t])
      ([%sexp_of: ok_or_eof])
      (fun () -> read t fd)
  ;;

  let read_assume_fd_is_nonblocking t fd =
    debug "read_assume_fd_is_nonblocking" [t] fd
      ([%sexp_of: File_descr.t])
      ([%sexp_of: Syscall_result.Unit.t])
      (fun () -> read_assume_fd_is_nonblocking t fd)
  ;;

  let pread_assume_fd_is_nonblocking t fd ~offset =
    debug "pread_assume_fd_is_nonblocking" [t] (fd, `offset offset)
      ([%sexp_of: File_descr.t * [ `offset of int ]])
      ([%sexp_of: unit])
      (fun () -> pread_assume_fd_is_nonblocking t fd ~offset)
  ;;

  let recvfrom_assume_fd_is_nonblocking t fd =
    debug "recvfrom_assume_fd_is_nonblocking" [t] fd
      ([%sexp_of: File_descr.t])
      ([%sexp_of: Unix.sockaddr])
      (fun () -> recvfrom_assume_fd_is_nonblocking t fd)
  ;;

  module Recvmmsg_context = Recvmmsg_context

  let recvmmsg_assume_fd_is_nonblocking =
    Or_error.map recvmmsg_assume_fd_is_nonblocking
      ~f:(fun recvmmsg fd context ->
        debug "recvmmsg_assume_fd_is_nonblocking" [] fd
          [%sexp_of: File_descr.t]
          [%sexp_of: Unix.Syscall_result.Int.t]
          (fun () -> recvmmsg fd context))
  ;;

  let send_nonblocking_no_sigpipe () =
    Or_error.map (send_nonblocking_no_sigpipe ()) ~f:(fun send ->
      fun t fd ->
        debug "send_nonblocking_no_sigpipe" [t] (fd, t)
          ([%sexp_of: File_descr.t * (_, _) t])
          ([%sexp_of: Syscall_result.Unit.t])
          (fun () -> send t fd)
    )
  ;;

  let sendto_nonblocking_no_sigpipe () =
    Or_error.map (sendto_nonblocking_no_sigpipe ()) ~f:(fun sendto ->
      fun t fd addr ->
        debug "sendto_nonblocking_no_sigpipe" [t] (fd, addr)
          [%sexp_of: File_descr.t * Unix.sockaddr]
          [%sexp_of: Syscall_result.Unit.t]
          (fun () -> sendto t fd addr)
    )

  let output t ch =
    debug "output" [t] ch
      ([%sexp_of: Out_channel.t])
      ([%sexp_of: unit])
      (fun () -> output t ch)
  ;;

  let write t fd =
    debug "write" [t] fd
      ([%sexp_of: File_descr.t])
      ([%sexp_of: unit])
      (fun () -> write t fd)
  ;;

  let write_assume_fd_is_nonblocking t fd =
    debug "write_assume_fd_is_nonblocking" [t] (fd, t)
      ([%sexp_of: File_descr.t * (_, _) t])
      ([%sexp_of: unit])
      (fun () -> write_assume_fd_is_nonblocking t fd)
  ;;

  let pwrite_assume_fd_is_nonblocking t fd ~offset =
    debug "pwrite_assume_fd_is_nonblocking" [t] (fd, t, `offset offset)
      ([%sexp_of: File_descr.t * (_, _) t * [ `offset of int ]])
      ([%sexp_of: unit])
      (fun () -> pwrite_assume_fd_is_nonblocking t fd ~offset)
  ;;

  module Unsafe = struct
    open Unsafe

    (* Sorry, these are almost textual copies of the functions above.  For test purposes,
       it might be possible to functorize some of this. *)

    module Consume = struct
      let d name f sexp_of_result t =
        debug ("Unsafe.Consume." ^ name) [t] t [%sexp_of: (_, _) t] sexp_of_result
          (fun () -> f t)
      ;;

      open Consume

      include Consume_blit_debug.Make (struct
          include Consume
          let module_name = "Unsafe.Consume"
        end)

      type nonrec ('a, 'd, 'w) t = ('a, 'd, 'w) t

      let char           t = d "char"           char           sexp_of_char  t
      let int8           t = d "int8"           int8           sexp_of_int   t
      let int16_be       t = d "int16_be"       int16_be       sexp_of_int   t
      let int16_le       t = d "int16_le"       int16_le       sexp_of_int   t
      let int32_be       t = d "int32_be"       int32_be       sexp_of_int   t
      let int32_le       t = d "int32_le"       int32_le       sexp_of_int   t
      let uint8          t = d "uint8"          uint8          sexp_of_int   t
      let uint16_be      t = d "uint16_be"      uint16_be      sexp_of_int   t
      let uint16_le      t = d "uint16_le"      uint16_le      sexp_of_int   t
      let uint32_be      t = d "uint32_be"      uint32_be      sexp_of_int   t
      let uint32_le      t = d "uint32_le"      uint32_le      sexp_of_int   t
      let int64_be_exn   t = d "int64_be_exn"   int64_be_exn   sexp_of_int   t
      let int64_le_exn   t = d "int64_le_exn"   int64_le_exn   sexp_of_int   t
      let uint64_be_exn  t = d "uint64_be_exn"  uint64_be_exn  sexp_of_int   t
      let uint64_le_exn  t = d "uint64_le_exn"  uint64_le_exn  sexp_of_int   t
      let int64_t_be     t = d "int64_t_be"     int64_t_be     sexp_of_int64 t
      let int64_t_le     t = d "int64_t_le"     int64_t_le     sexp_of_int64 t
      let int64_be_trunc t = d "int64_be_trunc" int64_be_trunc sexp_of_int   t
      let int64_le_trunc t = d "int64_le_trunc" int64_le_trunc sexp_of_int   t

      let tail_padded_fixed_string ~padding ~len t =
        debug "Unsafe.Consume.tail_padded_fixed_string" [t] (`padding padding, `len len)
          [%sexp_of: [ `padding of char ] * [ `len of int ]]
          sexp_of_string
          (fun () -> tail_padded_fixed_string ~padding ~len t)

      let head_padded_fixed_string ~padding ~len t =
        debug "Unsafe.Consume.head_padded_fixed_string" [t] (`padding padding, `len len)
          [%sexp_of: [ `padding of char ] * [ `len of int ]]
          sexp_of_string
          (fun () -> head_padded_fixed_string ~padding ~len t)

      let bytes ~str_pos ~len t =
        debug "Unsafe.Consume.bytes" [t] (`str_pos str_pos, `len len)
          [%sexp_of: [ `str_pos of int ] * [ `len of int ]]
          sexp_of_bytes
          (fun () -> bytes ~str_pos ~len t)

      let string ~str_pos ~len t =
        debug "Unsafe.Consume.string" [t] (`str_pos str_pos, `len len)
          [%sexp_of: [ `str_pos of int ] * [ `len of int ]]
          sexp_of_string
          (fun () -> string ~str_pos ~len t)

      let bigstring ~str_pos ~len t =
        debug "Unsafe.Consume.bigstring" [t] (`str_pos str_pos, `len len)
          [%sexp_of: [ `str_pos of int ] * [ `len of int ]]
          sexp_of_bigstring
          (fun () -> bigstring ~str_pos ~len t)

      let byteso ?str_pos ?len t =
        debug "Unsafe.Consume.byteso" [t] (`str_pos str_pos, `len len)
          [%sexp_of: [ `str_pos of int option ] * [ `len of int option ]]
          sexp_of_bytes
          (fun () -> byteso ?str_pos ?len t)

      let stringo ?str_pos ?len t =
        debug "Unsafe.Consume.stringo" [t] (`str_pos str_pos, `len len)
          [%sexp_of: [ `str_pos of int option ] * [ `len of int option ]]
          sexp_of_string
          (fun () -> stringo ?str_pos ?len t)

      let bigstringo ?str_pos ?len t =
        debug "Unsafe.Consume.bigstringo" [t] (`str_pos str_pos, `len len)
          [%sexp_of: [ `str_pos of int option ] * [ `len of int option ]]
          sexp_of_bigstring
          (fun () -> bigstringo ?str_pos ?len t)

      let bin_prot reader t =
        debug "Unsafe.Consume.bin_prot" [t] () [%sexp_of: unit]
          [%sexp_of: _]
          (fun () -> bin_prot reader t)
    end
    module Fill = struct
      let d name f sexp_of_arg t arg =
        debug ("Unsafe.Fill." ^ name) [t] arg sexp_of_arg sexp_of_unit (fun () ->
          f t arg)
      ;;

      open Fill

      type nonrec ('a, 'd, 'w) t = ('a, 'd, 'w) t

      let char            t = d "char"            char            sexp_of_char  t
      let int8_trunc      t = d "int8_trunc"      int8_trunc      sexp_of_int   t
      let int16_be_trunc  t = d "int16_be_trunc"  int16_be_trunc  sexp_of_int   t
      let int16_le_trunc  t = d "int16_le_trunc"  int16_le_trunc  sexp_of_int   t
      let int32_be_trunc  t = d "int32_be_trunc"  int32_be_trunc  sexp_of_int   t
      let int32_le_trunc  t = d "int32_le_trunc"  int32_le_trunc  sexp_of_int   t
      let uint8_trunc     t = d "uint8_trunc"     uint8_trunc     sexp_of_int   t
      let uint16_be_trunc t = d "uint16_be_trunc" uint16_be_trunc sexp_of_int   t
      let uint16_le_trunc t = d "uint16_le_trunc" uint16_le_trunc sexp_of_int   t
      let uint32_be_trunc t = d "uint32_be_trunc" uint32_be_trunc sexp_of_int   t
      let uint32_le_trunc t = d "uint32_le_trunc" uint32_le_trunc sexp_of_int   t
      let int64_be        t = d "int64_be"        int64_be        sexp_of_int   t
      let int64_le        t = d "int64_le"        int64_le        sexp_of_int   t
      let uint64_be_trunc t = d "uint64_be_trunc" uint64_be_trunc sexp_of_int   t
      let uint64_le_trunc t = d "uint64_le_trunc" uint64_le_trunc sexp_of_int   t
      let int64_t_be      t = d "int64_t_be"      int64_t_be      sexp_of_int64 t
      let int64_t_le      t = d "int64_t_le"      int64_t_le      sexp_of_int64 t
      let decimal         t = d "decimal"         decimal         sexp_of_int   t

      let tail_padded_fixed_string ~padding ~len t str =
        debug "Unsafe.Fill.tail_padded_fixed_string" [t] (`padding padding, `len len, str)
          [%sexp_of: [ `padding of char ] * [ `len of int ] * string]
          sexp_of_unit
          (fun () -> tail_padded_fixed_string ~padding ~len t str)

      let head_padded_fixed_string ~padding ~len t str =
        debug "Unsafe.Fill.head_padded_fixed_string" [t] (`padding padding, `len len, str)
          [%sexp_of: [ `padding of char ] * [ `len of int ] * string]
          sexp_of_unit
          (fun () -> head_padded_fixed_string ~padding ~len t str)

      let bytes ~str_pos ~len t str =
        debug "Unsafe.Fill.bytes" [t] (`str_pos str_pos, `len len, str)
          [%sexp_of: [ `str_pos of int ] * [ `len of int ] * bytes]
          sexp_of_unit
          (fun () -> bytes ~str_pos ~len t str)

      let string ~str_pos ~len t str =
        debug "Unsafe.Fill.string" [t] (`str_pos str_pos, `len len, str)
          [%sexp_of: [ `str_pos of int ] * [ `len of int ] * string]
          sexp_of_unit
          (fun () -> string ~str_pos ~len t str)

      let bigstring ~str_pos ~len t str =
        debug "Unsafe.Fill.bigstring" [t] (`str_pos str_pos, `len len, str)
          [%sexp_of: [ `str_pos of int ] * [ `len of int ] * bigstring]
          sexp_of_unit
          (fun () -> bigstring ~str_pos ~len t str)

      let byteso ?str_pos ?len t str =
        debug "Unsafe.Fill.byteso" [t] (`str_pos str_pos, `len len, str)
          [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * bytes]
          sexp_of_unit
          (fun () -> byteso ?str_pos ?len t str)

      let stringo ?str_pos ?len t str =
        debug "Unsafe.Fill.stringo" [t] (`str_pos str_pos, `len len, str)
          [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * string]
          sexp_of_unit
          (fun () -> stringo ?str_pos ?len t str)

      let bigstringo ?str_pos ?len t str =
        debug "Unsafe.Fill.bigstringo" [t] (`str_pos str_pos, `len len, str)
          [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * bigstring]
          sexp_of_unit
          (fun () -> bigstringo ?str_pos ?len t str)

      let bin_prot writer t a =
        debug "Unsafe.Fill.bin_prot" [t] () [%sexp_of: _]
          [%sexp_of: unit]
          (fun () -> bin_prot writer t a)
    end
    module Peek = struct
      let d name f sexp_of_result t ~pos =
        debug ("Unsafe.Peek." ^ name)
          [t]
          (`pos pos)
          [%sexp_of: [ `pos of int ]]
          sexp_of_result
          (fun () -> f t ~pos)
      ;;

      open Peek

      include Peek_blit_debug.Make (struct
          include Peek
          let module_name = "Unsafe.Peek"
        end)

      type nonrec ('a, 'd, 'w) t = ('a, 'd, 'w) t

      let char           t = d "char"           char           sexp_of_char  t
      let int8           t = d "int8"           int8           sexp_of_int   t
      let int16_be       t = d "int16_be"       int16_be       sexp_of_int   t
      let int16_le       t = d "int16_le"       int16_le       sexp_of_int   t
      let int32_be       t = d "int32_be"       int32_be       sexp_of_int   t
      let int32_le       t = d "int32_le"       int32_le       sexp_of_int   t
      let uint8          t = d "uint8"          uint8          sexp_of_int   t
      let uint16_be      t = d "uint16_be"      uint16_be      sexp_of_int   t
      let uint16_le      t = d "uint16_le"      uint16_le      sexp_of_int   t
      let uint32_be      t = d "uint32_be"      uint32_be      sexp_of_int   t
      let uint32_le      t = d "uint32_le"      uint32_le      sexp_of_int   t
      let int64_be_exn   t = d "int64_be_exn"   int64_be_exn   sexp_of_int   t
      let int64_le_exn   t = d "int64_le_exn"   int64_le_exn   sexp_of_int   t
      let uint64_be_exn  t = d "uint64_be_exn"  uint64_be_exn  sexp_of_int   t
      let uint64_le_exn  t = d "uint64_le_exn"  uint64_le_exn  sexp_of_int   t
      let int64_t_be     t = d "int64_t_be"     int64_t_be     sexp_of_int64 t
      let int64_t_le     t = d "int64_t_le"     int64_t_le     sexp_of_int64 t
      let int64_be_trunc t = d "int64_be_trunc" int64_be_trunc sexp_of_int   t
      let int64_le_trunc t = d "int64_le_trunc" int64_le_trunc sexp_of_int   t

      let tail_padded_fixed_string ~padding ~len t ~pos =
        debug "Unsafe.Peek.tail_padded_fixed_string" [t]
          (`padding padding, `len len, `pos pos)
          [%sexp_of: [ `padding of char ] * [ `len of int ] * [ `pos of int ]]
          sexp_of_string
          (fun () -> tail_padded_fixed_string ~padding ~len t ~pos)

      let head_padded_fixed_string ~padding ~len t ~pos =
        debug "Unsafe.Peek.head_padded_fixed_string" [t]
          (`padding padding, `len len, `pos pos)
          [%sexp_of: [ `padding of char ] * [ `len of int ] * [ `pos of int ]]
          sexp_of_string
          (fun () -> head_padded_fixed_string ~padding ~len t ~pos)

      let bytes ~str_pos ~len t ~pos =
        debug "Unsafe.Peek.bytes" [t] (`str_pos str_pos, `len len, `pos pos)
          [%sexp_of: [ `str_pos of int ] * [ `len of int ] * [ `pos of int ]]
          sexp_of_bytes
          (fun () -> bytes ~str_pos ~len t ~pos)

      let string ~str_pos ~len t ~pos =
        debug "Unsafe.Peek.string" [t] (`str_pos str_pos, `len len, `pos pos)
          [%sexp_of: [ `str_pos of int ] * [ `len of int ] * [ `pos of int ]]
          sexp_of_string
          (fun () -> string ~str_pos ~len t ~pos)

      let bigstring ~str_pos ~len t ~pos =
        debug "Unsafe.Peek.bigstring" [t] (`str_pos str_pos, `len len, `pos pos)
          [%sexp_of: [ `str_pos of int ] * [ `len of int ] * [ `pos of int ]]
          sexp_of_bigstring
          (fun () -> bigstring ~str_pos ~len t ~pos)

      let byteso ?str_pos ?len t ~pos =
        debug "Unsafe.Peek.byteso" [t] (`str_pos str_pos, `len len, `pos pos)
          [%sexp_of: [ `str_pos of int option ] * [ `len of int option ]
                     * [ `pos of int ]]
          sexp_of_bytes
          (fun () -> byteso ?str_pos ?len t ~pos)

      let stringo ?str_pos ?len t ~pos =
        debug "Unsafe.Peek.stringo" [t] (`str_pos str_pos, `len len, `pos pos)
          [%sexp_of: [ `str_pos of int option ] * [ `len of int option ]
                     * [ `pos of int ]]
          sexp_of_string
          (fun () -> stringo ?str_pos ?len t ~pos)

      let bigstringo ?str_pos ?len t ~pos =
        debug "Unsafe.Peek.bigstringo" [t] (`str_pos str_pos, `len len, `pos pos)
          [%sexp_of: [ `str_pos of int option ] * [ `len of int option ]
                     * [ `pos of int ]]
          sexp_of_bigstring
          (fun () -> bigstringo ?str_pos ?len t ~pos)

      let bin_prot reader t ~pos =
        debug "Unsafe.Consume.bin_prot" [t] (`pos pos) [%sexp_of: [ `pos of int ]]
          [%sexp_of: _]
          (fun () -> bin_prot reader t ~pos)

      let index t ?pos ?len c =
        debug "Unsafe.Peek.index" [t] (`pos pos, `len len, `c c)
          [%sexp_of: [ `pos of int option]
                     * [ `len of int option ]
                     * [ `c of char ]]
          [%sexp_of: int option]
          (fun () -> index t ?pos ?len c)
    end
    module Poke = struct
      let d name f sexp_of_arg t ~pos arg =
        debug ("Unsafe.Poke." ^ name)
          [t]
          (`pos pos, arg)
          (Tuple.T2.sexp_of_t [%sexp_of: [ `pos of int ]] sexp_of_arg)
          sexp_of_unit
          (fun () -> f t ~pos arg)
      ;;

      open Poke

      type nonrec ('a, 'd, 'w) t = ('a, 'd, 'w) t

      let char            t = d "char"            char            sexp_of_char  t
      let int8_trunc      t = d "int8_trunc"      int8_trunc      sexp_of_int   t
      let int16_be_trunc  t = d "int16_be_trunc"  int16_be_trunc  sexp_of_int   t
      let int16_le_trunc  t = d "int16_le_trunc"  int16_le_trunc  sexp_of_int   t
      let int32_be_trunc  t = d "int32_be_trunc"  int32_be_trunc  sexp_of_int   t
      let int32_le_trunc  t = d "int32_le_trunc"  int32_le_trunc  sexp_of_int   t
      let uint8_trunc     t = d "uint8_trunc"     uint8_trunc     sexp_of_int   t
      let uint16_be_trunc t = d "uint16_be_trunc" uint16_be_trunc sexp_of_int   t
      let uint16_le_trunc t = d "uint16_le_trunc" uint16_le_trunc sexp_of_int   t
      let uint32_be_trunc t = d "uint32_be_trunc" uint32_be_trunc sexp_of_int   t
      let uint32_le_trunc t = d "uint32_le_trunc" uint32_le_trunc sexp_of_int   t
      let int64_be        t = d "int64_be"        int64_be        sexp_of_int   t
      let int64_le        t = d "int64_le"        int64_le        sexp_of_int   t
      let uint64_be_trunc t = d "uint64_be_trunc" uint64_be_trunc sexp_of_int   t
      let uint64_le_trunc t = d "uint64_le_trunc" uint64_le_trunc sexp_of_int   t
      let int64_t_be      t = d "int64_t_be"      int64_t_be      sexp_of_int64 t
      let int64_t_le      t = d "int64_t_le"      int64_t_le      sexp_of_int64 t

      let decimal t ~pos arg =
        debug "Unsafe.Poke.decimal" [t] (`pos pos, arg)
          [%sexp_of: [ `pos of int ] * int]
          sexp_of_int
          (fun () -> decimal t ~pos arg)

      let tail_padded_fixed_string ~padding ~len t ~pos str =
        debug "Unsafe.Poke.tail_padded_fixed_string" [t]
          (`padding padding, `len len, `pos pos, str)
          [%sexp_of: [ `padding of char ]
                     * [ `len of int ]
                     * [ `pos of int ]
                     * string]
          sexp_of_unit
          (fun () -> tail_padded_fixed_string ~padding ~len t ~pos str)

      let head_padded_fixed_string ~padding ~len t ~pos str =
        debug "Unsafe.Poke.head_padded_fixed_string" [t]
          (`padding padding, `len len, `pos pos, str)
          [%sexp_of: [ `padding of char ]
                     * [ `len of int ]
                     * [ `pos of int ]
                     * string]
          sexp_of_unit
          (fun () -> head_padded_fixed_string ~padding ~len t ~pos str)

      let bytes ~str_pos ~len t ~pos str =
        debug "Unsafe.Poke.bytes" [t] (`str_pos str_pos, `len len, `pos pos, str)
          [%sexp_of: [ `str_pos of int ] * [ `len of int ] * [ `pos of int ] * bytes]
          sexp_of_unit
          (fun () -> bytes ~str_pos ~len t ~pos str)

      let string ~str_pos ~len t ~pos str =
        debug "Unsafe.Poke.string" [t] (`str_pos str_pos, `len len, `pos pos, str)
          [%sexp_of: [ `str_pos of int ] * [ `len of int ] * [ `pos of int ] * string]
          sexp_of_unit
          (fun () -> string ~str_pos ~len t ~pos str)

      let bigstring ~str_pos ~len t ~pos str =
        debug "Unsafe.Poke.bigstring" [t] (`str_pos str_pos, `len len, `pos pos, str)
          [%sexp_of: [ `str_pos of int ] * [ `len of int ] * [ `pos of int ] * bigstring]
          sexp_of_unit
          (fun () -> bigstring ~str_pos ~len t ~pos str)

      let byteso ?str_pos ?len t ~pos str =
        debug "Unsafe.Poke.byteso" [t] (`str_pos str_pos, `len len, `pos pos, str)
          [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * [ `pos of int ]
                     * bytes]
          sexp_of_unit
          (fun () -> byteso ?str_pos ?len t ~pos str)

      let stringo ?str_pos ?len t ~pos str =
        debug "Unsafe.Poke.stringo" [t] (`str_pos str_pos, `len len, `pos pos, str)
          [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * [ `pos of int ]
                     * string]
          sexp_of_unit
          (fun () -> stringo ?str_pos ?len t ~pos str)

      let bigstringo ?str_pos ?len t ~pos str =
        debug "Unsafe.Poke.bigstringo" [t] (`str_pos str_pos, `len len, `pos pos, str)
          [%sexp_of: [ `str_pos of int option ] * [ `len of int option ] * [ `pos of int ]
                     * bigstring]
          sexp_of_unit
          (fun () -> bigstringo ?str_pos ?len t ~pos str)

      let bin_prot writer t ~pos a =
        debug "Unsafe.Poke.bin_prot" [t] (`pos pos) [%sexp_of: [ `pos of int ]]
          [%sexp_of: unit]
          (fun () -> bin_prot writer t a ~pos)
    end
  end
end