Source file sexp_pretty.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
open! Base
include Sexp_pretty_intf
module Sexp = Sexplib.Sexp
module Config = Config
open Config
module W = Sexp.With_layout
module Format = struct
include Caml.Format
let pp_listi sep ?(offset = 0) ?singleton pp fmt list =
match list with
| [] -> ()
| hd :: tl ->
(match singleton, tl with
| Some pp, [] -> pp offset fmt hd
| _ -> pp offset fmt hd);
List.iteri tl ~f:(fun i el ->
Caml.Format.fprintf fmt sep;
pp (i + offset + 1) fmt el)
;;
let pp_list sep ?singleton pp fmt list =
let singleton = Option.map singleton ~f:(fun singleton _ -> singleton) in
pp_listi sep ?singleton (fun _ -> pp) fmt list
;;
end
type content_kind =
| Sexp
type state = { content_kind : content_kind }
let start_state = { content_kind = Sexp }
let split = lazy (Re.Str.regexp "[ \t]+")
let color_to_code = function
| Black -> 30
| Red -> 31
| Green -> 32
| Yellow -> 33
| Blue -> 34
| Magenta -> 35
| Cyan -> 36
| White -> 37
| Default -> 39
;;
let rainbow_open_tag conf tag =
let args = Re.Str.split (force split) tag in
let color_count = Array.length conf.color_scheme in
match args with
| [ "d"; n ] ->
let i = Int.of_string n in
"["
^ Int.to_string
(color_to_code
(if i < 0 || color_count < 1
then Default
else conf.color_scheme.(i % color_count)))
^ "m"
| [ "c"; _ ] ->
(match conf.comments with
| Print (_, Some clr, _) -> "[" ^ Int.to_string (color_to_code clr) ^ "m"
| _ -> "")
| _ -> tag
;;
let rainbow_tags conf =
{ Format.mark_open_stag = (function
| Format.String_tag tag -> rainbow_open_tag conf tag
| _ -> "")
; Format.mark_close_stag =
(fun _ ->
match conf.comments with
| Print (_, Some _clr, _) -> ""
| _ -> "")
; Format.print_open_stag = ignore
; Format.print_close_stag = ignore
}
;;
let open_parens conf state ~depth fmt n =
match conf.paren_coloring, state.content_kind, conf.comments with
| _, Comment _, Print (_, Some _, _) ->
for i = depth to depth + n - 1 do
Format.fprintf fmt "@{<c %d>(@}" i
done
| true, Sexp, _ ->
for i = depth to depth + n - 1 do
Format.fprintf fmt "@{<d %d>(@}" i
done
| _, _, _ ->
for _ = depth to depth + n - 1 do
Format.fprintf fmt "("
done
;;
let close_parens conf state ~depth fmt n =
match conf.paren_coloring, state.content_kind, conf.comments with
| _, Comment _, Print (_, Some _, _) ->
for i = depth + (n - 1) downto depth do
Format.fprintf fmt "@{<c %d>)@}" i
done
| true, Sexp, _ ->
for i = depth + (n - 1) downto depth do
Format.fprintf fmt "@{<d %d>)@}" i
done
| _, _, _ ->
for _ = depth + (n - 1) downto depth do
Format.fprintf fmt ")"
done
;;
let must_escape = function
| "\\" -> false
| string -> Sexplib.Pre_sexp.must_escape string
;;
let minimal_escaping at =
let body =
String.concat_map at ~f:(fun char ->
match char with
| '"' | '\\' -> String.of_char '\\' ^ String.of_char char
| ' ' | '\t' | '\n' -> String.of_char char
| _ -> if Char.is_print char then String.of_char char else Char.escaped char)
in
String.concat [ "\""; body; "\"" ]
;;
let atom_escape conf at =
match conf.atom_printing with
| Escaped | Interpreted -> Sexplib.Pre_sexp.mach_maybe_esc_str at
| Minimal_escaping ->
if Sexplib.Pre_sexp.must_escape at then minimal_escaping at else at
;;
let atom_printing_len conf at =
let s = atom_escape conf at in
if String.for_all s ~f:Char.is_print then Some (String.length s) else None
;;
let atom_printing_len_exn conf at =
match atom_printing_len conf at with
| Some len -> len
| None ->
raise_s
(Sexp.List [ Atom "Sexp_pretty.atom_printing_len_exn: invalid input"; Atom at ])
;;
let pp_atom conf state ~depth ~len index fmt at =
let at =
match state.content_kind with
| Comment Line_comment ->
at
| Sexp | Comment Sexp_comment ->
if must_escape at
then (
match conf.atom_printing with
| Escaped | Interpreted -> Sexplib.Pre_sexp.esc_str at
| Minimal_escaping -> minimal_escaping at)
else at
in
let should_be_colored =
match conf.atom_coloring with
| Color_none -> false
| Color_first threshold -> Int.equal index 0 && len <= threshold
| Color_all -> true
in
match state.content_kind with
| Comment _ ->
(match conf.comments with
| Drop -> assert false
| Print (_, Some _, _) -> Format.fprintf fmt "@{<c %d>%s@}" depth at
| Print (_, None, _) -> Format.fprintf fmt "%s" at)
| Sexp ->
if should_be_colored
then Format.fprintf fmt "@{<d %d>%s@}" depth at
else Format.fprintf fmt "%s" at
;;
let conf ~depth fmt =
if not (List.is_empty associated_comments)
then (
Format.fprintf fmt " ";
Format.pp_open_vbox fmt 0;
List.iteri associated_comments ~f:(fun i ->
if i > 0 then Format.pp_print_break fmt 0 0;
pp_atom conf { content_kind = Comment Line_comment } ~depth ~len:1 0 fmt comment);
Format.pp_close_box fmt ())
;;
module Normalize = struct
type t =
| Sexp of sexp * string list
and sexp =
| Atom of string
| List of t list
let parse_sexps = Sexp.With_layout.Parser.sexps Sexp.With_layout.Lexer.main
module Pos = Sexplib.Src_pos.Relative
let =
lazy
Re.(
seq
[ str "#|"
; group (seq [ group (rep (set "\t ")); rep (alt [ char '\n'; any ]) ])
; str "|#"
]
|> compile)
;;
let word_split = lazy (Re.Str.regexp "[ \n\t]+")
let trailing = lazy (Re.Str.regexp "\\(.*\\b\\)[ \t]*$")
let tab_size = 2
type match_dimension =
| Horizontal
| Vertical
let = Re.exec_opt (force block_comment) comment
let = Option.is_some (match_block_comment comment)
let pos list =
let rec loop dimension acc pos = function
| [] -> acc, []
| W.Sexp _ :: _ as list -> acc, list
| (W.Comment (W.Plain_comment (cpos, content)) as ) :: rest ->
if (match dimension with
| Horizontal -> pos.Pos.row = cpos.Pos.row
| Vertical -> pos.Pos.col = cpos.Pos.col)
&& not (is_block_comment content)
then loop Vertical (content :: acc) cpos rest
else acc, comment :: rest
| W.Comment (W.Sexp_comment _) :: _ as list -> acc, list
in
let , rest = loop Horizontal [] pos list in
List.rev rev_comments, rest
;;
let rec pre_process_atom conf pos atom =
match conf.atom_printing with
| Escaped | Minimal_escaping -> `Atom atom
| Interpreted ->
Option.value
~default:(`Atom atom)
(Option.try_with (fun () ->
match parse_sexps (Lexing.from_string atom) with
| [ W.Sexp (W.Atom (_, _atom_without_spaces, None)) ] -> `Atom atom
| [ W.Sexp (W.Atom (_, inner_atom, Some source)) ] ->
if String.equal inner_atom source
then `Atom atom
else (
match pre_process_atom conf pos inner_atom with
| `Atom _ -> `Atom atom
| `List lst -> `List lst)
| [ W.Sexp (W.List (_, list, _)) ] -> `List list
| [ W.Comment _ ] -> `Atom atom
| [] -> `Atom atom
| sexps
when List.for_all sexps ~f:(function
| W.Sexp (W.Atom _) -> true
| _ -> false) -> `Atom atom
| sexps ->
let break a b =
match a, b with
| W.Sexp (W.Atom _), W.Sexp (W.Atom _) -> false
| _ -> true
in
let concatenate_atoms lst =
List.group ~break lst
|> List.map ~f:(function
| W.Sexp (W.Atom (pos, _, _)) :: _ as atoms ->
let get_atom_contents = function
| W.Sexp (W.Atom (_, a, _)) -> a
| _ -> assert false
in
let atom_contents =
List.map ~f:get_atom_contents atoms |> String.concat ~sep:" "
in
let escaped_atom_contents =
Sexplib.Pre_sexp.mach_maybe_esc_str atom_contents
in
[ W.Sexp
(W.Atom (pos, atom_contents, Some escaped_atom_contents))
]
| W.Sexp (W.List _) :: _ as lists -> lists
| W.Comment _ :: _ as -> comments
| [] -> [] )
|> List.concat
in
`List (concatenate_atoms sexps)))
;;
let style =
match style with
| Conservative_print -> String.split comment ~on:'\n'
| Pretty_print ->
String.strip comment
|> Re.Str.split (force word_split)
|> List.map ~f:(fun line ->
if Re.Str.string_match (force trailing) line 0
then Re.Str.matched_group 1 line
else line)
|> List.filter ~f:(fun s -> String.length s > 0)
;;
let get_size string =
String.count string ~f:(fun c -> Char.equal c ' ')
+ (String.count string ~f:(fun c -> Char.equal c '\t') * tab_size)
;;
let atom_end_position ~(pos : Pos.t) ~atom ~quoted =
match quoted with
| None -> { pos with col = pos.col + String.length atom }
| Some quoted_string ->
String.fold quoted_string ~init:pos ~f:(fun pos char ->
match char with
| '\n' -> { row = pos.row + 1; col = 0 }
| _ -> { pos with col = pos.col + 1 })
;;
exception Drop_exn
let rec conf : W.t_or_comment -> t = function
| W.Comment -> Comment (of_comment conf comment)
| W.Sexp sexp -> Sexp (of_sexp conf sexp, [])
and of_sexp (conf : Config.t) : W.t -> sexp = function
| W.Atom (pos, atom, _escaped) ->
(match pre_process_atom conf pos atom with
| `Atom atom -> Atom atom
| `List list -> of_sexp_or_comment_list conf list)
| W.List (_, list, _) -> of_sexp_or_comment_list conf list
and (conf : Config.t) : W.t_or_comment list -> sexp =
fun list ->
match conf.comments with
| Drop ->
List
(List.filter_map list ~f:(fun el ->
match of_sexp_or_comment conf el with
| t -> Some t
| exception Drop_exn -> None))
| Print _ ->
let rec reorder acc = function
| [] -> acc
| W.Sexp (W.Atom (pos, atom, quoted) as sexp) :: rest ->
reorder_comments acc (atom_end_position ~pos ~atom ~quoted) sexp rest
| W.Sexp (W.List (_, _, pos) as sexp) :: rest ->
reorder_comments acc pos sexp rest
| W.Comment :: rest ->
reorder (Comment (of_comment conf comment) :: acc) rest
and acc pos sexp rest =
let , rest = grab_comments pos rest in
let sexp = of_sexp conf sexp in
let init =
List.fold comments ~init ~f:(fun acc ->
Comment (Line_comment comment) :: acc)
in
match conf.sticky_comments with
| Same_line -> reorder (Sexp (sexp, comments) :: acc) rest
| Before -> reorder (Sexp (sexp, []) :: with_comments acc) rest
| After -> reorder (with_comments (Sexp (sexp, []) :: acc)) rest
in
List (reorder [] list |> List.rev)
and (conf : Config.t) : W.comment -> comment = function
| W.Plain_comment (_, ) ->
(match conf.comments with
| Drop -> raise Drop_exn
| Print (indent, _, style) ->
(match match_block_comment comment with
| Some group ->
let indent =
match indent with
| Auto_indent_comment -> get_size (Re.Group.get group 2) + 2
| Indent_comment i -> i
in
let text = pre_process_block_comment style (Re.Group.get group 1) in
Block_comment (indent, text)
| None -> Line_comment comment))
| W.Sexp_comment (_, , sexp) ->
(match conf.comments with
| Drop -> raise Drop_exn
| Print _ ->
let comm_list =
List.map comment_list ~f:(fun -> of_comment conf comment)
in
let sexp = of_sexp conf sexp in
Sexp_comment (comm_list, sexp))
;;
end
module Print = struct
module N = Normalize
type forces_breakline = bool
type opened =
| Opened
| Closed
type 'a tree =
| Node of 'a tree list
| Leaf of 'a
type shape = (int * string) tree
type t =
| Sexp of sexp * associated_comments
and sexp =
| Atom of string
| List of string list * t_or_aligned list * forces_breakline
| Singleton of string list * int * sexp * forces_breakline
and t_or_aligned =
| Aligned of aligned
| T of t
and aligned = (shape * associated_comments) * line list
and line =
| Atom_line of string tree * associated_comments
let unwrap sexp =
let rec inner level = function
| N.List [ N.Sexp ((N.List _ as sexp_list), []) ] -> inner (level + 1) sexp_list
| N.List _ as sexp_list -> level + 1, sexp_list
| N.Atom _ as atom -> level, atom
in
inner 0 sexp
;;
let maybe_singleton conf (t_list : Normalize.t list) =
match conf.singleton_limit with
| Singleton_limit (Atom_threshold max_at, Character_threshold max_char) ->
let rec maybe_singleton_inner ~atom_count ~char_count acc = function
| [] -> None
| N.Sexp (N.Atom atom, []) :: tl ->
let char_count = char_count + String.length atom in
if atom_count = max_at || char_count > max_char
then None
else
maybe_singleton_inner
(atom :: acc)
tl
~atom_count:(atom_count + 1)
~char_count
| [ N.Sexp ((N.List _ as list), []) ] ->
let level, list = unwrap list in
Some (List.rev acc, level, list)
| N.Comment _ :: _ -> None
| _ -> None
in
maybe_singleton_inner ~atom_count:0 ~char_count:0 [] t_list
;;
let forces_breakline_atom ~conf atom =
match conf.atom_printing with
| Escaped | Interpreted -> false
| Minimal_escaping -> String.mem atom '\n'
;;
let forces_breakline_sexp ~conf = function
| Atom atom -> forces_breakline_atom ~conf atom
| List (_, _, forces) -> forces
| Singleton (_, _, _, forces) -> forces
;;
let ~conf = function
| Line_comment _ -> true
| Block_comment _ -> false
| Sexp_comment ((_, comm_force), sexp) ->
comm_force || forces_breakline_sexp ~conf sexp
;;
let forces_breakline ~conf = function
| Sexp (sexp, []) -> forces_breakline_sexp ~conf sexp
| Sexp (_, _ :: _) -> true
| Comment -> forces_breakline_comment ~conf comment
;;
let forces_breakline_aligned_or_t ~conf = function
| Aligned _ -> true
| T t -> forces_breakline ~conf t
;;
exception Cant_align
let try_check_shape conf shape =
let rec try_check_shape_inner shape t =
match shape, t with
| Leaf (len, at), N.Sexp (N.Atom at2, []) ->
(match atom_printing_len conf at2 with
| Some at2_len -> Leaf (max len at2_len, at), Leaf at2
| None -> raise Cant_align)
| Node shape_list, N.Sexp (N.List sexp_list, []) ->
(match
List.unzip (List.map2_exn shape_list sexp_list ~f:try_check_shape_inner)
with
| shape_list, atom_list -> Node shape_list, Node atom_list
| exception Invalid_argument _ -> raise Cant_align)
| _, _ -> raise Cant_align
in
function
| N.Comment (N.Line_comment ) ->
Some (shape, Comment_line (Line_comment comment))
| N.Comment (N.Block_comment (n, list)) ->
Some (shape, Comment_line (Block_comment (n, list)))
| N.Comment (N.Sexp_comment _) -> None
| N.Sexp (sexp, ) ->
(match try_check_shape_inner shape (N.Sexp (sexp, [])) with
| shape_list, atom_list ->
Some (shape_list, Atom_line (atom_list, associated_comments))
| exception Cant_align -> None)
;;
let get_shape conf ~atom_thresh ~char_thresh ~depth_thresh list =
let rec get_shape_from_list ~depth ~atom_count ~char_count list_acc = function
| [] -> List.rev list_acc, atom_count, char_count
| hd :: tl ->
let shape, atom_count, char_count =
get_shape_inner hd ~depth ~atom_count ~char_count
in
get_shape_from_list (shape :: list_acc) tl ~depth ~atom_count ~char_count
and get_shape_inner ~depth ~atom_count ~char_count t =
if depth > depth_thresh then raise Cant_align;
match t with
| N.Comment _ -> raise Cant_align
| N.Sexp (N.List list, []) ->
let shape_list, atom_count, char_count =
get_shape_from_list [] list ~depth:(depth + 1) ~atom_count ~char_count
in
Node shape_list, atom_count, char_count
| N.Sexp (N.Atom atom, []) ->
(match atom_printing_len conf atom with
| Some atom_len ->
let char_count = char_count + atom_len in
if atom_count < atom_thresh && char_count <= char_thresh
then
Leaf (atom_len, atom), atom_count + 1, char_count
else raise Cant_align
| None -> raise Cant_align)
| N.Sexp (_, _ :: _) -> raise Cant_align
in
try
match get_shape_from_list [] list ~depth:1 ~atom_count:0 ~char_count:0 with
| shape_list, _, _ -> Some (Node shape_list)
with
| Cant_align -> None
;;
let rec shape_size = function
| Leaf (len, _) -> len
| Node list ->
List.fold_left list ~init:0 ~f:(fun len shape -> len + shape_size shape)
;;
let find_alignable conf shape ~char_thresh list =
let rec find_alignable shape res_acc = function
| [] -> shape, List.rev res_acc, []
| hd :: tl ->
(match try_check_shape conf shape hd with
| None -> shape, List.rev res_acc, hd :: tl
| Some (new_shape, res) ->
if shape_size new_shape <= char_thresh
then
find_alignable new_shape (res :: res_acc) tl
else shape, List.rev res_acc, hd :: tl)
in
find_alignable shape [] list
;;
exception Too_many_atoms
let get_leading_atoms conf (list : Normalize.t list) =
match conf.leading_threshold with
| Atom_threshold leading_atom_threshold, Character_threshold leading_char_threshold ->
let rec get_leading_atoms_inner acc ~atom_count ~char_count = function
| [] -> List.rev acc, []
| N.Sexp (N.Atom atom, []) :: tl as list ->
(match forces_breakline_atom ~conf atom with
| true -> List.rev acc, list
| false ->
let char_count = char_count + String.length atom in
if atom_count = leading_atom_threshold || char_count > leading_char_threshold
then raise Too_many_atoms
else
get_leading_atoms_inner
(atom :: acc)
tl
~atom_count:(atom_count + 1)
~char_count)
| list -> List.rev acc, list
in
(try get_leading_atoms_inner [] ~atom_count:0 ~char_count:0 list with
| Too_many_atoms -> [], list)
;;
let preprocess conf (t : Normalize.t) : t =
let rec preprocess_t = function
| N.Comment -> Comment (preprocess_comment comment)
| N.Sexp (sexp, ) ->
Sexp (preprocess_sexp sexp, associated_comments)
and preprocess_sexp = function
| N.Atom atom -> Atom atom
| N.List list ->
(match maybe_singleton conf list with
| Some (atoms, lvl, sexp) ->
let proc_sexp = preprocess_sexp sexp in
Singleton (atoms, lvl, proc_sexp, forces_breakline_sexp ~conf proc_sexp)
| None ->
let leading_atoms, rest = get_leading_atoms conf list in
let aligned_or_t =
match conf.data_alignment with
| Data_not_aligned -> List.map rest ~f:(fun el -> T (preprocess_t el))
| Data_aligned
( _
, Atom_threshold atom_thresh
, Character_threshold char_thresh
, Depth_threshold depth_thresh ) ->
try_align rest ~atom_thresh ~char_thresh ~depth_thresh
in
List
( leading_atoms
, aligned_or_t
, List.exists aligned_or_t ~f:(forces_breakline_aligned_or_t ~conf) ))
and = function
| N.Line_comment -> Line_comment comment
| N.Block_comment (i, ) -> Block_comment (i, comment)
| N.Sexp_comment (, sexp) ->
let = List.map comment_list ~f:preprocess_comment in
let proc_sexp = preprocess_sexp sexp in
let comm_force =
List.exists proc_comment_list ~f:(forces_breakline_comment ~conf)
in
Sexp_comment ((proc_comment_list, comm_force), proc_sexp)
and try_align ~atom_thresh ~char_thresh ~depth_thresh list =
let rec try_align_inner acc = function
| [] -> List.rev acc
| [ last ] -> List.rev (T (preprocess_t last) :: acc)
| (N.Comment _ as ) :: tl ->
try_align_inner (T (preprocess_t comment) :: acc) tl
| N.Sexp ((N.Atom _ as sexp), ) :: tl ->
try_align_inner (T (Sexp (preprocess_sexp sexp, associated_comments)) :: acc) tl
| N.Sexp ((N.List list as sexp), ) :: tl ->
let shape = get_shape conf list ~atom_thresh ~char_thresh ~depth_thresh in
(match shape with
| None ->
try_align_inner
(T (Sexp (preprocess_sexp sexp, associated_comments)) :: acc)
tl
| Some shape ->
let shape, aligned, rest = find_alignable conf shape tl ~char_thresh in
if List.exists aligned ~f:(function
| Atom_line _ -> true
| _ -> false)
then
try_align_inner
(Aligned ((shape, associated_comments), aligned) :: acc)
rest
else
try_align_inner
(T (Sexp (preprocess_sexp sexp, associated_comments)) :: acc)
tl)
in
try_align_inner [] list
in
preprocess_t t
;;
let set_up_tabulation conf state parens_aligned shape depth fmt =
let rec set_up_markers ~depth ~index : shape -> int = function
| Leaf (tab, at) ->
Format.pp_set_tab fmt ();
pp_atom conf state ~depth ~len:1 index fmt at;
tab - atom_printing_len_exn conf at
| Node shape_list ->
Format.pp_set_tab fmt ();
open_parens conf state ~depth:(depth + 1) fmt 1;
let trailing_spaces =
List.foldi shape_list ~init:0 ~f:(fun i previous_spaces el ->
for _ = 1 to previous_spaces do
Format.fprintf fmt " "
done;
if i > 0 then Format.fprintf fmt " ";
set_up_markers ~depth:(depth + 1) ~index:i el)
in
if parens_aligned
then (
for _ = 1 to trailing_spaces do
Format.fprintf fmt " "
done;
Format.pp_set_tab fmt ();
close_parens conf state ~depth:(depth + 1) fmt 1;
0)
else (
close_parens conf state ~depth:(depth + 1) fmt 1;
trailing_spaces)
in
ignore (set_up_markers ~depth ~index:0 shape : int)
;;
let newline_at_end conf sexp =
match conf.closing_parens with
| New_line -> true
| Same_line ->
(match sexp with
| List (_, list, true) ->
(match List.last list with
| Some (Aligned (_, line_list)) ->
(match List.last_exn line_list with
| Comment_line (Line_comment _) | Atom_line (_, _ :: _) -> true
| Comment_line (Block_comment _ | Sexp_comment _) | Atom_line (_, []) -> false)
| Some (T (Comment (Line_comment _) | Sexp (_, _ :: _))) -> true
| Some (T (Comment (Block_comment _ | Sexp_comment _) | Sexp (_, []))) | None ->
false)
| List (_, _, false) | Atom _ | Singleton _ -> false)
;;
let rec pp_t conf state ?(opened = Closed) ?(len = 1) depth ?(index = 0) fmt = function
| Sexp (sexp, ) ->
pp_sexp conf state ~opened depth ~index ~len fmt sexp;
pp_associated_comments conf ~depth fmt associated_comments
| Comment -> pp_comment conf state depth ~index fmt comment
and pp_sexp conf state ~opened ?(len = 1) depth ~index fmt = function
| Atom at -> pp_atom conf state ~depth ~len index fmt at
| List (leading, list, forces_breakline) as sexp_list ->
let print_leading len fmt leading =
Format.fprintf
fmt
"@[<hv>%a@]"
(Format.pp_listi "@ " (pp_atom conf state ~depth:(depth + 1) ~len))
leading
in
let print_rest off fmt rest =
Format.pp_listi
"@ "
(fun i fmt el ->
pp_t_or_aligned
conf
state
(depth + 1)
~index:(i + off)
~len:(List.length rest)
fmt
el)
fmt
rest
in
let print_opened fmt leading rest =
let leading_len = List.length leading in
let leading_is_not_empty = leading_len > 0 in
let rest_is_not_empty = not (List.is_empty rest) in
if leading_is_not_empty then print_leading leading_len fmt leading;
if leading_is_not_empty && rest_is_not_empty then Format.pp_print_space fmt ();
if rest_is_not_empty then print_rest leading_len fmt rest
in
let print_closed print leading rest =
let leading_len = List.length leading in
let leading_not_empty = leading_len > 0 in
let rest_not_empty = not (List.is_empty rest) in
let same_line_rest =
match conf.opening_parens with
| New_line -> false
| Same_line -> rest_not_empty && not leading_not_empty
in
print
(if same_line_rest then 1 else conf.indent)
(fun fmt () -> open_parens conf state ~depth:(depth + 1) fmt 1)
()
(fun fmt (leading, rest) ->
if leading_not_empty then print_leading leading_len fmt leading;
Format.pp_close_box fmt ();
if rest_not_empty
then
if leading_not_empty
then Format.pp_print_space fmt ()
else if not same_line_rest
then Format.pp_print_cut fmt ();
if rest_not_empty then print_rest leading_len fmt rest)
(leading, rest)
(fun fmt () -> close_parens conf state ~depth:(depth + 1) fmt 1)
()
in
(match leading, list, forces_breakline, opened, newline_at_end conf sexp_list with
| [], [], _, Closed, _ ->
open_parens conf state ~depth:(depth + 1) fmt 1;
close_parens conf state ~depth:(depth + 1) fmt 1
| leading, rest, false, Opened, _ ->
Format.pp_open_hvbox fmt 0;
print_opened fmt leading rest;
Format.pp_close_box fmt ()
| leading, rest, true, Opened, _ -> print_opened fmt leading rest
| leading, rest, true, Closed, true ->
print_closed (Format.fprintf fmt "@[<v %d>@[<h>%a%a@]@,%a") leading rest
| leading, rest, true, Closed, false ->
print_closed (Format.fprintf fmt "@[<v %d>@[<h>%a%a@]%a") leading rest
| leading, rest, false, Closed, true ->
print_closed
(Format.fprintf fmt "@[<h>@[<hv>@[<hv %d>@[<h>%a%a@]@,@]%a@]")
leading
rest
| leading, rest, false, Closed, false ->
print_closed
(Format.fprintf fmt "@[<h>@[<hv>@[<hv %d>@[<h>%a%a@]@]%a@]")
leading
rest)
| Singleton (atoms, d, sexp, forces_breakline) ->
let print_opened printer atoms =
printer
conf.indent
(Format.pp_listi
"@ "
(pp_atom conf state ~depth:(depth + 1) ~len:(List.length atoms)))
atoms
(open_parens conf state ~depth:(depth + 2))
d
(pp_sexp conf state ~opened:Opened (depth + d) ~index:0 ~len:1)
sexp
(close_parens conf state ~depth:(depth + 2))
d
in
let print_closed printer atoms =
printer
conf.indent
(open_parens conf state ~depth:(depth + 1))
1
(fun fmt -> function
| [] -> ()
| atoms ->
Format.pp_listi
"@ "
(pp_atom conf state ~depth:(depth + 1) ~len:(List.length atoms))
fmt
atoms;
Format.pp_print_space fmt ())
atoms
(open_parens conf state ~depth:(depth + 2))
d
(pp_sexp conf state ~opened:Opened (depth + d) ~len:1 ~index:0)
sexp
(close_parens conf state ~depth:(depth + 1))
(d + 1)
in
(match atoms, forces_breakline, opened, newline_at_end conf sexp with
| [], _, Opened, _ -> assert false
| atoms, true, Closed, true ->
print_closed (Format.fprintf fmt "@[<v %d>@[<h>%a%a%a@]@,%a@]@,%a") atoms
| atoms, true, Closed, false ->
print_closed (Format.fprintf fmt "@[<v %d>@[<h>%a%a%a@]@,%a@]%a") atoms
| atoms, false, Closed, true ->
print_closed
(Format.fprintf fmt "@[<h>@[<hv>@[<hv %d>@[<h>%a%a%a@]@,%a@]@,@]%a@]")
atoms
| atoms, false, Closed, false ->
print_closed
(Format.fprintf fmt "@[<h>@[<hv>@[<hv %d>@[<h>%a%a%a@]@,%a@]@]%a@]")
atoms
| atoms, true, Opened, true ->
print_opened (Format.fprintf fmt "@[<v %d>@[<h>%a@ %a@]@,%a@]@,%a") atoms
| atoms, true, Opened, false ->
print_opened (Format.fprintf fmt "@[<v %d>@[<h>%a@ %a@]@,%a@]%a") atoms
| atoms, false, Opened, true ->
print_opened
(Format.fprintf fmt "@[<h>@[<hv>@[<hv %d>@[<h>%a@ %a@]@,%a@]@,@]%a@]")
atoms
| atoms, false, Opened, false ->
print_opened
(Format.fprintf fmt "@[<h>@[<hv>@[<hv %d>@[<h>%a@ %a@]@,%a@]@]%a@]")
atoms)
and pp_t_or_aligned conf state depth ~len ~index fmt = function
| T t -> pp_t conf state ~len depth ~index fmt t
| Aligned ((shape, ), line_list) ->
pp_aligned conf state depth fmt shape associated_comments line_list
and conf state depth ~index fmt =
match conf.comments with
| Drop -> assert false
| _ ->
();
(match comment with
| Line_comment ->
pp_atom
conf
{ content_kind = Comment Line_comment }
~depth
~len:1
index
fmt
comment
| Block_comment (indent, ) ->
(match conf.comments with
| Drop -> assert false
| Print (_, color, Conservative_print) ->
let f =
match color with
| Some _ -> Format.fprintf fmt "@{<c %d>@[<h>#|%a|#@]@}"
| None -> Format.fprintf fmt "@{<c %d}@[<h>#|%a|#@]"
in
f
depth
(fun fmt ->
Format.pp_list
"@."
(fun fmt comm -> Format.fprintf fmt "%s" comm)
fmt
comment_list)
comment_list
| Print (_, color, Pretty_print) ->
let f =
match color with
| Some _ ->
Format.fprintf fmt "@{<c %d>@[<h>@[<hv>@[<hv %d>#|%a@[<hov>%a@]@]@ @]|#@]@}"
| None ->
Format.fprintf fmt "@{<c %d>@[<h>@[<hv>@[<hv %d>#|%a@[<hov>%a@]@]@ @]|#@]"
in
f
depth
indent
(fun fmt spaces -> Format.pp_print_break fmt spaces 0)
(if indent > 2 && not (List.is_empty comment_list) then indent - 2 else 0)
(fun fmt ->
Format.pp_list
"@ "
(fun fmt comm -> Format.fprintf fmt "%s" comm)
fmt
comment_list)
comment_list)
| Sexp_comment ((, _), sexp) ->
(match conf.comments with
| Drop -> assert false
| Print (_, Some _, _) -> Format.fprintf fmt "@{<c %d>#;@}@ " depth
| Print (_, None, _) -> Format.fprintf fmt "#;@ ");
List.iteri comments ~f:(fun i comm ->
pp_comment conf state depth ~index:i fmt comm);
if not (List.is_empty comments) then Format.pp_print_space fmt ();
pp_sexp
conf
{ content_kind = Comment Sexp_comment }
~opened:Closed
depth
~index
fmt
sexp)
and pp_aligned conf state depth fmt shape align_list =
let parens_aligned =
match conf.data_alignment with
| Data_aligned (Parens_alignment a, _, _, _) -> a
| _ -> assert false
in
let rec print_aligned ~depth index = function
| Leaf at ->
Format.pp_print_tab fmt ();
pp_atom conf state ~depth ~len:1 index fmt at
| Node list ->
Format.pp_print_tab fmt ();
open_parens conf state ~depth:(depth + 1) fmt 1;
List.iteri list ~f:(print_aligned ~depth:(depth + 1));
if parens_aligned then Format.pp_print_tab fmt ();
close_parens conf state ~depth:(depth + 1) fmt 1
in
let index = function
| Comment_line comm ->
Format.pp_print_cut fmt ();
pp_comment conf state depth ~index fmt comm
| Atom_line (line, ) ->
Format.pp_print_cut fmt ();
print_aligned ~depth 0 line;
pp_associated_comments conf ~depth fmt associated_comments
in
Format.pp_open_tbox fmt ();
set_up_tabulation conf state parens_aligned shape depth fmt;
pp_associated_comments conf ~depth fmt associated_comments;
List.iteri align_list ~f:print_aligned_or_comment;
Format.pp_close_tbox fmt ()
;;
let pp_sexp_rainbow_toplevel conf fmt sexp =
let t = Normalize.of_sexp_or_comment conf sexp in
let aligned = preprocess conf t in
Format.fprintf
fmt
"@[<v>%a@]@."
(pp_t conf start_state ~opened:Closed 0 ~index:0)
aligned
;;
end
let setup conf fmt =
Format.pp_set_formatter_stag_functions fmt (rainbow_tags conf);
Format.pp_set_tags fmt true
;;
let run ~next conf fmt =
setup conf fmt;
let rec loop prints_newline =
match next () with
| None -> ()
| Some ->
(match conf.comments, t_or_comment with
| Drop, W.Comment _ -> loop prints_newline
| Print _, W.Comment _ ->
(match prints_newline, conf.separator with
| true, Empty_line -> Format.pp_print_break fmt 0 0
| false, _ | _, No_separator -> ());
Print.pp_sexp_rainbow_toplevel conf fmt t_or_comment;
loop false
| _, W.Sexp _ ->
(match prints_newline, conf.separator with
| true, Empty_line -> Format.pp_print_break fmt 0 0
| false, _ | _, No_separator -> ());
Print.pp_sexp_rainbow_toplevel conf fmt t_or_comment;
loop true)
in
Format.pp_open_vbox fmt 0;
loop false;
if conf.paren_coloring then
Format.pp_print_string fmt "[0m";
Format.pp_close_box fmt ();
Format.pp_print_flush fmt ()
;;
let dummy_pos = { Sexplib.Src_pos.Relative.row = 0; col = 0 }
let rec = function
| Sexp.Atom at ->
let fmt_at = Some (Sexplib.Pre_sexp.mach_maybe_esc_str at) in
W.Sexp (W.Atom (dummy_pos, at, fmt_at))
| Sexp.List list ->
W.Sexp (W.List (dummy_pos, List.map list ~f:sexp_to_sexp_or_comment, dummy_pos))
;;
module Make (M : sig
type t
end) : S with type sexp := M.t = struct
type 'a writer = Config.t -> 'a -> M.t -> unit
let pp_formatter conf fmt sexp =
let = M.to_sexp_or_comment sexp in
let next =
let stop = ref false in
fun () ->
if !stop
then None
else (
stop := true;
Some t_or_comment)
in
run ~next conf fmt
;;
let pp_formatter' ~next conf fmt =
run
~next:(fun () ->
match next () with
| None -> None
| Some s -> Some (M.to_sexp_or_comment s))
conf
fmt
;;
let pp_buffer conf buffer sexp =
pp_formatter conf (Format.formatter_of_buffer buffer) sexp
;;
let pp_out_channel conf oc sexp =
pp_formatter conf (Format.formatter_of_out_channel oc) sexp
;;
let pp_blit conf blit sexp =
let formatter =
Format.make_formatter (fun buf pos len -> blit buf ~pos ~len) ignore
in
pp_formatter conf formatter sexp
;;
let pretty_string conf sexp =
let buffer = Buffer.create 16 in
pp_buffer conf buffer sexp;
Buffer.contents buffer
;;
let sexp_to_string =
let config = lazy (Config.create ~color:false ()) in
fun sexp -> pretty_string (Lazy.force config) sexp
;;
end
include Make (struct
type t = Sexp.t
let = sexp_to_sexp_or_comment
end)
module Sexp_with_layout = Make (struct
type t = W.t_or_comment
let = Fn.id
end)