Source file tuples.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
open Core

module Make2_plain (A : Diffable_intf.S_plain) (B : Diffable_intf.S_plain) = struct
  module Update = struct
    module Diff = struct
      type t =
        | A of A.Update.Diff.t
        | B of B.Update.Diff.t
      [@@deriving sexp_of]
    end

    type t = Diff.t list [@@deriving sexp_of]
  end

  type t = A.t * B.t

  let diffs ~from ~to_ =
    List.rev_append
      (A.diffs ~from:(fst from) ~to_:(fst to_)
       |> List.rev_map ~f:(fun x -> Update.Diff.A x))
      (B.diffs ~from:(snd from) ~to_:(snd to_) |> List.map ~f:(fun x -> Update.Diff.B x))
  ;;

  let update (a, b) dl =
    let da, db =
      List.partition_map dl ~f:(function
        | Update.Diff.A x -> First x
        | Update.Diff.B x -> Second x)
    in
    A.update a da, B.update b db
  ;;

  let to_diffs (ta, tb) =
    List.rev_append
      (A.to_diffs ta |> List.rev_map ~f:(fun x -> Update.Diff.A x))
      (B.to_diffs tb |> List.map ~f:(fun x -> Update.Diff.B x))
  ;;

  let of_diffs dl =
    let da, db =
      List.partition_map dl ~f:(function
        | Update.Diff.A x -> First x
        | Update.Diff.B x -> Second x)
    in
    A.of_diffs da, B.of_diffs db
  ;;
end

module Make2 (A : Diffable_intf.S) (B : Diffable_intf.S) = struct
  module Plain = Make2_plain (A) (B)

  module Update = struct
    module Diff = struct
      type t = Plain.Update.Diff.t =
        | A of A.Update.Diff.t
        | B of B.Update.Diff.t
      [@@deriving sexp, bin_io]
    end

    type t = Diff.t list [@@deriving sexp, bin_io]
  end

  include (
    Plain :
      module type of struct
      include Plain
    end
    with module Update := Plain.Update)
end

module Make3_plain
    (A : Diffable_intf.S_plain)
    (B : Diffable_intf.S_plain)
    (C : Diffable_intf.S_plain) =
  Iso.Make_plain
    (Make2_plain (A) (Make2_plain (B) (C)))
    (struct
      type t = A.t * B.t * C.t

      let forwards (a, (b, c)) = a, b, c
      let backwards (a, b, c) = a, (b, c)
    end)

module Make3 (A : Diffable_intf.S) (B : Diffable_intf.S) (C : Diffable_intf.S) =
  Iso.Make
    (Make2 (A) (Make2 (B) (C)))
    (struct
      type t = A.t * B.t * C.t

      let forwards (a, (b, c)) = a, b, c
      let backwards (a, b, c) = a, (b, c)
    end)

module Make4_plain
    (A : Diffable_intf.S_plain)
    (B : Diffable_intf.S_plain)
    (C : Diffable_intf.S_plain)
    (D : Diffable_intf.S_plain) =
  Iso.Make_plain
    (Make2_plain (A) (Make3_plain (B) (C) (D)))
    (struct
      type t = A.t * B.t * C.t * D.t

      let forwards (a, (b, c, d)) = a, b, c, d
      let backwards (a, b, c, d) = a, (b, c, d)
    end)

module Make4
    (A : Diffable_intf.S)
    (B : Diffable_intf.S)
    (C : Diffable_intf.S)
    (D : Diffable_intf.S) =
  Iso.Make
    (Make2 (A) (Make3 (B) (C) (D)))
    (struct
      type t = A.t * B.t * C.t * D.t

      let forwards (a, (b, c, d)) = a, b, c, d
      let backwards (a, b, c, d) = a, (b, c, d)
    end)

module Make5_plain
    (A : Diffable_intf.S_plain)
    (B : Diffable_intf.S_plain)
    (C : Diffable_intf.S_plain)
    (D : Diffable_intf.S_plain)
    (E : Diffable_intf.S_plain) =
  Iso.Make_plain
    (Make2_plain (A) (Make4_plain (B) (C) (D) (E)))
    (struct
      type t = A.t * B.t * C.t * D.t * E.t

      let forwards (a, (b, c, d, e)) = a, b, c, d, e
      let backwards (a, b, c, d, e) = a, (b, c, d, e)
    end)

module Make5
    (A : Diffable_intf.S)
    (B : Diffable_intf.S)
    (C : Diffable_intf.S)
    (D : Diffable_intf.S)
    (E : Diffable_intf.S) =
  Iso.Make
    (Make2 (A) (Make4 (B) (C) (D) (E)))
    (struct
      type t = A.t * B.t * C.t * D.t * E.t

      let forwards (a, (b, c, d, e)) = a, b, c, d, e
      let backwards (a, b, c, d, e) = a, (b, c, d, e)
    end)

module Make6_plain
    (A : Diffable_intf.S_plain)
    (B : Diffable_intf.S_plain)
    (C : Diffable_intf.S_plain)
    (D : Diffable_intf.S_plain)
    (E : Diffable_intf.S_plain)
    (F : Diffable_intf.S_plain) =
  Iso.Make_plain
    (Make2_plain (A) (Make5_plain (B) (C) (D) (E) (F)))
    (struct
      type t = A.t * B.t * C.t * D.t * E.t * F.t

      let forwards (a, (b, c, d, e, f)) = a, b, c, d, e, f
      let backwards (a, b, c, d, e, f) = a, (b, c, d, e, f)
    end)

module Make6
    (A : Diffable_intf.S)
    (B : Diffable_intf.S)
    (C : Diffable_intf.S)
    (D : Diffable_intf.S)
    (E : Diffable_intf.S)
    (F : Diffable_intf.S) =
  Iso.Make
    (Make2 (A) (Make5 (B) (C) (D) (E) (F)))
    (struct
      type t = A.t * B.t * C.t * D.t * E.t * F.t

      let forwards (a, (b, c, d, e, f)) = a, b, c, d, e, f
      let backwards (a, b, c, d, e, f) = a, (b, c, d, e, f)
    end)

let%test_module "tests" =
  (module struct
    module Diffable_int = struct
      module U = struct
        type t = int [@@deriving bin_io, equal, sexp]
      end

      include U
      include Atomic.Make (U)
    end

    module Diffable_float = struct
      module U = struct
        type t = float [@@deriving bin_io, equal, sexp]
      end

      include U
      include Atomic.Make (U)
    end

    include
      Make6 (Diffable_int) (Diffable_int) (Diffable_float) (Diffable_int) (Diffable_float)
        (Diffable_float)

    type t = int * int * float * int * float * float [@@deriving compare, sexp]

    let quickcheck_generator =
      Quickcheck.Generator.tuple6
        Int.quickcheck_generator
        Int.quickcheck_generator
        Float.quickcheck_generator
        Int.quickcheck_generator
        Float.quickcheck_generator
        Float.quickcheck_generator
    ;;

    let quickcheck_shrinker =
      Quickcheck.Shrinker.tuple6
        Int.quickcheck_shrinker
        Int.quickcheck_shrinker
        Float.quickcheck_shrinker
        Int.quickcheck_shrinker
        Float.quickcheck_shrinker
        Float.quickcheck_shrinker
    ;;

    let%test_unit "make6 round-trip works" =
      Quickcheck.test
        quickcheck_generator
        ~shrinker:quickcheck_shrinker
        ~sexp_of:[%sexp_of: t]
        ~f:(fun t -> [%test_result: t] ~expect:t (of_diffs (to_diffs t)))
    ;;

    let%test_unit "make6 diff/update works" =
      let open Quickcheck in
      Quickcheck.test
        (Generator.tuple2 quickcheck_generator quickcheck_generator)
        ~shrinker:(Shrinker.tuple2 quickcheck_shrinker quickcheck_shrinker)
        ~sexp_of:[%sexp_of: t * t]
        ~f:(fun (from, to_) ->
          [%test_result: t] ~expect:to_ (update from (diffs ~from ~to_)))
    ;;
  end)
;;