Source file parser.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
open Event
type key = Key.t
type event_type = Key.event_type
type modifier = Key.modifier
type mouse_button = Mouse.button
type mouse_button_state = Mouse.button_state
type scroll_direction = Mouse.scroll_direction
type event = Event.t
type parsed = [ `User of event | `Caps of Caps.event ]
let max_csi_params = 8
let max_sub_params = 4
type t = {
raw : Tokenizer.parser;
scratch_buffer : Buffer.t;
utf8_buf : bytes;
mutable utf8_len : int;
csi_param_starts : int array;
csi_param_stops : int array;
csi_param_values : int array;
mutable csi_param_count : int;
sub_param_values : int array;
mutable sub_param_count : int;
}
let no_modifier = Key.no_modifier
let modifier_table : modifier array =
Array.init 256 (fun mask ->
{
Key.ctrl = mask land 4 <> 0;
alt = mask land 2 <> 0;
shift = mask land 1 <> 0;
super = mask land 8 <> 0;
hyper = mask land 16 <> 0;
meta = mask land 32 <> 0;
caps_lock = mask land 64 <> 0;
num_lock = mask land 128 <> 0;
})
let mk_modifier ?(ctrl = false) ?(alt = false) ?(shift = false) ?(super = false)
?(hyper = false) ?(meta = false) ?(caps_lock = false) ?(num_lock = false) ()
: modifier =
{ Key.ctrl; alt; shift; super; hyper; meta; caps_lock; num_lock }
let modifier_of_bits bits =
if bits <= 0 then no_modifier else modifier_table.((bits - 1) land 0xff)
let event_type_of_int : int -> event_type = function
| 2 -> Repeat
| 3 -> Release
| _ -> Press
let mouse_button_of_code : int -> mouse_button = function
| 0 -> Left
| 1 -> Middle
| 2 -> Right
| 3 -> Left
| 64 -> Wheel_up
| 65 -> Wheel_down
| 66 -> Wheel_left
| 67 -> Wheel_right
| 128 -> Button 8
| 129 -> Button 9
| 130 -> Button 10
| 131 -> Button 11
| n -> Button n
let is_scroll_button = function
| Mouse.Wheel_up | Wheel_down | Wheel_left | Wheel_right -> true
| _ -> false
let scroll_direction_of_button : mouse_button -> scroll_direction = function
| Wheel_up -> Scroll_up
| Wheel_down -> Scroll_down
| Wheel_left -> Scroll_left
| Wheel_right -> Scroll_right
| _ -> Scroll_down
let mouse_button_state_of_code code : mouse_button_state =
{ left = code = 0; middle = code = 1; right = code = 2 }
let modifier_of_mouse_value value : modifier =
let mask = (value land 0x1c) lsr 2 in
modifier_table.(mask land 0xff)
let create () =
{
raw = Tokenizer.create ();
scratch_buffer = Buffer.create 32;
utf8_buf = Bytes.create 4;
utf8_len = 0;
csi_param_starts = Array.make max_csi_params 0;
csi_param_stops = Array.make max_csi_params 0;
csi_param_values = Array.make max_csi_params (-1);
csi_param_count = 0;
sub_param_values = Array.make max_sub_params (-1);
sub_param_count = 0;
}
let is_ascii_digit c = c >= '0' && c <= '9'
let is_csi_param c = c >= '\x30' && c <= '\x3f'
let is_csi_intermediate c = c >= '\x20' && c <= '\x2f'
let is_csi_final c =
let code = Char.code c in
(code >= 0x40 && code <= 0x7e) || code = 0x24 || code = 0x5e
let strip_ansi parser s =
if not (String.contains s '\x1b') then s
else
let len = String.length s in
let buf = parser.scratch_buffer in
Buffer.clear buf;
let rec find_st i =
if i >= len then len
else if s.[i] = '\x1b' && i + 1 < len && s.[i + 1] = '\\' then i + 2
else find_st (i + 1)
in
let rec loop i =
if i >= len then Buffer.contents buf
else
let c = s.[i] in
if c <> '\x1b' then (
Buffer.add_char buf c;
loop (i + 1))
else if i + 1 >= len then Buffer.contents buf
else
let c2 = s.[i + 1] in
if c2 = '[' then (
let j = ref (i + 2) in
while
!j < len
&&
let ch = s.[!j] in
let code = Char.code ch in
code < 0x40 || code > 0x7e
do
incr j
done;
if !j < len then loop (!j + 1) else Buffer.contents buf)
else if c2 = ']' || c2 = 'P' || c2 = '_' then
if
c2 = ']'
then
let rec find_end k =
if k >= len then len
else if s.[k] = '\x07' then k + 1
else if k + 1 < len && s.[k] = '\x1b' && s.[k + 1] = '\\' then
k + 2
else find_end (k + 1)
in
let k = find_end (i + 2) in
if k <= len then loop k else Buffer.contents buf
else
let k = find_st (i + 2) in
if k <= len then loop k else Buffer.contents buf
else
loop (i + 2)
in
loop 0
let parse_int_range s start end_ =
if start >= end_ then 0
else
let rec loop acc i =
if i >= end_ then acc
else if is_ascii_digit s.[i] then
loop ((acc * 10) + (Char.code s.[i] - 48)) (i + 1)
else acc
in
loop 0 start
let parse_int_range_opt s start end_ =
if start >= end_ then None
else
let rec loop acc i =
if i >= end_ then Some acc
else
let c = s.[i] in
if is_ascii_digit c then loop ((acc * 10) + (Char.code c - 48)) (i + 1)
else None
in
loop 0 start
let parse_csi_params_into parser s start end_ =
parser.csi_param_count <- 0;
let rec loop i =
if i >= end_ || parser.csi_param_count >= max_csi_params then ()
else
let rec find_param_end j =
if j >= end_ || s.[j] = ';' || not (is_csi_param s.[j]) then j
else find_param_end (j + 1)
in
let param_end = find_param_end i in
let idx = parser.csi_param_count in
parser.csi_param_starts.(idx) <- i;
parser.csi_param_stops.(idx) <- param_end;
parser.csi_param_values.(idx) <-
(match parse_int_range_opt s i param_end with
| Some v -> v
| None -> -1);
parser.csi_param_count <- idx + 1;
let next =
if param_end < end_ && s.[param_end] = ';' then param_end + 1
else param_end
in
loop next
in
loop start
let parse_sub_params_into parser s start stop =
parser.sub_param_count <- 0;
let rec loop i =
if i >= stop || parser.sub_param_count >= max_sub_params then ()
else
let rec find_field_end j =
if j >= stop || s.[j] = ':' then j else find_field_end (j + 1)
in
let field_end = find_field_end i in
let idx = parser.sub_param_count in
parser.sub_param_values.(idx) <-
(match parse_int_range_opt s i field_end with
| Some v -> v
| None -> -1);
parser.sub_param_count <- idx + 1;
let next =
if field_end < stop && s.[field_end] = ':' then field_end + 1
else field_end
in
loop next
in
loop start
let[@inline] get_sub_param parser idx =
if idx < parser.sub_param_count then parser.sub_param_values.(idx) else -1
let has_prefix s prefix =
let len = String.length prefix in
String.length s >= len
&&
let rec loop i =
if i = len then true else if s.[i] <> prefix.[i] then false else loop (i + 1)
in
loop 0
let has_suffix s suffix =
let len = String.length suffix in
let slen = String.length s in
slen >= len
&&
let rec loop i =
if i = len then true
else if s.[slen - len + i] <> suffix.[i] then false
else loop (i + 1)
in
loop 0
let contains_substring s sub =
let len_s = String.length s and len_sub = String.length sub in
if len_sub = 0 then true
else
let limit = len_s - len_sub in
let rec outer i =
if i > limit then false
else
let rec inner j =
if j = len_sub then true
else if s.[i + j] <> sub.[j] then false
else inner (j + 1)
in
if inner 0 then true else outer (i + 1)
in
outer 0
type capability_match = Event of Caps.event | Drop | No_match
let capability_event_of_sequence seq =
let len = String.length seq in
if len >= 6 && has_prefix seq "\x1bP>|" && has_suffix seq "\x1b\\" then
let payload_len = len - 6 in
let payload =
if payload_len > 0 then String.sub seq 4 payload_len else ""
in
Event (Caps.Xtversion payload)
else if
len >= 4 && has_prefix seq "\x1bP" && has_suffix seq "\x1b\\"
&& contains_substring (String.lowercase_ascii seq) "kitty"
then
Event (Caps.Xtversion "kitty")
else if len >= 5 && has_prefix seq "\x1b_G" && has_suffix seq "\x1b\\" then
let payload_len = len - 5 in
let payload =
if payload_len > 0 then String.sub seq 3 payload_len else ""
in
Event (Caps.Kitty_graphics_reply payload)
else if len >= 4 && has_prefix seq "\x1b[?" && has_suffix seq "u" then
let body_len = len - 4 in
if body_len <= 0 then Drop
else
let body = String.sub seq 3 body_len in
let parts = String.split_on_char ';' body in
let to_int_opt s = try Some (int_of_string s) with _ -> None in
match parts with
| level_str :: rest -> (
match to_int_opt level_str with
| None -> Drop
| Some level ->
let flags =
match rest with [] -> None | h :: _ -> to_int_opt h
in
Event (Caps.Kitty_keyboard { level; flags }))
| _ -> Drop
else No_match
type csi_mod = { code : int option; mods : int option; event : int option }
let[@inline] int_to_opt v = if v < 0 then None else Some v
let split_param_at parser s idx =
if idx >= parser.csi_param_count then (None, None, None)
else
let start = parser.csi_param_starts.(idx) in
let stop = parser.csi_param_stops.(idx) in
parse_sub_params_into parser s start stop;
( int_to_opt (get_sub_param parser 0),
int_to_opt (get_sub_param parser 1),
int_to_opt (get_sub_param parser 2) )
let csi_mod_of_parsed parser s =
match parser.csi_param_count with
| 0 -> { code = None; mods = None; event = None }
| 1 ->
let code, mods, event = split_param_at parser s 0 in
{ code; mods; event }
| 2 ->
let code, _, _ = split_param_at parser s 0 in
let mods, event, _ = split_param_at parser s 1 in
{ code; mods; event }
| _ ->
let code, _, _ = split_param_at parser s 0 in
let mods, _, _ = split_param_at parser s 1 in
let event, _, _ = split_param_at parser s 2 in
{ code; mods; event }
let modifier_of_csi_mod m =
match m.mods with Some bits -> modifier_of_bits bits | None -> no_modifier
let event_type_of_csi_mod m =
match m.event with Some e -> event_type_of_int e | None -> Press
let ensure_shift m = if m.Key.shift then m else { m with shift = true }
let ensure_ctrl m = if m.Key.ctrl then m else { m with Key.ctrl = true }
let decode_utf8_char_string s pos =
if pos >= String.length s then None
else
let d = String.get_utf_8_uchar s pos in
if Uchar.utf_decode_is_valid d then
Some (Uchar.to_int (Uchar.utf_decode_uchar d), Uchar.utf_decode_length d)
else None
let parse_x10_normal_mouse_string s start =
let len = String.length s in
if start + 3 <= len then
match decode_utf8_char_string s start with
| None -> None
| Some (btn, len1) -> (
match decode_utf8_char_string s (start + len1) with
| None -> None
| Some (ux, len2) -> (
match decode_utf8_char_string s (start + len1 + len2) with
| None -> None
| Some (uy, len3) ->
let cb = btn - 32 in
let x = ux - 33 in
let y = uy - 33 in
let consumed = len1 + len2 + len3 in
if x < 0 || y < 0 then None
else
let base_button = cb land 3 in
let is_scroll = cb land 64 <> 0 in
let modifier = modifier_of_mouse_value cb in
let ev : event =
if is_scroll then
let button = mouse_button_of_code (cb land 0xC3) in
Scroll
(x, y, scroll_direction_of_button button, 1, modifier)
else if base_button = 3 then
Mouse (Mouse.Button_release (x, y, Button 0, modifier))
else
let button =
match base_button with
| 0 -> Mouse.Left
| 1 -> Middle
| 2 -> Right
| n -> Button n
in
Mouse (Mouse.Button_press (x, y, button, modifier))
in
Some (ev, consumed)))
else None
let mouse_event_of_codes ?release_button ~button_code ~x ~y ~is_release
~is_motion ~modifier () : event =
let button = mouse_button_of_code button_code in
let is_scroll = is_scroll_button button in
if is_scroll then Scroll (x, y, scroll_direction_of_button button, 1, modifier)
else if is_motion then
Mouse
(Mouse.Motion (x, y, mouse_button_state_of_code button_code, modifier))
else if is_release then
let b = match release_button with Some b -> b | None -> button in
Mouse (Mouse.Button_release (x, y, b, modifier))
else Mouse (Mouse.Button_press (x, y, button, modifier))
let parse_sgr_mouse s start end_ =
let final = s.[end_ - 1] in
if final <> 'M' && final <> 'm' then None
else if s.[start] <> '<' || end_ - start < 5 then None
else
let limit = end_ - 1 in
let parse_field i =
if i >= limit then (None, i)
else
let c0 = s.[i] in
if c0 < '0' || c0 > '9' then (None, i)
else
let rec loop acc j =
if j >= limit then (Some acc, j)
else
let c = s.[j] in
if c >= '0' && c <= '9' then
loop ((acc * 10) + (Char.code c - 48)) (j + 1)
else (Some acc, j)
in
loop 0 i
in
let btn_opt, idx1 = parse_field (start + 1) in
match btn_opt with
| None -> None
| Some btn -> (
if idx1 >= limit || s.[idx1] <> ';' then None
else
let x_opt, idx2 = parse_field (idx1 + 1) in
match x_opt with
| None -> None
| Some x -> (
if idx2 >= limit || s.[idx2] <> ';' then None
else
let y_opt, idx3 = parse_field (idx2 + 1) in
match y_opt with
| None -> None
| Some y ->
if idx3 <> limit then None
else
let button_code = btn land 3 lor ((btn lsr 6) lsl 6) in
let modifier = modifier_of_mouse_value btn in
let button = mouse_button_of_code button_code in
let is_scroll = is_scroll_button button in
let is_motion = btn land 32 <> 0 && not is_scroll in
let is_release =
final = 'm' && (not is_scroll) && not is_motion
in
let event =
mouse_event_of_codes ~button_code ~x:(x - 1) ~y:(y - 1)
~is_release ~is_motion ~modifier ()
in
Some event))
let parse_urxvt_mouse s start end_ =
let final = s.[end_ - 1] in
if final <> 'M' && final <> 'm' then None
else if end_ - start < 5 then None
else
let limit = end_ - 1 in
let parse_field i =
if i >= limit then (None, i)
else
let c0 = s.[i] in
if c0 < '0' || c0 > '9' then (None, i)
else
let rec loop acc j =
if j >= limit then (Some acc, j)
else
let c = s.[j] in
if c >= '0' && c <= '9' then
loop ((acc * 10) + (Char.code c - 48)) (j + 1)
else (Some acc, j)
in
loop 0 i
in
let btn_opt, idx1 = parse_field start in
match btn_opt with
| None -> None
| Some btn -> (
if idx1 >= limit || s.[idx1] <> ';' then None
else
let x_opt, idx2 = parse_field (idx1 + 1) in
match x_opt with
| None -> None
| Some x -> (
if idx2 >= limit || s.[idx2] <> ';' then None
else
let y_opt, idx3 = parse_field (idx2 + 1) in
match y_opt with
| None -> None
| Some y ->
if idx3 <> limit then None
else
let base_btn = btn - 32 in
let button_code =
base_btn land 3 lor ((base_btn lsr 6) lsl 6)
in
let button = mouse_button_of_code button_code in
let is_scroll = is_scroll_button button in
let modifier = modifier_of_mouse_value base_btn in
let is_motion = base_btn land 32 <> 0 && not is_scroll in
let is_release =
button_code = 3 && (not is_scroll) && not is_motion
in
let release_button =
if is_release then Some (Mouse.Button 0) else None
in
let event =
if is_scroll then
Scroll
( x - 1,
y - 1,
scroll_direction_of_button button,
1,
modifier )
else
mouse_event_of_codes ?release_button ~button_code
~x:(x - 1) ~y:(y - 1) ~is_release ~is_motion
~modifier ()
in
Some event))
let pua_to_key c : key =
match c with
| 57344 -> Escape
| 57345 -> Enter
| 57346 -> Tab
| 57347 -> Backspace
| 57348 -> Insert
| 57349 -> Delete
| 57350 -> Left
| 57351 -> Right
| 57352 -> Up
| 57353 -> Down
| 57354 -> Page_up
| 57355 -> Page_down
| 57356 -> Home
| 57357 -> End
| 57358 -> Caps_lock
| 57359 -> Scroll_lock
| 57360 -> Num_lock
| 57361 -> Print_screen
| 57362 -> Pause
| 57363 -> Menu
| c when c >= 57364 && c <= 57398 -> F (c - 57363)
| 57399 -> KP_0
| 57400 -> KP_1
| 57401 -> KP_2
| 57402 -> KP_3
| 57403 -> KP_4
| 57404 -> KP_5
| 57405 -> KP_6
| 57406 -> KP_7
| 57407 -> KP_8
| 57408 -> KP_9
| 57409 -> KP_decimal
| 57410 -> KP_divide
| 57411 -> KP_multiply
| 57412 -> KP_subtract
| 57413 -> KP_add
| 57414 -> KP_enter
| 57415 -> KP_equal
| 57416 -> KP_separator
| 57417 -> KP_left
| 57418 -> KP_right
| 57419 -> KP_up
| 57420 -> KP_down
| 57421 -> KP_page_up
| 57422 -> KP_page_down
| 57423 -> KP_home
| 57424 -> KP_end
| 57425 -> KP_insert
| 57426 -> KP_delete
| 57427 -> KP_begin
| 57428 -> Media_play
| 57429 -> Media_pause
| 57430 -> Media_play_pause
| 57431 -> Media_reverse
| 57432 -> Media_stop
| 57433 -> Media_fast_forward
| 57434 -> Media_rewind
| 57435 -> Media_next
| 57436 -> Media_prev
| 57437 -> Media_record
| 57438 -> Volume_down
| 57439 -> Volume_up
| 57440 -> Volume_mute
| 57441 -> Shift_left
| 57442 -> Ctrl_left
| 57443 -> Alt_left
| 57444 -> Super_left
| 57445 -> Hyper_left
| 57446 -> Meta_left
| 57447 -> Shift_right
| 57448 -> Ctrl_right
| 57449 -> Alt_right
| 57450 -> Super_right
| 57451 -> Hyper_right
| 57452 -> Meta_right
| 57453 -> Iso_level3_shift
| 57454 -> Iso_level5_shift
| _ -> Unknown c
let key_of_tilde_code = function
| 1 | 7 -> Some Key.Home
| 2 -> Some Insert
| 3 -> Some Delete
| 4 | 8 -> Some End
| 5 -> Some Page_up
| 6 -> Some Page_down
| 11 -> Some (F 1)
| 12 -> Some (F 2)
| 13 -> Some (F 3)
| 14 -> Some (F 4)
| 15 -> Some (F 5)
| 17 -> Some (F 6)
| 18 -> Some (F 7)
| 19 -> Some (F 8)
| 20 -> Some (F 9)
| 21 -> Some (F 10)
| 23 -> Some (F 11)
| 24 -> Some (F 12)
| 25 -> Some (F 13)
| 26 -> Some (F 14)
| 28 -> Some (F 15)
| 29 -> Some (F 16)
| 31 -> Some (F 17)
| 32 -> Some (F 18)
| 33 -> Some (F 19)
| 34 -> Some (F 20)
| _ -> None
let make_key_event ?(modifier = no_modifier) ?(event_type = Key.Press)
?(associated_text = "") ?shifted_key ?base_key (k : key) : event =
Event.key ~modifier ~event_type ~associated_text ?shifted_key ?base_key k
let make_char_event ?modifier ?event_type ?associated_text ?shifted_key
?base_key c : event =
Event.char ?modifier ?event_type ?associated_text ?shifted_key ?base_key c
let alt_escape_event : event =
make_key_event ~modifier:(mk_modifier ~alt:true ()) Escape
let parse_kitty_keyboard parser s start end_ =
let i = ref start in
let len = end_ - 1 in
let find_sep sep =
let start_pos = !i in
while !i < len && s.[!i] <> sep do
incr i
done;
let end_pos = !i in
if !i < len then incr i;
(start_pos, end_pos)
in
let code_start, code_end = find_sep ';' in
if code_start >= code_end then None
else
let code_i = ref code_start in
let code = parse_int_range s !code_i (min (!code_i + 10) code_end) in
while !code_i < code_end && s.[!code_i] <> ':' do
incr code_i
done;
let shifted =
if !code_i < code_end then (
incr code_i;
let shifted_start = !code_i in
while !code_i < code_end && s.[!code_i] <> ':' do
incr code_i
done;
let shifted_val = parse_int_range s shifted_start !code_i in
if shifted_val > 0 then Some (Uchar.of_int shifted_val) else None)
else None
in
let base =
if !code_i < code_end then (
incr code_i;
let base_val = parse_int_range s !code_i code_end in
if base_val > 0 then Some (Uchar.of_int base_val) else None)
else None
in
let mods_start, mods_end = find_sep ';' in
let mods_i = ref mods_start in
let mods = parse_int_range s !mods_i (min (!mods_i + 5) mods_end) in
while !mods_i < mods_end && s.[!mods_i] <> ':' do
incr mods_i
done;
let event_val =
if !mods_i < mods_end then (
incr mods_i;
parse_int_range s !mods_i mods_end)
else 1
in
let associated_text =
if !i >= len then ""
else
let buf = parser.scratch_buffer in
Buffer.clear buf;
let pos = ref !i in
while !pos < len do
let field_start = !pos in
while !pos < len && s.[!pos] <> ':' do
incr pos
done;
let cp = parse_int_range s field_start !pos in
if cp > 0 then Buffer.add_utf_8_uchar buf (Uchar.of_int cp);
if !pos < len then incr pos
done;
Buffer.contents buf
in
let modifier = modifier_of_bits mods in
let event_type = event_type_of_int event_val in
let key_opt : key option =
match code with
| 0 -> None
| 9 -> Some Tab
| 13 -> Some Enter
| 27 -> Some Escape
| 127 -> Some Backspace
| c when c >= 57344 && c <= 63743 -> Some (pua_to_key c)
| c when c > 0 -> Some (Char (Uchar.of_int c))
| _ -> None
in
match key_opt with
| None -> None
| Some k ->
let associated_text =
if associated_text <> "" then associated_text
else
match k with
| Char u ->
let buf = parser.scratch_buffer in
Buffer.clear buf;
let chosen =
match (modifier.Key.shift, shifted) with
| true, Some su -> su
| _ -> u
in
Buffer.add_utf_8_uchar buf chosen;
Buffer.contents buf
| _ -> ""
in
Some
(make_key_event ~modifier ~event_type ~associated_text
?shifted_key:shifted ?base_key:base k)
let[@inline] get_csi_param parser idx =
if idx < parser.csi_param_count then parser.csi_param_values.(idx) else -1
let parse_csi_cursor final_char modifier event_type : parsed option =
match final_char with
| 'A' -> Some (`User (make_key_event ~modifier ~event_type Up))
| 'B' -> Some (`User (make_key_event ~modifier ~event_type Down))
| 'C' -> Some (`User (make_key_event ~modifier ~event_type Right))
| 'D' -> Some (`User (make_key_event ~modifier ~event_type Left))
| 'E' -> Some (`User (make_key_event ~modifier ~event_type KP_5))
| 'a' ->
let modifier = ensure_shift modifier in
Some (`User (make_key_event ~modifier ~event_type Up))
| 'b' ->
let modifier = ensure_shift modifier in
Some (`User (make_key_event ~modifier ~event_type Down))
| 'd' ->
let modifier = ensure_shift modifier in
Some (`User (make_key_event ~modifier ~event_type Left))
| 'e' ->
let modifier = ensure_shift modifier in
Some (`User (make_key_event ~modifier ~event_type KP_5))
| 'H' -> Some (`User (make_key_event ~modifier ~event_type Home))
| 'F' -> Some (`User (make_key_event ~modifier ~event_type End))
| 'Z' ->
let modifier = ensure_shift modifier in
Some (`User (make_key_event ~modifier ~event_type Tab))
| _ -> None
let parse_csi_tilde parser final_char modifier event_type csi_mod :
parsed option =
match final_char with
| ('$' | '^') as suffix ->
let n = get_csi_param parser 0 in
if parser.csi_param_count = 1 && n >= 0 then
match key_of_tilde_code n with
| Some key ->
let modifier =
if suffix = '$' then ensure_shift modifier
else ensure_ctrl modifier
in
Some (`User (make_key_event ~modifier ~event_type key))
| None -> None
else None
| '~' -> (
let p0 = get_csi_param parser 0 in
let p1 = get_csi_param parser 1 in
let p2 = get_csi_param parser 2 in
if parser.csi_param_count >= 3 && p0 = 27 && p1 >= 0 && p2 >= 0 then
let modifier = modifier_of_bits p1 in
let key_from_charcode = function
| 13 -> Key.Enter
| 27 -> Escape
| 9 -> Tab
| 32 -> Char (Uchar.of_int 32)
| 127 | 8 -> Backspace
| c when c > 0 -> Char (Uchar.of_int c)
| _ -> Char (Uchar.of_int 0)
in
Some (`User (make_key_event ~modifier (key_from_charcode p2)))
else
match csi_mod.code with
| Some 200 | Some 201 -> None
| Some n -> (
match key_of_tilde_code n with
| Some key ->
Some (`User (make_key_event ~modifier ~event_type key))
| None -> None)
| None -> None)
| _ -> None
let parse_csi_capability parser s start params_end final_char modifier
event_type : parsed option =
match final_char with
| 'y' ->
let is_private =
start < params_end && s.[start] = '?' && start + 1 <= params_end
in
let params_start = if is_private then start + 1 else start in
parse_csi_params_into parser s params_start params_end;
let rec parse_pairs acc i =
if i + 1 >= parser.csi_param_count then List.rev acc
else
let mode = get_csi_param parser i in
let value = get_csi_param parser (i + 1) in
if mode >= 0 && value >= 0 then
parse_pairs ((mode, value) :: acc) (i + 2)
else List.rev acc
in
let modes = parse_pairs [] 0 in
Some (`Caps (Caps.Mode_report { Caps.is_private; modes }))
| 'n' ->
if start < params_end && s.[start] = '?' then (
parse_csi_params_into parser s (start + 1) params_end;
if parser.csi_param_count >= 2 && get_csi_param parser 0 = 997 then
let value = get_csi_param parser 1 in
let scheme =
match value with 1 -> `Dark | 2 -> `Light | v -> `Unknown v
in
Some (`Caps (Caps.Color_scheme scheme))
else None)
else None
| 't' ->
let p0 = get_csi_param parser 0 in
let p1 = get_csi_param parser 1 in
let p2 = get_csi_param parser 2 in
if parser.csi_param_count = 3 && p0 = 8 && p1 >= 0 && p2 >= 0 then
Some (`User (Resize (p2, p1)))
else if parser.csi_param_count = 3 && p0 = 4 && p1 >= 0 && p2 >= 0 then
Some (`Caps (Caps.Pixel_resolution (p2, p1)))
else None
| 'R' ->
let row = get_csi_param parser 0 in
let col = get_csi_param parser 1 in
if parser.csi_param_count = 2 && row >= 0 && col >= 0 then
Some (`Caps (Caps.Cursor_position (row, col)))
else None
| 'c' ->
if start < params_end && s.[start] = '?' then (
parse_csi_params_into parser s (start + 1) params_end;
let rec collect_attrs acc i =
if i >= parser.csi_param_count then List.rev acc
else
let v = get_csi_param parser i in
if v >= 0 then collect_attrs (v :: acc) (i + 1)
else collect_attrs acc (i + 1)
in
Some (`Caps (Caps.Device_attributes (collect_attrs [] 0))))
else if parser.csi_param_count = 0 then
let modifier = ensure_shift modifier in
Some (`User (make_key_event ~modifier ~event_type Right))
else None
| _ -> None
let parse_csi_mouse_event s start intermediate_end final_char params_end :
parsed option =
match final_char with
| 'M' | 'm' ->
if start < String.length s && s.[start] = '<' then
Option.map
(fun e -> `User e)
(parse_sgr_mouse s start (intermediate_end + 1))
else if params_end > start then
Option.map
(fun e -> `User e)
(parse_urxvt_mouse s start (intermediate_end + 1))
else None
| _ -> None
let parse_csi parser s start end_ : parsed option =
let params_end = ref start in
while !params_end < end_ && is_csi_param s.[!params_end] do
incr params_end
done;
let intermediate_end = ref !params_end in
let rec consume_intermediate () =
if !intermediate_end < end_ then
let ch = s.[!intermediate_end] in
let is_dollar = ch = '$' || ch = '^' in
if is_csi_intermediate ch then
if is_dollar && !intermediate_end + 1 >= end_ then ()
else (
incr intermediate_end;
consume_intermediate ())
else ()
else ()
in
consume_intermediate ();
if !intermediate_end < end_ && is_csi_final s.[!intermediate_end] then (
let final_char = s.[!intermediate_end] in
parse_csi_params_into parser s start !params_end;
let csi_mod = csi_mod_of_parsed parser s in
let modifier = modifier_of_csi_mod csi_mod in
let event_type = event_type_of_csi_mod csi_mod in
match final_char with
| 'A' | 'B' | 'C' | 'D' | 'E' | 'a' | 'b' | 'd' | 'e' | 'H' | 'F' | 'Z' ->
parse_csi_cursor final_char modifier event_type
| 'I' -> Some (`User Focus)
| 'O' -> Some (`User Blur)
| '$' | '^' | '~' ->
parse_csi_tilde parser final_char modifier event_type csi_mod
| 'u' -> (
match parse_kitty_keyboard parser s start (!intermediate_end + 1) with
| None -> None
| Some e -> Some (`User e))
| 'y' | 'n' | 't' | 'R' | 'c' ->
parse_csi_capability parser s start !params_end final_char modifier
event_type
| 'M' | 'm' ->
parse_csi_mouse_event s start !intermediate_end final_char !params_end
| _ -> None)
else None
let parse_escape_sequence parser s start length : parsed option * int =
if length <= 0 then (None, 0)
else if length = 1 then (Some (`User (make_key_event Escape)), 1)
else
let esc2 = s.[start + 1] in
if esc2 = '[' then
match parse_csi parser s (start + 2) (start + length) with
| Some event -> (Some event, length)
| None -> (None, 0)
else if esc2 = 'O' && length >= 3 then
let event_opt =
match s.[start + 2] with
| 'A' -> Some (make_key_event Up)
| 'B' -> Some (make_key_event Down)
| 'C' -> Some (make_key_event Right)
| 'D' -> Some (make_key_event Left)
| 'F' -> Some (make_key_event End)
| 'H' -> Some (make_key_event Home)
| 'P' -> Some (make_key_event (F 1))
| 'Q' -> Some (make_key_event (F 2))
| 'R' -> Some (make_key_event (F 3))
| 'S' -> Some (make_key_event (F 4))
| 'a' -> Some (make_key_event ~modifier:(mk_modifier ~ctrl:true ()) Up)
| 'b' ->
Some (make_key_event ~modifier:(mk_modifier ~ctrl:true ()) Down)
| 'c' ->
Some (make_key_event ~modifier:(mk_modifier ~ctrl:true ()) Right)
| 'd' ->
Some (make_key_event ~modifier:(mk_modifier ~ctrl:true ()) Left)
| 'e' ->
Some (make_key_event ~modifier:(mk_modifier ~ctrl:true ()) KP_5)
| 'X' -> Some (make_char_event '=')
| _ -> None
in
(Option.map (fun e -> `User e) event_opt, 3)
else if esc2 = ']' then
let rec find_terminator i =
if i >= start + length then None
else
let c = s.[i] in
if c = '\x07' then Some i
else if c = '\x1b' && i + 1 < start + length && s.[i + 1] = '\\' then
Some (i + 1)
else find_terminator (i + 1)
in
match find_terminator (start + 2) with
| None -> (None, 0)
| Some pos ->
let seq_len = pos - (start + 2) in
let seq = String.sub s (start + 2) seq_len in
let semi = try String.index seq ';' with _ -> String.length seq in
let code_str = String.sub seq 0 semi in
let data =
if semi < String.length seq then
String.sub seq (semi + 1) (String.length seq - semi - 1)
else ""
in
let code = try int_of_string code_str with _ -> 0 in
let consumed = pos - start + 1 in
let event =
if code = 52 then
let selection_end =
try String.index data ';' with _ -> String.length data
in
let selection = String.sub data 0 selection_end in
let base64_data =
if selection_end < String.length data then
String.sub data (selection_end + 1)
(String.length data - selection_end - 1)
else ""
in
let decode_base64 s =
let len = String.length s in
if len = 0 || len mod 4 <> 0 then None
else
let is_valid_char = function
| 'A' .. 'Z' | 'a' .. 'z' | '0' .. '9' | '+' | '/' | '=' ->
true
| _ -> false
in
let decode_char = function
| 'A' .. 'Z' as c -> Char.code c - Char.code 'A'
| 'a' .. 'z' as c -> Char.code c - Char.code 'a' + 26
| '0' .. '9' as c -> Char.code c - Char.code '0' + 52
| '+' -> 62
| '/' -> 63
| _ -> 0
in
let rec validate i =
if i >= len then true
else if is_valid_char s.[i] then validate (i + 1)
else false
in
let valid_padding =
if len < 4 then true
else
let c2 = s.[len - 2] in
let c1 = s.[len - 1] in
match (c2, c1) with
| '=', '=' | _, '=' -> true
| '=', _ -> false
| _ -> true
in
if not (validate 0 && valid_padding) then None
else
let out = parser.scratch_buffer in
Buffer.clear out;
let rec decode i =
if i + 4 <= len then (
let a = decode_char s.[i] in
let b = decode_char s.[i + 1] in
let c = decode_char s.[i + 2] in
let d = decode_char s.[i + 3] in
Buffer.add_char out (Char.chr ((a lsl 2) lor (b lsr 4)));
if s.[i + 2] <> '=' then (
Buffer.add_char out
(Char.chr (((b land 15) lsl 4) lor (c lsr 2)));
if s.[i + 3] <> '=' then
Buffer.add_char out
(Char.chr (((c land 3) lsl 6) lor d)));
decode (i + 4))
in
decode 0;
Some (Buffer.contents out)
in
let clipboard_data =
match decode_base64 base64_data with
| Some decoded -> decoded
| None -> base64_data
in
Clipboard (selection, clipboard_data)
else Osc (code, data)
in
(Some (`User event), consumed)
else if length >= 2 then
let c = s.[start + 1] in
if c >= '\x00' && c <= '\x1a' then
let key, modifier =
if c = '\x00' then
(Key.Char (Uchar.of_int 32), mk_modifier ~alt:true ~ctrl:true ())
else if c = '\t' then (Tab, mk_modifier ~alt:true ())
else if c = '\n' then (Line_feed, mk_modifier ~alt:true ())
else if c = '\r' then (Enter, mk_modifier ~alt:true ())
else
( Char (Uchar.of_int (Char.code c + 64)),
mk_modifier ~alt:true ~ctrl:true () )
in
(Some (`User (make_key_event ~modifier key)), 2)
else if c = '\x7f' || c = '\b' then
( Some
(`User
(make_key_event ~modifier:(mk_modifier ~alt:true ()) Backspace)),
2 )
else if c = ' ' then
( Some
(`User
(make_key_event ~modifier:(mk_modifier ~alt:true ())
(Char (Uchar.of_int 32)))),
2 )
else if c >= '!' && c <= '~' then
let is_upper = c >= 'A' && c <= 'Z' in
let modifier =
if is_upper then mk_modifier ~alt:true ~shift:true ()
else mk_modifier ~alt:true ()
in
( Some
(`User
(make_key_event ~modifier (Char (Uchar.of_int (Char.code c))))),
2 )
else (None, 0)
else (None, 0)
let special_key_event_of_code code : event option =
match code with
| 0x00 -> Some (make_char_event ~modifier:(mk_modifier ~ctrl:true ()) ' ')
| 0x08 | 0x7f -> Some (make_key_event Backspace)
| 0x09 -> Some (make_key_event Tab)
| 0x0a -> Some (make_key_event Line_feed)
| 0x0d -> Some (make_key_event Enter)
| c when c >= 0x01 && c <= 0x1A ->
let letter = 0x40 + c in
Some
(make_key_event
~modifier:(mk_modifier ~ctrl:true ())
(Char (Uchar.of_int letter)))
| _ -> None
let ascii_events : event option array =
Array.init 128 (fun code ->
match special_key_event_of_code code with
| Some ev -> Some ev
| None ->
let modifier =
if code >= Char.code 'A' && code <= Char.code 'Z' then
mk_modifier ~shift:true ()
else no_modifier
in
Some (make_char_event ~modifier (Char.chr code)))
let key_event_of_code parser code : event option =
if code >= 0 && code < Array.length ascii_events then ascii_events.(code)
else
let u = Uchar.of_int code in
let modifier =
if code >= Char.code 'A' && code <= Char.code 'Z' then
mk_modifier ~shift:true ()
else no_modifier
in
let buf = parser.scratch_buffer in
Buffer.clear buf;
Buffer.add_utf_8_uchar buf u;
let associated_text = Buffer.contents buf in
Some (make_key_event ~modifier ~associated_text (Char u))
let[@inline] utf8_seq_len byte =
if byte < 0x80 then 1
else if byte < 0xC2 then 0
else if byte < 0xE0 then 2
else if byte < 0xF0 then 3
else if byte < 0xF5 then 4
else 0
let text_events_iter parser bytes off len emit =
let end_pos = off + len in
let i = ref off in
if parser.utf8_len > 0 then begin
let lead = Bytes.get_uint8 parser.utf8_buf 0 in
let need = utf8_seq_len lead in
let have = parser.utf8_len in
let want = need - have in
if want <= len then begin
Bytes.blit bytes off parser.utf8_buf have want;
let d = Bytes.get_utf_8_uchar parser.utf8_buf 0 in
if Uchar.utf_decode_is_valid d then begin
let code = Uchar.to_int (Uchar.utf_decode_uchar d) in
match key_event_of_code parser code with Some e -> emit e | None -> ()
end;
parser.utf8_len <- 0;
i := off + want
end
else begin
Bytes.blit bytes off parser.utf8_buf have len;
parser.utf8_len <- have + len;
i := end_pos
end
end;
while !i < end_pos do
let b = Bytes.get_uint8 bytes !i in
if b < 0x80 then begin
(match key_event_of_code parser b with Some e -> emit e | None -> ());
incr i
end
else begin
let seq_len = utf8_seq_len b in
let remaining = end_pos - !i in
if seq_len = 0 then
incr i
else if remaining >= seq_len then begin
let d = Bytes.get_utf_8_uchar bytes !i in
if Uchar.utf_decode_is_valid d then begin
let code = Uchar.to_int (Uchar.utf_decode_uchar d) in
match key_event_of_code parser code with
| Some e -> emit e
| None -> ()
end;
i := !i + Uchar.utf_decode_length d
end
else begin
Bytes.blit bytes !i parser.utf8_buf 0 remaining;
parser.utf8_len <- remaining;
i := end_pos
end
end
done
let process_tokens_iter parser tokens ~on_event ~on_caps =
let rec loop = function
| [] -> ()
| Tokenizer.Paste payload :: rest ->
let sanitized = strip_ansi parser payload in
if sanitized <> "" then on_event (Paste sanitized);
loop rest
| Tokenizer.Sequence seq :: rest -> (
if seq = "\x1b[200~" || seq = "\x1b[201~" then loop rest
else
match capability_event_of_sequence seq with
| Event cap ->
on_caps cap;
loop rest
| Drop -> loop rest
| No_match -> (
let ev_opt =
let seq_len = String.length seq in
if
seq_len >= 3
&& seq.[0] = '\x1b'
&& seq.[1] = '['
&& seq.[2] = 'M'
then
match parse_x10_normal_mouse_string seq 3 with
| Some (e, _) -> Some (`User e)
| None -> None
else if seq = "\x1b\x1b" then Some (`User alt_escape_event)
else
let ev, _ = parse_escape_sequence parser seq 0 seq_len in
ev
in
match ev_opt with
| Some (`User e) ->
on_event e;
loop rest
| Some (`Caps c) ->
on_caps c;
loop rest
| None ->
let len = String.length seq in
if len > 0 then on_event (ascii_events.(0x1b) |> Option.get);
if len > 1 then begin
let bytes = Bytes.unsafe_of_string seq in
text_events_iter parser bytes 1 (len - 1) on_event
end;
loop rest))
| Tokenizer.Text s :: rest ->
let bytes = Bytes.unsafe_of_string s in
text_events_iter parser bytes 0 (String.length s) on_event;
loop rest
in
loop tokens
let feed parser bytes offset length ~now ~on_event ~on_caps =
let tokens = Tokenizer.feed parser.raw bytes offset length ~now in
process_tokens_iter parser tokens ~on_event ~on_caps
let drain parser ~now ~on_event ~on_caps =
let tokens = Tokenizer.flush_expired parser.raw now in
if tokens <> [] then process_tokens_iter parser tokens ~on_event ~on_caps
let deadline parser = Tokenizer.deadline parser.raw
let pending parser = Tokenizer.pending parser.raw
let reset parser =
Tokenizer.reset parser.raw;
Buffer.clear parser.scratch_buffer;
parser.utf8_len <- 0