Source file pager_widget.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
[@@@warning "-32-34-37-69"]
let debug_enabled = lazy (Sys.getenv_opt "MIAOU_DEBUG" = Some "1")
let debug fmt =
Printf.ksprintf
(fun s -> if Lazy.force debug_enabled then Printf.eprintf "%s%!" s)
fmt
type t = {
title : string option;
mutable lines : string list;
mutable offset : int;
mutable follow : bool;
mutable wrap : bool;
mutable streaming : bool;
mutable spinner_pos : int;
mutable pending_lines : string list;
mutable pending_rev : string list;
mutable pending_dirty : bool;
mutable cached_body : string option;
mutable last_flush : float;
mutable flush_interval_ms : int;
mutable last_win : int;
mutable last_body_win : int;
mutable last_cols : int;
mutable search : string option;
mutable is_regex : bool;
mutable input_mode : [`None | `Search_edit | `Lookup | `Help];
mutable input_buffer : string;
mutable input_pos : int;
mutable notify_render : (unit -> unit) option;
mutable cursor_mode : bool;
mutable cursor : int;
}
let default_win = 20
let win_of_rows rows = max 1 (rows - 1)
let win_of_size _size = default_win
let split_lines s = String.split_on_char '\n' s
let clamp lo hi x = max lo (min hi x)
let max_offset_for ~total ~win = max 0 (total - win)
let truncate_line ~width line =
let visible_len = Widgets.visible_chars_count line in
if visible_len <= width then line
else
let target_width = max 0 (width - 3) in
let byte_idx = Widgets.visible_byte_index_of_pos line target_width in
String.sub line 0 byte_idx ^ "\027[0m..."
let wrapped_line_count ~width line =
if width <= 0 then 1
else
let visible_len = Widgets.visible_chars_count line in
if visible_len <= width then 1
else
(visible_len + width - 1) / width
let build_body_buffer ~wrap ~cols lines =
let buf =
let est =
List.fold_left (fun acc l -> acc + String.length l + 1) 0 lines + 16
in
Buffer.create est
in
let first = ref true in
let add_line line =
if !first then first := false else Buffer.add_char buf '\n' ;
if String.contains line '\027' then
debug
"[PAGER] Adding line with ANSI codes (len=%d)\n"
(String.length line) ;
Buffer.add_string buf line
in
let width = max 10 (cols - 2) in
if wrap then
List.iter
(fun line ->
if String.contains line '\027' then
debug "[PAGER] Before wrap: line has ANSI codes\n" ;
let wrapped = Widgets.wrap_text ~width line in
if String.contains line '\027' then
debug
"[PAGER] After wrap: %d lines, checking for ANSI...\n"
(List.length wrapped) ;
List.iter add_line wrapped)
lines
else
List.iter (fun line -> add_line (truncate_line ~width line)) lines ;
Buffer.contents buf
let help_content ~streaming ~wrap ~follow ~cursor_mode =
let open Widgets in
let hint k v = themed_muted k ^ ": " ^ v in
let lines =
[
themed_emphasis " Pager Keyboard Shortcuts ";
"";
hint "↑/↓" "Scroll one line up/down";
hint "PgUp/PgDn" "Scroll one page up/down";
hint "g/G" "Jump to top/bottom";
hint "/" "Search (Enter to confirm, Esc to cancel)";
hint "n/p" "Next/previous search match";
hint
"w"
(if wrap then "Disable line wrapping" else "Enable line wrapping");
hint
"c"
(if cursor_mode then "Disable cursor mode" else "Enable cursor mode");
]
in
let lines =
if streaming then
lines
@ [
hint
"f"
(if follow then "Stop following new lines" else "Follow new lines");
]
else lines
in
lines @ [""; themed_muted "Press Esc or ? to close"]
let render_modal ~width lines =
let open Widgets in
let hline =
if Lazy.force use_ascii_borders then String.make width '-'
else
let buf = Buffer.create (width * 3) in
for _ = 1 to width do
Buffer.add_string buf "─"
done ;
Buffer.contents buf
in
let top = themed_border ("┌" ^ hline ^ "┐") in
let bot = themed_border ("└" ^ hline ^ "┘") in
let pad_line line =
let visible = Widgets.visible_chars_count line in
let padding = max 0 (width - visible) in
themed_border "│" ^ line ^ String.make padding ' ' ^ themed_border "│"
in
let body_lines = List.map pad_line lines in
String.concat "\n" ([top] @ body_lines @ [bot])
let overlay_modal_centered ~cols ~rows body modal_lines modal_width =
let body_lines = String.split_on_char '\n' body in
let modal_height = List.length modal_lines + 2 in
let start_row = max 0 ((rows - modal_height) / 2) in
let start_col = max 0 ((cols - modal_width - 2) / 2) in
let modal_rendered = render_modal ~width:modal_width modal_lines in
let modal_rows = String.split_on_char '\n' modal_rendered in
let rec overlay row_idx body_rows modal_idx acc =
match body_rows with
| [] -> List.rev acc
| body_row :: rest ->
let new_row =
if row_idx >= start_row && modal_idx < List.length modal_rows then
let modal_row = List.nth modal_rows modal_idx in
let body_visible = Widgets.visible_chars_count body_row in
let before =
if start_col > 0 && body_visible >= start_col then
let idx =
Widgets.visible_byte_index_of_pos body_row start_col
in
String.sub body_row 0 idx
else String.make (min start_col (max 0 body_visible)) ' '
in
before ^ modal_row
else body_row
in
let new_modal_idx =
if row_idx >= start_row && modal_idx < List.length modal_rows then
modal_idx + 1
else modal_idx
in
overlay (row_idx + 1) rest new_modal_idx (new_row :: acc)
in
String.concat "\n" (overlay 0 body_lines 0 [])
let open_lines ?title ?notify_render lines =
{
title;
lines;
offset = 0;
follow = false;
wrap = false;
streaming = false;
spinner_pos = 0;
pending_lines = [];
pending_rev = [];
pending_dirty = false;
cached_body = None;
last_flush = 0.;
flush_interval_ms = 200;
last_win = default_win;
last_body_win = default_win - 4;
last_cols = 80;
search = None;
is_regex = false;
input_mode = `None;
input_buffer = "";
input_pos = 0;
notify_render;
cursor_mode = false;
cursor = 0;
}
let open_text ?title ?notify_render s =
open_lines ?title ?notify_render (split_lines s)
let set_offset t o = {t with offset = o}
let set_search t s = {t with search = s; offset = 0}
let set_cursor_mode t enabled =
t.cursor_mode <- enabled ;
if enabled then t.cursor <- clamp 0 (max 0 (List.length t.lines - 1)) t.cursor ;
t
let cursor_mode t = t.cursor_mode
let get_cursor_line t = t.cursor
let ensure_cursor_visible t =
let total = List.length t.lines in
if total = 0 then ()
else if not t.wrap then (
let win = max 1 (t.last_body_win - 1) in
let max_offset = max_offset_for ~total ~win in
if t.cursor < t.offset then t.offset <- t.cursor
else if t.cursor >= t.offset + win then
t.offset <- clamp 0 max_offset (t.cursor - win + 1))
else
let width = max 10 (t.last_cols - 2) in
let win = t.last_body_win in
if t.cursor < t.offset then t.offset <- t.cursor
else
let rec count_display_lines idx acc =
if idx > t.cursor then acc
else if idx >= total then acc
else
let line = List.nth t.lines idx in
let h = wrapped_line_count ~width line in
count_display_lines (idx + 1) (acc + h)
in
let display_lines_to_cursor = count_display_lines t.offset 0 in
if display_lines_to_cursor > win then
let rec find_new_offset idx acc =
if idx < 0 then 0
else
let line = List.nth t.lines idx in
let h = wrapped_line_count ~width line in
if acc + h > win then idx + 1
else find_new_offset (idx - 1) (acc + h)
in
t.offset <- clamp 0 (total - 1) (find_new_offset t.cursor 0)
let set_cursor t line =
let total = List.length t.lines in
t.cursor <- clamp 0 (max 0 (total - 1)) line ;
ensure_cursor_visible t ;
t
let cursor_up ?(n = 1) t =
if not t.cursor_mode then t
else (
t.cursor <- max 0 (t.cursor - n) ;
ensure_cursor_visible t ;
t)
let cursor_down ?(n = 1) t =
if not t.cursor_mode then t
else
let total = List.length t.lines in
t.cursor <- min (max 0 (total - 1)) (t.cursor + n) ;
ensure_cursor_visible t ;
t
let append_lines_follow t =
if t.follow then t.offset <- max 0 (List.length t.lines - t.last_win)
let append_lines t ls =
t.lines <- t.lines @ ls ;
append_lines_follow t
let append_text t s =
let more = split_lines s in
append_lines t more
let append_lines_batched t ls =
t.pending_rev <- List.rev_append ls t.pending_rev ;
t.pending_dirty <- true ;
t.cached_body <- None ;
match t.notify_render with
| Some f -> ( try f () with _ -> ())
| None -> (
try
if t.pending_rev <> [] then (
let to_add = List.rev t.pending_rev in
t.pending_rev <- [] ;
t.lines <- t.lines @ to_add ;
append_lines_follow t) ;
t.pending_dirty <- false ;
t.cached_body <- None ;
t.last_flush <- Sys.time ()
with _ -> ())
let append_text_batched t s =
let more = split_lines s in
append_lines_batched t more
let start_streaming t =
t.streaming <- true ;
t.spinner_pos <- 0
let flush_pending_if_needed ?(force = false) t =
if not t.pending_dirty then ()
else
let now = Sys.time () in
let elapsed_ms = int_of_float ((now -. t.last_flush) *. 1000.) in
if force || elapsed_ms >= t.flush_interval_ms then (
if t.pending_rev <> [] then (
let to_add = List.rev t.pending_rev in
t.pending_rev <- [] ;
t.lines <- t.lines @ to_add ;
append_lines_follow t) ;
t.pending_dirty <- false ;
t.last_flush <- now)
let stop_streaming t =
flush_pending_if_needed ~force:true t ;
t.streaming <- false ;
t.follow <- false ;
t.spinner_pos <- 0
type json_streamer = {
mutable buf : Buffer.t;
mutable partial : Buffer.t;
mutable indent : int;
mutable in_string : bool;
mutable in_escape : bool;
mutable token_buf : Buffer.t option;
mutable pending_string : Buffer.t option;
mutable pending_ws : Buffer.t option;
}
let json_streamer_create () =
{
buf = Buffer.create 1024;
partial = Buffer.create 256;
indent = 0;
in_string = false;
in_escape = false;
token_buf = None;
pending_string = None;
pending_ws = None;
}
let json_streamer_feed st chunk =
let n = String.length chunk in
let color_num s = Widgets.themed_info s in
let color_key s = Widgets.themed_emphasis s in
let color_string s = Widgets.themed_warning s in
let flush_token () =
match st.token_buf with
| None -> ()
| Some b ->
let tok = Buffer.contents b in
st.token_buf <- None ;
let out =
if tok = "true" || tok = "false" then Widgets.themed_success tok
else if tok = "null" then Widgets.themed_muted tok
else
try
ignore (float_of_string tok) ;
color_num tok
with _ -> tok
in
Buffer.add_string st.partial out
in
let flush_pending_string_as_key () =
match st.pending_string with
| None -> ()
| Some b ->
let s = Buffer.contents b in
st.pending_string <- None ;
st.pending_ws <- None ;
Buffer.add_string st.partial (color_key s)
in
let flush_pending_string_as_value () =
match st.pending_string with
| None -> ()
| Some b ->
let s = Buffer.contents b in
st.pending_string <- None ;
st.pending_ws <- None ;
Buffer.add_string st.partial (color_string s)
in
let rec handle_char c =
match st.pending_string with
| Some _ -> (
match c with
| ' ' | '\t' | '\r' | '\n' -> (
match st.pending_ws with
| Some w -> Buffer.add_char w c
| None ->
st.pending_ws <-
Some
(let b = Buffer.create 8 in
Buffer.add_char b c ;
b))
| ':' ->
flush_pending_string_as_key () ;
flush_token () ;
Buffer.add_char st.partial ':' ;
Buffer.add_char st.partial ' '
| _ ->
flush_pending_string_as_value () ;
handle_char c)
| None -> (
if st.in_string then (
match st.token_buf with
| Some _ ->
flush_token () ;
st.token_buf <- None
| None ->
() ;
(match st.pending_string with
| Some _ -> ()
| None ->
st.pending_string <-
Some
(let b = Buffer.create 64 in
Buffer.add_char b '"' ;
b)) ;
(match st.pending_string with
| Some b -> Buffer.add_char b c
| None -> ()) ;
if st.in_escape then st.in_escape <- false
else if c = '\\' then st.in_escape <- true
else if c = '"' then st.in_string <- false)
else
match c with
| '{' | '[' ->
flush_token () ;
Buffer.add_char st.partial c ;
st.indent <- st.indent + 1 ;
Buffer.add_char st.partial '\n' ;
Buffer.add_string st.partial (String.make (st.indent * 2) ' ')
| '}' | ']' ->
flush_token () ;
st.indent <- max 0 (st.indent - 1) ;
Buffer.add_char st.partial '\n' ;
Buffer.add_string st.partial (String.make (st.indent * 2) ' ') ;
Buffer.add_char st.partial c
| ',' ->
flush_token () ;
Buffer.add_char st.partial c ;
Buffer.add_char st.partial '\n' ;
Buffer.add_string st.partial (String.make (st.indent * 2) ' ')
| ':' ->
flush_token () ;
Buffer.add_char st.partial ':' ;
Buffer.add_char st.partial ' '
| '\n' ->
flush_token () ;
Buffer.add_char st.partial '\n'
| ' ' | '\t' | '\r' ->
Buffer.add_char st.partial c
| '"' ->
st.in_string <- true ;
st.in_escape <- false ;
st.pending_string <-
Some
(let b = Buffer.create 64 in
Buffer.add_char b '"' ;
b)
| _ ->
let is_token_char ch =
match ch with
| '0' .. '9' | 'a' .. 'z' | 'A' .. 'Z' | '+' | '-' | '.' | '_'
->
true
| _ -> false
in
if is_token_char c then
match st.token_buf with
| Some b -> Buffer.add_char b c
| None ->
st.token_buf <-
Some
(let b = Buffer.create 16 in
Buffer.add_char b c ;
b)
else (
flush_token () ;
Buffer.add_char st.partial c))
in
for i = 0 to n - 1 do
let c = chunk.[i] in
handle_char c
done ;
let content = Buffer.contents st.partial in
let lines = String.split_on_char '\n' content in
Buffer.clear st.partial ;
let complete, last_partial =
match List.rev lines with [] -> ([], "") | hd :: tl -> (List.rev tl, hd)
in
List.iter (fun l -> Buffer.add_string st.buf (l ^ "\n")) complete ;
if last_partial <> "" then Buffer.add_string st.partial last_partial ;
let out = Buffer.contents st.buf in
Buffer.clear st.buf ;
if out = "" then []
else
String.split_on_char
'\n'
(if out.[String.length out - 1] = '\n' then
String.sub out 0 (String.length out - 1)
else out)
let find_next lines ~start ~q ~is_regex =
if q = "" then None
else
let n = List.length lines in
let rec aux i =
if i >= n then None
else
let l = List.nth lines i in
try
let rex = if is_regex then Str.regexp q else Str.regexp_string q in
ignore (Str.search_forward rex l 0) ;
Some i
with Not_found -> aux (i + 1)
in
aux start
let find_prev lines ~start ~q ~is_regex =
if q = "" then None
else
let rec aux i =
if i < 0 then None
else
let l = List.nth lines i in
try
let rex = if is_regex then Str.regexp q else Str.regexp_string q in
ignore (Str.search_forward rex l 0) ;
Some i
with Not_found -> aux (i - 1)
in
aux start
let visible_slice_wrapped ~win ~cols ~wrap t =
let total = List.length t.lines in
let width = max 10 (cols - 2) in
if not wrap then
let max_off = max_offset_for ~total ~win in
if t.follow then (max_off, min win (total - max_off))
else
let start = clamp 0 max_off t.offset in
let count = min win (total - start) in
(start, count)
else
let line_heights =
List.map (fun line -> wrapped_line_count ~width line) t.lines
in
let heights_arr = Array.of_list line_heights in
let n = Array.length heights_arr in
if n = 0 then (0, 0)
else if t.follow then
let rec find_start idx display_lines =
if idx < 0 then (0, display_lines)
else
let h = heights_arr.(idx) in
if display_lines + h > win then (idx + 1, display_lines)
else find_start (idx - 1) (display_lines + h)
in
let start, _ = find_start (n - 1) 0 in
(start, n - start)
else
let start = clamp 0 (n - 1) t.offset in
let rec count_lines idx display_lines lines_taken =
if idx >= n || display_lines >= win then lines_taken
else
let h = heights_arr.(idx) in
if display_lines + h > win && lines_taken > 0 then lines_taken
else count_lines (idx + 1) (display_lines + h) (lines_taken + 1)
in
let count = count_lines start 0 0 in
(start, count)
let render ?cols ~win (t : t) ~focus : string =
flush_pending_if_needed t ;
t.last_win <- win ;
let cols = match cols with Some c -> c | None -> 80 in
t.last_cols <- cols ;
let wrap = t.wrap in
debug
"[PAGER] render called: search=%s input_mode=%s wrap=%b\n"
(match t.search with Some s -> "Some('" ^ s ^ "')" | None -> "None")
(match t.input_mode with
| `None -> "None"
| `Search_edit -> "Search_edit"
| `Lookup -> "Lookup"
| `Help -> "Help")
wrap ;
let = match t.input_mode with `Search_edit -> 2 | _ -> 1 in
let = if focus then 2 else 1 in
let body_win = max 1 (win - header_lines - footer_lines) in
t.last_body_win <- body_win ;
let start, count = visible_slice_wrapped ~win:body_win ~cols ~wrap t in
let stop = start + count in
let body_lines =
let slice =
let rec take_range i acc = function
| [] -> List.rev acc
| x :: xs ->
if i >= stop then List.rev acc
else if i >= start then take_range (i + 1) (x :: acc) xs
else take_range (i + 1) acc xs
in
take_range 0 [] t.lines
in
debug
"[PAGER] render: t.search=%s, is_regex=%b, slice_len=%d\n"
(match t.search with Some s -> "Some('" ^ s ^ "')" | None -> "None")
t.is_regex
(List.length slice) ;
let slice =
match t.search with
| None -> slice
| Some q ->
debug
"[PAGER] Highlighting search query: '%s' in %d lines\n"
q
(List.length slice) ;
List.map
(Widgets.highlight_matches ~is_regex:t.is_regex ~query:(Some q))
slice
in
if t.cursor_mode && focus then
let cursor_indicator =
if Lazy.force Widgets.use_ascii_borders then "> " else "▸ "
in
let no_cursor_prefix = " " in
List.mapi
(fun i line ->
let line_idx = start + i in
if line_idx = t.cursor then
Widgets.themed_selection (cursor_indicator ^ line) ^ "\027[0m"
else no_cursor_prefix ^ line)
slice
else slice
in
let title = match t.title with Some s -> s | None -> "Pager" in
let status =
let pos =
if t.cursor_mode then
Printf.sprintf
"L%d %d-%d/%d"
(t.cursor + 1)
(start + 1)
stop
(List.length t.lines)
else Printf.sprintf "%d-%d/%d" (start + 1) stop (List.length t.lines)
in
let wrap_indicator = if wrap then " [wrap]" else "" in
let cursor_indicator = if t.cursor_mode then " [cursor]" else "" in
let mode = if t.follow then " [follow]" else "" in
Widgets.themed_muted (pos ^ wrap_indicator ^ cursor_indicator ^ mode)
in
let search_prompt =
match t.input_mode with
| `Search_edit ->
let prompt = "Search: " in
let cursor =
if Lazy.force Widgets.use_ascii_borders then "|" else "▌"
in
let before =
String.sub
t.input_buffer
0
(min t.input_pos (String.length t.input_buffer))
in
let after =
if t.input_pos < String.length t.input_buffer then
String.sub
t.input_buffer
t.input_pos
(String.length t.input_buffer - t.input_pos)
else ""
in
Some (Widgets.themed_selection (prompt ^ before ^ cursor ^ after))
| _ -> None
in
let =
match search_prompt with Some sp -> [status; sp] | None -> [status]
in
let =
let hints =
match t.input_mode with
| `Search_edit -> [("Enter", "search"); ("Esc", "cancel")]
| _ ->
let nav_hint = if t.cursor_mode then "move cursor" else "scroll" in
let base =
[("Up/Down", nav_hint); ("PgUp/PgDn", "page"); ("/", "search")]
in
let base = base @ [("n/p", "next/prev")] in
let base = base @ [("w", if wrap then "unwrap" else "wrap")] in
let base =
base
@ [("c", if t.cursor_mode then "scroll mode" else "cursor mode")]
in
let base = base @ [("?", "help")] in
if t.streaming then
base @ [("f", if t.follow then "unfollow" else "follow")]
else base
in
Widgets.footer_hints_wrapped_capped
~cols
~max_lines:(if focus then 2 else 1)
hints
in
let body = build_body_buffer ~wrap ~cols body_lines in
let body =
match t.input_mode with
| `Help ->
let help_lines =
help_content
~streaming:t.streaming
~wrap
~follow:t.follow
~cursor_mode:t.cursor_mode
in
let modal_width = min (cols - 4) 50 in
overlay_modal_centered ~cols ~rows:win body help_lines modal_width
| _ -> body
in
let rendered = Widgets.render_frame ~title ~header ~body ~footer ~cols () in
rendered |> String.split_on_char '\n'
|> List.map (fun line -> line ^ "\027[0m")
|> String.concat "\n"
let render_with_size ~size t ~focus = render ~win:(win_of_size size) t ~focus
let insert_char t c =
let before = String.sub t.input_buffer 0 t.input_pos in
let after =
if t.input_pos < String.length t.input_buffer then
String.sub
t.input_buffer
t.input_pos
(String.length t.input_buffer - t.input_pos)
else ""
in
t.input_buffer <- before ^ c ^ after ;
t.input_pos <- t.input_pos + String.length c ;
t
let is_printable_char key =
String.length key = 1
&&
let c = Char.code key.[0] in
(c >= 32 && c < 127) || c >= 128
let handle_search_input t ~key =
match key with
| "Enter" | "Return" ->
debug "[PAGER] Enter pressed in search mode, query='%s'\n" t.input_buffer ;
let q = String.trim t.input_buffer in
if q = "" then (
t.search <- None ;
t.input_mode <- `None)
else (
t.search <- Some q ;
t.input_mode <- `None) ;
debug
"[PAGER] Search set to: %s\n"
(match t.search with Some s -> "'" ^ s ^ "'" | None -> "None") ;
Some (t, true)
| "Esc" | "Escape" ->
t.input_mode <- `None ;
Some (t, true)
| ("Backspace" | "BackSpace") when t.input_pos > 0 ->
let before = String.sub t.input_buffer 0 (t.input_pos - 1) in
let after_start = t.input_pos in
let after_len = String.length t.input_buffer - after_start in
let after =
if after_len > 0 then String.sub t.input_buffer after_start after_len
else ""
in
t.input_buffer <- before ^ after ;
t.input_pos <- t.input_pos - 1 ;
Some (t, true)
| "Backspace" | "BackSpace" ->
Some (t, true)
| "Left" when t.input_pos > 0 ->
t.input_pos <- t.input_pos - 1 ;
Some (t, true)
| "Left" -> Some (t, true)
| "Right" when t.input_pos < String.length t.input_buffer ->
t.input_pos <- t.input_pos + 1 ;
Some (t, true)
| "Right" -> Some (t, true)
| _ when is_printable_char key -> Some (insert_char t key, true)
| _ -> None
let handle_nav_key t ~key ~win ~total ~page =
let max_offset = max_offset_for ~total ~win in
let with_auto_follow t new_offset =
let clamped_offset = clamp 0 max_offset new_offset in
let at_or_past_bottom = new_offset >= max_offset in
t.offset <- clamped_offset ;
t.follow <- at_or_past_bottom && t.streaming ;
t
in
match key with
| ("f" | "F") when t.streaming ->
t.follow <- not t.follow ;
if t.follow then t.offset <- max_offset ;
Some (t, true)
| "w" | "W" ->
t.wrap <- not t.wrap ;
t.cached_body <- None ;
Some (t, true)
| "/" ->
t.input_mode <- `Search_edit ;
t.input_buffer <- "" ;
t.input_pos <- 0 ;
Some (t, true)
| "n" -> (
let q = match t.search with Some s -> s | None -> "" in
let start_pos =
if t.cursor_mode then min (total - 1) (t.cursor + 1)
else min (total - 1) (t.offset + 1)
in
match find_next t.lines ~start:start_pos ~q ~is_regex:t.is_regex with
| None -> Some (t, true)
| Some i ->
if t.cursor_mode then (
t.cursor <- i ;
ensure_cursor_visible t)
else t.offset <- clamp 0 max_offset i ;
Some (t, true))
| "p" -> (
let q = match t.search with Some s -> s | None -> "" in
let start_pos =
if t.cursor_mode then max 0 (t.cursor - 1) else max 0 (t.offset - 1)
in
match find_prev t.lines ~start:start_pos ~q ~is_regex:t.is_regex with
| None -> Some (t, true)
| Some i ->
if t.cursor_mode then (
t.cursor <- i ;
ensure_cursor_visible t)
else t.offset <- clamp 0 max_offset i ;
Some (t, true))
| "?" ->
t.input_mode <- `Help ;
Some (t, true)
| "c" ->
t.cursor_mode <- not t.cursor_mode ;
if t.cursor_mode then
t.cursor <- clamp 0 (max 0 (total - 1)) t.offset ;
Some (t, true)
| _ -> (
if
t.cursor_mode
then
match key with
| "Up" | "k" ->
let _ = cursor_up t in
Some (t, true)
| "Down" | "j" ->
let _ = cursor_down t in
Some (t, true)
| "Page_up" ->
let _ = cursor_up ~n:page t in
Some (t, true)
| "Page_down" ->
let _ = cursor_down ~n:page t in
Some (t, true)
| "g" ->
t.cursor <- 0 ;
ensure_cursor_visible t ;
Some (t, true)
| "G" ->
t.cursor <- max 0 (total - 1) ;
ensure_cursor_visible t ;
Some (t, true)
| "WheelUp" ->
let _ = cursor_up ~n:Miaou_helpers.Mouse.wheel_scroll_lines t in
Some (t, true)
| "WheelDown" ->
let _ = cursor_down ~n:Miaou_helpers.Mouse.wheel_scroll_lines t in
Some (t, true)
| key -> (
match Miaou_helpers.Mouse.parse_click key with
| Some {row; _} ->
let =
match t.input_mode with `Search_edit -> 2 | _ -> 1
in
let body_row = row - header_lines in
if body_row >= 1 then (
let clicked_line = t.offset + body_row - 1 in
let max_line = max 0 (total - 1) in
t.cursor <- clamp 0 max_line clicked_line ;
Some (t, true))
else None
| None -> None)
else
match key with
| "Up" -> Some (with_auto_follow t (t.offset - 1), true)
| "Down" -> Some (with_auto_follow t (t.offset + 1), true)
| "Page_up" -> Some (with_auto_follow t (t.offset - page), true)
| "Page_down" -> Some (with_auto_follow t (t.offset + page), true)
| "g" ->
t.offset <- 0 ;
t.follow <- false ;
Some (t, true)
| "G" ->
t.offset <- max_offset ;
t.follow <- t.streaming ;
Some (t, true)
| "WheelUp" ->
Some
( with_auto_follow
t
(t.offset - Miaou_helpers.Mouse.wheel_scroll_lines),
true )
| "WheelDown" ->
Some
( with_auto_follow
t
(t.offset + Miaou_helpers.Mouse.wheel_scroll_lines),
true )
| _ -> None)
let handle_key ?win (t : t) ~key : t * bool =
debug
"[PAGER] handle_key: key='%s' input_mode=%s\n"
key
(match t.input_mode with
| `Search_edit -> "Search_edit"
| `Lookup -> "Lookup"
| `Help -> "Help"
| `None -> "None") ;
let win = match win with Some w -> w | None -> default_win in
let body_win = max 1 (win - 4) in
let total = List.length t.lines in
let page = max 1 (body_win - 1) in
match t.input_mode with
| `Search_edit -> (
match handle_search_input t ~key with
| Some result -> result
| None -> (t, false))
| `Help -> (
match key with
| "Escape" | "Esc" | "?" ->
t.input_mode <- `None ;
(t, true)
| _ -> (t, true) )
| `None | `Lookup -> (
match handle_nav_key t ~key ~win:body_win ~total ~page with
| Some result -> result
| None -> (t, false))
let () =
Miaou_registry.register ~name:"pager" ~mli:[%blob "pager_widget.mli"] ()