Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
ocolor_format.ml1 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#if OCAML_VERSION >= (4, 08, 0) type Format.stag += Ocolor_styles_tag of Ocolor_types.style list type Format.stag += Ocolor_style_tag of Ocolor_types.style #endif type seq = Ocolor_sgr.seq (* What to do to enable or disable the style. *) type action = | Do of seq (* Apply the sequence. That's all. *) | NothingToDo (* The new style is already enabled, so do nothing. *) | ResetAndApply (* Reset all attributes and apply the new current attribute. You need to update the stack before. *) module type STACK = (sig type elem type t val init: t val push: elem -> t -> t * action val pop: t -> t * action (* Pop and yields the previous style, so, the new top of the stack. We don't care about the previous top! *) val current_style: t -> Ocolor_types.style option val analyze: string -> elem option val analyze_style: Ocolor_types.style -> elem option end) module type STACK_PARAMETERS = (sig type elem val reset: seq val seq_of_elem: elem -> seq val style_of_elem: elem -> Ocolor_types.style val analyze: string -> elem option val analyze_style: Ocolor_types.style -> elem option end) (* Signal when poping from an empty stack. Should never be raised since {!Format} ignore closing tags when there are none open. Thus, each pop (closing tag) should happen after a push (the corresponding opening tag). *) exception AbsurdPop module MakeStack(P: STACK_PARAMETERS) : STACK with type elem = P.elem = (struct type elem = P.elem type t = elem list let init : t = [] let push (c: elem) (t: t) : t * action = match t with | hd::_ when c = hd -> c::t, NothingToDo | _ -> c::t, Do (P.seq_of_elem c) let pop (t: t) : t * action = match t with | o::t::q when o = t -> t::q, NothingToDo | _::t::q -> t::q, Do (P.seq_of_elem t) | [_] -> [], Do P.reset | [] -> raise AbsurdPop let current_style (t: t) : Ocolor_types.style option = match t with | [] -> None | t::_ -> Some (P.style_of_elem t) let analyze (s: string) : elem option = P.analyze s let analyze_style (style: Ocolor_types.style) : elem option = P.analyze_style style end) module type COUNTER_PARAMETERS = (sig val reset: Ocolor_types.style option val style: Ocolor_types.style val kw: string list end) module MakeCounter(P: COUNTER_PARAMETERS) : STACK with type elem = unit = (struct type elem = unit type t = int let init : t = 0 let reset : seq option = match P.reset with | None -> None | Some reset -> Some (Ocolor_sgr.seq_of_style reset) let style : seq = Ocolor_sgr.seq_of_style P.style let push ((): elem) (t: t) : t * action = match t with | 0 -> 1, Do style | n -> n+1, NothingToDo let pop (t: t) : t * action = match t with | 0 -> raise AbsurdPop | 1 -> let action = match reset with | Some reset -> Do reset | None -> ResetAndApply in 0, action | n -> n - 1, NothingToDo let current_style (t: t) : Ocolor_types.style option = match t with | 0 -> None | _ -> Some P.style let analyze (s: string) : elem option = if List.mem s P.kw then Some () else None let analyze_style (style: Ocolor_types.style) : elem option = if style = P.style then Some () else None end) let color_of_string (s: string) : Ocolor_types.color option = match Ocolor_x11.color_of_string s with | None -> None | Some (r24, g24, b24) -> Some Ocolor_types.(C24 {r24; g24; b24}) let analyze_fg (s: string) : Ocolor_types.color option = match s with | "black" -> Some Ocolor_types.(C4 black) | "red" -> Some Ocolor_types.(C4 red) | "green" -> Some Ocolor_types.(C4 green) | "blue" -> Some Ocolor_types.(C4 blue) | "yellow" -> Some Ocolor_types.(C4 yellow) | "magenta" -> Some Ocolor_types.(C4 magenta) | "cyan" -> Some Ocolor_types.(C4 cyan) | "white" -> Some Ocolor_types.(C4 white) | "hi_black" -> Some Ocolor_types.(C4 hi_black) | "hi_red" -> Some Ocolor_types.(C4 hi_red) | "hi_green" -> Some Ocolor_types.(C4 hi_green) | "hi_blue" -> Some Ocolor_types.(C4 hi_blue) | "hi_yellow" -> Some Ocolor_types.(C4 hi_yellow) | "hi_magenta" -> Some Ocolor_types.(C4 hi_magenta) | "hi_cyan" -> Some Ocolor_types.(C4 hi_cyan) | "hi_white" -> Some Ocolor_types.(C4 hi_white) | _ -> match color_of_string s with | Some c -> Some c | None -> try Scanf.sscanf s "x11_%s" (fun s -> color_of_string s) with Scanf.Scan_failure _ | End_of_file | Failure _ | Invalid_argument _ -> try Scanf.sscanf s "c6(%d,%d,%d)" (fun r6 g6 b6 -> Some Ocolor_types.(C8 (Cube6 {r6;g6;b6}))) with Scanf.Scan_failure _ | End_of_file | Failure _ | Invalid_argument _ -> try Scanf.sscanf s "gs(%d)" (fun gs -> Some Ocolor_types.(C8 (Grayscale gs))) with Scanf.Scan_failure _ | End_of_file | Failure _ | Invalid_argument _ -> try Scanf.sscanf s "rgb(%d,%d,%d)" (fun r24 g24 b24 -> Some Ocolor_types.(C24 {r24;g24;b24})) with Scanf.Scan_failure _ | End_of_file | Failure _ | Invalid_argument _ -> try Scanf.sscanf s "rgb(0x%x,0x%x,0x%x)" (fun r24 g24 b24 -> Some Ocolor_types.(C24 {r24;g24;b24})) with Scanf.Scan_failure _ | End_of_file | Failure _ | Invalid_argument _ -> None let analyze_style_fg (style: Ocolor_types.style) : Ocolor_types.color option = (match style with | Ocolor_types.Fg c -> Some c | _ -> None) [@warning "-4"] let analyze_bg (s: string) : Ocolor_types.color option = try Scanf.sscanf s "bg_%s" (fun c -> analyze_fg c) with Scanf.Scan_failure _ | End_of_file | Failure _ | Invalid_argument _ -> None let analyze_style_bg (style: Ocolor_types.style) : Ocolor_types.color option = (match style with | Ocolor_types.Bg c -> Some c | _ -> None) [@warning "-4"] let analyze_underlined (s: string) : bool option = match s with | "ul" | "under" | "underlined" -> Some false | "uul" | "dul" | "uunder" | "dunderlined" | "doubleunderlined" -> Some true | _ -> None let analyze_style_underlined (style: Ocolor_types.style) : bool option = (match style with | Ocolor_types.Underlined -> Some false | Ocolor_types.DoubleUnderlined -> Some true | _ -> None) [@warning "-4"] let analyze_font (s: string) : int option = try Scanf.sscanf s "font(%d)" (fun i -> Some i) with Scanf.Scan_failure _ | End_of_file | Failure _ | Invalid_argument _ -> None let analyze_style_font (style: Ocolor_types.style) : int option = (match style with | Ocolor_types.Font i -> Some i | _ -> None) [@warning "-4"] module Fg_color_stack = MakeStack (struct type elem = Ocolor_types.color let reset = Ocolor_sgr.default_fg_seq let seq_of_elem = Ocolor_sgr.fg_color_seq let analyze = analyze_fg let analyze_style = analyze_style_fg let style_of_elem c = Ocolor_types.Fg c end) module Bg_color_stack = MakeStack (struct type elem = Ocolor_types.color let reset = Ocolor_sgr.default_bg_seq let seq_of_elem = Ocolor_sgr.bg_color_seq let analyze = analyze_bg let analyze_style = analyze_style_bg let style_of_elem c = Ocolor_types.Bg c end) module Font_stack = MakeStack (struct type elem = int let reset = Ocolor_sgr.default_font_seq let seq_of_elem = Ocolor_sgr.font_seq let analyze = analyze_font let analyze_style = analyze_style_font let style_of_elem i = Ocolor_types.Font i end) module Underlined_stack = MakeStack(struct type elem = bool let reset = Ocolor_sgr.underlined_off_seq let seq_of_elem b = if b then Ocolor_sgr.double_underlined_seq else Ocolor_sgr.underlined_seq let analyze = analyze_underlined let analyze_style = analyze_style_underlined let style_of_elem b = if b then Ocolor_types.DoubleUnderlined else Ocolor_types.Underlined end) module Bold_counter = MakeCounter(struct let style = Ocolor_types.Bold let reset = None let kw = ["b"; "bold"] end) module Faint_counter = MakeCounter(struct let style = Ocolor_types.Faint let reset = None let kw = ["faint"] end) module Blink_counter = MakeCounter(struct let style = Ocolor_types.Blink let reset = Some Ocolor_types.Blink_off let kw = ["blink"] end) module Conceal_counter = MakeCounter(struct let style = Ocolor_types.Conceal let reset = Some Ocolor_types.Conceal_off let kw = ["conceal"] end) module Fraktur_counter = MakeCounter(struct let style = Ocolor_types.Fraktur let reset = None let kw = ["frak"; "fraktur"] end) module Reverse_counter = MakeCounter(struct let style = Ocolor_types.Reverse_video let reset = Some Ocolor_types.Reverse_video_off let kw = ["reverse"] end) module Crossed_counter = MakeCounter(struct let style = Ocolor_types.Crossed_out let reset = Some Ocolor_types.Crossed_out_off let kw = ["crossed"] end) module Framed_counter = MakeCounter(struct let style = Ocolor_types.Framed let reset = None let kw = ["framed"] end) module Italic_counter = MakeCounter(struct let style = Ocolor_types.Italic let reset = None let kw = ["italic"; "it"] end) module Encircled_counter = MakeCounter(struct let style = Ocolor_types.Encircled let reset = None let kw = ["encircled"] end) module Overlined_counter = MakeCounter(struct let style = Ocolor_types.Overlined let reset = Some Ocolor_types.Overlined_off let kw = ["ol"; "over"; "overlined"] end) type handled_stack = Opaque_stack : (module STACK with type t = 'a) * 'a -> handled_stack type formatter = { fmt: Format.formatter; mutable stacks: handled_stack list; } let init_stacks : handled_stack list = [ Opaque_stack((module Fg_color_stack), Fg_color_stack.init); Opaque_stack((module Bg_color_stack), Bg_color_stack.init); Opaque_stack((module Font_stack), Font_stack.init); Opaque_stack((module Underlined_stack), Underlined_stack.init); Opaque_stack((module Bold_counter), Bold_counter.init); Opaque_stack((module Faint_counter), Faint_counter.init); Opaque_stack((module Blink_counter), Blink_counter.init); Opaque_stack((module Conceal_counter), Conceal_counter.init); Opaque_stack((module Fraktur_counter), Fraktur_counter.init); Opaque_stack((module Reverse_counter), Reverse_counter.init); Opaque_stack((module Crossed_counter), Crossed_counter.init); Opaque_stack((module Framed_counter), Framed_counter.init); Opaque_stack((module Italic_counter), Italic_counter.init); Opaque_stack((module Encircled_counter), Encircled_counter.init); Opaque_stack((module Overlined_counter), Overlined_counter.init); ] let current_styles (fmt: formatter) : Ocolor_types.style list = let rec aux (l: handled_stack list) : Ocolor_types.style list = match l with | [] -> [] | Opaque_stack(m, s)::q -> let module M = (val m) in match M.current_style s with | None -> aux q | Some style -> style::aux q in aux fmt.stacks let current_state (fmt: formatter) : seq = fmt |> current_styles |> Ocolor_sgr.seq_of_styles let get_current_fg_color (fmt: formatter) : Ocolor_types.color option = #if OCAML_VERSION >= (4, 04, 0) let exception Found of Ocolor_types.color in try let () = List.iter ((function Ocolor_types.Fg c -> raise (Found c) | _ -> () )[@warning "-4"]) (current_styles fmt) in None with Found c -> Some c #else List.fold_left (fun acc style -> match acc with | Some _ -> acc | None -> (match style with | Ocolor_types.Fg c -> Some c | _ -> None) [@warning "-4"] ) None (current_styles fmt) #endif let get_current_bg_color (fmt: formatter) : Ocolor_types.color option = #if OCAML_VERSION >= (4, 04, 0) let exception Found of Ocolor_types.color in try let () = List.iter ((function Ocolor_types.Bg c -> raise (Found c) | _ -> () )[@warning "-4"]) (current_styles fmt) in None with Found c -> Some c #else List.fold_left (fun acc style -> match acc with | Some _ -> acc | None -> (match style with | Ocolor_types.Bg c -> Some c | _ -> None) [@warning "-4"] ) None (current_styles fmt) #endif #if OCAML_VERSION < (4, 04, 0) let split_on_char sep s = let r = ref [] in let j = ref (String.length s) in for i = String.length s - 1 downto 0 do if String.get s i = sep then begin r := String.sub s (i + 1) (!j - i - 1) :: !r; j := i end done; String.sub s 0 !j :: !r #else let split_on_char = String.split_on_char #endif let mark_open_tag (fmt: formatter) (tag: Format.tag) : string = let mark_open_tag (tag: Format.tag) : string = let rec aux (l: handled_stack list) : action * handled_stack list = match l with | [] -> NothingToDo, [] | Opaque_stack(m, s)::q -> let module M = (val m) in match M.analyze tag with | None -> let sgr, l = aux q in sgr, Opaque_stack(m, s)::l | Some elem -> let s, sgr = M.push elem s in sgr, Opaque_stack(m, s)::q in let seq, new_stacks = aux fmt.stacks in let () = fmt.stacks <- new_stacks in match seq with | Do seq -> Ocolor_sgr.sgr_of_seq seq | ResetAndApply -> Ocolor_sgr.reset_seq @ current_state fmt |> Ocolor_sgr.sgr_of_seq | NothingToDo -> "" in let tags = split_on_char ';' tag in String.concat "" (List.map mark_open_tag tags) let mark_close_tag (fmt: formatter) (tag: Format.tag) : string = let mark_close_tag (tag: Format.tag) : string = let rec aux (l: handled_stack list) : action * handled_stack list = match l with | [] -> NothingToDo, [] | Opaque_stack(m, s)::q -> let module M = (val m) in match M.analyze tag with | None -> let sgr, l = aux q in sgr, Opaque_stack(m, s)::l | Some _ -> let s, sgr = M.pop s in sgr, Opaque_stack(m, s)::q in let seq, new_stacks = aux fmt.stacks in let () = fmt.stacks <- new_stacks in match seq with | Do seq -> Ocolor_sgr.sgr_of_seq seq | ResetAndApply -> (Ocolor_sgr.reset_seq) @ (current_state fmt) |> Ocolor_sgr.sgr_of_seq | NothingToDo -> "" in let tags = split_on_char ';' tag in String.concat "" (List.map mark_close_tag tags) #if OCAML_VERSION >= (4, 08, 0) let mark_open_stag (fmt: formatter) (stag: Format.stag) : string = let open_style (tag: Ocolor_types.style) : string = let rec aux (l: handled_stack list) : action * handled_stack list = match l with | [] -> NothingToDo, [] | Opaque_stack(m, s)::q -> let module M = (val m) in match M.analyze_style tag with | None -> let sgr, l = aux q in sgr, Opaque_stack(m, s)::l | Some elem -> let s, sgr = M.push elem s in sgr, Opaque_stack(m, s)::q in let seq, new_stacks = aux fmt.stacks in let () = fmt.stacks <- new_stacks in match seq with | Do seq -> Ocolor_sgr.sgr_of_seq seq | ResetAndApply -> Ocolor_sgr.reset_seq @ current_state fmt |> Ocolor_sgr.sgr_of_seq | NothingToDo -> "" in match stag with | Format.String_tag tag -> mark_open_tag fmt tag | Ocolor_styles_tag styles -> String.concat "" (List.map open_style styles) | Ocolor_style_tag style -> open_style style | _ -> "" let mark_close_stag (fmt: formatter) (stag: Format.stag) : string = let close_style (tag: Ocolor_types.style) : string = let rec aux (l: handled_stack list) : action * handled_stack list = match l with | [] -> NothingToDo, [] | Opaque_stack(m, s)::q -> let module M = (val m) in match M.analyze_style tag with | None -> let sgr, l = aux q in sgr, Opaque_stack(m, s)::l | Some _ -> let s, sgr = M.pop s in sgr, Opaque_stack(m, s)::q in let seq, new_stacks = aux fmt.stacks in let () = fmt.stacks <- new_stacks in match seq with | Do seq -> Ocolor_sgr.sgr_of_seq seq | ResetAndApply -> (Ocolor_sgr.reset_seq) @ (current_state fmt) |> Ocolor_sgr.sgr_of_seq | NothingToDo -> "" in match stag with | Format.String_tag tag -> mark_close_tag fmt tag | Ocolor_styles_tag styles -> String.concat "" (List.map close_style styles) | Ocolor_style_tag style -> close_style style | _ -> "" #endif let make_formatter (fmt: Format.formatter) : formatter = #if OCAML_VERSION < (4, 08, 0) let {Format.print_open_tag; print_close_tag; _} = Format.pp_get_formatter_tag_functions fmt () in #else let Format.{print_open_stag; print_close_stag; _} = Format.pp_get_formatter_stag_functions fmt () in #endif let stacks = init_stacks in let fmt = {fmt; stacks} in #if OCAML_VERSION < (4, 08, 0) let mark_open_tag = mark_open_tag fmt in let mark_close_tag = mark_close_tag fmt in let () = Format.pp_set_formatter_tag_functions fmt.fmt Format.{mark_open_tag; mark_close_tag; print_open_tag; print_close_tag} in #else let mark_open_stag = mark_open_stag fmt in let mark_close_stag = mark_close_stag fmt in let () = Format.pp_set_formatter_stag_functions fmt.fmt Format.{mark_open_stag; mark_close_stag; print_open_stag; print_close_stag} in #endif let () = Format.pp_set_mark_tags fmt.fmt true in fmt let prettify_formatter (fmt: Format.formatter) : unit = fmt |> make_formatter |> ignore let formatter_of_buffer (b: Buffer.t) : formatter = let fmt = Format.formatter_of_buffer b in make_formatter fmt let raw_formatter_of_buffer (b: Buffer.t) : Format.formatter = let fmt = Format.formatter_of_buffer b in let () = prettify_formatter fmt in fmt let std_formatter : formatter = stdout |> Format.formatter_of_out_channel |> make_formatter let err_formatter : formatter = stderr |> Format.formatter_of_out_channel |> make_formatter let unwrap_formatter (fmt: formatter) : Format.formatter = fmt.fmt let raw_std_formatter : Format.formatter = unwrap_formatter std_formatter let raw_err_formatter : Format.formatter = unwrap_formatter err_formatter let printf (type a) (f: (a, Format.formatter, unit) format) : a = Format.fprintf raw_std_formatter f let eprintf (type a) (f: (a, Format.formatter, unit) format) : a = Format.fprintf raw_err_formatter f let kasprintf (type a) (type b) (k: string -> a) (f: (b, Format.formatter, unit, a) format4) : b = let buf = Buffer.create 512 in let fmt = Format.formatter_of_buffer buf in let () = prettify_formatter fmt in Format.kfprintf (fun fmt -> Format.pp_print_flush fmt (); buf |> Buffer.contents |> k) fmt f let asprintf (type a) (f: (a, Format.formatter, unit, string) format4) : a = kasprintf (fun s -> s) f let pp_print_flush (fmt: formatter) () : unit = Format.pp_print_flush fmt.fmt () #if OCAML_VERSION < (4, 08, 0) let rec string_of_color (c: Ocolor_types.color) : string = let open Ocolor_types in match c with | C4 ({intensity4 = true; _} as c) -> Format.sprintf "hi_%s" (string_of_color (C4 {c with intensity4 = false})) | C4 {r4 = false; g4 = false; b4 = false; _} -> "black" | C4 {r4 = false; g4 = false; b4 = true ; _} -> "blue" | C4 {r4 = false; g4 = true; b4 = false; _} -> "green" | C4 {r4 = false; g4 = true; b4 = true; _} -> "cyan" | C4 {r4 = true ; g4 = false; b4 = false; _} -> "red" | C4 {r4 = true ; g4 = false; b4 = true ; _} -> "magenta" | C4 {r4 = true ; g4 = true; b4 = false; _} -> "yellow" | C4 {r4 = true ; g4 = true; b4 = true; _} -> "white" | C8 (Standard c) -> string_of_color (C4 c) | C8 (Cube6 {r6;g6;b6}) -> Format.asprintf "c6(%d,%d,%d)" r6 g6 b6 | C8 (Grayscale gs) -> Format.asprintf "gs(%d)" gs | C24 {r24; g24; b24} -> Format.asprintf "rgb(%d,%d,%d)" r24 g24 b24 let string_of_style (l: Ocolor_types.style) : string = let open Ocolor_types in match l with | Bold -> "bold" | Faint -> "faint" | Italic -> "it" | Underlined -> "ul" | DoubleUnderlined -> "uul" | Blink -> "blink" | Fg c -> string_of_color c | Bg c -> "bg_"^(string_of_color c) | Conceal -> "conceal" | Fraktur -> "frak" | Reverse_video -> "reverse" | Crossed_out -> "crossed" | Framed -> "framed" | Encircled -> "encircled" | Overlined -> "overlined" | Font i -> Format.asprintf "font(%d)" i (* Off *) | Blink_off | Overlined_off | Italic_fraktur_off | Faint_bold_off | Underlined_off | Reverse_video_off | Framed_encircled_off | Conceal_off | Crossed_out_off | Reset | Default_font | Default_fg | Default_bg -> "" let string_of_styles (l: Ocolor_types.style list) : string = List.map string_of_style l |> String.concat ";" #endif let pp_open_styles (fmt: Format.formatter) (l: Ocolor_types.style list) : unit = #if OCAML_VERSION < (4, 08, 0) string_of_styles l |> Format.pp_open_tag fmt #else Ocolor_styles_tag l |> Format.pp_open_stag fmt #endif let pp_open_style (fmt: Format.formatter) (s: Ocolor_types.style) : unit = pp_open_styles fmt [s] let pp_close_styles (fmt: Format.formatter) ((): unit) : unit = #if OCAML_VERSION < (4, 08, 0) Format.pp_close_tag fmt () #else Format.pp_close_stag fmt () #endif let pp_close_style (fmt: Format.formatter) ((): unit) : unit = pp_close_styles fmt () let pp_bool_generic ?(false_style: Ocolor_types.style list=Ocolor_types.[Bold;Fg (C4 red)]) ?(true_style: Ocolor_types.style list=Ocolor_types.[Bold;Fg (C4 green)]) (fmt: Format.formatter) (b: bool) : unit = let style = if b then true_style else false_style in Format.fprintf fmt "%a%b%a" pp_open_styles style b pp_close_styles () let pp_bool (fmt: Format.formatter) (b: bool) : unit = pp_bool_generic fmt b let pp_list_generic ?(left: string="[") ?(sep: string="; ") ?(right: string="]") ?(delim_style: Ocolor_types.style list=Ocolor_types.[Faint]) ?(sep_style: Ocolor_types.style list=Ocolor_types.[Faint]) ?(elem_style: Ocolor_types.style list=[]) (type a) (p: Format.formatter -> a -> unit) (fmt: Format.formatter) (l: a list) : unit = let () = Format.fprintf fmt "%a%s%a" pp_open_styles delim_style left pp_close_style () in match l with | [] -> Format.fprintf fmt "%a%s%a" pp_open_styles delim_style right pp_close_styles () | [e] -> Format.fprintf fmt "%a%a%a%a%s%a" pp_open_styles elem_style p e pp_close_styles () pp_open_styles delim_style right pp_close_styles () | t::q -> let () = Format.fprintf fmt "%a%a%a" pp_open_styles elem_style p t pp_close_styles () in let () = List.iter (fun e -> Format.fprintf fmt "%a%s%a%a%a%a" pp_open_styles sep_style sep pp_close_styles () pp_open_styles elem_style p e pp_close_styles (); ) q in Format.fprintf fmt "%a%s%a" pp_open_styles delim_style right pp_close_styles () let pp_list p fmt l = pp_list_generic p fmt l let pp_option_generic ?(none: string="None") ?(none_style: Ocolor_types.style list=Ocolor_types.[Faint]) ?(some_style: Ocolor_types.style list=[]) (type a) (p: Format.formatter -> a -> unit) (fmt: Format.formatter) (o: a option) : unit = match o with | None -> Format.fprintf fmt "%a%s%a" pp_open_styles none_style none pp_close_styles () | Some o -> Format.fprintf fmt "%a%a%a" pp_open_styles some_style p o pp_close_styles () let pp_option p fmt o = pp_option_generic p fmt o let pp_pair_generic ?(left: string="(") ?(sep: string=", ") ?(right: string=")") ?(delim_style: Ocolor_types.style list=Ocolor_types.[Faint]) ?(sep_style: Ocolor_types.style list=Ocolor_types.[Faint]) ?(elem_style: Ocolor_types.style list=[]) (type a) (type b) (f: Format.formatter -> a -> unit) (g: Format.formatter -> b -> unit) (fmt: Format.formatter) (a, b : a * b) : unit = let l_delim (fmt: Format.formatter) : unit = Format.fprintf fmt "%a%s%a" pp_open_styles delim_style left pp_close_styles () in let r_delim (fmt: Format.formatter) : unit = Format.fprintf fmt "%a%s%a" pp_open_styles delim_style right pp_close_styles () in let sep (fmt: Format.formatter) : unit = Format.fprintf fmt "%a%s%a" pp_open_styles sep_style sep pp_close_styles () in let elem (type a) (p: Format.formatter -> a -> unit) (fmt: Format.formatter) (a: a) : unit = Format.fprintf fmt "%a%a%a" pp_open_styles elem_style p a pp_close_styles () in Format.fprintf fmt "%t%a%t%a%t" l_delim (elem f) a sep (elem g) b r_delim let pp_pair (type a) (type b) (f: Format.formatter -> a -> unit) (g: Format.formatter -> b -> unit) (fmt: Format.formatter) (p : a * b) : unit = pp_pair_generic f g fmt p let pp_3_tuple_generic ?(left: string="(") ?(sep: string=", ") ?(right: string=")") ?(delim_style: Ocolor_types.style list=Ocolor_types.[Faint]) ?(sep_style: Ocolor_types.style list=Ocolor_types.[Faint]) ?(elem_style: Ocolor_types.style list=[]) (type a) (type b) (type c) (f: Format.formatter -> a -> unit) (g: Format.formatter -> b -> unit) (h: Format.formatter -> c -> unit) (fmt: Format.formatter) (a, b, c : a * b * c) : unit = let l_delim (fmt: Format.formatter) : unit = Format.fprintf fmt "%a%s%a" pp_open_styles delim_style left pp_close_styles () in let r_delim (fmt: Format.formatter) : unit = Format.fprintf fmt "%a%s%a" pp_open_styles delim_style right pp_close_styles () in let sep (fmt: Format.formatter) : unit = Format.fprintf fmt "%a%s%a" pp_open_styles sep_style sep pp_close_styles () in let elem (type a) (p: Format.formatter -> a -> unit) (fmt: Format.formatter) (a: a) : unit = Format.fprintf fmt "%a%a%a" pp_open_styles elem_style p a pp_close_styles () in Format.fprintf fmt "%t%a%t%a%t%a%t" l_delim (elem f) a sep (elem g) b sep (elem h) c r_delim let pp_3_tuple (type a) (type b) (type c) (f: Format.formatter -> a -> unit) (g: Format.formatter -> b -> unit) (h: Format.formatter -> c -> unit) (fmt: Format.formatter) (t : a * b * c) : unit = pp_3_tuple_generic f g h fmt t let pp_4_tuple_generic ?(left: string="(") ?(sep: string=", ") ?(right: string=")") ?(delim_style: Ocolor_types.style list=Ocolor_types.[Faint]) ?(sep_style: Ocolor_types.style list=Ocolor_types.[Faint]) ?(elem_style: Ocolor_types.style list=[]) (type a) (type b) (type c) (type d) (f: Format.formatter -> a -> unit) (g: Format.formatter -> b -> unit) (h: Format.formatter -> c -> unit) (i: Format.formatter -> d -> unit) (fmt: Format.formatter) (a, b, c, d : a * b * c * d) : unit = let l_delim (fmt: Format.formatter) : unit = Format.fprintf fmt "%a%s%a" pp_open_styles delim_style left pp_close_styles () in let r_delim (fmt: Format.formatter) : unit = Format.fprintf fmt "%a%s%a" pp_open_styles delim_style right pp_close_styles () in let sep (fmt: Format.formatter) : unit = Format.fprintf fmt "%a%s%a" pp_open_styles sep_style sep pp_close_styles () in let elem (type a) (p: Format.formatter -> a -> unit) (fmt: Format.formatter) (a: a) : unit = Format.fprintf fmt "%a%a%a" pp_open_styles elem_style p a pp_close_styles () in Format.fprintf fmt "%t%a%t%a%t%a%t%a%t" l_delim (elem f) a sep (elem g) b sep (elem h) c sep (elem i) d r_delim let pp_4_tuple (type a) (type b) (type c) (type d) (f: Format.formatter -> a -> unit) (g: Format.formatter -> b -> unit) (h: Format.formatter -> c -> unit) (i: Format.formatter -> d -> unit) (fmt: Format.formatter) (q : a * b * c * d) : unit = pp_4_tuple_generic f g h i fmt q let pp_5_tuple_generic ?(left: string="(") ?(sep: string=", ") ?(right: string=")") ?(delim_style: Ocolor_types.style list=Ocolor_types.[Faint]) ?(sep_style: Ocolor_types.style list=Ocolor_types.[Faint]) ?(elem_style: Ocolor_types.style list=[]) (type a) (type b) (type c) (type d) (type e) (f: Format.formatter -> a -> unit) (g: Format.formatter -> b -> unit) (h: Format.formatter -> c -> unit) (i: Format.formatter -> d -> unit) (j: Format.formatter -> e -> unit) (fmt: Format.formatter) (a, b, c, d, e : a * b * c * d * e) : unit = let l_delim (fmt: Format.formatter) : unit = Format.fprintf fmt "%a%s%a" pp_open_styles delim_style left pp_close_styles () in let r_delim (fmt: Format.formatter) : unit = Format.fprintf fmt "%a%s%a" pp_open_styles delim_style right pp_close_styles () in let sep (fmt: Format.formatter) : unit = Format.fprintf fmt "%a%s%a" pp_open_styles sep_style sep pp_close_styles () in let elem (type a) (p: Format.formatter -> a -> unit) (fmt: Format.formatter) (a: a) : unit = Format.fprintf fmt "%a%a%a" pp_open_styles elem_style p a pp_close_styles () in Format.fprintf fmt "%t%a%t%a%t%a%t%a%t%a%t" l_delim (elem f) a sep (elem g) b sep (elem h) c sep (elem i) d sep (elem j) e r_delim let pp_5_tuple (type a) (type b) (type c) (type d) (type e) (f: Format.formatter -> a -> unit) (g: Format.formatter -> b -> unit) (h: Format.formatter -> c -> unit) (i: Format.formatter -> d -> unit) (j: Format.formatter -> e -> unit) (fmt: Format.formatter) (q: a * b * c * d * e) : unit = pp_5_tuple_generic f g h i j fmt q