package bonsai

  1. Overview
  2. Docs
A library for building dynamic webapps, using Js_of_ocaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.17.0.tar.gz
sha256=c78c4476ee6b856846e2d0941e5965009d5e1b853e564b2b1bee61202f0b1ebb

doc/src/bonsai.test_of_bonsai_itself/test_model_action_and_input_shapes.ml.html

Source file test_model_action_and_input_shapes.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
open! Core
open! Import
open Bonsai.For_open
open Bonsai.Let_syntax

let line_number_regex = Re.Str.regexp ":[0-9]+:[0-9]+"
let path_regex = Re.Str.regexp ".*/bonsai/src/"

let rec censor_sexp : Sexp.t -> Sexp.t = function
  | Atom s ->
    Atom
      (Re.Str.global_replace line_number_regex "" s |> Re.Str.global_replace path_regex "")
  | List l -> List (List.map l ~f:censor_sexp)
;;

let graph_stats c =
  let driver =
    Bonsai_driver.create
      (fun graph -> Bonsai.Private.perform graph c)
        (* we explicitly optimize the computation ourselves inside of [print], so don't do anything here. *)
      ~optimize:false
      ~clock:(Ui_time_source.create ~start:Time_ns.epoch)
  in
  let lines = driver |> Bonsai_driver.For_testing.dump_dot |> String.split_lines in
  let nodes =
    List.count lines ~f:(fun line -> String.is_substring line ~substring:"shape=Mrecord")
  in
  let edges =
    List.count lines ~f:(fun line -> String.is_substring line ~substring:"->")
  in
  [%message (nodes : int) (edges : int)]
;;

let description c =
  let module Meta = Bonsai.Private.Meta in
  let module Action = Bonsai.Private.Action in
  let (Bonsai.Private.Computation.T { model; action; input; _ }) =
    Bonsai.Private.gather c
  in
  let model = Meta.Model.Type_id.sexp_of_t [%sexp_of: opaque] model.type_id in
  let action = Action.Type_id.sexp_of_t action in
  let input = Meta.Input.sexp_of_t [%sexp_of: opaque] input in
  censor_sexp
    [%sexp
      { shapes = { model : Sexp.t; action : Sexp.t; input : Sexp.t }
      ; incr_graph = (graph_stats c : Sexp.t)
      }]
;;

let prepend_sexp s : Sexp.t -> Sexp.t = function
  | Atom a -> List [ Atom s; Atom a ]
  | List l -> List (Atom s :: l)
;;

let print c =
  let pre_optimization = description (Bonsai.Private.top_level_handle c)
  and post_optimization =
    Bonsai.Private.top_level_handle c |> Bonsai.Private.pre_process |> description
  in
  if Sexp.equal pre_optimization post_optimization
  then pre_optimization |> prepend_sexp "with and without optimizations" |> print_s
  else (
    pre_optimization |> prepend_sexp "without optimizations" |> print_s;
    print_endline "";
    post_optimization |> prepend_sexp "with optimizations" |> print_s)
;;

let opaque_const_value value = Bonsai.Var.create value |> Bonsai.Var.value
let constant_computation = Bonsai.const ()
let stateful_static_computation = Bonsai.state ()

let stateful_dynamic_computation =
  Bonsai.state_machine1
    ~default_model:()
    ~apply_action:(fun _ _ model _ -> model)
    (opaque_const_value ())
;;

let%expect_test "constant computation" =
  print constant_computation;
  [%expect
    {|
    ("with and without optimizations"
      (shapes ((model unit) (action (Leaf Nothing.t)) (input unit)))
      (incr_graph (
        (nodes 3)
        (edges 0))))
    |}]
;;

let%expect_test "stateful computation" =
  print stateful_static_computation;
  [%expect
    {|
    ("with and without optimizations"
      (shapes ((model proc_min.ml-model) (action (Leaf proc_min.ml)) (input unit)))
      (incr_graph (
        (nodes 4)
        (edges 1))))
    |}]
;;

let%test_module "sub" =
  (module struct
    let%expect_test "two stateful computations" =
      print
        (let%sub _ = stateful_static_computation in
         stateful_static_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model (proc_min.ml-model proc_min.ml-model))
            (action (
              Sub
              (Leaf proc_min.ml)
              (Leaf proc_min.ml)))
            (input (unit unit))))
          (incr_graph (
            (nodes 5)
            (edges 2))))
        |}]
    ;;

    let%expect_test "one stateful computation on left" =
      print
        (let%sub () = constant_computation in
         stateful_static_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes ((model proc_min.ml-model) (action (Leaf proc_min.ml)) (input unit)))
          (incr_graph (
            (nodes 4)
            (edges 1))))
        |}]
    ;;

    let%expect_test "one stateful computation on right" =
      print
        (let%sub _ = stateful_static_computation in
         constant_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes ((model proc_min.ml-model) (action (Leaf proc_min.ml)) (input unit)))
          (incr_graph (
            (nodes 3)
            (edges 0))))
        |}]
    ;;

    let%expect_test "no stateful computations" =
      print
        (let%sub _ = constant_computation in
         constant_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes ((model unit) (action (Leaf Nothing.t)) (input unit)))
          (incr_graph (
            (nodes 3)
            (edges 0))))
        |}]
    ;;
  end)
;;

let%test_module "model_resetter" =
  (module struct
    let%expect_test "model_resetter around constant computation" =
      print (Bonsai.with_model_resetter constant_computation);
      [%expect
        {|
        ("without optimizations"
          (shapes ((model unit) (action (Leaf Nothing.t)) (input unit)))
          (incr_graph (
            (nodes 3)
            (edges 0))))

        ("with optimizations"
          (shapes ((model unit) (action (Leaf Nothing.t)) (input unit)))
          (incr_graph (
            (nodes 4)
            (edges 1))))
        |}]
    ;;

    let%expect_test "model_resetter around non-constant computation" =
      print (Bonsai.with_model_resetter stateful_static_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model proc_min.ml-model)
            (action (Model_reset (Leaf proc_min.ml)))
            (input unit)))
          (incr_graph (
            (nodes 6)
            (edges 3))))
        |}]
    ;;
  end)
;;

let%test_module "wrap" =
  (module struct
    let wrap_around c =
      Bonsai.wrap
        ~default_model:()
        ~apply_action:(fun _context _result _model _action -> ())
        ~f:(fun _model _inject -> c)
        ()
    ;;

    let%expect_test "wrap around constant computation" =
      print (wrap_around constant_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model ("outer model for wrap-model" unit))
            (action (Wrap (Leaf Nothing.t) "action id"))
            (input (unit input))))
          (incr_graph (
            (nodes 3)
            (edges 1))))
        |}]
    ;;

    let%expect_test "wrap around non-constant computation" =
      print (wrap_around stateful_static_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model ("outer model for wrap-model" proc_min.ml-model))
            (action (Wrap (Leaf proc_min.ml) "action id"))
            (input (unit input))))
          (incr_graph (
            (nodes 5)
            (edges 3))))
        |}]
    ;;
  end)
;;

let%test_module "assoc" =
  (module struct
    let%expect_test "constant inside assoc" =
      print
        (Bonsai.assoc
           (module Int)
           (opaque_const_value Int.Map.empty)
           ~f:(fun _ _ -> constant_computation));
      [%expect
        {|
        ("without optimizations"
          (shapes (
            (model unit) (action (Assoc "key id" (Leaf Nothing.t))) (input unit)))
          (incr_graph (
            (nodes 15)
            (edges 18))))

        ("with optimizations"
          (shapes ((model unit) (action (Leaf Nothing.t)) (input unit)))
          (incr_graph (
            (nodes 4)
            (edges 1))))
        |}]
    ;;

    let%expect_test "static state inside assoc" =
      print
        (Bonsai.assoc
           (module Int)
           (opaque_const_value Int.Map.empty)
           ~f:(fun _ _ -> stateful_static_computation));
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model proc_min.ml-model)
            (action (Assoc "key id" (Leaf proc_min.ml)))
            (input unit)))
          (incr_graph (
            (nodes 15)
            (edges 18))))
        |}]
    ;;

    let%expect_test "dynamic_state inside assoc" =
      print
        (Bonsai.assoc
           (module Int)
           (opaque_const_value Int.Map.empty)
           ~f:(fun _ _ -> stateful_dynamic_computation));
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model proc_min.ml-model)
            (action (Assoc "key id" (Leaf proc_min.ml)))
            (input input)))
          (incr_graph (
            (nodes 15)
            (edges 18))))
        |}]
    ;;
  end)
;;

let%test_module "assoc_on" =
  (module struct
    let%expect_test "constant inside assoc_on" =
      print
        (Bonsai.Expert.assoc_on
           (module Int)
           (module Int)
           (opaque_const_value Int.Map.empty)
           ~get_model_key:(fun k _ -> k)
           ~f:(fun _ _ -> constant_computation));
      [%expect
        {|
        ("without optimizations"
          (shapes (
            (model unit)
            (action (Assoc "io key id" "model key id" (Leaf Nothing.t)))
            (input unit)))
          (incr_graph (
            (nodes 13)
            (edges 16))))

        ("with optimizations"
          (shapes ((model unit) (action (Leaf Nothing.t)) (input unit)))
          (incr_graph (
            (nodes 4)
            (edges 1))))
        |}]
    ;;

    let%expect_test "state inside assoc_on" =
      print
        (Bonsai.Expert.assoc_on
           (module Int)
           (module Int)
           (opaque_const_value Int.Map.empty)
           ~get_model_key:(fun k _ -> k)
           ~f:(fun _ _ -> stateful_static_computation));
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model proc_min.ml-model)
            (action (Assoc "io key id" "model key id" (Leaf proc_min.ml)))
            (input unit)))
          (incr_graph (
            (nodes 13)
            (edges 16))))
        |}]
    ;;
  end)
;;

let%test_module "switch" =
  (module struct
    let%expect_test "constant inside switch" =
      print
        (match%sub opaque_const_value true with
         | false -> constant_computation
         | true -> constant_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model (
              (0 unit)
              (1 unit)))
            (action Switch)
            (input  "enum input")))
          (incr_graph (
            (nodes 13)
            (edges 15))))
        |}]
    ;;

    let%expect_test "static state inside switch" =
      print
        (match%sub opaque_const_value true with
         | false -> stateful_static_computation
         | true -> stateful_static_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model (
              (0 proc_min.ml-model)
              (1 proc_min.ml-model)))
            (action Switch)
            (input  "enum input")))
          (incr_graph (
            (nodes 15)
            (edges 18))))
        |}]
    ;;

    let%expect_test "dynamic state inside switch" =
      print
        (match%sub opaque_const_value true with
         | false -> stateful_dynamic_computation
         | true -> stateful_dynamic_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model (
              (0 proc_min.ml-model)
              (1 proc_min.ml-model)))
            (action Switch)
            (input  "enum input")))
          (incr_graph (
            (nodes 15)
            (edges 17))))
        |}]
    ;;

    let%expect_test "both static and dynamic state inside switch" =
      print
        (match%sub opaque_const_value true with
         | false -> stateful_static_computation
         | true -> stateful_dynamic_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model (
              (0 proc_min.ml-model)
              (1 proc_min.ml-model)))
            (action Switch)
            (input  "enum input")))
          (incr_graph (
            (nodes 15)
            (edges 17))))
        |}]
    ;;
  end)
;;

let%test_module "optimizable switch" =
  (module struct
    let%expect_test "constant inside switch" =
      print
        (match%sub Value.return true with
         | false -> constant_computation
         | true -> constant_computation);
      [%expect
        {|
        ("without optimizations"
          (shapes (
            (model (
              (0 unit)
              (1 unit)))
            (action Switch)
            (input  "enum input")))
          (incr_graph (
            (nodes 13)
            (edges 15))))

        ("with optimizations"
          (shapes ((model unit) (action (Leaf Nothing.t)) (input unit)))
          (incr_graph (
            (nodes 3)
            (edges 0))))
        |}]
    ;;

    let%expect_test "static state inside switch" =
      print
        (match%sub Value.return true with
         | false -> stateful_static_computation
         | true -> stateful_static_computation);
      [%expect
        {|
        ("without optimizations"
          (shapes (
            (model (
              (0 proc_min.ml-model)
              (1 proc_min.ml-model)))
            (action Switch)
            (input  "enum input")))
          (incr_graph (
            (nodes 15)
            (edges 18))))

        ("with optimizations"
          (shapes ((model proc_min.ml-model) (action (Leaf proc_min.ml)) (input unit)))
          (incr_graph (
            (nodes 4)
            (edges 1))))
        |}]
    ;;

    let%expect_test "dynamic state inside switch" =
      print
        (match%sub Value.return true with
         | false -> stateful_dynamic_computation
         | true -> stateful_dynamic_computation);
      [%expect
        {|
        ("without optimizations"
          (shapes (
            (model (
              (0 proc_min.ml-model)
              (1 proc_min.ml-model)))
            (action Switch)
            (input  "enum input")))
          (incr_graph (
            (nodes 15)
            (edges 17))))

        ("with optimizations"
          (shapes (
            (model proc_min.ml-model) (action (Leaf proc_min.ml)) (input input)))
          (incr_graph (
            (nodes 4)
            (edges 1))))
        |}]
    ;;

    let%expect_test "both static and dynamic state inside switch" =
      print
        (match%sub Value.return true with
         | false -> stateful_static_computation
         | true -> stateful_dynamic_computation);
      [%expect
        {|
        ("without optimizations"
          (shapes (
            (model (
              (0 proc_min.ml-model)
              (1 proc_min.ml-model)))
            (action Switch)
            (input  "enum input")))
          (incr_graph (
            (nodes 15)
            (edges 17))))

        ("with optimizations"
          (shapes (
            (model proc_min.ml-model) (action (Leaf proc_min.ml)) (input input)))
          (incr_graph (
            (nodes 4)
            (edges 1))))
        |}]
    ;;

    let%expect_test "both static and dynamic state inside switch (swapped order)" =
      print
        (match%sub Value.return true with
         | false -> stateful_dynamic_computation
         | true -> stateful_static_computation);
      [%expect
        {|
        ("without optimizations"
          (shapes (
            (model (
              (0 proc_min.ml-model)
              (1 proc_min.ml-model)))
            (action Switch)
            (input  "enum input")))
          (incr_graph (
            (nodes 15)
            (edges 18))))

        ("with optimizations"
          (shapes ((model proc_min.ml-model) (action (Leaf proc_min.ml)) (input unit)))
          (incr_graph (
            (nodes 4)
            (edges 1))))
        |}]
    ;;
  end)
;;

let%test_module "action grid" =
  (module struct
    let%expect_test "no static, both dynamic" =
      print
        (let%sub _ = stateful_dynamic_computation in
         stateful_dynamic_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model (proc_min.ml-model proc_min.ml-model))
            (action (
              Sub
              (Leaf proc_min.ml)
              (Leaf proc_min.ml)))
            (input (input input))))
          (incr_graph (
            (nodes 6)
            (edges 4))))
        |}]
    ;;

    let%expect_test "both static, no dynamic" =
      print
        (let%sub _ = stateful_static_computation in
         stateful_static_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model (proc_min.ml-model proc_min.ml-model))
            (action (
              Sub
              (Leaf proc_min.ml)
              (Leaf proc_min.ml)))
            (input (unit unit))))
          (incr_graph (
            (nodes 5)
            (edges 2))))
        |}]
    ;;

    let%expect_test "one static, one dynamic" =
      print
        (let%sub _ = stateful_dynamic_computation in
         stateful_static_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model (proc_min.ml-model proc_min.ml-model))
            (action (
              Sub
              (Leaf proc_min.ml)
              (Leaf proc_min.ml)))
            (input (input unit))))
          (incr_graph (
            (nodes 6)
            (edges 3))))
        |}]
    ;;

    let%expect_test "other static, other dynamic" =
      print
        (let%sub _ = stateful_static_computation in
         stateful_dynamic_computation);
      [%expect
        {|
        ("with and without optimizations"
          (shapes (
            (model (proc_min.ml-model proc_min.ml-model))
            (action (
              Sub
              (Leaf proc_min.ml)
              (Leaf proc_min.ml)))
            (input (unit input))))
          (incr_graph (
            (nodes 6)
            (edges 3))))
        |}]
    ;;
  end)
;;

let%expect_test "Incr.compute" =
  print (Bonsai.Incr.compute (opaque_const_value ()) ~f:(fun unit_incr -> unit_incr));
  [%expect
    {|
    ("with and without optimizations"
      (shapes ((model unit) (action (Leaf Nothing.t)) (input unit)))
      (incr_graph (
        (nodes 3)
        (edges 0))))
    |}]
;;