package textutils
Text output utilities
Install
Dune Dependency
Authors
Maintainers
Sources
v0.17.0.tar.gz
sha256=b2681af1f4029245a5c187c4f0834ac470ada6ffc69db7c7e219b3244f88b3d5
doc/src/textutils.console/console.ml.html
Source file console.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
include Console_intf (** Color printing in terminals *) open Core module Unix = Core_unix open Poly module Make (Io : Io) = struct (* http://www.termsys.demon.co.uk/vtansi.htm *) module Ansi = struct let kill_line () = Io.print_string "\027[2K" let erase_to_end_of_screen () = Io.print_string "\027[J" let erase_to_start_of_screen () = Io.print_string "\027[1J" let erase_all () = Io.print_string "\027[2J" let bell () = Io.print_string "\007" let home () = Io.print_string "\027[H" let home_cursor () = Io.print_string "\027[0G" let cursor_up () = Io.print_string "\027[A" let cursor_down () = Io.print_string "\027[B" let cursor_backward () = Io.print_string "\027[D" let cursor_forward () = Io.print_string "\027[C" let save_cursor () = Io.print_string "\027[s" let unsave_cursor () = Io.print_string "\027[u" module All_attr = Ansi_kernel.With_all_attrs module Attr = Ansi_kernel.Attr type attr = Attr.t let string_with_attr style string = if style = [] then string else String.concat [ All_attr.list_to_string (style :> All_attr.t list) ; string ; All_attr.list_to_string [ `Reset ] ] ;; let output (style : attr list) oc s start len = let open Io.Let_syntax in let%bind capable = Io.capable () in if capable && style <> [] then ( Io.output_string oc (All_attr.list_to_string (style :> All_attr.t list)); Io.output oc ~buf:s ~pos:start ~len; Io.output_string oc (All_attr.list_to_string [ `Reset ]); Io.flush oc) else Io.return (Io.output oc ~buf:s ~pos:start ~len) ;; let output_string (style : attr list) oc s = let open Io.Let_syntax in let%bind capable = Io.capable () in if capable && style <> [] then ( Io.output_string oc (All_attr.list_to_string (style :> All_attr.t list)); Io.output_string oc s; Io.output_string oc (All_attr.list_to_string [ `Reset ]); Io.flush oc) else Io.return (Io.output_string oc s) ;; let eprintf style fmt = Io.fprintf ~attrs:(All_attr.list_to_string (style :> All_attr.t list)) Io.stderr fmt ;; let printf style fmt = Io.fprintf ~attrs:(All_attr.list_to_string (style :> All_attr.t list)) Io.stdout fmt ;; end let is_color_tty () = Io.capable () module Columnize (In : sig type t val length : t -> int end) : sig val iter : middle:(sep:In.t -> In.t -> int -> unit Io.t) -> last:(In.t -> int -> unit Io.t) -> sep:In.t -> In.t list -> int -> unit Io.t end = struct let lines columns a = ((Array.length a - 1) / columns) + 1 (** Size of an array printed out with this column configuration (lines*chars per column) *) let dim columns a = let lines = lines columns a in let rec loop cnt current acc = if cnt = Array.length a then List.rev (current :: acc) else if cnt mod lines = 0 then loop (cnt + 1) (In.length a.(cnt)) (current :: acc) else loop (cnt + 1) (max (In.length a.(cnt)) current) acc in lines, loop 1 (In.length a.(0)) [] ;; let rec line_len ~sep_len acc = function | [] -> acc | [ v ] -> acc + v | h :: t -> line_len ~sep_len (acc + sep_len + h) t ;; let find_dim ~sep_len a max_len = let rec loop lines cols cnt = let nlines, ncols = dim (cnt + 1) a in if nlines > lines || lines = 1 (* we are not gaining in vertical space anymore *) || line_len ~sep_len 0 ncols > max_len (* we are overflowing *) then Array.of_list cols else loop nlines ncols (cnt + 1) in let lines, cols = dim 1 a in loop lines cols 1 ;; let columnize a columns = let lines = lines columns a in let res = ref [] in for i = lines - 1 downto 0 do let line_acc = ref [] in for j = columns - 1 downto 0 do let pos = i + (j * lines) in if pos < Array.length a then line_acc := a.(pos) :: !line_acc done; res := !line_acc :: !res done; !res ;; let rec fold_line ~middle ~last sep acc padding line = let open Io.Let_syntax in match line, padding with | [ v ], len :: _ -> last ~acc v (len - In.length v) | h :: t, len :: tlen -> let%bind () = middle ~acc ~sep h (len - In.length h) in fold_line ~middle ~last sep acc tlen t | _ -> assert false ;; let fold ~init ~middle ~last ~sep l max_len = if l = [] then Io.return init else ( let a = Array.of_list l in let columns = find_dim a ~sep_len:(In.length sep) max_len in let res = columnize a (Array.length columns) in Io.fold_left res ~f:(fun acc line -> fold_line ~middle ~last sep acc (Array.to_list columns) line) ~init) ;; let iter ~middle ~last = fold ~init:() ~last:(fun ~acc:() -> last) ~middle:(fun ~acc:() -> middle) ;; end let width () = let open Io.Let_syntax in match Linux_ext.get_terminal_size with | Result.Error _ -> Io.return `Not_available | Result.Ok get_size -> if%map Io.stdout_isatty () then `Cols (snd (get_size `Controlling)) else `Not_a_tty ;; let print_list oc l : unit Io.t = let open Io.Let_syntax in match%bind (width () :> [ `Cols of int | `Not_a_tty | `Not_available ] Io.t) with | `Not_a_tty | `Not_available -> List.iter l ~f:(fun (s, _) -> Io.print_string (s ^ "\n")); return () | `Cols cols -> let print_styled (s, style) = Ansi.output_string style oc s in let sep = " ", [] in let last v _ = let%map () = print_styled v in Io.output_string oc "\n" and middle ~sep v pad_len = let%bind () = print_styled v in Io.output_string oc (String.make pad_len ' '); print_styled sep in let module Col = Columnize (struct type t = string * Ansi.attr list let length (s, _) = String.length s end) in Col.iter ~sep ~last ~middle l cols ;; end include Make (struct include Monad.Ident type 'a fmt = ('a, Out_channel.t, unit) format type out_channel = Out_channel.t let output_string = Out_channel.output_string let output = Out_channel.output let stderr = Out_channel.stderr let stdout = Out_channel.stdout let flush = Core.Out_channel.flush let print_string = print_string (* if it's good enough for git then it's good enough for us... *) let capable = lazy (Unix.isatty Unix.stdout && match Sys.getenv "TERM" with | Some "dumb" | None -> false | Some _ -> true) ;; let capable () = Lazy.force capable let fprintf ~attrs channel fmt = if capable () && not (String.is_empty attrs) then Printf.fprintf channel ("%s" ^^ fmt ^^ "\027[0m%!") attrs else Printf.fprintf channel (fmt ^^ "%!") ;; let fold_left = List.fold_left let stdout_isatty () = Unix.isatty Unix.stdout end)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>