Source file eliom_client.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
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
# 1 "src/lib/eliom_client.client.ml"
let section = Eliom_client_core.section
open Js_of_ocaml
open Eliom_lib
module Opt = Eliom_lib.Option
module Xml = Eliom_content_core.Xml
let run_callbacks handlers = List.iter (fun f -> f ()) handlers
type changepage_event =
{ in_cache : bool
; origin_uri : string
; target_uri : string
; origin_id : int
; target_id : int option }
let run_lwt_callbacks : 'a -> ('a -> unit Lwt.t) list -> unit Lwt.t =
fun ev handlers -> Lwt_list.iter_s (fun h -> h ev) handlers
let (onload, _, flush_onload, _push_onload) :
((unit -> unit) -> unit)
* (unit -> (unit -> unit) list)
* (unit -> (unit -> unit) list)
* (unit -> unit)
=
Eliom_client_core.create_buffer ()
let ( (onchangepage : (changepage_event -> unit Lwt.t) -> unit)
, _
, (flush_onchangepage : unit -> (changepage_event -> unit Lwt.t) list)
, _ )
=
Eliom_client_core.create_buffer ()
let onunload, _, flush_onunload, _ = Eliom_client_core.create_buffer ()
let onbeforeunload, run_onbeforeunload, flush_onbeforeunload =
let add, get, flush, _ = Eliom_client_core.create_buffer () in
let rec run lst =
match lst with
| [] -> None
| f :: rem -> ( match f () with None -> run rem | Some s -> Some s)
in
add, (fun () -> run (get ())), flush
let run_onunload_wrapper set_content cancel =
match run_onbeforeunload () with
| Some s when not (confirm "%s" s) -> cancel ()
| _ ->
ignore (flush_onbeforeunload ());
run_callbacks (flush_onunload ());
set_content ()
let lwt_onload () =
let t, u = Lwt.wait () in
onload (Lwt.wakeup u);
t
let check_global_data global_data =
let missing_client_values = ref [] in
let missing_injections = ref [] in
String_map.iter
(fun compilation_unit_id {Eliom_client_core.server_section; client_section} ->
List.iter
(fun data ->
missing_client_values :=
List.rev_append
(List.map
(fun cv -> compilation_unit_id, cv)
(Array.to_list data))
!missing_client_values)
server_section;
List.iter
(fun data ->
missing_injections :=
List.rev_append (Array.to_list data) !missing_injections)
client_section)
global_data;
(match !missing_client_values with
| [] -> ()
| l ->
Printf.ksprintf
(fun s -> Firebug.console ## (error (Js.string s)))
"Code generating the following client values is not linked on the client:\n%s"
(String.concat "\n"
(List.rev_map
(fun (compilation_unit_id, {Eliom_runtime.closure_id; value; _}) ->
let instance_id =
Eliom_runtime.Client_value_server_repr.instance_id value
in
match Eliom_runtime.Client_value_server_repr.loc value with
| None ->
Printf.sprintf "%s:%s/%d" compilation_unit_id closure_id
instance_id
| Some pos ->
Printf.sprintf "%s:%s/%d at %s" compilation_unit_id
closure_id instance_id
(Eliom_lib.pos_to_string pos))
l)));
match !missing_injections with
| [] -> ()
| l ->
Printf.ksprintf
(fun s -> Firebug.console ## (error (Js.string s)))
"Code containing the following injections is not linked on the client:\n%s"
(String.concat "\n"
(List.rev_map
(fun d ->
let id = d.Eliom_runtime.injection_id in
match d.Eliom_runtime.injection_dbg with
| None -> Printf.sprintf "%d" id
| Some (pos, Some i) ->
Printf.sprintf "%d (%s at %s)" id i
(Eliom_lib.pos_to_string pos)
| Some (pos, None) ->
Printf.sprintf "%d (at %s)" id
(Eliom_lib.pos_to_string pos))
l))
let do_request_data request_data =
Lwt_log.ign_debug_f ~section "Do request data (%a)"
(fun () l -> string_of_int (Array.length l))
request_data;
check_global_data !Eliom_client_core.global_data;
Eliom_client_core.global_data := String_map.empty;
Array.iter Eliom_client_core.Client_value.initialize request_data
let get_element_cookies_info elt =
Js.Opt.to_option
(Js.Opt.map
elt
## (getAttribute (Js.string Eliom_runtime.RawXML.ce_call_service_attrib))
(fun s -> of_json ~typ:[%json: bool * string list] (Js.to_string s)))
let get_element_template elt =
Js.Opt.to_option
(Js.Opt.map
elt ## (getAttribute (Js.string Eliom_runtime.RawXML.ce_template_attrib))
(fun s -> Js.to_string s))
let a_handler =
Dom_html.full_handler (fun node ev ->
let node =
Js.Opt.get (Dom_html.CoerceTo.a node) (fun () ->
Lwt_log.raise_error_f ~section "not an anchor element")
in
Js.bool
(Eliom_client_core.raw_a_handler node
(get_element_cookies_info node)
(get_element_template node)
ev))
let form_handler :
(Dom_html.element Js.t, #Dom_html.event Js.t) Dom_html.event_listener
=
Dom_html.full_handler (fun node ev ->
let form =
Js.Opt.get (Dom_html.CoerceTo.form node) (fun () ->
Lwt_log.raise_error_f ~section "not a form element")
in
let kind =
if String.lowercase_ascii (Js.to_string form##._method) = "get"
then `Form_get
else `Form_post
and f _ = Lwt.return_false in
Js.bool
(Eliom_client_core.raw_form_handler form kind
(get_element_cookies_info form)
(get_element_template node)
ev f))
let relink_process_node (node : Dom_html.element Js.t) =
let id =
Js.Opt.get
node ## (getAttribute (Js.string Eliom_runtime.RawXML.node_id_attrib))
(fun () ->
Lwt_log.raise_error_f ~section "unique node without id attribute")
in
Js.Optdef.case
(Eliom_client_core.find_process_node id)
(fun () ->
Lwt_log.ign_debug_f ~section
"Relink process node: did not find %a. Will add it."
(fun () -> Js.to_string)
id;
Eliom_client_core.register_process_node id (node :> Dom.node Js.t))
(fun pnode ->
Lwt_log.ign_debug_f ~section "Relink process node: found %a"
(fun () -> Js.to_string)
id;
Js.Opt.iter node##.parentNode (fun parent ->
Dom.replaceChild parent pnode node);
if String.sub (Js.to_bytestring id) 0 7 <> "global_"
then (
let childrens = Dom.list_of_nodeList pnode##.childNodes in
List.iter (fun c -> ignore pnode ## (removeChild c)) childrens;
let childrens = Dom.list_of_nodeList node##.childNodes in
List.iter (fun c -> ignore pnode ## (appendChild c)) childrens))
let relink_request_node (node : Dom_html.element Js.t) =
let id =
Js.Opt.get
node ## (getAttribute (Js.string Eliom_runtime.RawXML.node_id_attrib))
(fun () ->
Lwt_log.raise_error_f ~section "unique node without id attribute")
in
Js.Optdef.case
(Eliom_client_core.find_request_node id)
(fun () ->
Lwt_log.ign_debug_f ~section
"Relink request node: did not find %a. Will add it."
(fun () -> Js.to_string)
id;
Eliom_client_core.register_request_node id (node :> Dom.node Js.t))
(fun pnode ->
Lwt_log.ign_debug_f ~section "Relink request node: found %a"
(fun () -> Js.to_string)
id;
Js.Opt.iter node##.parentNode (fun parent ->
Dom.replaceChild parent pnode node))
let relink_request_nodes root =
Lwt_log.ign_debug ~section "Relink request nodes";
if !Eliom_config.debug_timings
then Firebug.console ## (time (Js.string "relink_request_nodes"));
Eliommod_dom.iter_nodeList
(Eliommod_dom.select_request_nodes root)
relink_request_node;
if !Eliom_config.debug_timings
then Firebug.console ## (timeEnd (Js.string "relink_request_nodes"))
let relink_page_but_client_values (root : Dom_html.element Js.t) =
Lwt_log.ign_debug ~section "Relink page";
let ( a_nodeList
, form_nodeList
, process_nodeList
, closure_nodeList
, attrib_nodeList )
=
Eliommod_dom.select_nodes root
in
Eliommod_dom.iter_nodeList a_nodeList (fun node ->
node##.onclick := a_handler);
Eliommod_dom.iter_nodeList form_nodeList (fun node ->
node##.onsubmit := form_handler);
Eliommod_dom.iter_nodeList process_nodeList relink_process_node;
closure_nodeList, attrib_nodeList
let is_closure_attrib, get_closure_name, get_closure_id =
let v_prefix = Eliom_runtime.RawXML.closure_attr_prefix in
let v_len = String.length v_prefix in
let v_prefix_js = Js.string v_prefix in
let n_prefix = Eliom_runtime.RawXML.closure_name_prefix in
let n_len = String.length n_prefix in
let n_prefix_js = Js.string n_prefix in
( (fun attr ->
attr ##. value ## (substring 0 v_len) = v_prefix_js
&& attr ##. name ## (substring 0 n_len) = n_prefix_js)
, (fun attr -> attr ##. name ## (substring_toEnd n_len))
, fun attr -> attr ##. value ## (substring_toEnd v_len) )
let relink_closure_node root onload table (node : Dom_html.element Js.t) =
Lwt_log.ign_debug ~section "Relink closure node";
let aux attr =
if is_closure_attrib attr
then
let cid = Js.to_bytestring (get_closure_id attr) in
let name = get_closure_name attr in
try
let cv = Eliom_runtime.RawXML.ClosureMap.find cid table in
let closure = Eliom_client_core.raw_event_handler cv in
if name = Js.string "onload"
then (
if Eliommod_dom.ancessor root node
then onload := closure :: !onload)
else
Js.Unsafe.set node name
(Dom_html.handler (fun ev -> Js.bool (closure ev)))
with Not_found ->
Lwt_log.ign_error_f ~section
"relink_closure_node: client value %s not found" cid
in
Eliommod_dom.iter_attrList node##.attributes aux
let relink_closure_nodes (root : Dom_html.element Js.t) event_handlers
closure_nodeList
=
Lwt_log.ign_debug_f ~section "Relink %i closure nodes"
closure_nodeList##.length;
let onload = ref [] in
Eliommod_dom.iter_nodeList closure_nodeList (fun node ->
relink_closure_node root onload event_handlers node);
fun () ->
let ev = Eliommod_dom.createEvent (Js.string "load") in
ignore (List.for_all (fun f -> f ev) (List.rev !onload))
let is_attrib_attrib, get_attrib_id =
let v_prefix = Eliom_runtime.RawXML.client_attr_prefix in
let v_len = String.length v_prefix in
let v_prefix_js = Js.string v_prefix in
let n_prefix = Eliom_runtime.RawXML.client_name_prefix in
let n_len = String.length n_prefix in
let n_prefix_js = Js.string n_prefix in
( (fun attr ->
attr ##. value ## (substring 0 v_len) = v_prefix_js
&& attr ##. name ## (substring 0 n_len) = n_prefix_js)
, fun attr -> attr ##. value ## (substring_toEnd v_len) )
let relink_attrib _root table (node : Dom_html.element Js.t) =
Lwt_log.ign_debug ~section "Relink attribute";
let aux attr =
if is_attrib_attrib attr
then
let cid = Js.to_bytestring (get_attrib_id attr) in
try
let value = Eliom_runtime.RawXML.ClosureMap.find cid table in
let rattrib : Eliom_content_core.Xml.attrib =
Eliom_lib.from_poly (Eliom_lib.to_poly value)
in
Eliom_client_core.rebuild_rattrib node rattrib
with Not_found ->
Lwt_log.raise_error_f ~section
"relink_attrib: client value %s not found" cid
in
Eliommod_dom.iter_attrList node##.attributes aux
let relink_attribs (root : Dom_html.element Js.t) attribs attrib_nodeList =
Lwt_log.ign_debug_f ~section "Relink %i attributes" attrib_nodeList##.length;
Eliommod_dom.iter_nodeList attrib_nodeList (fun node ->
relink_attrib root attribs node)
let load_data_script page =
Lwt_log.ign_debug ~section "Load Eliom application data";
let head = Eliommod_dom.get_head page in
let data_script : Dom_html.scriptElement Js.t =
match Dom.list_of_nodeList head##.childNodes with
| _ :: _ :: data_script :: _ -> (
let data_script : Dom.element Js.t = Js.Unsafe.coerce data_script in
match Js.to_bytestring data_script##.tagName##toLowerCase with
| "script" -> Js.Unsafe.coerce data_script
| t ->
Lwt_log.raise_error_f ~section
"Unable to find Eliom application data (script element expected, found %s element)"
t)
| _ ->
Lwt_log.raise_error_f ~section "Unable to find Eliom application data."
in
let script = data_script##.text in
if !Eliom_config.debug_timings
then Firebug.console ## (time (Js.string "load_data_script"));
ignore (Js.Unsafe.eval_string (Js.to_string script));
Eliom_process.reset_request_template ();
Eliom_process.reset_request_cookies ();
if !Eliom_config.debug_timings
then Firebug.console ## (timeEnd (Js.string "load_data_script"))
let scroll_to_fragment ?offset fragment =
match offset with
| Some pos -> Eliommod_dom.setDocumentScroll pos
| None -> (
match fragment with
| None | Some "" -> Eliommod_dom.setDocumentScroll Eliommod_dom.top_position
| Some fragment ->
let scroll_to_element e = e ## (scrollIntoView Js._true) in
let elem = Dom_html.document ## (getElementById (Js.string fragment)) in
Js.Opt.iter elem scroll_to_element)
let with_progress_cursor : 'a Lwt.t -> 'a Lwt.t =
fun t ->
try%lwt
Dom_html.document##.body##.style##.cursor := Js.string "progress";
let%lwt res = t in
Dom_html.document##.body##.style##.cursor := Js.string "auto";
Lwt.return res
with exn ->
Dom_html.document##.body##.style##.cursor := Js.string "auto";
Lwt.fail exn
type tmp_recontent =
| RELazy of Xml.econtent Eliom_lazy.request
| RE of Xml.econtent
[@@warning "-37"]
type tmp_elt =
{
tmp_elt : tmp_recontent; tmp_node_id : Xml.node_id}
let unwrap_tyxml tmp_elt =
let elt =
match tmp_elt.tmp_elt with
| RELazy elt -> Eliom_lazy.force elt
| RE elt -> elt
in
Lwt_log.ign_debug ~section "Unwrap tyxml";
let elt =
let context = "unwrapping (i.e. utilize it in whatsoever form)" in
Xml.make_lazy ~id:tmp_elt.tmp_node_id
(lazy
(match tmp_elt.tmp_node_id with
| Xml.ProcessId process_id as id ->
Lwt_log.ign_debug_f ~section "Unwrap tyxml from ProcessId %s"
process_id;
Js.Optdef.case
(Eliom_client_core.find_process_node (Js.bytestring process_id))
(fun () ->
Lwt_log.ign_debug ~section "not found";
let xml_elt : Xml.elt = Xml.make ~id elt in
let xml_elt =
Eliom_content_core.Xml.set_classes_of_elt xml_elt
in
Eliom_client_core.register_process_node
(Js.bytestring process_id)
(Eliom_client_core.rebuild_node_ns `HTML5 context xml_elt);
xml_elt)
(fun elt ->
Lwt_log.ign_debug ~section "found";
Xml.make_dom ~id elt)
| Xml.RequestId request_id as id ->
Lwt_log.ign_debug_f ~section "Unwrap tyxml from RequestId %s"
request_id;
Js.Optdef.case
(Eliom_client_core.find_request_node (Js.bytestring request_id))
(fun () ->
Lwt_log.ign_debug ~section "not found";
let xml_elt : Xml.elt = Xml.make ~id elt in
Eliom_client_core.register_request_node
(Js.bytestring request_id)
(Eliom_client_core.rebuild_node_ns `HTML5 context xml_elt);
xml_elt)
(fun elt ->
Lwt_log.ign_debug ~section "found";
Xml.make_dom ~id elt)
| Xml.NoId as id ->
Lwt_log.ign_debug ~section "Unwrap tyxml from NoId";
Xml.make ~id elt))
in
Eliom_client_core.register_unwrapped_elt elt;
elt
let unwrap_client_value cv =
Eliom_client_core.Client_value.find
~instance_id:(Eliom_runtime.Client_value_server_repr.instance_id cv)
let unwrap_global_data (global_data', _) =
Eliom_client_core.global_data :=
String_map.map
(fun {Eliom_runtime.server_sections_data; client_sections_data} ->
{ Eliom_client_core.server_section = Array.to_list server_sections_data
; client_section = Array.to_list client_sections_data })
global_data'
let _ =
Eliom_unwrap.register_unwrapper'
(Eliom_unwrap.id_of_int Eliom_common_base.client_value_unwrap_id_int)
unwrap_client_value;
Eliom_unwrap.register_unwrapper
(Eliom_unwrap.id_of_int Eliom_runtime.tyxml_unwrap_id_int)
unwrap_tyxml;
Eliom_unwrap.register_unwrapper
(Eliom_unwrap.id_of_int Eliom_common_base.global_data_unwrap_id_int)
unwrap_global_data;
()
let add_string_event_listener o e f capt : unit =
let e = Js.string e
and capt = Js.bool capt
and f e =
match f e with
| Some s ->
let s = Js.string s in
(Js.Unsafe.coerce e)##.returnValue := s;
Js.def s
| None -> Js.undefined
in
let f = Js.Unsafe.callback f in
ignore
@@
if not (Js.Optdef.test (Js.Unsafe.coerce o)##.addEventListener)
then
let e = (Js.string "on") ## (concat e)
and cb e = Js.Unsafe.call (f, e, [||]) in
(Js.Unsafe.coerce o) ## (attachEvent e cb)
else (Js.Unsafe.coerce o) ## (addEventListener e f capt)
[@@@warning "-39"]
type state =
{
template : string option
; position : Eliommod_dom.position }
[@@deriving json]
[@@@warning "+39"]
let random_int =
if Js.Optdef.test Js.Unsafe.global##.crypto
&& Js.Optdef.test Js.Unsafe.global##.crypto##.getRandomValues
then
fun () ->
let a =
Js.Unsafe.global ##. crypto
## (getRandomValues (new%js Typed_array.int16Array 2))
in
(Typed_array.unsafe_get a 0 lsl 16) lor Typed_array.unsafe_get a 1
else fun () -> truncate (4294967296. *. Js.to_float Js.math##random)
let section_page = Lwt_log.Section.make "eliom:client:page"
[@@@warning "-39"]
type state_id = {session_id : int; state_index : int }
[@@deriving json]
type saved_state = state_id * string [@@deriving json]
[@@@warning "+39"]
module Page_status_t = struct
type t = Generating | Active | Cached | Dead
let to_string st =
match st with
| Generating -> "Generating"
| Active -> "Active"
| Cached -> "Cached"
| Dead -> "Dead"
end
type page =
{ page_unique_id : int
; mutable page_id : state_id
; mutable url : string
; page_status : Page_status_t.t React.S.t
; mutable previous_page : int option
; set_page_status : ?step:React.step -> Page_status_t.t -> unit
; mutable dom : Dom_html.bodyElement Js.t option
; mutable reload_function :
(unit -> unit -> Eliom_service.result Lwt.t) option }
let string_of_page p =
Printf.sprintf "%d/%d %s %s %d %b" p.page_unique_id p.page_id.state_index
p.url
(Page_status_t.to_string @@ React.S.value p.page_status)
(match p.previous_page with Some pp -> pp | None -> 0)
(match p.dom with Some _ -> true | None -> false)
let set_page_status p st =
Lwt_log.ign_debug_f ~section:section_page "Set page status %d/%d: %s"
p.page_unique_id p.page_id.state_index
(Page_status_t.to_string st);
p.set_page_status st
let retire_page p =
set_page_status p @@ match p.dom with Some _ -> Cached | None -> Dead
let session_id = random_int ()
let next_state_id =
let last = ref 0 in
fun () ->
incr last;
{session_id; state_index = !last}
let last_page_id = ref (-1)
let mk_page ?(state_id = next_state_id ()) ?url ?previous_page ~status () =
incr last_page_id;
Lwt_log.ign_debug_f ~section:section_page "Create page %d/%d" !last_page_id
state_id.state_index;
let page_status, set_page_status = React.S.create status in
ignore @@ React.S.map (fun _ -> ()) page_status;
{ page_unique_id = !last_page_id
; page_id = state_id
; url =
(match url with
| Some u -> u
| None ->
fst
(Url.split_fragment
(Js.to_string Dom_html.window##.location##.href)))
; page_status
; previous_page
; set_page_status
; dom = None
; reload_function = None }
let active_page = ref @@ mk_page ~status:Active ()
let set_active_page p =
Lwt_log.ign_debug_f ~section:section_page "Set active page %d/%d"
p.page_unique_id p.page_id.state_index;
retire_page !active_page;
active_page := p;
set_page_status !active_page Active
let this_page : page Lwt.key = Lwt.new_key ()
let get_this_page () =
match Lwt.get this_page with
| Some p -> p
| None ->
Lwt_log.ign_debug_f ~section:section_page "No page in context";
!active_page
let with_new_page ?state_id ?old_page ~replace () f =
let state_id = if replace then Some !active_page.page_id else state_id in
let url, previous_page =
match old_page with
| Some o -> Some o.url, o.previous_page
| None -> None, None
in
let page = mk_page ?state_id ?url ?previous_page ~status:Generating () in
Lwt.with_value this_page (Some page) f
module History = struct
let section = Lwt_log.Section.make "eliom:client:history"
let get, set =
let history = ref [!active_page] in
let set h =
Lwt_log.ign_debug_f ~section "setting history:\n%s"
(String.concat "\n" @@ List.map string_of_page !history);
history := h
in
(fun () -> !history), set
let find_by_state_index i =
try Some (List.find (fun p -> p.page_id.state_index = i) (get ()))
with Not_found -> None
let split_rev_past_future index =
let rec loop past = function
| [] -> past, []
| x :: future when x.page_id.state_index = index -> x :: past, future
| x :: l -> loop (x :: past) l
in
loop [] (get ())
let advance n =
let new_history, future =
match n.previous_page with
| None -> get (), []
| Some pp ->
let rev_past, future = split_rev_past_future pp in
List.rev (n :: rev_past), future
in
List.iter (fun p -> set_page_status p Dead) future;
set new_history
let replace n =
let maybe_replace p =
if p.page_id.state_index = n.page_id.state_index
then (set_page_status p Dead; n)
else p
in
set @@ List.map maybe_replace @@ get ()
let past () =
let index = !active_page.page_id.state_index in
let rev_past, _ = split_rev_past_future index in
List.map (fun p -> p.url)
@@ match rev_past with _present :: past -> past | [] -> []
let future () =
let index = !active_page.page_id.state_index in
let _, future = split_rev_past_future index in
List.map (fun p -> p.url) future
let max_num_doms = ref None
let garbage_collect_doms () =
match !max_num_doms with
| None -> ()
| Some max_num_doms ->
let interleave l r =
let take_from_l = ref false in
let alternate _ _ =
take_from_l := not !take_from_l;
if !take_from_l then -1 else 1
in
List.merge alternate l r
in
let rev_past, future =
split_rev_past_future !active_page.page_id.state_index
in
let pages_ordered_by_distance_from_present =
interleave rev_past future
in
let num_doms = ref 0 in
let maybe_delete_dom p =
match p.dom with
| None -> ()
| Some _ ->
num_doms := !num_doms + 1;
if !num_doms > max_num_doms
then (
p.dom <- None;
set_page_status p Dead)
in
List.iter maybe_delete_dom pages_ordered_by_distance_from_present
end
let advance_page () =
let new_page = get_this_page () in
if new_page != !active_page
then (
new_page.previous_page <- Some !active_page.page_id.state_index;
(match History.find_by_state_index new_page.page_id.state_index with
| Some _ -> ()
| None -> History.advance new_page);
set_active_page new_page)
let state_key {session_id; state_index} =
Js.string (Printf.sprintf "state_history_%x_%x" session_id state_index)
let get_state state_id : state =
Js.Opt.case
(Js.Optdef.case
Dom_html.window##.sessionStorage
(fun () ->
Lwt_log.raise_error_f ~section "sessionStorage not available")
(fun s -> s ## (getItem (state_key state_id))))
(fun () -> raise Not_found)
(fun s -> of_json ~typ:[%json: state] (Js.to_string s))
let set_state i (v : state) =
Js.Optdef.case
Dom_html.window##.sessionStorage
(fun () -> ())
(fun s ->
s ## (setItem (state_key i) (Js.string (to_json ~typ:[%json: state] v))))
let update_state () =
set_state !active_page.page_id
{ template = Eliom_request_info.get_request_template ()
; position = Eliommod_dom.getDocumentScroll () }
let lock_request_handling = Eliom_request.lock
let unlock_request_handling = Eliom_request.unlock
type ('a, +'b) server_function = 'a -> 'b Lwt.t
let only_replace_body = ref false
let persist_document_head () = only_replace_body := true
let insert_base page =
let b = Dom_html.createBase Dom_html.document in
b##.href := Js.string (Eliom_process.get_base_url ());
b##.id := Js.string Eliom_common_base.base_elt_id;
Js.Opt.case
page ## (querySelector (Js.string "head"))
(fun () -> Lwt_log.ign_debug_f "No <head> found in document")
(fun head -> Dom.appendChild head b)
let get_global_data () =
let def () = None and id = Js.string "__global_data" in
Js.Optdef.case Dom_html.window##.localStorage def @@ fun storage ->
Js.Opt.case storage ## (getItem id) def @@ fun v ->
Lwt_log.ign_debug_f "Unwrap __global_data";
match Eliom_unwrap.unwrap (Url.decode (Js.to_string v)) 0 with
| {Eliom_runtime.ecs_data = `Success v; _} ->
Lwt_log.ign_debug_f "Unwrap __global_data success";
Some v
| _ -> None
let normalize_app_path p =
let p = Eliom_lib.Url.split_path p in
let p = match p with "" :: p -> p | _ -> p in
match List.rev p with "" :: p -> List.rev p | _ -> p
let init_client_app ~app_name ?(ssl = false) ~hostname ?(port = 80) ~site_dir ()
=
Lwt_log.ign_debug_f "Eliom_client.init_client_app called.";
Eliom_process.appl_name_r := Some app_name;
Eliom_request_info.client_app_initialised := true;
Eliom_process.set_sitedata
{Eliom_types.site_dir; site_dir_string = String.concat "/" site_dir};
Eliom_process.set_info
{ Eliom_common.cpi_ssl = ssl
; cpi_hostname = hostname
; cpi_server_port = port
; cpi_original_full_path = site_dir @ [""] };
Eliom_process.set_request_template None;
Eliom_process.set_request_cookies
(Ocsigen_cookie_map.add ~path:[] Eliom_common.appl_name_cookie_name
(Ocsigen_cookie_map.OSet (None, app_name, false))
Ocsigen_cookie_map.empty);
ignore (get_global_data ())
let is_client_app () = !Eliom_common.is_client_app
let _ =
Eliom_common.is_client_app :=
not (Js.Optdef.test Js.Unsafe.global##.___eliom_appl_process_info_foo)
let onunload_fun _ =
update_state ();
run_callbacks (flush_onunload ());
Js._true
let onbeforeunload_fun _ = run_onbeforeunload ()
let set_base_url () =
Eliom_process.set_base_url
(String.concat ""
[ Js.to_string Dom_html.window##.location##.protocol
; "//"
; Js.to_string Dom_html.window##.location##.host
; Js.to_string Dom_html.window##.location##.pathname ])
let dom_history_ready = ref false
let init () =
(if is_client_app ()
&& Js.Optdef.test Js.Unsafe.global##.___eliom_server_
&& Js.Optdef.test Js.Unsafe.global##.___eliom_app_name_
then
let app_name = Js.to_string Js.Unsafe.global##.___eliom_app_name_
and site_dir =
Js.Optdef.case
Js.Unsafe.global##.___eliom_path_
(fun () -> [])
(fun p -> normalize_app_path (Js.to_string p))
in
match
Url.url_of_string (Js.to_string Js.Unsafe.global##.___eliom_server_)
with
| Some (Http {hu_host; hu_port; _}) ->
init_client_app ~app_name ~ssl:false ~hostname:hu_host ~port:hu_port
~site_dir ()
| Some (Https {hu_host; hu_port; _}) ->
init_client_app ~app_name ~ssl:true ~hostname:hu_host ~port:hu_port
~site_dir ()
| _ -> ());
let js_data = lazy (Eliom_request_info.get_request_data ()) in
Js.Optdef.case
Js.Unsafe.global##.___eliom_global_data_
(fun () ->
ignore (Lazy.force js_data))
(fun global_data ->
ignore (Eliom_unwrap.unwrap_js global_data);
Js.Unsafe.delete Js.Unsafe.global "__eliom_global_data");
set_base_url ();
insert_base Dom_html.document;
Eliommod_cookies.update_cookie_table
(Some (Eliom_process.get_info ()).cpi_hostname)
(Eliom_request_info.get_request_cookies ());
let onload_handler = ref None in
let onload _ev =
let js_data = Lazy.force js_data in
Lwt_log.ign_debug ~section "onload (client main)";
(match !onload_handler with
| Some h ->
Dom.removeEventListener h;
onload_handler := None
| None -> ());
Eliom_client_core.set_initial_load ();
Lwt.async (fun () ->
if !Eliom_config.debug_timings
then Firebug.console ## (time (Js.string "onload"));
let%lwt () =
Eliom_request_info.set_session_info
~uri:
(String.concat "/"
(Eliom_request_info.get_csp_original_full_path ()))
js_data.Eliom_common.ejs_sess_info
@@ fun () -> Lwt.return_unit
in
let%lwt () = Js_of_ocaml_lwt.Lwt_js.sleep 0.001 in
relink_request_nodes Dom_html.document##.documentElement;
let root = Dom_html.document##.documentElement in
let closure_nodeList, attrib_nodeList =
relink_page_but_client_values root
in
do_request_data js_data.Eliom_common.ejs_request_data;
let () =
relink_attribs root js_data.Eliom_common.ejs_client_attrib_table
attrib_nodeList
in
let onload_closure_nodes =
relink_closure_nodes root js_data.Eliom_common.ejs_event_handler_table
closure_nodeList
in
Eliom_client_core.reset_request_nodes ();
Eliommod_dom.add_formdata_hack_onclick_handler ();
if not (is_client_app ()) then dom_history_ready := true;
let load_callbacks =
flush_onload ()
@ [onload_closure_nodes; Eliom_client_core.broadcast_load_end]
in
Lwt_mutex.unlock Eliom_client_core.load_mutex;
run_callbacks load_callbacks;
if !Eliom_config.debug_timings
then Firebug.console ## (timeEnd (Js.string "onload"));
Lwt.return_unit);
Js._false
in
Lwt_log.ign_debug ~section "Set load/onload events";
if Dom_html.document##.readyState = Js.string "complete"
then
Lwt.async @@ fun () ->
let%lwt () = Js_of_ocaml_lwt.Lwt_js_events.request_animation_frame () in
let _ = onload () in
Lwt.return_unit
else
onload_handler :=
Some
(Dom.addEventListener Dom_html.window (Dom.Event.make "load")
(Dom.handler onload) Js._true);
add_string_event_listener Dom_html.window "beforeunload" onbeforeunload_fun
false;
ignore
(Dom.addEventListener Dom_html.window (Dom.Event.make "unload")
(Dom_html.handler onunload_fun)
Js._false)
let create_request__ ?absolute ?absolute_path ?https (type m)
~(service : (_, _, m, _, _, _, _, _, _, _, _) Eliom_service.t) ?hostname
?port ?fragment ?keep_nl_params ?nl_params ?keep_get_na_params get_params
post_params
=
let path, get_params, fragment, post_params =
Eliom_uri.make_post_uri_components__ ?absolute ?absolute_path ?https
~service ?hostname ?port ?fragment ?keep_nl_params ?nl_params
?keep_get_na_params get_params post_params
in
let uri =
Eliom_uri.make_string_uri_from_components (path, get_params, fragment)
in
uri, get_params, post_params
let create_request_ (type m) ?absolute ?absolute_path ?https
~(service : (_, _, m, _, _, _, _, _, _, _, _) Eliom_service.t) ?hostname
?port ?fragment ?keep_nl_params ?nl_params ?keep_get_na_params get_params
post_params
=
match Eliom_service.which_meth service with
| Eliom_service.Get' ->
let ((_, get_params, _) as components) =
Eliom_uri.make_uri_components ?absolute ?absolute_path ?https ~service
?hostname ?port ?fragment ?keep_nl_params ?nl_params get_params
in
let uri = Eliom_uri.make_string_uri_from_components components in
`Get (uri, get_params)
| Eliom_service.Post' ->
`Post
(create_request__ ?absolute ?absolute_path ?https ~service ?hostname
?port ?fragment ?keep_nl_params ?nl_params ?keep_get_na_params
get_params post_params)
| Eliom_service.Put' ->
`Put
(create_request__ ?absolute ?absolute_path ?https ~service ?hostname
?port ?fragment ?keep_nl_params ?nl_params ?keep_get_na_params
get_params post_params)
| Eliom_service.Delete' ->
`Delete
(create_request__ ?absolute ?absolute_path ?https ~service ?hostname
?port ?fragment ?keep_nl_params ?nl_params ?keep_get_na_params
get_params post_params)
let raw_call_service ?absolute ?absolute_path ?https ~service ?hostname ?port
?fragment ?keep_nl_params ?nl_params ?keep_get_na_params ?progress
?upload_progress ?override_mime_type get_params post_params
=
let with_credentials = not (Eliom_service.is_external service) in
let%lwt uri, content =
match
create_request_ ?absolute ?absolute_path ?https ~service ?hostname ?port
?fragment ?keep_nl_params ?nl_params ?keep_get_na_params get_params
post_params
with
| `Get (uri, _) ->
Eliom_request.http_get ~with_credentials
?cookies_info:(Eliom_uri.make_cookies_info (https, service))
uri [] ?progress ?upload_progress ?override_mime_type
Eliom_request.string_result
| `Post (uri, _, post_params) ->
Eliom_request.http_post ~with_credentials
?cookies_info:(Eliom_uri.make_cookies_info (https, service))
?progress ?upload_progress ?override_mime_type uri post_params
Eliom_request.string_result
| `Put (uri, _, post_params) ->
Eliom_request.http_put ~with_credentials
?cookies_info:(Eliom_uri.make_cookies_info (https, service))
?progress ?upload_progress ?override_mime_type uri post_params
Eliom_request.string_result
| `Delete (uri, _, post_params) ->
Eliom_request.http_delete ~with_credentials
?cookies_info:(Eliom_uri.make_cookies_info (https, service))
?progress ?upload_progress ?override_mime_type uri post_params
Eliom_request.string_result
in
match content with
| None -> Lwt.fail (Eliom_request.Failed_request 204)
| Some content -> Lwt.return (uri, content)
let call_service ?absolute ?absolute_path ?https ~service ?hostname ?port
?fragment ?keep_nl_params ?nl_params ?keep_get_na_params ?progress
?upload_progress ?override_mime_type get_params post_params
=
let%lwt _, content =
raw_call_service ?absolute ?absolute_path ?https ~service ?hostname ?port
?fragment ?keep_nl_params ?nl_params ?keep_get_na_params ?progress
?upload_progress ?override_mime_type get_params post_params
in
Lwt.return content
let exit_to ?window_name ?window_features ?absolute ?absolute_path ?https
~service ?hostname ?port ?fragment ?keep_nl_params ?nl_params
?keep_get_na_params get_params post_params
=
match
create_request_ ?absolute ?absolute_path ?https ~service ?hostname ?port
?fragment ?keep_nl_params ?nl_params ?keep_get_na_params get_params
post_params
with
| `Get (uri, _) ->
Eliom_request.redirect_get ?window_name ?window_features uri
| `Post (uri, _, post_params) ->
Eliom_request.redirect_post ?window_name uri post_params
| `Put (uri, _, post_params) ->
Eliom_request.redirect_put ?window_name uri post_params
| `Delete (uri, _, post_params) ->
Eliom_request.redirect_delete ?window_name uri post_params
let window_open ~window_name ?window_features ?absolute ?absolute_path ?https
~service ?hostname ?port ?fragment ?keep_nl_params ?nl_params
?keep_get_na_params get_params
=
match
create_request_ ?absolute ?absolute_path ?https ~service ?hostname ?port
?fragment ?keep_nl_params ?nl_params ?keep_get_na_params get_params ()
with
| `Get (uri, _) ->
Dom_html.window
## (open_ (Js.string uri) window_name (Js.Opt.option window_features))
| `Post (_, _, _) -> assert false
| `Put (_, _, _) -> assert false
| `Delete (_, _, _) -> assert false
let unwrap_caml_content content =
let r : 'a Eliom_runtime.eliom_caml_service_data =
Eliom_unwrap.unwrap (Url.decode content) 0
in
Lwt.return (r.Eliom_runtime.ecs_data, r.Eliom_runtime.ecs_request_data)
let call_ocaml_service ?absolute ?absolute_path ?https ~service ?hostname ?port
?fragment ?keep_nl_params ?nl_params ?keep_get_na_params ?progress
?upload_progress ?override_mime_type get_params post_params
=
Lwt_log.ign_debug ~section "Call OCaml service";
let%lwt _, content =
raw_call_service ?absolute ?absolute_path ?https ~service ?hostname ?port
?fragment ?keep_nl_params ?nl_params ?keep_get_na_params ?progress
?upload_progress ?override_mime_type get_params post_params
in
let%lwt () = Lwt_mutex.lock Eliom_client_core.load_mutex in
Eliom_client_core.set_loading_phase ();
let%lwt content, request_data = unwrap_caml_content content in
do_request_data request_data;
Eliom_client_core.reset_request_nodes ();
let load_callbacks = [Eliom_client_core.broadcast_load_end] in
Lwt_mutex.unlock Eliom_client_core.load_mutex;
run_callbacks load_callbacks;
match content with
| `Success result -> Lwt.return result
| `Failure msg -> Lwt.fail (Eliom_client_value.Exception_on_server msg)
let path_and_args_of_uri uri =
let path_of_string s =
match Url.path_of_path_string s with "." :: path -> path | path -> path
in
match Url.url_of_string uri with
| Some (Url.Http url | Url.Https url) -> url.Url.hu_path, url.Url.hu_arguments
| _ -> (
match try Some (String.index uri '?') with Not_found -> None with
| Some n ->
( path_of_string String.(sub uri 0 n)
, Url.decode_arguments String.(sub uri (n + 1) (length uri - n - 1)) )
| None -> path_of_string uri, [])
let set_current_uri, get_current_uri =
let set_current_uri uri =
let current_uri = fst (Url.split_fragment uri) in
(get_this_page ()).url <- current_uri;
let path, all_get_params = path_and_args_of_uri current_uri in
Lwt.async @@ fun () ->
Eliom_request_info.update_session_info ~path ~all_get_params
~all_post_params:None (fun () -> Lwt.return_unit)
in
let get_current_uri () = (get_this_page ()).url in
set_current_uri, get_current_uri
let current_pseudo_fragment = ref ""
let url_fragment_prefix = "!"
let url_fragment_prefix_with_sharp = "#!"
let reload_function = ref None
let set_reload_function f = reload_function := Some f
let set_max_dist_history_doms limit =
History.max_num_doms := limit;
History.garbage_collect_doms ()
let push_history_dom () =
if !dom_history_ready
then (
let page = !active_page in
let dom =
if !only_replace_body
then Dom_html.document##.body
else Dom_html.document##.documentElement
in
page.dom <- Some dom;
History.garbage_collect_doms ())
module Page_status = struct
include Page_status_t
let signal () =
let p = get_this_page () in
p.page_status
module Events = struct
let changes () = React.S.changes (signal ())
let active () =
changes () |> React.E.fmap @@ function Active -> Some () | _ -> None
let cached () =
changes () |> React.E.fmap @@ function Cached -> Some () | _ -> None
let dead () =
changes () |> React.E.fmap @@ function Dead -> Some () | _ -> None
let inactive () = React.E.select [cached (); dead ()]
end
let maybe_just_once ~once e = if once then React.E.once e else e
let stop_event ?(stop = React.E.never) e =
Dom_reference.retain_generic (get_this_page ()) ~keep:e;
Dom_reference.retain_generic e
~keep:(React.E.map (fun () -> React.E.stop ~strong:true e) stop)
let onactive ?(now = true) ?(once = false) ?stop action =
let on_event () =
stop_event ?stop @@ React.E.map action @@ maybe_just_once ~once
@@ Events.active ()
in
if now && React.S.value (signal ()) = Active
then (
action ();
if not once then on_event ())
else on_event ()
let oncached ?(once = false) ?stop action =
stop_event ?stop @@ React.E.map action @@ maybe_just_once ~once
@@ Events.cached ()
let ondead ?stop action =
stop_event ?stop @@ React.E.map action (Events.dead ())
let oninactive ?(once = false) ?stop action =
stop_event ?stop @@ React.E.map action @@ maybe_just_once ~once
@@ Events.inactive ()
let while_active ?now ?(stop = React.E.never) action =
let thread = ref Lwt.return_unit in
onactive ?now ~stop (fun () -> thread := action ());
oninactive ~stop (fun () -> Lwt.cancel !thread);
Dom_reference.retain_generic (get_this_page ())
~keep:(React.E.map (fun () -> Lwt.cancel !thread) stop)
end
let is_in_cache state_id =
match History.find_by_state_index state_id.state_index with
| Some {dom = Some _; _} -> true
| _ -> false
let stash_reload_function f =
let page = get_this_page () in
let state_id = page.page_id in
let id = state_id.state_index in
Lwt_log.ign_debug_f ~section:section_page "Update reload function for page %d"
id;
page.reload_function <- Some f
let change_url_string ~replace uri =
Lwt_log.ign_debug_f ~section:section_page "Change url string: %s" uri;
let full_uri = if !Eliom_common.is_client_app then uri else Url.resolve uri in
set_current_uri full_uri;
if Eliom_process.history_api
then (
let this_page = get_this_page () in
if replace
then (
Opt.iter stash_reload_function !reload_function;
Dom_html.window##.history##replaceState
(Js.Opt.return
(Js.string
(to_json ~typ:[%json: saved_state] (this_page.page_id, full_uri))))
(Js.string "")
(if !Eliom_common.is_client_app
then Js.null
else Js.Opt.return (Js.string uri)))
else (
update_state ();
Opt.iter stash_reload_function !reload_function;
Dom_html.window##.history##pushState
(Js.Opt.return
(Js.string
(to_json ~typ:[%json: saved_state] (this_page.page_id, full_uri))))
(Js.string "")
(if !Eliom_common.is_client_app
then Js.null
else Js.Opt.return (Js.string uri)));
Eliommod_dom.touch_base ())
else (
current_pseudo_fragment := url_fragment_prefix_with_sharp ^ uri;
if uri <> fst (Url.split_fragment Url.Current.as_string)
then
Dom_html.window##.location##.hash := Js.string (url_fragment_prefix ^ uri))
let change_url ?(replace = false) ?absolute ?absolute_path ?https ~service
?hostname ?port ?fragment ?keep_nl_params ?nl_params params
=
Lwt_log.ign_debug ~section:section_page "Change url";
(reload_function :=
match Eliom_service.xhr_with_cookies service with
| None
when (https = Some true && not Eliom_request_info.ssl_)
|| (https = Some false && Eliom_request_info.ssl_) ->
None
| Some (Some _ as t) when t = Eliom_request_info.get_request_template () ->
None
| _ -> (
match Eliom_service.reload_fun service with
| Some rf -> Some (fun () () -> rf params ())
| None -> None));
change_url_string ~replace
(Eliom_uri.make_string_uri ?absolute ?absolute_path ?https ~service
?hostname ?port ?fragment ?keep_nl_params ?nl_params params)
let set_template_content ~replace ~uri ?fragment =
let really_set content () =
reload_function := None;
(match fragment with
| None -> change_url_string ~replace uri
| Some fragment -> change_url_string ~replace (uri ^ "#" ^ fragment));
let%lwt () = Lwt_mutex.lock Eliom_client_core.load_mutex in
let%lwt (), request_data = unwrap_caml_content content in
do_request_data request_data;
Eliom_client_core.reset_request_nodes ();
let load_callbacks = flush_onload () in
Lwt_mutex.unlock Eliom_client_core.load_mutex;
run_callbacks load_callbacks;
Lwt.return_unit
and cancel () = Lwt.return_unit in
function
| None -> Lwt.return_unit
| Some content -> run_onunload_wrapper (really_set content) cancel
let set_uri ~replace ?fragment uri =
match fragment with
| None -> change_url_string ~replace uri
| Some fragment -> change_url_string ~replace (uri ^ "#" ^ fragment)
let replace_page ~do_insert_base new_page =
if !Eliom_config.debug_timings
then Firebug.console ## (time (Js.string "replace_page"));
if !only_replace_body
then
let new_body = new_page ##. childNodes ## (item 1) in
Js.Opt.iter new_body (fun new_body ->
Dom.replaceChild
Dom_html.document##.documentElement
new_body Dom_html.document##.body)
else (
if do_insert_base then insert_base new_page;
Dom.replaceChild Dom_html.document new_page
Dom_html.document##.documentElement);
if !Eliom_config.debug_timings
then Firebug.console ## (timeEnd (Js.string "replace_page"))
let set_content_local ?offset ?fragment new_page =
Lwt_log.ign_debug ~section:section_page "Set content local";
let locked = ref true in
let recover () =
if !locked then Lwt_mutex.unlock Eliom_client_core.load_mutex;
if !Eliom_config.debug_timings
then Firebug.console ## (timeEnd (Js.string "set_content_local"))
and really_set () =
let preloaded_css =
if !only_replace_body
then Lwt.return_unit
else Eliommod_dom.preload_css new_page
in
let%lwt () = preloaded_css in
replace_page ~do_insert_base:true new_page;
Eliommod_dom.add_formdata_hack_onclick_handler ();
dom_history_ready := true;
let load_callbacks =
flush_onload () @ [Eliom_client_core.broadcast_load_end]
in
locked := false;
Lwt_mutex.unlock Eliom_client_core.load_mutex;
Page_status.onactive ~once:true (fun () -> run_callbacks load_callbacks);
scroll_to_fragment ?offset fragment;
advance_page ();
if !Eliom_config.debug_timings
then Firebug.console ## (timeEnd (Js.string "set_content_local"));
Lwt.return_unit
in
let cancel () = recover (); Lwt.return_unit in
try%lwt
let%lwt () = Lwt_mutex.lock Eliom_client_core.load_mutex in
Eliom_client_core.set_loading_phase ();
if !Eliom_config.debug_timings
then Firebug.console ## (time (Js.string "set_content_local"));
run_onunload_wrapper really_set cancel
with exn ->
recover ();
Lwt_log.ign_debug ~section ~exn "set_content_local";
Lwt.fail exn
let set_content ~replace ~uri ?offset ?fragment content =
Lwt_log.ign_debug ~section:section_page "Set content";
let target_uri = uri in
let%lwt () =
run_lwt_callbacks
{ in_cache = is_in_cache !active_page.page_id
; origin_uri = get_current_uri ()
; target_uri
; origin_id = !active_page.page_id.state_index
; target_id = None }
(flush_onchangepage ())
in
match content with
| None -> Lwt.return_unit
| Some content -> (
let locked = ref true in
let really_set () =
reload_function := None;
set_uri ~replace ?fragment uri;
let fake_page =
Eliommod_dom.html_document content
Eliom_client_core.registered_process_node
in
let preloaded_css =
if !only_replace_body
then Lwt.return_unit
else Eliommod_dom.preload_css fake_page
in
relink_request_nodes fake_page;
load_data_script fake_page;
let cookies = Eliom_request_info.get_request_cookies () in
let js_data = Eliom_request_info.get_request_data () in
let host =
match Url.url_of_string uri with
| Some (Url.Http url) | Some (Url.Https url) -> Some url.Url.hu_host
| _ -> None
in
Eliommod_cookies.update_cookie_table host cookies;
let%lwt () = preloaded_css in
let closure_nodeList, attrib_nodeList =
relink_page_but_client_values fake_page
in
Eliom_request_info.set_session_info ~uri
js_data.Eliom_common.ejs_sess_info
@@ fun () ->
replace_page ~do_insert_base:false fake_page;
do_request_data js_data.Eliom_common.ejs_request_data;
let () =
relink_attribs
Dom_html.document##.documentElement
js_data.Eliom_common.ejs_client_attrib_table attrib_nodeList
in
let onload_closure_nodes =
relink_closure_nodes
Dom_html.document##.documentElement
js_data.Eliom_common.ejs_event_handler_table closure_nodeList
in
Eliom_client_core.reset_request_nodes ();
Eliommod_dom.add_formdata_hack_onclick_handler ();
dom_history_ready := true;
locked := false;
let load_callbacks =
flush_onload ()
@ [onload_closure_nodes; Eliom_client_core.broadcast_load_end]
in
Lwt_mutex.unlock Eliom_client_core.load_mutex;
run_callbacks load_callbacks;
scroll_to_fragment ?offset fragment;
advance_page ();
if !Eliom_config.debug_timings
then Firebug.console ## (timeEnd (Js.string "set_content"));
Lwt.return_unit
and recover () =
if !locked then Lwt_mutex.unlock Eliom_client_core.load_mutex;
if !Eliom_config.debug_timings
then Firebug.console ## (timeEnd (Js.string "set_content"))
in
try%lwt
let%lwt () = Lwt_mutex.lock Eliom_client_core.load_mutex in
Eliom_client_core.set_loading_phase ();
if !Eliom_config.debug_timings
then Firebug.console ## (time (Js.string "set_content"));
let g () = recover (); Lwt.return_unit in
run_onunload_wrapper really_set g
with exn ->
recover ();
Lwt_log.ign_debug ~section ~exn "set_content";
Lwt.fail exn)
let ocamlify_params =
List.map (function v, `String s -> v, Js.to_string s | _, _ -> assert false)
let make_uri subpath params =
let base =
if is_client_app ()
then match subpath with _ :: _ -> String.concat "/" subpath | [] -> "/"
else
let path =
match subpath with _ :: _ -> String.concat "/" subpath | [] -> ""
and port =
match Url.Current.port with
| Some port -> Printf.sprintf ":%d" port
| None -> ""
in
Printf.sprintf "%s//%s%s/%s" Url.Current.protocol Url.Current.host port
path
and params = List.map (fun (s, s') -> s, `String (Js.string s')) params in
Eliom_uri.make_string_uri_from_components (base, params, None)
let route ({Eliom_route.i_subpath; i_get_params; i_post_params; _} as info) =
Lwt_log.ign_debug ~section:section_page "Route";
let info, i_subpath =
match i_subpath with
| ["."; ""] -> {info with i_subpath = []}, []
| i_subpath -> info, i_subpath
in
let uri = make_uri i_subpath i_get_params in
Eliom_request_info.update_session_info ~path:i_subpath
~all_get_params:i_get_params ~all_post_params:(Some i_post_params)
@@ fun () ->
let%lwt result =
Eliom_route.call_service
{ info with
Eliom_route.i_get_params =
Eliom_common.(remove_prefixed_param nl_param_prefix) i_get_params }
in
Lwt.return (uri, result)
let switch_to_https () =
let info = Eliom_process.get_info () in
Eliom_process.set_info {info with Eliom_common.cpi_ssl = true}
let string_of_result result =
match result with
| Eliom_service.No_contents -> "No_contents"
| Dom _ -> "Dom"
| Redirect _ -> "Redirect"
| Reload_action {hidden; https} ->
let values =
match hidden, https with
| false, false -> "false, false"
| false, true -> "false, true"
| true, false -> "true, false"
| true, true -> "true, true"
in
"Reload_action with hidden and https as " ^ values
let rec handle_result ~replace ~uri result =
let%lwt result = result in
Lwt_log.ign_debug ~section:section_page
("handle_result: result is " ^ string_of_result result);
match result with
| Eliom_service.No_contents -> Lwt.return_unit
| Dom d ->
change_url_string ~replace uri;
set_content_local d
| Redirect service -> change_page ~replace ~service () ()
| Reload_action {hidden; https} -> (
match hidden, https with
| false, false ->
reload_without_na_params ~replace ~uri
~fallback:Eliom_service.reload_action
| false, true ->
switch_to_https ();
reload_without_na_params ~replace ~uri
~fallback:Eliom_service.reload_action_https
| true, false ->
reload ~replace ~uri ~fallback:Eliom_service.reload_action_hidden
| true, true ->
switch_to_https ();
reload ~replace ~uri ~fallback:Eliom_service.reload_action_https_hidden)
and change_page :
'get 'post 'meth 'attached 'co 'ext 'reg 'tipo 'gn 'pn.
?ignore_client_fun:bool
-> ?replace:bool
-> ?window_name:string
-> ?window_features:string
-> ?absolute:bool
-> ?absolute_path:bool
-> ?https:bool
-> service:
( 'get
, 'post
, 'meth
, 'attached
, 'co
, 'ext
, 'reg
, 'tipo
, 'gn
, 'pn
, Eliom_service.non_ocaml )
Eliom_service.t
-> ?hostname:string
-> ?port:int
-> ?fragment:string
-> ?keep_nl_params:[`All | `None | `Persistent]
-> ?nl_params:Eliom_parameter.nl_params_set
-> ?keep_get_na_params:bool
-> ?progress:(int -> int -> unit)
-> ?upload_progress:(int -> int -> unit)
-> ?override_mime_type:string
-> 'get
-> 'post
-> unit Lwt.t
=
fun (type m)
?(ignore_client_fun = false)
?(replace = false)
?window_name
?window_features
?absolute
?absolute_path
?https
~(service : (_, _, m, _, _, _, _, _, _, _, _) Eliom_service.t)
?hostname
?port
?fragment
?keep_nl_params
?(nl_params = Eliom_parameter.empty_nl_params_set)
?keep_get_na_params
?progress
?upload_progress
?override_mime_type
get_params
post_params ->
Lwt_log.ign_debug ~section:section_page "Change page";
let xhr = Eliom_service.xhr_with_cookies service in
if xhr = None
|| (https = Some true && not Eliom_request_info.ssl_)
|| (https = Some false && Eliom_request_info.ssl_)
|| (window_name <> None && window_name <> Some "_self")
then
let () =
Lwt_log.ign_debug ~section:section_page "change page: xhr is None"
in
Lwt.return
(exit_to ?window_name ?window_features ?absolute ?absolute_path ?https
~service ?hostname ?port ?fragment ?keep_nl_params ~nl_params
?keep_get_na_params get_params post_params)
else
with_progress_cursor
(match xhr with
| Some (Some tmpl as t)
when t = Eliom_request_info.get_request_template () ->
Lwt_log.ign_debug ~section:section_page
"change page: xhr is Some of get request template";
let nl_params =
Eliom_parameter.add_nl_parameter nl_params Eliom_request.nl_template
tmpl
in
let%lwt uri, content =
raw_call_service ?absolute ?absolute_path ?https ~service ?hostname
?port ?fragment ?keep_nl_params ~nl_params ?keep_get_na_params
?progress ?upload_progress ?override_mime_type get_params
post_params
in
set_template_content ~replace ~uri ?fragment (Some content)
| _ -> (
match Eliom_service.client_fun service with
| Some f when not ignore_client_fun ->
Lwt_log.ign_debug ~section:section_page
"change page: client_fun service is Some and (not ignore_client_fun)";
Eliom_lib.Option.iter
(fun rf -> reload_function := Some (fun () -> rf get_params))
(Eliom_service.reload_fun service);
let uri, l, l' =
match
create_request_ ~absolute:true ?absolute_path ?https ~service
?hostname ?port ?fragment ?keep_nl_params ~nl_params
?keep_get_na_params get_params post_params
with
| `Get (uri, l) -> uri, l, None
| `Post (uri, l, l') | `Put (uri, l, l') | `Delete (uri, l, l') ->
uri, l, Some (ocamlify_params l')
in
let l = ocamlify_params l in
Eliom_request_info.update_session_info
~path:(Url.path_of_url_string uri)
~all_get_params:l ~all_post_params:l'
@@ fun () ->
let%lwt () =
run_lwt_callbacks
{ in_cache = is_in_cache !active_page.page_id
; origin_uri = get_current_uri ()
; target_uri = uri
; origin_id = !active_page.page_id.state_index
; target_id = None }
(flush_onchangepage ())
in
with_new_page ~replace () @@ fun () ->
handle_result ~replace ~uri (f get_params post_params)
| None when is_client_app () ->
Lwt_log.ign_debug ~section:section_page
"change page: client_fun service is None and is_client_app";
Lwt.return
@@ exit_to ?absolute ?absolute_path ?https ~service ?hostname ?port
?fragment ?keep_nl_params ~nl_params ?keep_get_na_params
get_params post_params
| _ ->
Lwt_log.ign_debug ~section:section_page
"change page: client_fun service is anything else";
if is_client_app ()
then
failwith
(Printf.sprintf "change page: no client-side service (%b)"
ignore_client_fun);
with_new_page ~replace () @@ fun () ->
reload_function := None;
let cookies_info = Eliom_uri.make_cookies_info (https, service) in
let%lwt uri, content =
match
create_request_ ?absolute ?absolute_path ?https ~service
?hostname ?port ?fragment ?keep_nl_params ~nl_params
?keep_get_na_params get_params post_params
with
| `Get (uri, _) ->
Eliom_request.http_get ~expecting_process_page:true
?cookies_info uri [] Eliom_request.xml_result
| `Post (uri, _, p) ->
Eliom_request.http_post ~expecting_process_page:true
?cookies_info uri p Eliom_request.xml_result
| `Put (uri, _, p) ->
Eliom_request.http_put ~expecting_process_page:true
?cookies_info uri p Eliom_request.xml_result
| `Delete (uri, _, p) ->
Eliom_request.http_delete ~expecting_process_page:true
?cookies_info uri p Eliom_request.xml_result
in
let uri, fragment = Url.split_fragment uri in
set_content ~replace ~uri ?fragment content))
and change_page_unknown ?meth ?hostname:_ ?(replace = false) i_subpath
i_get_params i_post_params
=
Lwt_log.ign_debug ~section:section_page "Change page unknown";
let i_sess_info = Eliom_request_info.get_sess_info ()
and i_meth =
match meth, i_post_params with
| Some meth, _ ->
(meth : [`Get | `Post | `Put | `Delete] :> Eliom_common.meth)
| None, [] -> `Get
| _, _ -> `Post
in
with_new_page ~replace () @@ fun () ->
let%lwt uri, result =
route
{Eliom_route.i_sess_info; i_subpath; i_meth; i_get_params; i_post_params}
in
handle_result ~replace ~uri (Lwt.return result)
and reload ~replace ~uri ~fallback =
Lwt_log.ign_debug ~section:section_page "reload";
let path, args = path_and_args_of_uri uri in
try%lwt change_page_unknown ~replace path args []
with _ ->
change_page ~replace ~ignore_client_fun:true ~service:fallback () ()
and reload_without_na_params ~replace ~uri ~fallback =
let path, args = path_and_args_of_uri uri in
let args = Eliom_common.remove_na_prefix_params args in
Lwt_log.ign_debug ~section:section_page "reload_without_na_params";
try%lwt change_page_unknown ~replace path args []
with _ ->
change_page ~replace ~ignore_client_fun:true ~service:fallback () ()
let change_page_uri_a ?cookies_info ?tmpl ?(get_params = []) full_uri =
Lwt_log.ign_debug ~section:section_page "Change page uri";
with_progress_cursor
(let uri, fragment = Url.split_fragment full_uri in
if uri <> get_current_uri () || fragment = None
then (
if is_client_app ()
then failwith "Change_page_uri_a called on client app";
match tmpl with
| Some t when tmpl = Eliom_request_info.get_request_template () ->
let%lwt uri, content =
Eliom_request.http_get ?cookies_info uri
((Eliom_request.nl_template_string, t) :: get_params)
Eliom_request.string_result
in
set_template_content ~replace:false ~uri ?fragment content
| _ ->
let%lwt uri, content =
Eliom_request.http_get ~expecting_process_page:true ?cookies_info
uri get_params Eliom_request.xml_result
in
set_content ~replace:false ~uri ?fragment content)
else (
change_url_string ~replace:true full_uri;
scroll_to_fragment fragment;
Lwt.return_unit))
let change_page_uri ?replace full_uri =
Lwt_log.ign_debug ~section:section_page "Change page uri";
try%lwt
match Url.url_of_string full_uri with
| Some (Url.Http url | Url.Https url) ->
Lwt_log.ign_debug ~section:section_page
"change page uri: url is http or https";
change_page_unknown ?replace url.Url.hu_path url.Url.hu_arguments []
| _ -> failwith "invalid url"
with _ ->
if is_client_app ()
then
failwith
(Printf.sprintf "Change page uri: can't find service for %s" full_uri)
else (
Lwt_log.ign_debug ~section "Change page uri: resort to server";
change_page_uri_a full_uri)
let change_page_get_form ?cookies_info ?tmpl form full_uri =
with_progress_cursor
(let form = Js.Unsafe.coerce form in
let uri, fragment = Url.split_fragment full_uri in
match tmpl with
| Some t when tmpl = Eliom_request_info.get_request_template () ->
let%lwt uri, content =
Eliom_request.send_get_form
~get_args:[Eliom_request.nl_template_string, t]
?cookies_info form uri Eliom_request.string_result
in
set_template_content ~replace:false ~uri ?fragment content
| _ ->
let%lwt uri, content =
Eliom_request.send_get_form ~expecting_process_page:true
?cookies_info form uri Eliom_request.xml_result
in
set_content ~replace:false ~uri ?fragment content)
let change_page_post_form ?cookies_info ?tmpl form full_uri =
with_progress_cursor
(let form = Js.Unsafe.coerce form in
let uri, fragment = Url.split_fragment full_uri in
match tmpl with
| Some t when tmpl = Eliom_request_info.get_request_template () ->
let%lwt uri, content =
Eliom_request.send_post_form
~get_args:[Eliom_request.nl_template_string, t]
?cookies_info form uri Eliom_request.string_result
in
set_template_content ~replace:false ~uri ?fragment content
| _ ->
let%lwt uri, content =
Eliom_request.send_post_form ~expecting_process_page:true
?cookies_info form uri Eliom_request.xml_result
in
set_content ~replace:false ~uri ?fragment content)
let _ =
(Eliom_client_core.change_page_uri_ :=
fun ?cookies_info ?tmpl href ->
Lwt.ignore_result (change_page_uri_a ?cookies_info ?tmpl href));
(Eliom_client_core.change_page_get_form_ :=
fun ?cookies_info ?tmpl form href ->
Lwt.ignore_result (change_page_get_form ?cookies_info ?tmpl form href));
Eliom_client_core.change_page_post_form_ :=
fun ?cookies_info ?tmpl form href ->
Lwt.ignore_result (change_page_post_form ?cookies_info ?tmpl form href)
let restore_history_dom id =
match History.find_by_state_index id with
| Some page ->
(match page.dom with
| Some dom ->
if !only_replace_body
then
Dom.replaceChild
Dom_html.document##.documentElement
dom Dom_html.document##.body
else
Dom.replaceChild Dom_html.document dom
Dom_html.document##.documentElement
| None -> Lwt_log.ign_error ~section "DOM not actually cached");
set_active_page page
| _ -> Lwt_log.ign_error ~section "cannot find DOM in history"
let wait_load_end = Eliom_client_core.wait_load_end
let () =
if Eliom_process.history_api
then (
let revisit full_uri state_id =
let state =
try get_state state_id
with Not_found ->
failwith
(Printf.sprintf
"revisit: state id %x/%x not found in sessionStorage (%s)"
state_id.session_id state_id.state_index full_uri)
in
let target_id = state_id.state_index in
let ev =
{ in_cache = is_in_cache state_id
; origin_uri = get_current_uri ()
; target_uri = full_uri
; origin_id = !active_page.page_id.state_index
; target_id = Some target_id }
in
let tmpl = state.template in
Lwt.ignore_result @@ with_progress_cursor
@@
let uri, fragment = Url.split_fragment full_uri in
if uri = get_current_uri ()
then (
Lwt_log.ign_debug ~section:section_page "revisit: uri = get_current_uri";
!active_page.page_id <- state_id;
scroll_to_fragment ~offset:state.position fragment;
Lwt.return_unit)
else
try
Lwt_log.ign_debug ~section:section_page
"revisit: uri != get_current_uri";
if not (is_in_cache state_id) then raise Not_found;
let%lwt () = run_lwt_callbacks ev (flush_onchangepage ()) in
restore_history_dom target_id;
set_current_uri uri;
let%lwt () =
Js_of_ocaml_lwt.Lwt_js_events.request_animation_frame ()
in
scroll_to_fragment ~offset:state.position fragment;
let%lwt () =
Js_of_ocaml_lwt.Lwt_js_events.request_animation_frame ()
in
scroll_to_fragment ~offset:state.position fragment;
Lwt.return_unit
with Not_found -> (
let session_changed = state_id.session_id <> session_id in
if session_changed && is_client_app ()
then
failwith
(Printf.sprintf
"revisit: session changed on client: %d => %d (%s)"
state_id.session_id session_id full_uri);
try
if session_changed then raise Not_found;
Lwt_log.ign_debug ~section:section_page
"revisit: session has not changed";
let old_page = History.find_by_state_index state_id.state_index in
let rf =
Option.bind old_page @@ fun {reload_function = rf; _} -> rf
in
match rf with
| None -> raise Not_found
| Some f ->
reload_function := rf;
let%lwt () = run_lwt_callbacks ev (flush_onchangepage ()) in
with_new_page ~state_id ?old_page ~replace:false () @@ fun () ->
set_current_uri uri;
History.replace (get_this_page ());
let%lwt () =
match%lwt f () () with
| Eliom_service.Dom d -> set_content_local d
| r ->
handle_result ~uri:(get_current_uri ()) ~replace:true
(Lwt.return r)
in
scroll_to_fragment ~offset:state.position fragment;
Lwt.return_unit
with Not_found -> (
set_current_uri uri;
match tmpl with
| Some t when tmpl = Eliom_request_info.get_request_template () ->
Lwt_log.ign_debug ~section:section_page
"revisit: template is Some and equals to get_request_template";
let%lwt uri, content =
Eliom_request.http_get uri
[Eliom_request.nl_template_string, t]
Eliom_request.string_result
in
let%lwt () = set_template_content content ~replace:true ~uri in
scroll_to_fragment ~offset:state.position fragment;
Lwt.return_unit
| _ ->
if is_client_app ()
then
failwith
(Printf.sprintf
"revisit: could not generate page client-side (%s)"
full_uri);
Lwt_log.ign_debug ~section:section_page
"revisit: template is anything else";
with_new_page
?state_id:(if session_changed then None else Some state_id)
~replace:false ()
@@ fun () ->
let%lwt uri, content =
Eliom_request.http_get ~expecting_process_page:true uri []
Eliom_request.xml_result
in
let%lwt () =
set_content ~uri ~replace:true ~offset:state.position
?fragment content
in
Lwt.return_unit))
in
let revisit_wrapper full_uri state_id =
Lwt_log.ign_debug ~section:section_page "revisit_wrapper";
let f () = update_state (); revisit full_uri state_id
and cancel () = () in
run_onunload_wrapper f cancel
in
Lwt.ignore_result
(let%lwt () = wait_load_end () in
Lwt_log.ign_debug ~section:section_page "revisit_wrapper: replaceState";
Dom_html.window ##. history
## (replaceState
(Js.Opt.return
(Js.string
(to_json ~typ:[%json: saved_state]
( !active_page.page_id
, Js.to_string Dom_html.window##.location##.href ))))
(Js.string "") Js.null);
Lwt.return_unit);
Dom_html.window##.onpopstate
:= Dom_html.handler (fun event ->
Lwt_log.ign_debug ~section:section_page "revisit_wrapper: onpopstate";
Eliommod_dom.touch_base ();
Js.Opt.case
((Js.Unsafe.coerce event)##.state : _ Js.opt)
(fun () -> () )
(fun saved_state ->
let state, full_uri =
of_json ~typ:[%json: saved_state] (Js.to_string saved_state)
in
revisit_wrapper full_uri state);
Js._false))
else
let read_fragment () = Js.to_string Dom_html.window##.location##.hash in
let auto_change_page fragment =
Lwt.ignore_result
(let l = String.length fragment in
if l = 0 || (l > 1 && fragment.[1] = '!')
then
if fragment <> !current_pseudo_fragment
then (
current_pseudo_fragment := fragment;
let uri =
match l with
| 2 -> "./"
| 0 | 1 -> fst (Url.split_fragment Url.Current.as_string)
| _ -> String.sub fragment 2 (String.length fragment - 2)
in
Lwt_log.ign_debug ~section:section_page "auto_change_page";
change_page_uri uri)
else Lwt.return_unit
else Lwt.return_unit)
in
Eliommod_dom.onhashchange (fun s -> auto_change_page (Js.to_string s));
let first_fragment = read_fragment () in
if first_fragment <> !current_pseudo_fragment
then
Lwt.ignore_result
(let%lwt () = wait_load_end () in
auto_change_page first_fragment;
Lwt.return_unit)
let () =
Eliom_unwrap.register_unwrapper
(Eliom_unwrap.id_of_int Eliom_common_base.server_function_unwrap_id_int)
(fun (service, _) ->
call_ocaml_service ~absolute:true ~service ())
let get_application_name = Eliom_process.get_application_name
let set_client_html_file = Eliom_common.set_client_html_file
let middleClick = Eliom_client_core.middleClick
type client_form_handler = Eliom_client_core.client_form_handler