package lwt-pipe

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file Lwt_pipe.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

(* This file is free software. See file "license" for more details. *)

open Lwt.Infix

exception Closed

type 'a read_timeout_result =
  | Pipe_closed
  | Nothing_available
  | Timeout
  | Data_available of 'a

type 'a reader = {
  r_wakeup: 'a read_timeout_result Lwt.u;
  mutable r_timeout: bool;
}

type ('a, +'perm) t = {
  close : unit Lwt.u;
  closed : unit Lwt.t;
  mutable stopped: bool; (* if true, no more input will come *)
  readers : 'a reader Queue.t;  (* blocked readers *)
  buf : 'a Queue.t; (* internal buffers of written values *)
  blocked_writers : ('a * bool Lwt.u) Queue.t; (* blocked writers *)
  max_size : int;
  mutable keep : unit Lwt.t list;  (* do not GC, and wait for completion *)
} constraint 'perm = [< `r | `w]

type ('a, 'perm) pipe = ('a, 'perm) t

let create ?on_close ?(max_size=0) () =
  let closed, close = Lwt.wait () in
  begin match on_close with
    | None -> ()
    | Some f -> Lwt.on_success closed f
  end;
  {
    close;
    closed;
    stopped=false;
    readers = Queue.create ();
    buf = Queue.create ();
    blocked_writers = Queue.create ();
    max_size;
    keep=[];
  }

let keep p fut = p.keep <- fut :: p.keep
let wait p = p.closed
let is_closed p = not (Lwt.is_sleeping p.closed)

let close_ p =
  if not p.stopped then (
    assert (not (is_closed p));
    p.stopped <- true;
    assert (Queue.is_empty p.readers || Queue.is_empty p.buf);
    Queue.iter
      (fun {r_wakeup;_} -> Lwt.wakeup r_wakeup Pipe_closed)
      p.readers;
    Queue.iter (fun (_,r) -> Lwt.wakeup r false) p.blocked_writers;
    if Queue.length p.buf = 0 then (
      Lwt.wakeup p.close (); (* close immediately *)
    );
  )

let close_nonblock p =
  if not p.stopped then (
    close_ p
  )

let close p =
  if not p.stopped then (
    close_nonblock p;
    p.closed >>= fun () ->
    Lwt.join p.keep
  ) else (
    p.closed
  )

(*$T is_closed; create
  create () |> is_closed |> not
*)

(*$T close; is_closed; create
  let p = create () in \
  Lwt_main.run (close p); \
  is_closed p
*)

(*$T close_nonblock; is_closed; create
  let p = create () in \
  close_nonblock p; \
  is_closed p
*)

let opt_of_available = function
  | Data_available x -> Some x
  | _ -> None

let read_ t ~timeout : 'a read_timeout_result Lwt.t =
  let timeout_function s (r:_ reader) =
    Lwt_unix.sleep s >>= fun () ->
    r.r_timeout <- true;
    Lwt.return Timeout
  in
  if not (Queue.is_empty t.buf) then (
    let x = Queue.pop t.buf in
    (* some writer may unblock *)
    if not (Queue.is_empty t.blocked_writers) && Queue.length t.buf < t.max_size then (
      let y, signal_done = Queue.pop t.blocked_writers in
      Queue.push y t.buf;
      Lwt.wakeup signal_done true;
    );
    Lwt.return (Data_available x)
  ) else if t.stopped then (
    (* empty buf + stopped *)
    close_nonblock t;
    Lwt.return Pipe_closed
  ) else if Queue.is_empty t.blocked_writers then (
    let fut, r_wakeup = Lwt.wait () in
    let r = {r_wakeup; r_timeout=false} in
    Queue.push r t.readers;
    match timeout with
    | None -> fut
    | Some s -> Lwt.pick [fut; timeout_function s r]
  ) else (
    assert (t.max_size = 0);
    let x, signal_done = Queue.pop t.blocked_writers in
    Lwt.wakeup signal_done true;
    Lwt.return (Data_available x)
  )

let read_with_timeout t ~timeout =
  read_ t ~timeout

(*$= read_with_timeout
  (read_with_timeout ~timeout:(Some 0.001) (create ()) |> Lwt_main.run)  (Timeout)
  (read_with_timeout ~timeout:(Some 0.001) (of_list [1]) |> Lwt_main.run) (Data_available 1)
  (read_with_timeout ~timeout:(Some 0.001) (of_list []) |> Lwt_main.run) (Pipe_closed)
*)

(*$Q read_with_timeout
  Q.(list int) (fun l -> \
    let result = match l with \
      | [] -> Pipe_closed \
      | h::_ -> Data_available h \
    in \
    of_list l |> read_with_timeout ~timeout:(Some 0.001) |> Lwt_main.run = result)
*)

let read t =
  read_ t ~timeout:None >|= opt_of_available

let enqueue_into_writers t x =
  if Queue.length t.buf < t.max_size then (
    Queue.push x t.buf;
    Lwt.return true (* into buffer, do not wait *)
  ) else (
    (* block until the queue isn't full anymore *)
    let is_done, signal_done = Lwt.wait () in
    Queue.push (x, signal_done) t.blocked_writers;
    is_done
  )

(* write a value *)
let rec write_rec_ (t:('a,_) pipe) (x:'a) =
  if t.stopped then (
    Lwt.return_false
  ) else if Queue.length t.readers > 0 then (
    (* some reader waits, synchronize now *)
    let r = Queue.pop t.readers in
    if r.r_timeout then (
      (* if timeout occurred the corresponding reader has already received
         a Timeout value and shoud be discarded. The value [x] is processed
         again by [write_step] *)
      write_rec_ t x
    ) else (
      (* timeout = false *)
      Lwt.wakeup r.r_wakeup (Data_available x);
      Lwt.return true
    )
  ) else (
    enqueue_into_writers t x
  )

let rec connect_rec r w =
  read_with_timeout ~timeout:None r >>= function
  | Data_available x ->
    write_rec_ w x >>= fun ok ->
    if ok then connect_rec r w else Lwt.return_unit
  | _ -> Lwt.return_unit

(* close a when b closes *)
let link_close p ~after =
  Lwt.on_termination after.closed
    (fun _ -> close_nonblock p)

let connect ?(ownership=`None) a b =
  let fut = connect_rec a b in
  keep b fut;
  match ownership with
  | `None -> ()
  | `InOwnsOut -> Lwt.on_termination fut (fun () -> close_nonblock b)
  | `OutOwnsIn -> Lwt.on_termination fut (fun () -> close_nonblock a)

(*$Q connect
  Q.(list int) (fun l -> \
    let p1 = of_list l in \
    let p2 = create () in \
    connect ~ownership:`InOwnsOut p1 p2; \
    Lwt_main.run (to_list p2) = l)
*)

let write_exn t x =
  write_rec_ t x >>= fun ok ->
  if ok then Lwt.return_unit
  else Lwt.fail Closed

let write = write_rec_

(*$QR read; write
  Q.(int) (fun i ->
    let p = create () in
    let w = write p i in
    let r = read p in
    Lwt.bind w (fun b ->
      Lwt.bind r (fun r ->
        match r with
          | None -> Lwt.return false
          | Some r -> Lwt.return (b && r = i)))
    |> Lwt_main.run)
*)
(*$QR read; write
  Q.(list int) (fun l ->
    let p = create () in
    let w = write p l in
    let r = read p in
    Lwt.bind w (fun b ->
      Lwt.bind r (fun r ->
        match r with
          | None -> Lwt.return false
          | Some r -> Lwt.return (b && r = l)))
    |> Lwt_main.run)
*)

let rec write_list t l = match l with
  | [] -> Lwt.return true
  | x :: tail ->
    let fut = write t x in
    fut >>= fun b ->
    if b then write_list t tail else fut

let write_list_exn t l =
  write_list t l >>= fun ok ->
  if ok then Lwt.return_unit
  else Lwt.fail Closed

let to_stream p =
  Lwt_stream.from (fun () -> read p)

let of_stream s =
  let p = create () in
  let rec send s = Lwt_stream.get s >>= fun result ->
    match result with
    | None -> Lwt.return_unit
    | Some elt -> write p elt >>= fun ok ->
      if ok then send s else Lwt.return_unit
  in
  let fut = send s in
  keep p fut;
  Lwt.on_termination fut (fun () -> close_nonblock p);
  p

module Writer = struct
  type 'a t = ('a, [`w]) pipe

  let map ~f a =
    let b = create() in
    let rec fwd_rec () =
      read b >>= function
      | Some x ->
        write a (f x) >>= fun ok ->
        if ok then fwd_rec () else Lwt.return_unit
      | None -> Lwt.return_unit
    in
    let fwd = fwd_rec() in
    keep b fwd;
    (* when [fwd_rec] stops because a gets closed, close b too *)
    Lwt.on_termination fwd (fun () -> close_nonblock b);
    b

  let send_all l =
    if l = [] then invalid_arg "send_all";
    let res = create () in
    let rec fwd () =
      read res >>= function
      | None -> Lwt.return_unit
      | Some x -> Lwt_list.iter_p (fun p -> write_exn p x) l >>= fwd
    in
    (* do not GC before res dies; close res when any outputx is closed *)
    keep res (fwd ());
    List.iter (fun out -> link_close res ~after:out) l;
    res

  let send_both a b = send_all [a; b]
end

module Reader = struct
  type 'a t = ('a, [`r]) pipe

  let map ~f a =
    let b = create () in
    let rec fwd_rec () =
      read a >>= function
      | Some x ->
        write b (f x) >>= fun ok ->
        if ok then fwd_rec () else Lwt.return_unit
      | None -> Lwt.return_unit
    in
    let fwd = fwd_rec() in
    keep b fwd;
    Lwt.on_termination fwd (fun () -> close_nonblock b);
    b

  (*$Q
    Q.(pair (fun1 Observable.string int) (list string)) (fun (f,l) -> \
      let pipe = of_list l in \
      Lwt_main.run (to_list (Reader.map ~f:(Q.Fn.apply f) pipe)) = \
      List.map (Q.Fn.apply f) l)
  *)

  let map_s ~f a =
    let b = create () in
    let rec fwd_rec () =
      read a >>= function
      | Some x ->
        f x >>= fun y ->
        write b y >>= fun ok ->
        if ok then fwd_rec () else Lwt.return_unit
      | None -> Lwt.return_unit
    in
    let fwd = fwd_rec() in
    keep b fwd;
    Lwt.on_termination fwd (fun () -> close_nonblock b);
    b

  (*$Q
    Q.(pair (fun1 Observable.string int) (list string)) (fun (f,l) -> \
      let pipe = of_list l in \
      Lwt_main.run (to_list (Reader.map_s ~f:(fun e -> Lwt.return (Q.Fn.apply f e)) pipe)) = \
      List.map (Q.Fn.apply f) l)
  *)

  let filter ~f a =
    let b = create () in
    let rec fwd_rec () =
      read a >>= function
      | Some x ->
        if f x then (
          write b x >>= fun ok ->
          if ok then fwd_rec () else Lwt.return_unit
        ) else fwd_rec()
      | None -> Lwt.return_unit
    in
    let fwd = fwd_rec() in
    keep b fwd;
    Lwt.on_termination fwd (fun () -> close_nonblock b);
    b

  (*$Q
    Q.(pair (fun1 Observable.int bool) (list int)) (fun (f,l) -> \
      let pipe = of_list l in \
      Lwt_main.run (to_list (Reader.filter ~f:(Q.Fn.apply f) pipe)) = \
      List.filter (Q.Fn.apply f) l)
  *)

  let filter_map ~f a =
    let b = create () in
    let rec fwd_rec () =
      read a >>= function
      | Some x ->
        begin match f x with
          | None -> fwd_rec()
          | Some y ->
            write b y >>= fun ok ->
            if ok then fwd_rec () else Lwt.return_unit
        end
      | None -> close b
    in
    let fwd = fwd_rec() in
    keep b fwd;
    Lwt.on_termination fwd (fun () -> close_nonblock b);
    b

  (*$Q
    Q.(pair (fun1 Observable.string (option int)) (list string)) (fun (f,l) -> \
      let pipe = of_list l in \
      Lwt_main.run (to_list (Reader.filter_map ~f:(Q.Fn.apply f) pipe)) = \
      (List.map (Q.Fn.apply f) l \
      |> List.filter (fun x -> x != None) \
      |> List.map (fun x -> match x with Some x -> x | None -> failwith "Impossible")))
  *)

  let filter_map_s ~f a =
    let b = create () in
    let rec fwd_rec () =
      read a >>= function
      | Some x ->
        f x >>= (function
          | None -> fwd_rec()
          | Some y ->
            write b y >>= fun ok ->
            if ok then fwd_rec () else Lwt.return_unit
        )
      | None -> Lwt.return_unit
    in
    let fwd = fwd_rec() in
    keep b fwd;
    Lwt.on_termination fwd (fun () -> close_nonblock b);
    b

  (*$Q
    Q.(pair (fun1 Observable.string (option int)) (list string)) (fun (f,l) -> \
      let pipe = of_list l in \
      Lwt_main.run (to_list (Reader.filter_map_s ~f:(fun e -> Lwt.return (Q.Fn.apply f e)) pipe)) = \
      (List.map (Q.Fn.apply f) l \
      |> List.filter (fun x -> x != None) \
      |> List.map (fun x -> match x with Some x -> x | None -> failwith "Impossible")))
  *)

  let flat_map ~f a =
    let b = create () in
    let rec fwd_rec () =
      read a >>= function
      | Some x ->
        let l = f x in
        write_list b l >>= fun ok ->
        if ok then fwd_rec () else Lwt.return_unit
      | None -> Lwt.return_unit
    in
    let fwd = fwd_rec() in
    keep b fwd;
    Lwt.on_termination fwd (fun () -> close_nonblock b);
    b

  (*$Q
    Q.(pair (fun1 Observable.string (list int)) (small_list small_string)) (fun (f,l) -> \
      let pipe = of_list l in \
      Lwt_main.run (to_list (Reader.flat_map ~f:(Q.Fn.apply f) pipe)) = \
      List.flatten (List.map (Q.Fn.apply f) l))
  *)

  let flat_map_s ~f a =
    let b = create () in
    let rec fwd_rec () =
      read a >>= function
      | Some x ->
        f x >>= fun l ->
        write_list b l >>= fun ok ->
        if ok then fwd_rec () else Lwt.return_unit
      | None -> Lwt.return_unit
    in
    let fwd = fwd_rec() in
    keep b fwd;
    Lwt.on_termination fwd (fun () -> close_nonblock b);
    b

  (*$Q
    Q.(pair (fun1 Observable.string (list int)) (small_list small_string)) (fun (f,l) -> \
      let pipe = of_list l in \
      Lwt_main.run (to_list (Reader.flat_map_s ~f:(fun e -> Lwt.return (Q.Fn.apply f e)) pipe)) = \
      List.flatten (List.map (Q.Fn.apply f) l))
  *)

  let rec fold ~f ~x t =
    read t
    >>= function
    | None -> Lwt.return x
    | Some y -> fold ~f ~x:(f x y) t

  (*$Q
    Q.(triple (fun2 Observable.int Observable.string int) (list string) int) (fun (f,l,x) -> \
      let pipe = of_list l in \
      Lwt_main.run (Reader.fold ~f:(Q.Fn.apply f) ~x pipe) = \
      List.fold_left (Q.Fn.apply f) x l)
  *)

  let rec fold_s ~f ~x t =
    read t >>= function
    | None -> Lwt.return x
    | Some y ->
      f x y >>= fun x -> fold_s ~f ~x t

  (*$Q
    Q.(triple (fun2 Observable.int Observable.string int) (list string) int) (fun (f,l,x) -> \
      let pipe = of_list l in \
      Lwt_main.run (Reader.fold_s ~f:(fun x e -> Lwt.return (Q.Fn.apply f x e)) ~x pipe) = \
      List.fold_left (Q.Fn.apply f) x l)
  *)

  let rec iter ~f t =
    read t >>= function
    | None -> Lwt.return_unit
    | Some x -> f x; iter ~f t

  let rec iter_s ~f t =
    read t >>= function
    | None -> Lwt.return_unit
    | Some x -> f x >>= fun () -> iter_s ~f t

  (* util to find in lists *)
  let find_map_l f l =
    let rec aux f = function
      | [] -> None
      | x::l' ->
        match f x with
          | Some _ as res -> res
          | None -> aux f l'
    in aux f l

  let iter_p ~f t =
    let rec iter acc =
      read t >>= function
      | None -> Lwt.join acc
      | Some x ->
        (* did any computation fail? *)
        let maybe_err =
          find_map_l
            (fun t -> match Lwt.state t with
               | Lwt.Fail e -> Some e | _ -> None)
            acc
        in
        begin match maybe_err with
          | None ->
            (* continue, removing  from [acc] the already terminated functions *)
            let acc = List.filter (fun t -> Lwt.state t <> Lwt.Sleep) acc in
            iter (f x :: acc)
          | Some e -> Lwt.fail e
        end
    in iter []

  let merge_all l =
    if l = [] then invalid_arg "merge_all";
    let res = create () in
    let conns = List.map (fun p -> connect_rec p res) l in
    (* when [conns] all done, close [res] *)
    res.keep <- conns;
    Lwt.async
      (fun () -> Lwt.join conns >>= fun () -> close res);
    res

  let merge_both a b = merge_all [a; b]

  let append a b =
    let c = create () in
    connect a c;
    Lwt.on_success (wait a)
      (fun () ->
         let fut = connect_rec b c in
         keep c fut;
         Lwt.on_termination fut (fun () -> close_nonblock c);
      );
    c
end

(** {2 Conversions} *)

type 'a lwt_klist = [ `Nil | `Cons of 'a * 'a lwt_klist ] Lwt.t

let of_list l : _ Reader.t =
  let p = create ~max_size:0 () in
  let rec send = function
    | [] -> Lwt.return_unit
    | h::t -> write p h >>= fun ok ->
      if ok then send t else Lwt.return_unit
  in
  let fut = send l in
  keep p fut;
  Lwt.on_termination fut (fun () -> close_nonblock p);
  p

let of_array a =
  let p = create ~max_size:0 () in
  let rec send i =
    if i < Array.length a then (
      write p a.(i) >>= fun ok ->
      if ok then send (i+1) else Lwt.return_unit
    ) else Lwt.return_unit
  in
  let fut = send 0 in
  keep p fut;
  Lwt.on_termination fut (fun () -> close_nonblock p);
  p

(*$Q of_array; to_list
  Q.(array int) (fun a -> \
    let pipe = of_array a in \
    Lwt_main.run (to_list pipe) = Array.to_list a)
*)

let of_string a =
  let p = create ~max_size:0 () in
  let rec send i =
    if i < String.length a then (
      write p (String.get a i) >>= fun ok ->
      if ok then send (i+1) else Lwt.return_unit
    ) else Lwt.return_unit
  in
  let fut = send 0 in
  keep p fut;
  Lwt.on_termination fut (fun () -> close_nonblock p);
  p

let of_lwt_klist l =
  let p = create ~max_size:0 () in
  let rec next l =
    l >>= function
    | `Nil -> Lwt.return_unit
    | `Cons (x, tl) ->
      write p x >>= fun ok ->
      if ok then next tl else Lwt.return_unit
  in
  let fut = next l in
  keep p fut;
  Lwt.on_termination fut (fun () -> close_nonblock p);
  p

let to_list_rev r =
  Reader.fold ~f:(fun acc x -> x :: acc) ~x:[] r

(*$Q of_list; to_list_rev
  Q.(list int) (fun l -> \
    let pipe = of_list l in \
    Lwt_main.run (to_list_rev pipe) = List.rev l)
*)

let to_list r = to_list_rev r >|= List.rev

(*$= to_list; of_list & ~printer:(fun l -> List.map string_of_int l |> String.concat " ")
  (of_list [1;2;3] |> to_list |> Lwt_main.run) ([1;2;3])
*)

(*$Q of_list; to_list
  Q.(list int) (fun l -> \
    let pipe = of_list l in \
    Lwt_main.run (to_list pipe) = l)
*)

let to_buffer buf r =
  Reader.iter ~f:(fun c -> Buffer.add_char buf c) r

let to_buffer_str ?(sep="") buf r =
  let first = ref true in
  Reader.iter r
    ~f:(fun s ->
        if !first then first:= false else Buffer.add_string buf sep;
        Buffer.add_string buf s)

let to_string r =
  let buf = Buffer.create 128 in
  to_buffer buf r >>= fun () -> Lwt.return (Buffer.contents buf)

(*$Q of_string; to_string
  Q.(string) (fun s -> \
    let pipe = of_string s in \
    Lwt_main.run (to_string pipe) = s)
*)

let join_strings ?sep r =
  let buf = Buffer.create 128 in
  to_buffer_str ?sep buf r >>= fun () -> Lwt.return (Buffer.contents buf)

(*$Q join_strings
  Q.(list string) (fun l -> \
    let pipe = of_list l in \
    Lwt_main.run (join_strings pipe) = String.concat "" l)
  Q.(list string) (fun l -> \
    let pipe = of_list l in \
    Lwt_main.run (join_strings ~sep:" " pipe) = String.concat " " l)
*)

let to_lwt_klist r =
  let rec next () =
    read r >>= function
    | None -> Lwt.return `Nil
    | Some x -> Lwt.return (`Cons (x, next ()))
  in
  next ()

(** {2 Basic IO wrappers} *)

module IO = struct
  let read ?(bufsize=4096) ic : _ Reader.t =
    let buf = Bytes.make bufsize ' ' in
    let p = create ~max_size:0 () in
    let rec send() =
      Lwt_io.read_into ic buf 0 bufsize >>= fun n ->
      if n = 0 then (
        Lwt.return_unit
      ) else (
        write p (Bytes.sub_string buf 0 n) >>= fun ok ->
        if ok then send () else Lwt.return_unit
      )
    in
    let fut = send () in
    keep p fut;
    Lwt.on_termination fut (fun () -> close_nonblock p);
    p

  let read_lines ic =
    let p = create () in
    let rec send () =
      Lwt_io.read_line_opt ic >>= function
      | None -> Lwt.return_unit
      | Some line ->
        write p line >>= fun ok ->
        if ok then send() else Lwt.return_unit
    in
    let fut = send () in
    keep p fut;
    Lwt.on_termination fut (fun () -> close_nonblock p);
    p

  let write oc =
    let p = create () in
    let fut =
      Reader.iter_s ~f:(Lwt_io.write oc) p >>= fun _ ->
      Lwt_io.flush oc
    in
    keep p fut;
    Lwt.on_termination fut (fun () -> close_nonblock p);
    p

  let write_lines oc =
    let p = create () in
    let fut =
      Reader.iter_s ~f:(Lwt_io.write_line oc) p >>= fun _ ->
      Lwt_io.flush oc >>= fun () ->
      close p
    in
    keep p fut;
    Lwt.on_termination fut (fun () -> close_nonblock p);
    p
end