Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
climate.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 633open! Import module Parse_error = Error.Parse_error module Spec_error = Error.Spec_error module Arg_parser = Arg_parser module Help_style = struct include Help.Style type color = [ `Black | `Red | `Green | `Yellow | `Blue | `Magenta | `Cyan | `White | `Bright_black | `Bright_red | `Bright_green | `Bright_yellow | `Bright_blue | `Bright_magenta | `Bright_cyan | `Bright_white ] type ansi_style = Ansi_style.t = { bold : bool ; dim : bool ; underline : bool ; color : color option } let ansi_style_plain = Ansi_style.default end module Manpage = struct include Manpage type markup = [ `P of string | `Pre of string ] type prose = Manpage.Prose.t let prose = Prose.create end let name_of_string_exn string = match Name.of_string string with | Ok name -> name | Error e -> Error.spec_error (Invalid_name (string, e)) ;; module Completion_config = struct type t = { program_name : string ; program_exe_for_reentrant_query : [ `Program_name | `Other of string ] ; global_symbol_prefix : [ `Random | `Custom of string ] ; command_hash_in_function_names : bool ; options : Completion.Options.t } (* An internal argument parser accepting arguments for configuring how the completion script is printed *) let arg_parser = let module Completion_ = Completion in let open Arg_parser in let+ program_name = named_opt ~doc: "Name to register this completion script with in the shell. Should be the name \ of this program's executable. Will default to argv[0]." ~value_name:"PROGRAM" [ "program-name" ] string and+ program_exe_for_reentrant_query = named_opt ~doc: "Program to run when executing reentrant queries. This should usually be the \ same as program-name. Will default to argv[0]. Note that it defaults to \ argv[0] rather than the value of program-name to help with development \ workflows, where it's common to manually register a short name as the \ program-name for testing, but the exe to run is inside a development \ directory (such as _build)." ~value_name:"PROGRAM" [ "program-exe-for-reentrant-query" ] string and+ global_symbol_prefix = named_opt ~doc: "Prefix to use for global symbols in generated completion script. Defaults to \ \"__climate_complete\" followed by a random int." ~value_name:"PREFIX" [ "global-symbol-prefix" ] string and+ no_command_hash_in_function_names = flag ~doc: "Don't add hashes of subcommands to the names of functions that compute \ suggestions. Hashes are added by default to prevent collisions between \ generated functions, but such collisions are rare in practice and disabling \ hashes makes the generated code easier to read." [ "no-command-hash-in-function-names" ] and+ no_comments = flag ~doc:"Omit comments from the generated completion script." [ "no-comments" ] and+ no_whitespace = flag ~doc:"Remove unnecessary whitespace from generated completion script." [ "no-whitespace" ] and+ minify_global_names = flag ~doc: "Rename global variables and functions in completion script to be as short as \ possible." [ "minify-global-names" ] and+ minify_local_variables = flag ~doc:"Use short names for local variables in generated bash script." [ "minify-local-variables" ] and+ optimize_case_statements = flag ~doc: "Combine sequences of contiguous case bodies in cases statements, merging \ their patterns." [ "optimize-case-statements" ] in let program_name = match program_name with | Some program_name -> program_name | None -> Sys.argv.(0) in let program_exe_for_reentrant_query = match program_exe_for_reentrant_query with | Some program_exe_for_reentrant_query -> `Other program_exe_for_reentrant_query | None -> `Other Sys.argv.(0) in let global_symbol_prefix = match global_symbol_prefix with | Some global_symbol_prefix -> `Custom global_symbol_prefix | None -> `Random in let options = { Completion_.Options.no_comments ; no_whitespace ; minify_global_names ; minify_local_variables ; optimize_case_statements } in { program_name ; program_exe_for_reentrant_query ; global_symbol_prefix ; command_hash_in_function_names = not no_command_hash_in_function_names ; options } ;; end module Eval_config = struct type t = { print_reentrant_completions_name : Name.t } let default = { print_reentrant_completions_name = Name.of_string_exn "print-reentrant-completion-hints" } ;; end module Program_name = struct type t = | Argv0 | Literal of string let get = function | Argv0 -> Sys.argv.(0) | Literal name -> name ;; end module Command = struct type internal = Print_completion_script_bash let internal_doc = function | Print_completion_script_bash -> "Print the bash completion script for this program." ;; let internal_arg_spec = function | Print_completion_script_bash -> Arg_parser.Private.spec Completion_config.arg_parser ;; module Subcommand_info = struct type t = { name : Name.t ; aliases : Name.t list ; hidden : bool } let matches { name; aliases; _ } s = let string_matches_name name = String.equal s (Name.to_string name) in string_matches_name name || List.exists aliases ~f:string_matches_name ;; end type 'a t = | Singleton of { arg_parser : 'a Arg_parser.t ; doc : string option } | Group of { children : 'a subcommand list ; default_arg_parser : 'a Arg_parser.t ; doc : string option } | Internal of internal and 'a subcommand = { info : Subcommand_info.t ; command : 'a t } let command_doc = function | Singleton { doc; _ } | Group { doc; _ } -> doc | Internal internal -> Some (internal_doc internal) ;; let command_arg_spec = function | Singleton { arg_parser; _ } -> Arg_parser.Private.spec arg_parser | Group { default_arg_parser; _ } -> Arg_parser.Private.spec default_arg_parser | Internal internal -> internal_arg_spec internal ;; let singleton ?doc ?prose arg_parser = let doc = doc in Singleton { arg_parser = Arg_parser.Private.finalize arg_parser ~doc ~child_subcommands:[] ~prose ; doc } ;; let subcommand ?( = false) ?(aliases = []) name_string command = let name = name_of_string_exn name_string in let aliases = List.map aliases ~f:name_of_string_exn in { info = { Subcommand_info.name; hidden; aliases }; command } ;; let group ?default_arg_parser ?doc ?prose children = let child_subcommands = List.filter_map children ~f:(fun { info; command } -> if info.hidden then None else Some { Subcommand.name = info.name ; aliases = info.aliases ; doc = command_doc command ; arg_spec = command_arg_spec command }) in let default_arg_parser = match default_arg_parser with | None -> (* By default, use an arg parser that just prints a usage message. *) Arg_parser.Private.usage | Some default_arg_parser -> default_arg_parser in let default_arg_parser = Arg_parser.Private.finalize default_arg_parser ~doc ~child_subcommands ~prose in let () = match List.concat_map children ~f:(fun { info; _ } -> List.map ~f:Name.to_string (info.name :: info.aliases)) |> String.find_duplicates with | [] -> () | child_names -> Error.spec_error (Error.Spec_error.Duplicate_command_names child_names) in Group { children; default_arg_parser; doc } ;; let print_completion_script_bash = Internal Print_completion_script_bash type 'a traverse = { operation : [ `Arg_parser of 'a Arg_parser.t | `Internal of internal ] ; args : string list ; subcommand : string list } let traverse t (command_line : Command_line.Raw.t) = let rec loop t args subcommand_acc = match t, args with | Singleton { arg_parser; doc = _ }, args -> Ok { operation = `Arg_parser arg_parser ; args ; subcommand = List.rev subcommand_acc } | Group { children; default_arg_parser; doc = _ }, x :: xs -> let subcommand = List.find_map children ~f:(fun { info; command } -> if Subcommand_info.matches info x then Some (command, info.name) else None) in (match subcommand with | Some (subcommand, name) -> loop subcommand xs (Name.to_string name :: subcommand_acc) | None -> (* The current word doesn't correspond to a subcommand, however it's possible that it's intended as an argument for the default arg parser of the current command. *) if (not (String.starts_with x ~prefix:"-")) && Spec.Positional.is_empty (Arg_parser.Private.spec default_arg_parser).positional then ( (* A positional argument was passed when the default arg parser doesn't accept any positional arguments, so it's very likely that the user mistyped the name of a subcommand instead. Throw a parse error to that affect. *) let rich_command_line = { Command_line.Rich.program = command_line.program ; args = command_line.args ; subcommand = subcommand_acc } in let command_doc_spec = Arg_parser.Private.command_doc_spec default_arg_parser rich_command_line in Error (Non_ret.Parse_error { error = No_such_subcommand x; command_doc_spec })) else Ok { operation = `Arg_parser default_arg_parser ; args = x :: xs ; subcommand = List.rev subcommand_acc }) | Group { children = _; default_arg_parser; doc = _ }, [] -> Ok { operation = `Arg_parser default_arg_parser ; args = [] ; subcommand = List.rev subcommand_acc } | Internal internal, args -> Ok { operation = `Internal internal; args; subcommand = List.rev subcommand_acc } in loop t command_line.args [] ;; let rec completion_spec = function | Singleton { arg_parser; doc = _ } -> let parser_spec = Spec.to_completion_parser_spec (Arg_parser.Private.spec arg_parser) in { Completion_spec.parser_spec; subcommands = [] } | Internal Print_completion_script_bash -> let parser_spec = Spec.to_completion_parser_spec (Arg_parser.Private.spec Completion_config.arg_parser) in { Completion_spec.parser_spec; subcommands = [] } | Group { children; default_arg_parser; doc = _ } -> let parser_spec = Spec.to_completion_parser_spec (Arg_parser.Private.spec default_arg_parser) in let subcommands = List.filter_map children ~f:(fun { info; command } -> if info.hidden then None else ( let spec = completion_spec command in Some { Completion_spec.name = Name.to_string info.name; spec })) in { Completion_spec.parser_spec; subcommands } ;; let completion_script_bash ?(eval_config = Eval_config.default) ?(program_exe_for_reentrant_query = `Program_name) ?(global_symbol_prefix = `Random) ?(command_hash_in_function_names = true) ?(program_name = Program_name.Argv0) ?(options = Completion.Options.default) t = completion_spec t |> Completion.generate_bash ~print_reentrant_completions_name:eval_config.print_reentrant_completions_name ~program_name:(Program_name.get program_name) ~program_exe_for_reentrant_query ~global_symbol_prefix ~command_hash_in_function_names ~options ;; module Reentrant_query = struct type t = { index : int ; command_line : Command_line.Raw.t } (* An internal argument parser accepting a reentrant function index and a partial command to parse to the corresponding reentrant function. *) let arg_parser name = let open Arg_parser in let+ index = Private.named_opt_for_internal [ name ] int ~allow_many:true and+ command_line = pos_all string in Option.map index ~f:(fun index -> if List.is_empty command_line then failwith "reentrant query was invoked with no positional arguments, which the \ completion script should never do"; match command_line with | [] -> failwith "unexpected empty list" | program :: args -> let command_line = { Command_line.Raw.program; args } in { index; command_line }) ;; (* Evaluate this type's argument parser on a given argument list. *) let eval_arg_parser name (raw_command_line : Command_line.Raw.t) = match raw_command_line.args with | [] -> Ok None | _ -> let command_line = { Command_line.Rich.program = raw_command_line.program ; args = raw_command_line.args ; subcommand = [] } in Arg_parser.Private.eval (arg_parser name) ~command_line ~ignore_errors:true ;; let run_query t command (completion_spec : Spec.untyped_completion_function Completion_spec.t) = let all_reentrants = Completion_spec.all_reentrants completion_spec in match List.nth_opt all_reentrants t.index with | Some reentrant -> (match traverse command t.command_line with | Ok { subcommand; args; _ } -> reentrant { Command_line.Rich.program = t.command_line.program; subcommand; args } | Error _ -> failwith "reentrant query was invoked with an invalid command, which the completion \ script should never do") | None -> failwith "reentrant query was invoked with an out of bounds argument, which the \ completion script should never do" ;; end let eval_internal (eval_config : Eval_config.t) t (raw_command_line : Command_line.Raw.t) = let open Result.O in let completion_spec = completion_spec t in (* If the top-level command was passed the reentrant query argument, cancel normal operation and just invoke the appropriate reentrant function. *) let* () = Reentrant_query.eval_arg_parser eval_config.print_reentrant_completions_name raw_command_line >>= function | None -> Ok () | Some reentrant_query -> let suggestions = Reentrant_query.run_query reentrant_query t completion_spec in Error (Non_ret.Reentrant_query { suggestions }) in let* { operation; args; subcommand } = traverse t raw_command_line in let command_line = { Command_line.Rich.program = raw_command_line.program; args; subcommand } in match operation with | `Arg_parser arg_parser -> (* This is the common case. Run the selected argument parser which will usually have the side effect of running the user's program logic. *) Arg_parser.Private.eval arg_parser ~command_line ~ignore_errors:false | `Internal Print_completion_script_bash -> let arg_parser = Arg_parser.Private.finalize Completion_config.arg_parser ~doc:(Some (internal_doc Print_completion_script_bash)) ~child_subcommands:[] ~prose:None in (* Print the completion script. Note that this can't be combined into the regular parser logic because it needs to know the completion spec, which isn't available to regular argument parsers. *) let* { Completion_config.program_name ; program_exe_for_reentrant_query ; global_symbol_prefix ; command_hash_in_function_names ; options } = Arg_parser.Private.eval arg_parser ~command_line ~ignore_errors:false in Error (Non_ret.Generate_completion_script { completion_script = Completion.generate_bash completion_spec ~program_name ~program_exe_for_reentrant_query ~print_reentrant_completions_name: eval_config.print_reentrant_completions_name ~global_symbol_prefix ~command_hash_in_function_names ~options }) ;; (* All the side effects that can be requested by a parser. Does not return. [test_friendly] prevents this function from exiting the program and prints all of its output to stdout. *) let handle_non_ret non_ret ~help_style ~version ~test_friendly = let () = match (non_ret : Non_ret.t) with | Help spec -> Help.pp help_style Format.std_formatter spec | Manpage { prose; command_doc_spec } -> let manpage = { Manpage.spec = command_doc_spec; prose; version } in print_endline (Manpage.to_troff_string manpage) | Reentrant_query { suggestions } -> List.iter suggestions ~f:print_endline | Parse_error { error; command_doc_spec } -> if test_friendly then print_endline (Parse_error.to_string error) else ( let ppf = Format.err_formatter in Ansi_style.pp_with_style help_style.error ppf ~f:(fun ppf -> Format.pp_print_string ppf "Error: "); Format.pp_print_string ppf (Parse_error.to_string error); Format.pp_force_newline ppf (); Format.pp_force_newline ppf (); Help.pp_usage help_style ppf command_doc_spec; Format.pp_force_newline ppf (); Format.pp_print_string ppf (sprintf "For more info, try running `%s`." (String.concat ((command_doc_spec.program_name :: command_doc_spec.subcommand) @ [ Name.to_string_with_dashes Built_in.help_long ]) ~sep:" ")); Format.pp_force_newline ppf (); exit Parse_error.exit_code) | Generate_completion_script { completion_script } -> print_endline completion_script in exit 0 ;; let handle_result result ~help_style ~version = match result with | Ok x -> x | Error non_ret -> handle_non_ret non_ret ~help_style ~version ~test_friendly:false ;; let run ?(eval_config = Eval_config.default) ?(program_name = Program_name.Argv0) ?(help_style = Help_style.default) ?version t = let command_line_program_name_is_argv0 = Command_line.Raw.from_env () in let command_line = match (program_name : Program_name.t) with | Argv0 -> command_line_program_name_is_argv0 | Literal program -> { command_line_program_name_is_argv0 with program } in eval_internal eval_config t command_line |> handle_result ~help_style ~version ;; let run_singleton ?(eval_config = Eval_config.default) ?(program_name = Program_name.Argv0) ?(help_style = Help_style.default) ?version ?doc arg_parser = run ~eval_config ~program_name ~help_style ?version (singleton ?doc arg_parser) ;; let eval ?(eval_config = Eval_config.default) ?(program_name = Program_name.Argv0) ?(help_style = Help_style.default) ?version t args = eval_internal eval_config t { Command_line.Raw.args; program = Program_name.get program_name } |> handle_result ~help_style ~version ;; end module For_test = struct module Climate_stdlib = Climate_stdlib module Non_ret = Non_ret module Parse_error = Error.Parse_error let eval_result ~program_name t args = Command.eval_internal Eval_config.default t { Command_line.Raw.args; program = program_name } ;; let print_help_spec spec = Help.pp Help_style.plain Format.std_formatter spec let print_manpage spec prose = let manpage = { Manpage.spec; prose; version = None } in print_endline (Manpage.to_troff_string manpage) ;; end