Source file sourceview.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
(** Source views *)
module B = Stk.Textbuffer
open Stk.Misc
let _ = Sourceview_rc.read ();;
let _ = Sourceview_rc.write ();;
let factory_name = Sourceview_rc.factory_name
let get_att name l = List.assoc_opt name l
let get_att_f ?default f name l =
match get_att name l with
None -> default
| Some s -> Some (f s)
;;
(** {2 Languages} *)
let lang_of_filename filename =
try
let (_,mime) =
List.find
(fun (re,_) ->
let re = Str.regexp re in
Str.string_match re filename 0
)
(Ocf.get Sourceview_rc.filename_language_patterns)
in
Some mime
with
Not_found ->
None
let () =
let l = [
["text/x-ocaml"], "ocaml" ;
["text/xml"; "text/html"; "text/xhtml"], "xml" ;
["text/x-dot"], "dot" ;
["text/x-json"], "json" ;
]
in
let f (mimes, lexer_name) =
match Higlo.Lang.get_lexer lexer_name with
| exception e -> Log.warn (fun m -> m "%s" (Printexc.to_string e))
| lexer ->
List.iter (fun mime -> Higlo.Lang.register_lang mime lexer) mimes
in
List.iter f l
(** {2 Utilities} *)
let utf8_of_filename ?(full=false) f =
Misc.filename_to_utf8 (if full then f else Filename.basename f)
type location =
Linechar of int * int
| Linechars of int * (int * int)
| Char of int
| Chars of int * int
let location_of_string s =
try
let f a b c = Linechars (a, (b, c)) in
Some (Scanf.sscanf s "%d,%d-%d" f)
with
_ ->
try let f a b = Linechar(a,b) in Some (Scanf.sscanf s "%d,%d" f)
with _ ->
try let f a b = Chars(a,b) in Some (Scanf.sscanf s "%d-%d" f)
with _ ->
try Some (Char(Misc.my_int_of_string s))
with _ -> None
;;
let string_of_location = function
Linechar (l, c) -> Printf.sprintf "%d,%d" l c
| Linechars (l, (c1,c2)) -> Printf.sprintf "%d,%d-%d" l c1 c2
| Char c -> string_of_int c
| Chars (c1,c2) -> Printf.sprintf "%d-%d" c1 c2
;;
let string_of_line_char (l,c) = Printf.sprintf "%d,%d" l c
let line_char_of_location b = function
None -> (0, 0)
| Some (Linechar (l,c)) -> (l,c)
| Some (Linechars (l,(c,_))) -> (l,c)
| Some (Char c)
| Some (Chars (c,_)) -> B.line_char_of_offset b c
(** {2 Bookmarks} *)
let bookmarks = Bookmarks.create_from_ocf_wrappers
~doc: "Sourceviews bookmarks"
Ocf.Wrapper.(triple string int int);;
let _ = Bookmarks.load bookmarks Sourceview_rc.bookmarks_rc_file;;
let store_bookmarks () =
Bookmarks.store bookmarks Sourceview_rc.bookmarks_rc_file;;
(** {2 Saving and loading open buffers} *)
let open_buffers_file =
ref (Config.local_dir_rc_file (factory_name^".buffers"))
let xml_of_file f =
let atts = (("","file"), f#filename) ::
(List.map (fun (a, v) -> (("",a), v)) f#attributes)
in
Xml.E ((("","file"), atts), [])
let xml_of_file_list l =
Xml.E ((("","list"), []), List.map xml_of_file l)
let file_of_xml = function
Xml.E ((("","file"), atts), _) ->
begin
match List.partition (fun ((_,s),_) -> s = "file") atts with
((_,filename) :: _), others ->
Some (filename, List.map (fun ((_,s),v) -> (s, v)) others)
| _ -> None
end
| _ -> None
let file_list_of_xml = function
Xml.E ((("","list"), _), l) ->
List.rev
(List.fold_left
(fun acc xml ->
match file_of_xml xml with
None -> acc
| Some f -> f :: acc
)
[]
l
)
| _ -> []
let read_open_buffers_file f =
Xml.read_xml_file ~strip: true f file_list_of_xml
let write_open_buffers_file file buffers =
let xml = xml_of_file_list buffers in
let s = Xml.string_of_xml xml in
Misc.file_of_string ~file s
;;
(** {2 Recently used buffers} *)
let buffer_name_history = ref []
let remove_buffer_from_history name =
buffer_name_history := List.filter ((<>) name) !buffer_name_history
let make_buffer_first_in_history name =
remove_buffer_from_history name;
buffer_name_history := name :: !buffer_name_history
;;
let rename_buffer_in_history oldname newname =
buffer_name_history := List.map
(fun s -> if s = oldname then newname else s)
!buffer_name_history
(** {2 The history of pastable text} *)
let pastable_history = Minibuffer.history ()
(** {2 The buffer, using GtkSourceView.source_buffer} *)
type view_cbs = {
on_cursor_moved : Stk.Events.callback_id ;
on_modified_changed : Stk.Events.callback_id ;
on_source_language_changed : Stk.Events.callback_id ;
}
module IMap = Stk.Misc.IMap
class my_buffer buffer =
object(self)
method buffer = buffer
val mutable view_cbs = IMap.empty
method disconnect_view view_id =
match IMap.find_opt view_id view_cbs with
| None -> ()
| Some c ->
List.iter (fun id -> B.disconnect buffer id)
[ c.on_cursor_moved ;
c.on_modified_changed ;
c.on_source_language_changed ;
]
method connect_view view_id ~on_cursor_moved ~on_modified_changed
~on_source_language_changed =
self#disconnect_view view_id ;
let on_cursor_moved = B.connect buffer B.Cursor_moved on_cursor_moved in
let on_modified_changed = B.connect buffer B.Modified_changed on_modified_changed in
let on_source_language_changed = B.connect buffer B.Source_language_changed
on_source_language_changed
in
view_cbs <- IMap.add view_id
{ on_cursor_moved ;
on_modified_changed ;
on_source_language_changed ;
} view_cbs
method set_syntax_mode lang = B.set_source_language buffer lang
method syntax_mode = B.source_language buffer
method text ?(start=0) ?size () = B.to_string ~start ?size buffer
method private pcre_offset_tuple_to_char_indices text (start,stop) =
let len1 = Stk.Utf8.length (String.sub text 0 start) in
(len1, len1 + Stk.Utf8.length (String.sub text start (stop-start)))
method private re_search_backward re text =
let res = Pcre.exec_all ~rex: re text in
let len = Array.length res in
if len > 0 then
try Pcre.get_substring_ofs res.(len-1) 0
with Invalid_argument _ -> raise Not_found
else
raise Not_found
method private re_search_forward re text =
let res = Pcre.exec ~rex: re text in
try Pcre.get_substring_ofs res 0
with Invalid_argument _ -> raise Not_found
method re_search forward ?(start=0) ?(stop=B.size buffer) re =
try
let size = stop - start in
let text = B.to_string ~start ~size buffer in
let f = if forward then self#re_search_forward else self#re_search_backward in
let (char_start, char_end) = self#pcre_offset_tuple_to_char_indices text (f re text) in
let (char_start, char_end) = (char_start + start, char_end + start) in
Some (Stk.Rope.range ~start:char_start ~size:(char_end - char_start))
with
Not_found ->
None
end
(** {2 Modes} *)
class type mode =
object
method name : string
method key_bindings : (Stk.Key.keystate list * string) list
method menus : (string * Stk.Menu.menu_entry list) list
method to_display : string -> string
method from_display : string -> string
method set_to_display : (string -> string) -> unit
method set_from_display : (string -> string) -> unit
method word_re : string
end
class empty_mode : mode =
object
val mutable to_display = fun s -> s
val mutable from_display = fun s -> s
method name = "empty mode"
method key_bindings = []
method menus = []
method to_display s = to_display s
method from_display s = from_display s
method set_to_display f = to_display <- f
method set_from_display f = from_display <- f
method word_re = "[a-zA-Z0-9]+"
end
let available_modes = Hashtbl.create 37
let register_mode ?(replace=false) m =
try
ignore(Hashtbl.find available_modes m#name);
if replace then
Hashtbl.replace available_modes m#name m
else
failwith (Printf.sprintf "Mode %s already registered." m#name)
with
Not_found ->
Hashtbl.add available_modes m#name m
let get_mode name =
try Hashtbl.find available_modes name
with Not_found -> failwith (Printf.sprintf "Mode %s unknown." name)
let available_mode_names () =
Hashtbl.fold (fun name _ acc -> name :: acc) available_modes []
;;
(** {2 Associating [buffered_files] and [modes]} *)
let mode_name_of_filename filename =
try
let (_,mode_name) =
List.find
(fun (re,_) ->
let re = Str.regexp re in
Str.string_match re filename 0
)
(Ocf.get Sourceview_rc.filename_mode_patterns)
in
Some mode_name
with
Not_found ->
None
let mode_of_filename file =
match mode_name_of_filename file with
None -> None
| Some name ->
try Some (get_mode name)
with Failure s ->
Misc.error_message s;
None
;;
(** {2 A buffer associated to a file} *)
exception Newer_file_exists of string
class buffered_file ?(attributes=[]) ?(xmls=[]) ?loc ~name ~filename (buffer:my_buffer) =
let enc =
match get_att "encoding" attributes with
None -> Some (Ocf.get Core_rc.encoding)
| Some "" -> None
| Some s -> Some s
in
let mode =
try
match get_att "mode" attributes with
None -> mode_of_filename filename
| Some m -> Some (get_mode m)
with Failure s -> Misc.error_message s; None
in
let stxmode =
match get_att "stxmode" attributes with
| None
| Some "" -> lang_of_filename filename
| Some s -> Some s
in
object(self)
val mutable name : string = name
method name = name
method set_name s = name <- s
val mutable filename : string = filename
method filename = filename
method set_filename f = filename <- f
val buffer : my_buffer = buffer
method buffer = buffer
method attributes =
let atts =
[
"encoding", (match self#encoding with None -> "" | Some s -> s) ;
"mode", (match self#mode with None -> "" | Some m -> m#name) ;
"stxmode", (match self#syntax_mode with None -> "" | Some s -> s) ;
]
in
let b = buffer#buffer in
match B.last_used_cursor b with
| None -> atts
| Some c ->
let (line,char) = B.(line_char_of_offset b (cursor_offset b c)) in
("location", string_of_line_char (line,char)) :: atts
val mutable date = None
method date = date
method set_date d = date <- d
val mutable encoding : string option = enc
method encoding = encoding
method set_encoding e = encoding <- e
method of_utf8 s =
match encoding with
None -> Misc.of_utf8 s
| Some coding -> Misc.of_utf8 ~coding s
method to_utf8 s =
match encoding with
None -> Misc.to_utf8 s
| Some coding -> Misc.to_utf8 ~coding s
val mutable mode = (mode : mode option)
method mode = mode
method set_mode m =
match mode with
None -> mode <- m
| Some m2 ->
let b = buffer#buffer in
let s = m2#from_display (B.to_string b) in
mode <- m;
B.set_text b (self#mode_to_display s);
B.set_modified b false
method mode_key_bindings =
match mode with
None -> []
| Some m -> m#key_bindings
method mode_menus =
match mode with
None -> []
| Some m -> m#menus
method mode_name =
match mode with
None -> None
| Some m -> Some m#name
method set_syntax_mode lang = buffer#set_syntax_mode lang
method syntax_mode = buffer#syntax_mode
method mode_from_display s =
match mode with
None -> s
| Some m -> m#from_display s
method mode_to_display s =
match mode with
None -> s
| Some m -> m#to_display s
method load_file filename =
if Sys.file_exists filename then
begin
let text =
try self#mode_to_display
(self#to_utf8 (Misc.string_of_file filename))
with _ -> ""
in
B.set_text buffer#buffer text;
B.reset_history buffer#buffer;
B.set_modified buffer#buffer false;
end;
self#update_date;
method newer_file_exists =
let d = Misc.mod_date_of_file filename in
match date with
None -> true
| Some d2 -> d2 < d
method write_file ?(fail_if_newer=false) () =
if self#newer_file_exists && fail_if_newer then
raise (Newer_file_exists filename);
let utf8 = B.to_string buffer#buffer in
let s = self#of_utf8 (self#mode_from_display utf8) in
Misc.file_of_string ~file: filename s;
B.set_modified buffer#buffer false;
self#update_date
method update_date =
date <- Some (Misc.mod_date_of_file filename)
method range_from_range_in_file ~left ~right =
let from_display = self#mode_from_display (B.to_string buffer#buffer) in
let (left, right) =
let left =
Stk.Utf8.length
(self#mode_to_display
(String.sub from_display 0 left))
in
let right =
Stk.Utf8.length
(self#mode_to_display
(String.sub from_display 0 right))
in
(left, right)
in
(left, right)
method line_offset_from_line_in_file line =
let char_offset = Misc.char_of_line filename line in
let from_display = self#mode_from_display (B.to_string buffer#buffer) in
Stk.Utf8.length
(self#mode_to_display (String.sub from_display 0 char_offset))
initializer
self#set_syntax_mode stxmode;
self#load_file filename;
end
(** {2 The views} *)
class sourceview ?(attributes=[]) ?(xmls=[])(topwin : View.topwin)
f_on_destroy f_set_active f_dup
(f_file_rename : string -> string -> unit) (file : buffered_file) =
let vbox = Stk.Pack.vbox () in
let () = vbox#set_border_width__ 1 in
let wscroll = Stk.Bin.scrollbox ~pack:vbox#pack () in
let () = wscroll#set_vscrollbar_covers_child false in
let show_line_numbers =
get_att_f Misc.bool_of_string "line_numbers" attributes = Some true
in
let show_line_markers =
get_att_f Misc.bool_of_string "line_markers" attributes = Some true
in
let highlight_current_line =
get_att_f Misc.bool_of_string "highlight_current_line" attributes = Some true
in
let wrap_mode =
get_att_f ~default: (Ocf.get Sourceview_rc.default_wrap_mode)
Stk.Textview.wrap_mode_of_string "wrap_mode" attributes
in
let source_view =
Stk.Textview.textview
~buffer:file#buffer#buffer
~editable:true
~highlight_current_line
~show_line_numbers
~show_line_markers
?wrap_mode
~theme:(Ocf.get Sourceview_rc.default_theme)
~pack: wscroll#set_child
()
in
let hbox_state = Stk.Pack.hbox
~pack:(vbox#pack ~vexpand:0 ~hexpand:(-1)) ()
in
let add_state fopt =
let wl = Stk.Text.label ~pack:(hbox_state#pack ~hexpand:0) () in
let p = wl#padding in
wl#set_padding { p with left = 5; right = 5 };
begin
match fopt with
None -> ()
| Some f ->
ignore
(wl#connect Stk.Widget.Button_pressed
(fun ev ->
if ev.Stk.Widget.button = 1 then
(f (); true)
else
false
)
)
end;
wl
in
let on_stx_click () =
Commands.eval_command (factory_name^"_popup_syntax_mode_choice")
in
let on_mode_click () =
Commands.eval_command (factory_name^"_popup_mode_choice")
in
let wl_modified = add_state None in
let wl_file = add_state None in
let wl_loc = add_state None in
let wl_stx_mode = add_state (Some on_stx_click) in
let wl_mode = add_state (Some on_mode_click) in
let wl_encoding = add_state None in
let ref_on_destroy = ref (fun () -> ()) in
object(self)
inherit View.dyn_label
inherit View.dyn_destroyable
(fun () -> !ref_on_destroy () ; source_view#destroy;vbox#destroy)
inherit View.pickable true
method minibuffer = topwin#minibuffer
val mutable file = file
method source_view = source_view
method source_buffer = file#buffer
method scrollbox = wscroll
method box = vbox#coerce
method private write_file =
let rec do_write ~fail_if_newer =
try
file#write_file ~fail_if_newer ();
let msg = Printf.sprintf "Wrote %s"
(utf8_of_filename ~full: true file#filename)
in
Misc.display_message msg;
Lwt.return_unit
with
Newer_file_exists _ ->
let do_it () = do_write ~fail_if_newer: false in
Misc.confirm self#minibuffer
(Printf.sprintf "%s was edited since last visited; write anyway ?"
(utf8_of_filename ~full: true file#filename))
do_it
| Failure s
| Sys_error s ->
Misc.error_message (Misc.to_utf8 s);
Lwt.return_unit
in
do_write ~fail_if_newer: true
method do_save =
self#write_file
method save =
let f () =
if self#buffer_modified then
self#do_save
else
(
Misc.set_active_action_message "(No changes need to be saved)";
Lwt.return_unit
)
in
Some f
method save_as =
let f () =
let save newname =
let do_it () =
try
f_file_rename file#filename newname;
self#write_file
with
Failure s ->
Misc.error_message (Misc.to_utf8 s);
Lwt.return_unit
in
if Sys.file_exists newname then
Misc.confirm self#minibuffer
(Printf.sprintf "Overwrite %s ?" (utf8_of_filename ~full: true newname))
do_it
else
do_it ()
in
Misc.select_file
self#minibuffer
~title: (Printf.sprintf "Save %s as ..." (utf8_of_filename file#filename))
((Filename.dirname file#filename)^"/")
save
in
Some f
method paste = Some (fun () -> Commands.async_command (factory_name^"_paste"))
method copy = Some (fun () -> Commands.async_command (factory_name^"_copy"))
method cut = Some (fun () -> Commands.async_command (factory_name^"_cut"))
method close = vbox#destroy
method kind = factory_name
method attributes =
let lc = B.(line_char_of_offset file#buffer#buffer
(source_view#cursor_offset source_view#insert_cursor))
in
[
"location", string_of_line_char lc ;
"line_numbers", (Misc.string_of_bool source_view#show_line_numbers) ;
"line_markers", (Misc.string_of_bool source_view#show_line_markers) ;
"highlight_current_line", (Misc.string_of_bool source_view#highlight_current_line) ;
"wrap_mode", (Stk.Textview.string_of_wrap_mode source_view#wrap_mode) ;
] @ file#attributes
method xml_children = ([] : Xml.t list)
method file = file
method filename = file#filename
method buffer_name = file#name
method buffer_modified = B.modified file#buffer#buffer
method select_location loc =
let b = file#buffer#buffer in
let (start,size) =
match loc with
| Linechar (line,char) ->
let o = B.offset_of_line_char b ~line ~char in
(o, 1)
| Linechars (l,(start,stop)) ->
let start = B.offset_of_line_char b ~line:l ~char:start in
let size = stop - start + 1 in
(start, size)
| Chars (start,stop) -> (start,stop - start + 1)
| Char start -> (start,1)
in
source_view#select_range ~start ~size
method select_location_opt = function
None -> ()
| Some loc -> self#select_location loc
method has_focus = source_view#is_focus
method location_in_buffer =
let b = file#buffer#buffer in
B.(line_char_of_offset b (cursor_offset b source_view#insert_cursor))
method current_line =
fst self#location_in_buffer
method select_range_in_file ~left ~right () =
let (start, stop) = file#range_from_range_in_file ~left ~right in
source_view#select_range ~start ~size:(stop-start)
val mutable on_focus_in = fun () -> ()
method set_on_focus_in (f: unit -> unit) =
on_focus_in <-
(fun _ ->
f_set_active self;
f ();
)
method grab_focus =
source_view#grab_focus ();
source_view#scroll_to_cursor ();
f_set_active self;
()
method my_set_label =
self#set_label (Printf.sprintf "%s%s" (utf8_of_filename file#name)
(if self#buffer_modified then " *" else ""))
method set_file ?(focus_in=false) (f : buffered_file) =
file#buffer#disconnect_view (Oo.id self);
file <- f;
source_view#set_buffer f#buffer#buffer ;
source_view#scroll_to_cursor () ;
self#connect_buffer_events;
self#my_set_label;
self#display_state;
self#display_location ;
if focus_in then on_focus_in ()
method dup : View.topwin -> View.gui_view option = fun topwin ->
Some (f_dup file topwin)
method display_state =
self#display_modified;
self#display_buffer_name ;
self#display_encoding ;
self#display_location ;
self#display_stx_mode ;
self#display_mode
method display_buffer_name =
wl_file#set_text (utf8_of_filename file#name)
method display_modified =
wl_modified#set_text (if self#buffer_modified then "*" else "")
method display_encoding =
let enc =
match file#encoding with
None -> "default encoding"
| Some s -> s
in
wl_encoding#set_text (Printf.sprintf " %s " (Misc.to_utf8 enc))
method display_location =
let b = file#buffer#buffer in
let (line,char) = B.line_char_of_offset b
(source_view#cursor_offset source_view#insert_cursor)
in
wl_loc#set_text (Printf.sprintf "L%d-C%d" (line+1) (char+1))
method display_stx_mode =
let lang =
match B.source_language file#buffer#buffer with
None -> "[no highlight]"
| Some lang -> Printf.sprintf "[%s]" lang
in
wl_stx_mode#set_text (Misc.to_utf8 lang)
method display_mode =
let mode =
match file#mode_name with
None -> "(no mode)"
| Some name -> Printf.sprintf "(%s)" name
in
wl_mode#set_text (Misc.to_utf8 mode)
method connect_buffer_events =
file#buffer#connect_view (Oo.id self)
~on_cursor_moved:(fun (c,_) -> if c = source_view#insert_cursor then self#display_location)
~on_modified_changed:(fun _ -> self#display_modified; self#my_set_label)
~on_source_language_changed:(fun _ -> self#display_stx_mode; self#my_set_label)
method key_bindings =
file#mode_key_bindings @
(Ocf.get Sourceview_rc.key_bindings)
method bookmarks_menus =
let l = Bookmarks.list bookmarks in
let l = List.sort (fun (s1,_) (s2,_) -> compare s1 s2) l in
let entries =
List.map
(fun (name, (file,line,char)) ->
let com () =
Commands.eval_command (Printf.sprintf "open_file %s" (Filename.quote file));
if self#filename = file then
ignore(source_view#move_cursor ~line ~char ())
in
let label =
Printf.sprintf "%s (%s, %d, %d)" name (Filename.basename file) line char
in
`I (Misc.escape_menu_label (Misc.to_utf8 label), com)
)
l
in
[ "Bookmarks", entries]
method menus : (string * Stk.Menu.menu_entry list) list =
let com com () = Commands.async_command (Printf.sprintf "%s_%s" factory_name com) in
[
"Search",
[ `I ("Search forward", com "search") ;
`I ("Search backward", com "search_backward") ;
`I ("Search regexp forward", com "search_re") ;
`I ("Search regexp backward", com "search_re_backward") ;
`I ("Query/replace", com "query_replace") ;
]
] @
self#bookmarks_menus @
file#mode_menus
method update_menus = topwin#update_menus
method beginning_of_line = ignore(source_view#move_to_line_start ())
method end_of_line = ignore(source_view#move_to_line_end ())
method undo = B.undo file#buffer#buffer
method redo = B.redo file#buffer#buffer
method forward_word = ignore(source_view#forward_to_word_end ())
method backward_word = ignore(source_view#backward_to_word_start ())
method forward_line = ignore(source_view#dline_forward 1)
method backward_line = ignore(source_view#dline_backward 1)
method forward_char = ignore(source_view#char_forward 1)
method backward_char = ignore(source_view#char_backward 1)
method cut_to_selection ?(concat : [`APPEND | `PREPEND] option) ~start ~stop () =
let size = stop - start in
Log.debug (fun m -> m "%s#cut_to_selection start=%d, stop=%d, size=%d"
source_view#me start stop size);
match source_view#delete ~honor_readonly:true ~start ~size () with
| "" -> ()
| text ->
match concat with
| None ->
pastable_history#add text;
let>() = Tsdl.Sdl.set_clipboard_text text in
()
| Some p ->
let sel =
if Tsdl.Sdl.has_clipboard_text () then
let> str = Tsdl.Sdl.get_clipboard_text () in
str
else
""
in
let text =
match p with
`PREPEND -> text^sel
| `APPEND -> sel^text
in
pastable_history#add text;
let>() = Tsdl.Sdl.set_clipboard_text text in
()
method kill_line ~append =
let b = file#buffer#buffer in
match B.dup_cursor b source_view#insert_cursor with
| None -> ()
| Some c ->
let start = B.cursor_offset b c in
let o =
match B.move_cursor_to_line_end b c with
| None -> start
| Some o -> o
in
let stop =
if start = o then
match B.forward_cursor b c 1 with
| None -> start
| Some n -> n
else
o
in
B.remove_cursor b c;
let concat = if append then Some `APPEND else None in
self#cut_to_selection ?concat ~start ~stop ()
method kill_word ?concat forward =
let b = file#buffer#buffer in
match B.dup_cursor b source_view#insert_cursor with
| None -> ()
| Some c ->
let start = B.cursor_offset b c in
let (start, stop) =
if forward then
match B.forward_cursor_to_word_end b c with
| None -> (start, start)
| Some n -> (start, n)
else
match B.backward_cursor_to_word_start b c with
| None -> (start, start)
| Some n -> (n, start)
in
B.remove_cursor b c;
self#cut_to_selection ?concat ~start ~stop ()
method insert text =
source_view#insert ~honor_readonly:true text
method delete_char forward =
ignore(
(if forward then source_view#delete_forward else source_view#delete_backward)
~honor_readonly:true 1)
method transpose_chars = source_view#transpose_chars ~honor_readonly:true ()
method transpose_lines = source_view#transpose_lines ~honor_readonly:true ()
method transpose_words = source_view#transpose_words ~honor_readonly:true ()
method goto_line n =
let line = max 0 (min n (B.line_count file#buffer#buffer - 1)) in
ignore(source_view#move_cursor ~line ())
method goto_char n =
let offset = max 0 (min n (B.size file#buffer#buffer -1)) in
ignore(source_view#move_cursor ~offset ())
method reload =
let g () =
let f () = file#load_file file#filename; Lwt.return_unit in
if self#buffer_modified then
Misc.confirm self#minibuffer
"Buffer was modified; revert anyway ?" f
else
f ()
in
Some g
method set_syntax_mode lang =
file#set_syntax_mode lang;
self#display_stx_mode
method set_mode mode =
file#set_mode mode;
self#display_mode
method set_encoding e =
file#set_encoding e;
self#display_encoding
method switch_line_numbers ?v () =
let v = match v with
None -> not source_view#show_line_numbers
| Some v -> v
in
source_view#set_show_line_numbers v
method switch_line_markers ?v () =
let v = match v with
None -> not source_view#show_line_markers
| Some v -> v
in
source_view#set_show_line_markers v
method switch_highlight_current_line ?v () =
let v = match v with
None -> not source_view#highlight_current_line
| Some v -> v
in
source_view#set_highlight_current_line v
method set_wrap_mode m =
source_view#set_wrap_mode m
method add_clipboard_to_pastable_history =
if Tsdl.Sdl.has_clipboard_text () then
let> text = Tsdl.Sdl.get_clipboard_text () in
match text with
| "" -> ()
| _ -> pastable_history#add text
else
()
initializer
self#my_set_label;
self#display_state;
self#display_location;
source_view#scroll_to_cursor ();
self#connect_buffer_events;
ref_on_destroy := (fun () -> f_on_destroy self);
ignore(vbox#connect (Stk.(Object.Prop_changed Props.is_focus))
(fun ~prev ~now -> if now then on_focus_in ()));
end
(** {2 Handling open views and buffers} *)
let views = ref ([] : sourceview list)
let buffers = ref ([] : buffered_file list)
let active_sourceview = ref (None : sourceview option)
let set_active_sourceview o =
if List.exists (fun v -> Oo.id v = Oo.id o) !views then
active_sourceview := Some o;
make_buffer_first_in_history o#buffer_name
let get_fresh_buffer_name name =
let name_of_n n =
if n <= 1
then name
else Printf.sprintf "%s<%d>" name n
in
let rec iter n =
let name = name_of_n n in
if List.exists (fun b -> b#name = name) !buffers then
iter (n+1)
else
name
in
iter 1
let create_buffer ?(attributes=[]) ?xmls filename =
let mes = Printf.sprintf "creating buffer for %s" filename in
Misc.display_message mes;
let b = B.create () in
let buffer = new my_buffer b in
B.set_max_undo_levels b (Ocf.get Sourceview_rc.max_undo_levels);
let name = get_fresh_buffer_name (Filename.basename filename) in
let file = new buffered_file ~attributes ?xmls ~name ~filename buffer in
buffers := file :: !buffers;
make_buffer_first_in_history file#name;
file
let get_buffer ?(attributes=[]) ?xmls filename =
try
let b = List.find
(fun f -> Misc.safe_same_files f#filename filename)
!buffers
in
let loc =
match get_att "location" attributes with
None -> None
| Some s -> location_of_string s
in
(
match loc with
| None -> ()
| Some loc ->
let b = b#buffer#buffer in
let (line,char) = line_char_of_location b (Some loc) in
let c = B.create_cursor ~line ~char b in
B.set_last_used_cursor b c
);
b
with Not_found -> create_buffer ~attributes ?xmls filename
let get_buffer_by_name name =
List.find (fun b -> b#name = name) !buffers
let remove_buffer (b : buffered_file) =
buffers := List.filter (fun b2 -> b#filename <> b2#filename) !buffers;
remove_buffer_from_history b#name;
;;
let on_view_destroy v =
views := List.filter (fun v2 -> Oo.id v <> Oo.id v2) !views;
match !active_sourceview with
Some v2 when Oo.id v = Oo.id v2 ->
active_sourceview := None
| Some _
| None -> ()
let rec create_view ?(attributes=[]) ?xmls topwin file =
let v = new sourceview ~attributes ?xmls topwin on_view_destroy
set_active_sourceview dup file_rename file
in
ignore(v#source_view#connect Stk.Widget.Destroy (fun () -> on_view_destroy v; false));
views := v :: !views;
v
and dup file topwin =
(create_view topwin file :> View.gui_view)
and file_rename oldname newname =
try
ignore(List.find (fun b -> Misc.safe_same_files b#filename newname) !buffers);
let mes = Printf.sprintf "%s is already open. Close it before." newname in
failwith mes
with Not_found ->
let views = List.filter (fun v -> v#filename = oldname) !views in
let b = get_buffer oldname in
let old_buffer_name = b#name in
b#set_filename newname;
b#set_name (get_fresh_buffer_name (Filename.basename newname));
rename_buffer_in_history old_buffer_name b#name;
List.iter (fun v -> v#my_set_label; v#display_state) views
let open_file topwin active_view ?(attributes=[]) ?xmls filename =
let file = get_buffer ~attributes filename in
match !active_sourceview with
None -> `New_view (create_view ~attributes ?xmls topwin file :> View.gui_view)
| Some v ->
if topwin#contains_view (v :> View.gui_view) then
begin
if v#file#name = file#name then
match get_att "location" attributes with
None -> ()
| Some s -> v#select_location_opt (location_of_string s)
else
v#set_file ~focus_in: true file;
`Use_view (v :> View.gui_view)
end
else
`New_view (create_view ~attributes topwin file :> View.gui_view)
;;
(** {2 Factory} *)
class factory : View.view_factory =
object
method name = factory_name
method open_file = open_file
method open_hidden =
Some (fun ?attributes ?xmls filename ->
ignore (get_buffer ?attributes filename))
method on_start =
let f () =
let buffers = read_open_buffers_file !open_buffers_file in
List.iter
(fun (f, attributes) ->
if Sys.file_exists f then
ignore(get_buffer ~attributes f)
)
buffers
in
Misc.catch_print_exceptions f ()
method on_exit =
Misc.catch_print_exceptions
(write_open_buffers_file !open_buffers_file) !buffers;
Misc.catch_print_exceptions
(Bookmarks.store bookmarks) Sourceview_rc.bookmarks_rc_file
end
let _ = View.register_view_factory factory_name (new factory)
;;
(** {2 "Forward-stack" of locations.} *)
let location_stack = Fstack.create ();;
(** {2 Commands} *)
let keep_key_bindings_from_view v l =
let rec iter acc = function
[] -> acc
| (k,com) :: q ->
if List.mem com l then
iter ((k, fun () -> Commands.async_command com) :: acc) q
else
iter acc q
in
iter [] v#key_bindings
let register_com_lwt ~prefix name args ?more f =
let name = Printf.sprintf "%s_%s" prefix name in
let f args =
match !active_sourceview with
None -> Lwt.return_unit
| Some v -> f v args
in
let c = { Commands.com_name = name ;
com_args = args ;
com_more_args = more ;
com_f = f ;
}
in
Commands.register c
let register_com ~prefix name args ?more f =
let f sv args = f sv args; Lwt.return_unit in
register_com_lwt ~prefix name args ?more f
let switch_to_buffer (v : sourceview) name =
try
let b = get_buffer_by_name name in
v#set_file ~focus_in: true b
with Not_found ->
Misc.error_message
(Printf.sprintf "No %s buffer %s"
factory_name (utf8_of_filename name))
let candidate_buffers () =
let displayed_buffers = List.map (fun o -> o#buffer_name) !views in
let (last,first) = List.partition
(fun name -> List.mem name displayed_buffers)
!buffer_name_history
in
first @ last
let switch_buffer_history = Minibuffer.history ()
let switch_buffer v args =
if Array.length args > 0 then
(
let name = args.(0) in
switch_to_buffer v name;
Lwt.return_unit
)
else
let candidate_buffers = candidate_buffers () in
let com = Printf.sprintf "%s_switch_buffer" factory_name in
let f = function
"" ->
(
match candidate_buffers with
| [] -> Lwt.return_unit
| s :: _ ->
Commands.launch_command
~history:false com [| s |]
)
| s ->
Commands.launch_command
~history:false com [| s |]
in
let title =
Printf.sprintf "Switch to %s"
(match candidate_buffers with
[] -> "" | s :: _ -> "["^( s)^"]")
in
Misc.select_string
~history: switch_buffer_history
v#minibuffer
~title
~choices: ( candidate_buffers)
""
f
let destroy_buffer (v : sourceview) args =
let f () =
let bname = v#buffer_name in
remove_buffer v#file;
let () =
match List.filter (fun name -> name <> bname) (candidate_buffers()) with
| [] ->
List.iter (fun v -> v#destroy) !views
| first :: _ ->
let buf =
try get_buffer_by_name first
with Not_found -> failwith "Internal error; Please restart to be safe."
in
List.iter
(fun (v:sourceview) ->
if v#buffer_name = bname then v#set_file ~focus_in: true buf
)
!views
in
Lwt.return_unit
in
if not v#buffer_modified then
f ()
else
Misc.confirm v#minibuffer
(Printf.sprintf "Buffer %s modified; destroy anyway ?"
(utf8_of_filename v#buffer_name))
f
type search_buffer_function =
?wrapped:bool ->
bool ->
my_buffer ->
start:int-> string -> bool * Stk.Rope.range option
let prev_search = ref None
let rec re_search_buffer ?(quote=false) ?(wrapped=false) forward (buffer: my_buffer) ~start s_utf8 =
let b = buffer#buffer in
let (start, stop) =
if forward then
(start, B.size b)
else
(0, start)
in
let gsearch = buffer#re_search forward in
let re = Pcre.regexp (if quote then Pcre.quote s_utf8 else s_utf8) in
Log.warn (fun m -> m "gsearch start=%d stop=%d" start stop);
match gsearch ~start ~stop re with
None ->
if wrapped then
(wrapped, None)
else
let start = if forward then 0 else B.size b in
re_search_buffer ~wrapped: true forward buffer ~start s_utf8
| Some range ->
Log.warn (fun m -> m "found range %a" Stk.Rope.pp_range range);
(wrapped, Some range)
let search_buffer = re_search_buffer ~quote:true
let re_search_buffer = re_search_buffer ~quote:false
let rec search =
let forward = ref true in
fun (fsearch_buffer : search_buffer_function)
mes ?(changed=false) _forward (v: sourceview) args ->
forward := _forward;
let fixed wrapped = Printf.sprintf "%s%s%s: "
(if wrapped then "[wrapped] " else "")
mes
(if !forward then "" else " backward")
in
let mb = v#minibuffer in
if mb#active then
(
let s_utf8 = mb#get_user_text in
match s_utf8 with
"" ->
begin
match !prev_search with
None -> ()
| Some s -> mb#set_user_text s
end
| _ ->
let start =
match v#source_view#selection_range with
| Some { Stk.Rope.start ; size } ->
if !forward then
if changed then start else start + 1
else
if changed then start + size else start + size - 1
| None ->
v#source_view#cursor_offset v#source_view#insert_cursor
in
match fsearch_buffer !forward v#file#buffer ~start s_utf8 with
(wrapped, None) ->
mb#set_text ~fixed: (fixed wrapped) s_utf8
| (wrapped, Some {start ; size}) ->
v#source_view#select_range ~start ~size;
mb#set_text ~fixed: (fixed wrapped) s_utf8
)
else
(
let on_changed () =
match mb#get_user_text with
"" -> ()
| s ->
if !prev_search = Some s then
()
else
(
prev_search := Some s;
search fsearch_buffer mes ~changed: true !forward v args
)
in
mb#clear;
mb#set_text ~fixed: (fixed false) "";
mb#set_on_text_changed on_changed;
mb#set_more_key_bindings
(keep_key_bindings_from_view v
[ factory_name^"_search" ;
factory_name^"_search_backward" ;
factory_name^"_search_re" ;
factory_name^"_search_re_backward" ;
]
);
mb#set_active true
)
let replace_history = Minibuffer.history ()
let query_replace_gen
?(mes="")
command_name
(fsearch_buffer : search_buffer_function)
(freplace : searched: string -> found:string -> repl:string -> string)
(v : sourceview) args =
let mb = v#minibuffer in
let len = Array.length args in
if len <= 0 then
let f s = Commands.launch_command command_name [| s |] in
let title = Printf.sprintf "Query-replace%s" mes in
Misc.input_string ~history: replace_history
mb ~title "" f
else
if len = 1 then
begin
let title = Misc.to_utf8
(Printf.sprintf "Query-replace%s %s with" mes args.(0))
in
let f s = Commands.launch_command command_name [| args.(0); s |] in
Misc.input_string ~history: replace_history
mb ~title "" f
end
else
begin
let title = Misc.to_utf8
(Printf.sprintf "Query-replace%s %s with %s (y/n/!)"
mes args.(0) args.(1))
in
let s1_utf8 = Misc.to_utf8 args.(0) in
let s2_utf8 = Misc.to_utf8 args.(1) in
let rec iter interactive =
let b = v#file#buffer in
let start = v#source_view#cursor_offset v#source_view#insert_cursor in
match fsearch_buffer true b ~start s1_utf8 with
true, _
| _, None -> mb#set_active false; Lwt.return_unit
| false, Some { start ; size } ->
if interactive then v#source_view#select_range ~start ~size;
let replace () =
let found = v#source_view#delete ~honor_readonly:true ~start ~size () in
let new_text = freplace
~searched: s1_utf8 ~found ~repl: s2_utf8
in
v#source_view#insert_at ~honor_readonly:true start new_text;
v#source_view#move_cursor ~offset:(start+Stk.Utf8.length new_text) ();
in
if interactive then
(
let f_yes () = replace (); Lwt.async (fun () -> iter true) in
let f_no () =
v#source_view#move_cursor ~offset:(start+1) ();
Lwt.async (fun () -> iter true)
in
let f_bang () = replace (); Lwt.async (fun () -> iter false) in
mb#clear;
mb#set_more_key_bindings
[ [Stk.Key.keystate Tsdl.Sdl.K.y], f_yes ;
[Stk.Key.keystate Tsdl.Sdl.K.n], f_no ;
[Stk.Key.keystate Tsdl.Sdl.K.exclaim], f_bang ;
];
mb#set_text ~fixed: title "";
if not mb#active then
(mb#set_active true; mb#wait)
else
Lwt.return_unit
)
else
(replace (); iter interactive)
in
let%lwt () = iter true in
Lwt.return_unit
end
let query_replace = query_replace_gen
(Printf.sprintf "%s_query_replace" factory_name)
search_buffer
(fun ~searched ~found ~repl -> repl)
let re_replace ~searched ~found ~repl =
let rex = Pcre.regexp searched in
Pcre.replace_first ~rex ~templ: repl found
let re_query_replace = query_replace_gen
~mes: " regexp"
(Printf.sprintf "%s_query_replace_re" factory_name)
re_search_buffer
re_replace
let copy (v:sourceview) args =
v#source_view#copy ;
v#add_clipboard_to_pastable_history
let cut (v:sourceview) args =
match v#source_view#cut ~honor_readonly:true () with
| Some _ -> v#add_clipboard_to_pastable_history
| None -> ()
let paste (v:sourceview) args =
v#source_view#paste ~honor_readonly:true ();
v#add_clipboard_to_pastable_history
let beginning_of_line (v : sourceview) args = v#beginning_of_line
let end_of_line (v : sourceview) args = v#end_of_line
let undo (v : sourceview) args = v#undo
let redo (v : sourceview) args = v#redo
let forward_word v args = v#forward_word
let backward_word v args = v#backward_word
let forward_line v args = v#forward_line
let backward_line v args = v#backward_line
let forward_char v args = v#forward_char
let backward_char v args = v#backward_char
let kill_line v args =
v#kill_line ~append: (Commands.same_previous_command ())
let kill_word v args =
let concat =
if Commands.same_previous_command () then
Some `APPEND
else
None
in
v#kill_word ?concat true
let backward_kill_word v args =
let concat =
if Commands.same_previous_command () then
Some `PREPEND
else
None
in
v#kill_word ?concat false
let delete_char v args = v#delete_char true
let backward_delete_char v args = v#delete_char false
let transpose_chars v args = v#transpose_chars
let transpose_lines v args = v#transpose_lines
let transpose_words v args = v#transpose_words
let yank_choose v args =
let mb = v#minibuffer in
let title = "Choose text to paste (Up/Down to choose):" in
let on_eval () =
let s_utf8 = mb#get_user_text in
paste v [| s_utf8 |];
mb#set_active false;
Lwt.return_unit
in
mb#clear ;
mb#set_on_eval on_eval;
mb#set_text ~fixed: title "";
mb#set_history pastable_history;
mb#set_active true
let insert (v:sourceview) args =
Array.iter v#insert args
let goto_history = Minibuffer.history ()
let goto_line v args =
let f s =
let n =
try Misc.my_int_of_string args.(0)
with _ -> invalid_arg "Bad line number"
in
v#goto_line (n-1);
Lwt.return_unit
in
Misc.input_command_arg
v#minibuffer ~history: goto_history
~title: "Go to line"
f (Printf.sprintf "%s_goto_line" factory_name) args
let goto_char v args =
let f s =
let n =
try Misc.my_int_of_string args.(0)
with _ -> invalid_arg "Bad character number"
in
v#goto_char (n-1);
Lwt.return_unit
in
Misc.input_command_arg
v#minibuffer ~history: goto_history
~title: "Go to char"
f (Printf.sprintf "%s_goto_char" factory_name) args
let force_save v args = v#do_save
let syntax_mode_history = Minibuffer.history ()
let set_syntax_mode v args =
let len = Array.length args in
if len > 0 then
let name = args.(0) in
try
v#set_syntax_mode (Some name);
Lwt.return_unit
with
Not_found ->
Misc.error_message
(Printf.sprintf "Unknown syntax mode \"%s\"" name);
Lwt.return_unit
else
let f mode =
let com = Printf.sprintf "%s_set_syntax_mode %s"
factory_name (Filename.quote mode)
in
Commands.eval_command com
in
let languages = List.map fst (Higlo.Lang.registered_langs ()) in
Misc.select_string ~history: syntax_mode_history
v#minibuffer
~title: "Syntax mode"
~choices: languages
""
f
let v args =
let com s =
Commands.async_command
(Printf.sprintf "%s_set_syntax_mode %s"
factory_name (Filename.quote s))
in
let entries = List.map
(fun (name,_) ->
`I (name, (fun () -> com name))
)
(Higlo.Lang.registered_langs())
in
Stk.Menu.popup_menu_entries entries
let mode_history = Minibuffer.history ()
let set_mode v args =
let len = Array.length args in
if len > 0 then
let name = args.(0) in
try
match Misc.no_blanks name with
"" -> v#set_mode None; Lwt.return_unit
| _ -> v#set_mode (Some (get_mode name)); Lwt.return_unit
with
Failure s->
Misc.error_message s;
Lwt.return_unit
else
let f mode =
let com = Printf.sprintf "%s_set_mode %s"
factory_name (Filename.quote mode)
in
Commands.eval_command com
in
Misc.select_string ~history: mode_history
v#minibuffer
~title: "Mode"
~choices: (available_mode_names ())
""
f
let v args =
let com s =
Commands.async_command
(Printf.sprintf "%s_set_mode %s"
factory_name (Filename.quote s))
in
let entries =
(`I ("None", fun () -> com "''")) ::
(List.map
(fun s -> `I (s, (fun () -> com s)))
(available_mode_names ()))
in
Stk.Menu.popup_menu_entries entries
let switch_line_numbers (view : sourceview) args =
let v =
if Array.length args > 0 then
Some (Misc.bool_of_string args.(0))
else
None
in
view#switch_line_numbers ?v ()
let switch_line_markers (view : sourceview) args =
let v =
if Array.length args > 0 then
Some (Misc.bool_of_string args.(0))
else
None
in
view#switch_line_markers ?v ()
let switch_highlight_current_line (view : sourceview) args =
let v =
if Array.length args > 0 then
Some (Misc.bool_of_string args.(0))
else
None
in
view#switch_highlight_current_line ?v ()
let set_wrap_mode (view : sourceview) args =
let com = Printf.sprintf "%s_set_wrap_mode" factory_name in
if Array.length args < 1 then
let f s = Commands.launch_command com [| s |] in
Misc.select_string view#minibuffer ~title: com
~choices: (Stk.Textview.(List.map string_of_wrap_mode [Wrap_none ; Wrap_char]))
"" f
else
(
let mode = Stk.Textview.wrap_mode_of_string args.(0) in
view#set_wrap_mode mode;
Lwt.return_unit
)
let insert_utf8 (view : sourceview) args =
if Array.length args < 1 then
()
else
try
let code = int_of_string args.(0) in
let s = Stk.Utf8.string_of_uchar (Uchar.of_int code) in
view#source_view#insert ~honor_readonly:true s
with
Invalid_argument _ ->
let mes = Printf.sprintf "insert_utf8: invalid argument (%s)" args.(0) in
Misc.error_message mes
;;
let set_encoding (view : sourceview) args =
if Array.length args < 1 then
let com = Printf.sprintf "%s_set_encoding" factory_name in
let f s = Commands.launch_command com [| s |] in
Misc.select_string view#minibuffer ~title: com
~choices: Iconv.encoding_names
"" f
else
(
view#set_encoding (Some args.(0));
Lwt.return_unit
)
;;
let set_bookmark (view : sourceview) args =
let com = Printf.sprintf "%s_set_bookmark" factory_name in
if Array.length args < 1 then
(
let f s = Commands.launch_command com [| s |] in
Misc.input_string view#minibuffer ~title: com
"" f
)
else
(
let data =
let (l,c) = view#location_in_buffer in
(view#filename, l, c)
in
Bookmarks.set bookmarks args.(0) data;
view#update_menus;
Lwt.return_unit
)
;;
let remove_bookmark (view : sourceview) args =
let com = Printf.sprintf "%s_remove_bookmark" factory_name in
if Array.length args < 1 then
(
let choices = List.map fst (Bookmarks.list bookmarks) in
let f s = Commands.launch_command com [| s |] in
Misc.select_string view#minibuffer ~title: com
~choices
"" f
)
else
(
Bookmarks.remove bookmarks args.(0);
view#update_menus;
Lwt.return_unit
)
;;
let push_location (view : sourceview) args =
let loc = (view#filename, view#location_in_buffer) in
Fstack.push loc location_stack;
Misc.set_active_action_message "Location pushed"
;;
let pop_location (view : sourceview) args =
try
let (file, (line,char)) = Fstack.pop location_stack in
Commands.eval_command (Printf.sprintf "pop_location %s" (Filename.quote file));
if view#filename = file then
ignore(view#source_view#move_cursor ~line ~char ())
with
Fstack.Empty ->
let m = "Location stack is empty" in
Log.err (fun p -> p "%s" m);
Misc.set_active_action_message m
;;
let forward_location (view : sourceview) args =
try
let (file, (line,char)) = Fstack.forward location_stack in
Commands.eval_command (Printf.sprintf "open_file %s" (Filename.quote file));
if view#filename = file then
ignore(view#source_view#move_cursor ~line ~char ())
with
Fstack.Empty ->
let m = "Location stack is forward-empty" in
Log.err (fun p -> p "%s" m);
Misc.set_active_action_message m
;;
[@@@ocaml.warning "-5"]
let coms =
[
"search", [| |], None, search search_buffer "search" true ;
"search_backward", [| |], None, search search_buffer "search" false ;
"search_re", [| |], None, search re_search_buffer "regexp search" true ;
"search_re_backward", [| |], None, search re_search_buffer "regexp search" false ;
"beginning_of_line", [| |], None, beginning_of_line ;
"end_of_line", [| |], None, end_of_line ;
"undo", [| |], None, undo ;
"redo", [| |], None, redo ;
"forward_word", [| |], None, forward_word ;
"backward_word", [| |], None, backward_word ;
"forward_line", [| |], None, forward_line ;
"backward_line", [| |], None, backward_line ;
"forward_char", [| |], None, forward_char ;
"backward_char", [| |], None, backward_char ;
"paste", [| |], None, paste ;
"copy", [| |], None, copy ;
"cut", [| |], None, cut ;
"kill_line", [| |], None, kill_line ;
"kill_word", [| |], None, kill_word ;
"backward_kill_word", [| |], None, backward_kill_word ;
"yank_choose", [| |], None, yank_choose ;
"insert", [| |], Some "utf8 strings to insert", insert ;
"delete_char", [| |], None, delete_char ;
"backward_delete_char", [| |], None, backward_delete_char ;
"transpose_chars", [| |], None, transpose_chars ;
"transpose_lines", [| |], None, transpose_lines ;
"transpose_words", [| |], None, transpose_words ;
"popup_syntax_mode_choice", [| |], None, popup_syntax_mode_choice ;
"popup_mode_choice", [| |], None, popup_mode_choice ;
"switch_line_numbers", [| "optional value" |], None, switch_line_numbers ;
"switch_line_markers", [| "optional value" |], None, switch_line_markers ;
"insert_utf8", [| "utf8 code" |], None, insert_utf8 ;
"push_location", [| |], None, push_location ;
"pop_location", [| |], None, pop_location ;
"forward_location", [| |], None, forward_location ;
]
let coms_lwt =
[
"switch_buffer", [| |], None, switch_buffer ;
"destroy_buffer", [| |], None, destroy_buffer ;
"query_replace", [| |], None, query_replace ;
"query_replace_re", [| |], None, re_query_replace ;
"goto_line", [|"line"|], None, goto_line ;
"goto_char", [|"character"|], None, goto_char ;
"force_save", [| |], None, force_save ;
"set_syntax_mode", [| "Syntax mode" |], None, set_syntax_mode ;
"set_mode", [| "Mode" |], None, set_mode ;
"set_wrap_mode", [| "mode" |], None, set_wrap_mode ;
"set_encoding", [| "encoding" |], None, set_encoding ;
"set_bookmark", [| "name" |], None, set_bookmark ;
"remove_bookmark", [| "name" |], None, remove_bookmark ;
]
let _ = List.iter
(fun (name, args, more, f) ->
let f sv args = f sv args; Lwt.return_unit in
register_com ~prefix: factory_name name args ?more f)
coms
let _ = List.iter
(fun (name, args, more, f) ->
register_com_lwt ~prefix: factory_name name args ?more f)
coms_lwt