Source file minimal_terminal_io.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
open! Core
open Quickterface.Io
type t = { in_channel : In_channel.t; out_channel : Out_channel.t }
module Http_client = Cohttp_lwt_unix.Client
let write_output
?options:({ Quickterface.Output_text_options.color = _ } =
Quickterface.Output_text_options.default) ?(flush = true)
{ in_channel = _; out_channel } ~text =
Out_channel.output_string out_channel text;
if flush then Out_channel.flush out_channel;
Lwt.return ()
let write_output_line ?options ?flush t ~text =
write_output ?options ?flush t ~text:(text ^ "\n")
let input_text ?(prompt = "> ") ({ in_channel; out_channel = _ } as t) () =
let%lwt () = write_output ~flush:true t ~text:prompt in
In_channel.input_line in_channel |> Option.value_exn |> Lwt.return
let input_integer ({ in_channel; out_channel = _ } as t) () =
let rec get_input_integer () =
let%lwt () = write_output ~flush:true t ~text:"> " in
let input_string = In_channel.input_line in_channel |> Option.value_exn in
match Int.of_string_opt input_string with
| Some x -> Lwt.return x
| None ->
let%lwt () =
write_output_line ~flush:true t
~text:"[Invalid input. Input must be an integer]"
in
get_input_integer ()
in
get_input_integer ()
let input_single_selection ({ in_channel; out_channel = _ } as t) options
option_to_string () =
let%lwt () =
write_output_line t ~flush:true ~text:"[Select an option from the below]"
in
let option_printers =
List.mapi options ~f:(fun i option ->
let i_string = string_of_int i in
let option_string = option_to_string option in
write_output_line t ~flush:false
~text:[%string " [%{i_string}] %{option_string}"])
in
let%lwt _ = Lwt.all option_printers in
let read_input input_string =
let read_input_as_index input_string =
match Int.of_string_opt input_string with
| Some x -> (
match List.nth options x with
| Some value -> `Is_valid value
| None -> `Out_of_range)
| None -> `Not_integer
in
let read_input_as_value_name input_string =
List.fold_result options ~init:() ~f:(fun () option ->
if String.equal (option_to_string option) input_string then
Error option
else Ok ())
|> function
| Ok () -> `No_match
| Error value -> `Is_valid value
in
match read_input_as_index input_string with
| `Is_valid value -> Ok value
| `Out_of_range -> Error "index provided is out of range"
| `Not_integer -> (
match read_input_as_value_name input_string with
| `Is_valid value -> Ok value
| `No_match -> Error "input is not name of option or index of option")
in
let rec get_input () =
let%lwt () = write_output ~flush:true t ~text:"> " in
let input_string = In_channel.input_line in_channel |> Option.value_exn in
match read_input input_string with
| Ok value -> Lwt.return value
| Error error_message ->
let%lwt () =
write_output_line ~flush:true t
~text:[%string "[Invalid input: %{error_message}]"]
in
get_input ()
in
get_input ()
let input_single_selection_string t options () =
input_single_selection t options Fn.id ()
let input_multi_selection ({ in_channel; out_channel = _ } as t) options
option_to_string () =
let%lwt () =
write_output_line t ~flush:true
~text:
"[Enter an option to toggle selecting it. Press ENTER without \
selecting anything to submit the selection]"
in
let print_options_state ~selection_option_indexes =
let option_printers =
List.mapi options ~f:(fun i option ->
let i_string = string_of_int i in
let option_string = option_to_string option in
let selected_mark =
(if Set.mem selection_option_indexes i then 'X' else ' ')
|> String.of_char
in
write_output_line t ~flush:false
~text:
[%string " [%{selected_mark}] [%{i_string}] %{option_string}"])
in
let%lwt _ = Lwt.all option_printers in
Lwt.return ()
in
let read_input input_string =
let read_input_as_index input_string =
match Int.of_string_opt input_string with
| Some x -> (
match List.nth options x with
| Some _ -> `Is_valid x
| None -> `Out_of_range)
| None -> `Not_integer
in
let read_input_as_value_name input_string =
List.mapi options ~f:(fun i option -> (i, option))
|> List.fold_result ~init:() ~f:(fun () (i, option) ->
if String.equal (option_to_string option) input_string then Error i
else Ok ())
|> function
| Ok () -> `No_match
| Error value -> `Is_valid value
in
match read_input_as_index input_string with
| `Is_valid value -> Ok value
| `Out_of_range -> Error "index provided is out of range"
| `Not_integer -> (
match read_input_as_value_name input_string with
| `Is_valid value -> Ok value
| `No_match -> Error "input is not name of option or index of option")
in
let rec get_input ~selection_option_indexes () =
let%lwt () = print_options_state ~selection_option_indexes in
let%lwt () = write_output ~flush:true t ~text:"> " in
let input_string = In_channel.input_line in_channel |> Option.value_exn in
match input_string with
| "" ->
Lwt.return selection_option_indexes
| _ -> (
match read_input input_string with
| Ok selection_to_toggle ->
let new_selection_option_indexes =
if Set.mem selection_option_indexes selection_to_toggle then
Set.remove selection_option_indexes selection_to_toggle
else Set.add selection_option_indexes selection_to_toggle
in
get_input ~selection_option_indexes:new_selection_option_indexes ()
| Error error_message ->
let%lwt () =
write_output_line ~flush:true t
~text:[%string "[Invalid input: %{error_message}]"]
in
get_input ~selection_option_indexes ())
in
let%lwt selection_option_indexes =
get_input ~selection_option_indexes:Int.Set.empty ()
in
Lwt.return
(Set.to_list selection_option_indexes |> List.map ~f:(List.nth_exn options))
let input_multi_selection_string t options () =
input_multi_selection t options Fn.id ()
let input : type settings a.
_ -> (settings, a) Input.t -> settings -> unit -> a Lwt.t =
fun t -> function
| Text -> fun prompt -> input_text ?prompt t
| Integer -> fun () -> input_integer t
| Single_selection ->
fun (options, option_to_string) ->
input_single_selection t options option_to_string
| Multi_selection ->
fun (options, option_to_string) ->
input_multi_selection t options option_to_string
let output_text ?options t text () =
let%lwt () = write_output_line ?options ~flush:true t ~text in
Lwt.return ()
let output_math ?options t (math : Quickterface.Math.t) () =
let open Quickterface.Math in
let rec math_to_string = function
| Char c -> Char.to_string c
| Literal s -> s
| Infinity -> "∞"
| Pi -> "π"
| E -> "e"
| Equals -> "="
| Plus -> "+"
| Minus -> "-"
| Star -> "*"
| C_dot -> "·"
| Times -> "×"
| Divide -> "÷"
| Plus_minus -> "±"
| Superscript { base; superscript } ->
Printf.sprintf "(%s)^(%s)" (math_to_string base)
(math_to_string superscript)
| Subscript { base; subscript } ->
Printf.sprintf "(%s)_(%s)" (math_to_string base)
(math_to_string subscript)
| Exp -> "exp"
| Ln -> "ln"
| Sin -> "sin"
| Cos -> "cos"
| List elements ->
elements |> List.map ~f:math_to_string |> String.concat ~sep:" "
| Frac (num, denom) ->
Printf.sprintf "(%s)/(%s)" (math_to_string num) (math_to_string denom)
| Bracketed inner -> Printf.sprintf "(%s)" (math_to_string inner)
| Partial -> "∂"
| Integral { lower; upper; body } ->
let lower_str =
match lower with
| None -> ""
| Some l -> Printf.sprintf "_(%s)" (math_to_string l)
in
let upper_str =
match upper with
| None -> ""
| Some u -> Printf.sprintf "^(%s)" (math_to_string u)
in
Printf.sprintf "∫%s%s %s" lower_str upper_str (math_to_string body)
| Less_than -> "<"
| Less_than_or_equal_to -> "≤"
| Greater_than -> ">"
| Greater_than_or_equal_to -> "≥"
| Not_equal -> "≠"
| Approximately_equals -> "≈"
| Equivalent_to -> "≡"
in
let math_string = math_to_string math in
let%lwt () = write_output_line ?options ~flush:true t ~text:math_string in
Lwt.return ()
let output_title t text () =
let title_length = String.length text in
let border_line = String.init (title_length + 4) ~f:(Fn.const '#') in
let title_line = [%string "# %{text} #"] in
write_output t ~flush:true
~text:[%string "%{border_line}\n%{title_line}\n%{border_line}\n\n"]
let output : type options a.
?options:options -> _ -> (options, a) Output.t -> a -> unit -> unit Lwt.t =
fun ?options t -> function
| Text -> fun x -> output_text ?options t x
| Math -> fun x -> output_math ?options t x
| Title -> (
fun x ->
match options with
| None | Some () -> output_title t x)
let with_progress_bar ?label t ~maximum ~f () =
let bar_width = 30 in
let bar_character = '#' in
let curr_value = ref 0 in
let bar_string ~curr_value =
let curr_bars =
curr_value * bar_width / maximum
in
let rem_bars = bar_width - curr_bars in
Printf.sprintf " %s[%s%s] %d/%d"
(Option.value_map label ~default:"" ~f:(fun l -> l ^ " "))
(String.init curr_bars ~f:(fun _ -> bar_character))
(String.init rem_bars ~f:(fun _ -> ' '))
curr_value maximum
in
let update_bar () =
let%lwt () = write_output ~flush:false t ~text:"\r" in
write_output ~flush:true t ~text:(bar_string ~curr_value:!curr_value)
in
let increment_progress_bar () =
curr_value := !curr_value + 1;
update_bar ()
in
let%lwt () = update_bar () in
let%lwt result = f ~increment_progress_bar () in
let%lwt () = write_output ~flush:true t ~text:"\n" in
Lwt.return result
let make () =
{ in_channel = In_channel.stdin; out_channel = Out_channel.stdout }